search for: b4094ff

Displaying 1 result from an estimated 1 matches for "b4094ff".

Did you mean: 4004ff
2013 Apr 06
0
[PATCH 1/2] Fix pkg-config files to avoid overlinking
...ted to only include ogg if libFLAC is actually built with ogg support. --- configure.ac | 2 ++ src/libFLAC++/flac++.pc.in | 4 ++-- src/libFLAC/flac.pc.in | 4 +++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index b35e44d..b4094ff 100644 --- a/configure.ac +++ b/configure.ac @@ -308,9 +308,11 @@ fi AM_CONDITIONAL(FLaC__HAS_OGG, [test "x$have_ogg" = xyes]) if test "x$have_ogg" = xyes ; then AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],1,[define if you have the ogg library]) + OGG_PACKAGE="ogg" else...