From ac02b9ee47e57f98862accd4474e3c751d6e97ac Mon Sep 17 00:00:00 2001 From: cehoyos Date: Wed, 2 Jun 2010 20:50:55 +0000 Subject: libavcodec/libx264.c requires x264 0.98 since r23430. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31306 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 312d46ee52..250a8426c1 100755 --- a/configure +++ b/configure @@ -7547,7 +7547,7 @@ if test "$_x264" = auto ; then cat > $TMPC << EOF #include #include -#if X264_BUILD < 89 +#if X264_BUILD < 98 #error We do not support old versions of x264. Get the latest from git. #endif int main(void) { x264_encoder_open((void*)0); return 0; } -- cgit v1.2.3 From 9b04897e76aa15aef0d27618b550c605cc02f08d Mon Sep 17 00:00:00 2001 From: reimar Date: Wed, 2 Jun 2010 22:09:04 +0000 Subject: Add the -march fallback for amdfam10 also to the x86_64 case. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31307 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 3 +++ 1 file changed, 3 insertions(+) (limited to 'configure') diff --git a/configure b/configure index 250a8426c1..7a87fd6548 100755 --- a/configure +++ b/configure @@ -2076,6 +2076,9 @@ EOF cc_check -march=native && proc=native fi # --- AMD processors --- + if test "$proc" = "amdfam10"; then + cc_check -march=$proc $cpuopt=$proc || proc=k8 + fi if test "$proc" = "k8"; then cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp fi -- cgit v1.2.3