Browse code

Remove --disable-audio-oss option from configure. --disable-(de)muxer=oss should be used instead.

Originally committed as revision 10428 to svn://svn.ffmpeg.org/ffmpeg/trunk

Ramiro Polla authored on 2007/09/07 22:47:14
Showing 1 changed files
... ...
@@ -120,7 +120,6 @@ show_help(){
120 120
   echo "  --disable-armv6          disable armv6 usage"
121 121
   echo "  --disable-iwmmxt         disable iwmmxt usage"
122 122
   echo "  --disable-altivec        disable AltiVec usage"
123
-  echo "  --disable-audio-oss      disable OSS audio support [default=no]"
124 123
   echo "  --disable-bktr           disable bktr video grabbing [default=no]"
125 124
   echo "  --disable-network        disable network support [default=no]"
126 125
   echo "  --disable-ipv6           disable ipv6 support [default=no]"
... ...
@@ -584,7 +583,6 @@ COMPONENT_LIST="
584 584
 
585 585
 CONFIG_LIST="
586 586
     $COMPONENT_LIST
587
-    audio_oss
588 587
     avisynth
589 588
     beos_netserver
590 589
     bktr
... ...
@@ -781,8 +779,8 @@ libnut_demuxer_deps="libnut"
781 781
 libnut_muxer_deps="libnut"
782 782
 mp3_demuxer_deps="mpegaudio_parser"
783 783
 ogg_muxer_deps="libogg"
784
-oss_demuxer_deps="audio_oss"
785
-oss_muxer_deps="audio_oss"
784
+oss_demuxer_deps_any="soundcard_h sys_soundcard_h"
785
+oss_muxer_deps_any="soundcard_h sys_soundcard_h"
786 786
 redir_demuxer_deps="network"
787 787
 rtp_muxer_deps="network mpegts_demuxer"
788 788
 rtsp_demuxer_deps="rtp_protocol rtp_muxer"
... ...
@@ -846,7 +844,6 @@ cpu="generic"
846 846
 targetos=$(tolower $(uname -s))
847 847
 
848 848
 # non-library system interfaces
849
-audio_oss="yes"
850 849
 bktr="yes"
851 850
 
852 851
 # libraries
... ...
@@ -1707,10 +1704,8 @@ if enabled bktr; then
1707 1707
     disable bktr
1708 1708
 fi
1709 1709
 
1710
-enabled audio_oss &&
1711
-    check_header sys/soundcard.h ||
1712
-    check_header soundcard.h ||
1713
-    disable audio_oss
1710
+check_header sys/soundcard.h
1711
+check_header soundcard.h
1714 1712
 
1715 1713
 # Deal with the x11 frame grabber
1716 1714
 enabled x11grab                         &&