diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2001-07-30 23:18:14 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2001-07-30 23:18:14 +0000 |
commit | ca9118c87609826693bf4ef744010a86e68ef043 (patch) | |
tree | 11fc8b70af53e262f1fbca2f2858226cce1db172 | |
parent | a12e4610920c73cd15836a810d9df1cd5d0f0132 (diff) | |
download | ffmpeg-ca9118c87609826693bf4ef744010a86e68ef043.tar.gz |
added --disable-mp3lib
Originally committed as revision 16 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -15,6 +15,7 @@ case "$cpu" in ;; esac gprof="no" +mp3lib="yes" if [ "$1" = "-h" -o "$1" = "--help" ] ; then cat << EOF @@ -29,6 +30,7 @@ echo " --cc=CC use C compiler CC [$cc]" echo " --cpu=CPU force cpu to CPU [$cpu]" echo " --disable-mmx disable mmx usage" echo " --enable-gprof enable profiling with gprof [$gprof]" +echo " --disable-mp3lib disable mp3 lib compiling" exit 1 fi @@ -44,6 +46,8 @@ for opt do ;; --enable-gprof) gprof="yes" ;; + --disable-mp3lib) mp3lib="no" + ;; esac done @@ -94,5 +98,7 @@ echo "CONFIG_DECODERS=yes" >> config.mak echo "#define CONFIG_AC3 1" >> config.h echo "CONFIG_AC3=yes" >> config.mak -echo "#define CONFIG_MPGLIB 1" >> config.h -echo "CONFIG_MPGLIB=yes" >> config.mak +if [ "$mp3lib" = "yes" ] ; then + echo "#define CONFIG_MPGLIB 1" >> config.h + echo "CONFIG_MPGLIB=yes" >> config.mak +fi |