X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=aclocal.m4;h=4701bc93541992a5e2dc3cddfe99d0c991a0515a;hb=c0eb9d997653da4357873829990cc338475bca39;hp=288fd8320855b4ab28c6e63e00e2a0df5670f629;hpb=b6fff39114fee90b806ed2e29cc8f5d9728d85a8;p=ghc-hetmet.git diff --git a/aclocal.m4 b/aclocal.m4 index 288fd83..4701bc9 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -9,6 +9,7 @@ # Set the C and LD flags for a given platform AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS], [ + AC_MSG_CHECKING([Setting up $2 and $3]) case $$1 in i386-apple-darwin) # By default, gcc on OS X will generate SSE @@ -24,6 +25,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 @@ -31,7 +40,8 @@ AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS], then $2="$$2 -fno-stack-protector" fi - rm conftest.c conftest.o + rm -f conftest.c conftest.o + AC_MSG_RESULT([done]) ])