tony2001 Fri Jan 7 11:57:23 2005 EDT
Modified files:
/php-src acinclude.m4
Log:
fix PHP_CHECK_64BIT macro (finally got 64bit machine to test it)
http://cvs.php.net/diff.php/php-src/acinclude.m4?r1=1.286&r2=1.287&ty=u
Index: php-src/acinclude.m4
diff -u php-src/acinclude.m4:1.286 php-src/acinclude.m4:1.287
--- php-src/acinclude.m4:1.286 Fri Jan 7 01:12:41 2005
+++ php-src/acinclude.m4 Fri Jan 7 11:57:23 2005
@@ -1,4 +1,4 @@
-dnl $Id: acinclude.m4,v 1.286 2005/01/07 06:12:41 sniper Exp $
+dnl $Id: acinclude.m4,v 1.287 2005/01/07 16:57:23 tony2001 Exp $
dnl
dnl This file contains local autoconf functions.
@@ -2027,9 +2027,9 @@
dnl It could be useful for those external libs, that have different
precompiled
dnl versions in different directories.
AC_DEFUN([PHP_CHECK_64BIT],[
- AC_CHECK_SIZEOF(int)
+ AC_CHECK_SIZEOF(long int)
AC_MSG_CHECKING([checking if we're at 64-bit platform])
- if test "$ac_cv_sizeof_int" = "4" ; then
+ if test "$ac_cv_sizeof_long_int" = "4" ; then
AC_MSG_RESULT([no])
$1
else
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php