diff options
author | Matt Messier <mmessier@grapetv.org> | 2007-05-10 14:11:01 -0400 |
---|---|---|
committer | Matt Messier <mmessier@grapetv.org> | 2007-05-10 14:11:01 -0400 |
commit | 9621ee24fcaf6fa2c66eeca53eb00b4618e2ad61 (patch) | |
tree | c217cd2a5e2988217e8087e7f58c52978895c5e4 /m4 | |
parent | 02a74c36db24a8f9c43b4a123285c803f142e2e9 (diff) | |
download | xine-lib-9621ee24fcaf6fa2c66eeca53eb00b4618e2ad61.tar.gz xine-lib-9621ee24fcaf6fa2c66eeca53eb00b4618e2ad61.tar.bz2 |
Uncomment libFLAC tests accidentally left commented out
Diffstat (limited to 'm4')
-rw-r--r-- | m4/decoders.m4 | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/m4/decoders.m4 b/m4/decoders.m4 index 577473432..5d2a3c37f 100644 --- a/m4/decoders.m4 +++ b/m4/decoders.m4 @@ -147,13 +147,13 @@ use internal ffmpeg. dnl libFLAC (optional; disabled by default) -dnl AC_ARG_WITH([libflac], -dnl [AS_HELP_STRING([--with-libflac], [build libFLAC-based decoder and demuxer])], -dnl [], [enable_libflac=no]) -dnl if test x"$with_libflac" != x"no"; then -dnl AM_PATH_LIBFLAC([have_libflac=yes]) -dnl fi -dnl AM_CONDITIONAL([HAVE_LIBFLAC], [test x"$have_libflac" = x"yes"]) + AC_ARG_WITH([libflac], + [AS_HELP_STRING([--with-libflac], [build libFLAC-based decoder and demuxer])], + [], [enable_libflac=no]) + if test x"$with_libflac" != x"no"; then + AM_PATH_LIBFLAC([have_libflac=yes]) + fi + AM_CONDITIONAL([HAVE_LIBFLAC], [test x"$have_libflac" = x"yes"]) dnl libmad (optional; enabled by default; external version allowed) |