search for: flac_cflags

Displaying 3 results from an estimated 3 matches for "flac_cflags".

Did you mean: ac_cflags
2011 Mar 25
1
pkg-config output and <FLAC/assert.h>
...ac uses now is simply wrong, and > that your suggestion above (which matches the one i made) is > substantially preferable. I've now taken to doing the following in my configure.ac file: PKG_CHECK_MOD_VERSION(FLAC, flac >= 1.2.1, ac_cv_flac=yes, ac_cv_flac=no) # Make sure the FLAC_CFLAGS value is sane, strip trailing '/FLAC'. FLAC_CFLAGS=`echo $FLAC_CLFAGS | $SED "s/FLAC$//"` Solve the problem for me and will still work when the flac.pc file is fixed. Erik -- ---------------------------------------------------------------------- Erik de Castro Lopo http://w...
2011 Mar 25
3
pkg-config output and <FLAC/assert.h>
Hi, FLAC helpfully provides a flac.pc file. Unfortunately there is a nasty interaction between that file and system header files. If ones installs flac and relies on pkg-config to find the CFLAGS one woulf get CFLAGS value of "-I${includedir}/FLAC" which suggests that FLAC header files like <metadata.h> should be included as: #include <metadata.h> However, FLAC also
2015 Oct 08
2
[PATCH 0/1] opusenc support for WavPack input
This patch to opus-tools adds optional support to WavPack lossless format as input to opusenc. Like support to FLAC, it depends on an external library, libwavpack, and may be disabled on configure. Lucas Clemente Vella (1): Reading input from WavPack files. Makefile.am | 7 +- configure.ac | 37 ++++++++ src/audio-in.c | 71 ++++++++------- src/opusenc.c | 19 +++- src/opusenc.h