summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-26 00:46:44 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-26 00:46:44 +0000
commitc639323e34ac65236cdc56c47de8101671641555 (patch)
treecf6dbb1ca9b814522eb716f3d56a95146f961fed
parent5645836ad4ad51848216fe431a3393845caa1e0a (diff)
downloadmpv-c639323e34ac65236cdc56c47de8101671641555.tar.bz2
mpv-c639323e34ac65236cdc56c47de8101671641555.tar.xz
Disable problematic ffmpeg.so support by default and remove die on 2.2.x
and older kernel, replacing it with more in depth info. (Kernel SSE check will disable SSE, if needed!) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3128 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure10
1 files changed, 6 insertions, 4 deletions
diff --git a/configure b/configure
index ce70b2ea9b..f5ee82065f 100755
--- a/configure
+++ b/configure
@@ -631,7 +631,7 @@ fi
_prefix="/usr/local"
_libavcodec=auto
-_libavcodecso=auto
+_libavcodecso=no # changed default to no as it causes problems - atmos
_mencoder=auto
_x11=auto
@@ -946,9 +946,11 @@ if x86 && linux ; then
if test "$_k_verc_fail" ; then
echores "$kernel_version, fail"
echo "WARNING! If you want to run mplayer on this system, get prepared for problems!"
- echo "2.2.x has a limited SSE support. Upgrade kernel or use --disable-sse"
- echo "Older kernel won't work correctly with mplayer using SSE optimization."
- die "old kernel for this cpu"
+ echo "2.2.x has limited SSE support. Upgrade kernel or use --disable-sse if you"
+ echo "experience crashes. MPlayer tries to autodetect if your kernel correctly supports"
+ echo "SSE, but you have been warned! If you are using kernel older then 2.2.x you must"
+ echo "upgrade it to get SSE support!"
+# die "old kernel for this cpu" # works fine on some 2.2.x so don't die (later check will test)
else
echores "$kernel_version, ok"
fi