sniper Thu Dec 30 09:56:23 2004 EDT Modified files: (Branch: PHP_5_0) /php-src acinclude.m4 Log: MFH: Fix buildconf failure with autoconf > 2.13 http://cvs.php.net/diff.php/php-src/acinclude.m4?r1=1.271.2.8&r2=1.271.2.9&ty=u Index: php-src/acinclude.m4 diff -u php-src/acinclude.m4:1.271.2.8 php-src/acinclude.m4:1.271.2.9 --- php-src/acinclude.m4:1.271.2.8 Thu Dec 30 09:52:28 2004 +++ php-src/acinclude.m4 Thu Dec 30 09:56:23 2004 @@ -1,4 +1,4 @@ -dnl $Id: acinclude.m4,v 1.271.2.8 2004/12/30 14:52:28 sniper Exp $ -*- autoconf -*- +dnl $Id: acinclude.m4,v 1.271.2.9 2004/12/30 14:56:23 sniper Exp $ -*- autoconf -*- dnl dnl This file contains local autoconf functions. @@ -2004,7 +2004,7 @@ dnl Replacement macro for AC_C_BIGENDIAN dnl AC_DEFUN([PHP_C_BIGENDIAN], -[AC_CACHE_CHECK(whether byte ordering is bigendian, ac_cv_c_bigendian_php, +[AC_CACHE_CHECK([whether byte ordering is bigendian], ac_cv_c_bigendian_php, [ ac_cv_c_bigendian_php=unknown AC_TRY_RUN( @@ -2021,9 +2021,9 @@ } } ], [ac_cv_c_bigendian_php=yes], [ac_cv_c_bigendian_php=no], [ac_cv_c_bigendian_php=unknown]) - if test $ac_cv_c_bigendian_php = yes; then - AC_DEFINE(WORDS_BIGENDIAN, [], [Define if processor uses big-endian word]) - fi ]) + if test $ac_cv_c_bigendian_php = yes; then + AC_DEFINE(WORDS_BIGENDIAN, [], [Define if processor uses big-endian word]) + fi ])
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php