mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
Fix version & requires fields in pkg config files
Details: - When building with CMake, pkg-config files flac.pc and flac++.pc are not updated with Version information. This causes a failure when running a configure script in opus-tools (https://github.com/xiph/opus-tools). Note that OGG_PACKAGE is set to "ogg" exactly as in the configure.ac, but it is only set when the building explicitly with libogg.
This commit is contained in:
committed by
Ralph Giles
parent
a9557c13fa
commit
1ac2a6314b
@@ -22,8 +22,11 @@ option(INSTALL_PKGCONFIG_MODULES "Install PkgConfig modules" ON)
|
||||
option(INSTALL_CMAKE_CONFIG_MODULE "Install CMake package-config module" ON)
|
||||
option(WITH_OGG "ogg support (default: test for libogg)" ON)
|
||||
|
||||
set(VERSION ${PROJECT_VERSION})
|
||||
|
||||
if(WITH_OGG)
|
||||
find_package(Ogg REQUIRED)
|
||||
set(OGG_PACKAGE "ogg")
|
||||
endif()
|
||||
|
||||
find_package(Iconv)
|
||||
|
||||
Reference in New Issue
Block a user