summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-23 22:45:21 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-12-23 22:45:21 +0000
commit91a09d9fe70fb5c76d04ee80f3be5b5a52814fd8 (patch)
tree0292d04aef80daa0420ab8d328284ac899894c28
parent1a317781ecdf333c1fedb3ee7438805c98248e77 (diff)
downloadmpv-91a09d9fe70fb5c76d04ee80f3be5b5a52814fd8.tar.bz2
mpv-91a09d9fe70fb5c76d04ee80f3be5b5a52814fd8.tar.xz
streaming enabled by default
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3690 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index bdbde966b7..1723a147e5 100755
--- a/configure
+++ b/configure
@@ -127,6 +127,7 @@ Optional features:
--disable-iconv do not use iconv(3) function [autodetect]
--disable-rtc disable RTC (/dev/rtc) on Linux [autodetect]
--disable-mp1e disable libmp1e support (only if it won't compile) [enable]
+ --disable-streaming disable network streaming support (http/mms/rtp) [ena]
Video:
--enable-gl build with OpenGL render support [autodetect]
@@ -679,7 +680,7 @@ _dshow=yes
_select=yes
_tv=yes
_tv_v4l=auto
-_streaming=no
+_streaming=auto
_divx4linux=auto
_lirc=auto
_gui=no
@@ -2457,10 +2458,9 @@ echores "$_select"
echocheck "streaming"
# FIXME streaming check
-if test "$_streaming" = yes ; then
+if test "$_streaming" != no ; then
_def_streaming='#define STREAMING 1'
_inputmodules="network $_inputmodules"
-# FIXME _streamingsrcs='asf_streaming.c network.c url.c http.c'
else
_def_streaming='#undef STREAMING'
fi