summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-10-19 21:11:02 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-10-19 21:11:02 +0000
commitf2fae326e3f2ef03aa1b1ba91153f82a7f2be5c8 (patch)
tree72f489514be9c8611a907e5f2ccd780ba2d7429b /configure
parentdc7cb06ae0f1a24ca0aa106eacc332ceba518928 (diff)
OS/X 10.2.x gcc-3.1 bug workaround by ("Steven M. Schultz" <sms at 2BSD dot COM>)
Originally committed as revision 2400 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index 8b74021fdd..b85862b103 100755
--- a/configure
+++ b/configure
@@ -426,6 +426,9 @@ if test $targetos = Darwin; then
*2.95*)
CFLAGS="-no-cpp-precomp -pipe -fomit-frame-pointer"
;;
+ *3.1*)
+ CFLAGS="-no-cpp-precomp -pipe -fomit-frame-pointer -force_cpusubtype_ALL -Wno-sign-compare"
+ ;;
*3.3*)
CFLAGS="-no-cpp-precomp -pipe -fomit-frame-pointer -mdynamic-no-pic -force_cpusubtype_ALL -Wno-sign-compare"
;;