Commit 68bbeaca authored by Måns Rullgård's avatar Måns Rullgård

remove unused option --disable-simple_idct

Originally committed as revision 7017 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent be74741c
...@@ -91,7 +91,6 @@ show_help(){ ...@@ -91,7 +91,6 @@ show_help(){
echo " --disable-network disable network support [default=no]" echo " --disable-network disable network support [default=no]"
echo " --disable-ipv6 disable ipv6 support [default=no]" echo " --disable-ipv6 disable ipv6 support [default=no]"
echo " --disable-zlib disable zlib [default=no]" echo " --disable-zlib disable zlib [default=no]"
echo " --disable-simple_idct disable simple IDCT routines [default=no]"
echo " --disable-vhook disable video hooking support" echo " --disable-vhook disable video hooking support"
echo " --enable-gprof enable profiling with gprof [$gprof]" echo " --enable-gprof enable profiling with gprof [$gprof]"
echo " --disable-debug disable debugging symbols" echo " --disable-debug disable debugging symbols"
...@@ -456,7 +455,6 @@ extrawarnings="no" ...@@ -456,7 +455,6 @@ extrawarnings="no"
dostrip="yes" dostrip="yes"
installstrip="-s" installstrip="-s"
extralibs="-lm" extralibs="-lm"
simpleidct="yes"
bigendian="no" bigendian="no"
inttypes="yes" inttypes="yes"
emu_fast_int="no" emu_fast_int="no"
...@@ -810,8 +808,6 @@ for opt do ...@@ -810,8 +808,6 @@ for opt do
;; ;;
--disable-vhook) vhook="no" --disable-vhook) vhook="no"
;; ;;
--disable-simple_idct) simpleidct="no"
;;
--enable-mingw32) mingw32="yes" --enable-mingw32) mingw32="yes"
;; ;;
--enable-mingwce) mingwce="yes" --enable-mingwce) mingwce="yes"
...@@ -2133,10 +2129,6 @@ if test "$need_inet_aton" = "yes" ; then ...@@ -2133,10 +2129,6 @@ if test "$need_inet_aton" = "yes" ; then
echo "NEED_INET_ATON=yes" >> config.mak echo "NEED_INET_ATON=yes" >> config.mak
fi fi
if test "$simpleidct" = "yes" ; then
echo "#define SIMPLE_IDCT 1" >> $TMPH
fi
if test "$protocols" = "yes" ; then if test "$protocols" = "yes" ; then
echo "#define CONFIG_PROTOCOLS 1" >> $TMPH echo "#define CONFIG_PROTOCOLS 1" >> $TMPH
echo "CONFIG_PROTOCOLS=yes" >> config.mak echo "CONFIG_PROTOCOLS=yes" >> config.mak
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment