OS X futures: only x86

svn: r18400
This commit is contained in:
Matthew Flatt 2010-03-01 01:43:06 +00:00
parent 9b6ccb1476
commit 57ab0dee65
2 changed files with 14 additions and 2 deletions

8
src/configure vendored
View File

@ -5935,7 +5935,13 @@ case $OS in
LDFLAGS="$LDFLAGS -isysroot ${enable_sdk} -mmacosx-version-min=10.4"
fi
enable_futures_by_default=yes
case `$UNAME -m` in
i386)
enable_futures_by_default=yes
;;
*)
;;
esac
PREFLAGS="$PREFLAGS -DOS_X -D_DARWIN_UNLIMITED_SELECT"

View File

@ -645,7 +645,13 @@ case $OS in
LDFLAGS="$LDFLAGS -isysroot ${enable_sdk} -mmacosx-version-min=10.4"
fi
enable_futures_by_default=yes
case `$UNAME -m` in
i386)
enable_futures_by_default=yes
;;
*)
;;
esac
PREFLAGS="$PREFLAGS -DOS_X -D_DARWIN_UNLIMITED_SELECT"