From 819dbcb57fe84f8e9777d4eb63e6c2ba7134691f Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 3 Dec 2010 20:15:58 +0000 Subject: [PATCH] Tell gcc to support back to OS X 10.5 --- aclocal.m4 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/aclocal.m4 b/aclocal.m4 index 1ca1ec6..3e673f9 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -24,6 +24,14 @@ AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS], ;; esac + case $$1 in + i386-apple-darwin|x86_64-apple-darwin) + # We support back to OS X 10.5 + $2="$$2 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5" + $3="$$3 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5" + ;; + esac + # If gcc knows about the stack protector, turn it off. # Otherwise the stack-smash handler gets triggered. echo 'int main(void) {return 0;}' > conftest.c -- 1.7.10.4