# HG changeset patch # User Adrian Robert # Date 1255662521 0 # Node ID e5d284379e14920d64b55d0347fbdebcaf18d4ca # Parent 929678fafdb4b992127f75acff7957e672ccfb2f (NS_HAVE_NSINTEGER): Back out previous change. (*-apple-darwin*): Add x86_64 architecture. diff -r 929678fafdb4 -r e5d284379e14 ChangeLog --- a/ChangeLog Fri Oct 16 02:20:29 2009 +0000 +++ b/ChangeLog Fri Oct 16 03:08:41 2009 +0000 @@ -1,3 +1,8 @@ +2009-10-15 Adrian Robert + + * configure.in (NS_HAVE_NSINTEGER): Back out previous change. + (*-apple-darwin*): Add x86_64 architecture. + 2009-10-14 Dan Nicolaescu * config.guess, config.sub: Updated from master source. diff -r 929678fafdb4 -r e5d284379e14 configure.in --- a/configure.in Fri Oct 16 02:20:29 2009 +0000 +++ b/configure.in Fri Oct 16 03:08:41 2009 +0000 @@ -456,6 +456,7 @@ case "${canonical}" in i[3456]86-* ) machine=intel386 ;; powerpc-* ) machine=macppc ;; + x86_64-* ) machine=amdx86-64 ;; * ) unported=yes ;; esac opsys=darwin @@ -1339,6 +1340,14 @@ AC_CHECK_HEADER([AppKit/AppKit.h], [HAVE_NS=yes], [AC_MSG_ERROR([`--with-ns' was specified, but the include files are missing or cannot be compiled.])]) + NS_HAVE_NSINTEGER=yes + AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include ], + [NSInteger i;])], + ns_have_nsinteger=yes, + ns_have_nsinteger=no) + if test $ns_have_nsinteger = no; then + NS_HAVE_NSINTEGER=no + fi fi if test "${HAVE_NS}" = yes; then window_system=nextstep