diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-12-25 20:04:17 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-12-25 20:04:17 +0000 |
commit | fdaeeb0c00f879c3703a1372ee4689bd6739c1fd (patch) | |
tree | 29d59c68104eee85373967c2b0ac4ac3c27fa314 /src | |
parent | dd594f0816669c94b8319133e9af97800b6df254 (diff) | |
download | xine-lib-fdaeeb0c00f879c3703a1372ee4689bd6739c1fd.tar.gz xine-lib-fdaeeb0c00f879c3703a1372ee4689bd6739c1fd.tar.bz2 |
* Replace --enable-flac configure option with --with-libflac, as the FLAC
support is always built-in through the audio demuxer plugin and the FFmpeg
decoder plugin, the option only controls the extra FLAC plugin that uses
libFLAC both for demuxing and decoding.
CVS patchset: 8457
CVS date: 2006/12/25 20:04:17
Diffstat (limited to 'src')
-rw-r--r-- | src/libflac/Makefile.am | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/libflac/Makefile.am b/src/libflac/Makefile.am index 12304ff84..6449820bc 100644 --- a/src/libflac/Makefile.am +++ b/src/libflac/Makefile.am @@ -1,12 +1,10 @@ include $(top_srcdir)/misc/Makefile.common -if HAVE_FLAC -flac_module = xineplug_flac.la -endif - libdir = $(XINE_PLUGINDIR) -lib_LTLIBRARIES = $(flac_module) +if HAVE_LIBFLAC +lib_LTLIBRARIES = xineplug_flac.la +endif xineplug_flac_la_SOURCES = demux_flac.c decoder_flac.c xineplug_flac_la_LIBADD = $(LIBFLAC_LIBS) $(XINE_LIB) |