From 9e7e04add6b2abf0fd5cf70b3b1b5423712532ec Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 3 Jan 2010 16:46:31 +0000 Subject: Enable all FFmpeg protocols by default, they seem to build without issue on Linux and MinGW, lets see if it works for everything else as well. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30188 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index e6350dbd96..5031451b03 100755 --- a/configure +++ b/configure @@ -557,7 +557,7 @@ _libavdemuxers=$(echo $_libavdemuxers_all | sed -e 's/ LIB[A-Z0-9_]*_DEMUXER//g' _libavmuxers_all=$(sed -n 's/^[^#]*_MUX.*(.*, *\(.*\)).*/\1_muxer/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]') _libavmuxers=$(echo $_libavmuxers_all | sed -e 's/ LIB[A-Z0-9_]*_MUXER//g' -e s/RTP_MUXER//) _libavprotocols_all=$(sed -n 's/^[^#]*PROTOCOL.*(.*, *\(.*\)).*/\1_protocol/p' libavformat/allformats.c | tr '[a-z]' '[A-Z]') -_libavprotocols="" +_libavprotocols=$_libavprotocols_all _libavcodec_so=auto _libavformat_a=auto _libavformat_so=auto -- cgit v1.2.3 From f31ed10742a2f195629b98bce6470c0aaa2bf232 Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 3 Jan 2010 17:00:51 +0000 Subject: Modify -vo direct3d so we do not have to link against d3d9.dll, it might not be available on some rare systems. Based on patch used for builds by Gianluigi Tiesi [sherpya netfarm it] git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30190 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'configure') diff --git a/configure b/configure index 5031451b03..1cba7eda43 100755 --- a/configure +++ b/configure @@ -5334,11 +5334,10 @@ if test "$_direct3d" = auto ; then int main(void) { return 0; } EOF _direct3d=no - cc_check -ld3d9 && _direct3d=yes + cc_check && _direct3d=yes fi if test "$_direct3d" = yes ; then def_direct3d='#define CONFIG_DIRECT3D 1' - libs_mplayer="$libs_mplayer -ld3d9" _vomodules="direct3d $_vomodules" else def_direct3d='#undef CONFIG_DIRECT3D' -- cgit v1.2.3