comparison configure.ac @ 1039:91a6d69bca91 trunk

[svn] - Disable building the old flac plugin by default
author ertzing
date Tue, 15 May 2007 13:45:38 -0700
parents 1710790c8e85
children f65aa5417221
comparison
equal deleted inserted replaced
1038:1710790c8e85 1039:91a6d69bca91
617 have_modplug="no" 617 have_modplug="no"
618 fi 618 fi
619 619
620 dnl *** flac 620 dnl *** flac
621 AC_ARG_ENABLE( flac, 621 AC_ARG_ENABLE( flac,
622 [ --disable-flac disable flac input plugin (default=enabled)],, 622 [ --enable-flac enable flac input plugin (default=disabled)],
623 enable_flac="yes") 623 [enable_flac=$enableval],
624 [enable_flac="no"])
624 625
625 if test "x$enable_flac" = xyes; then 626 if test "x$enable_flac" = xyes; then
626 if test "x$have_oggvorbis" = xyes; then 627 if test "x$have_oggvorbis" = xyes; then
627 INPUT_PLUGINS="$INPUT_PLUGINS flac" 628 INPUT_PLUGINS="$INPUT_PLUGINS flac"
628 have_flac=yes 629 have_flac=yes