From: Felipe Pena Date: Wed, 5 May 2010 21:55:44 +0000 (+0000) Subject: - Fixed bug #51740 (acinclude.m4 macro PHP_CHECK_SIZEOF is not properly quoted) X-Git-Tag: php-5.2.14RC1~26 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0eec9e1932b1ef34cc4c08cf5fa5a7a31d0dd435;p=php - Fixed bug #51740 (acinclude.m4 macro PHP_CHECK_SIZEOF is not properly quoted) Patch by: dave dot mulford at gmail dot com --- diff --git a/acinclude.m4 b/acinclude.m4 index 92996b1fa2..9a4ab82f00 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1095,7 +1095,7 @@ ifelse([$5],[],,[else $5]) dnl dnl PHP_CHECK_SIZEOF(type, cross-value, extra-headers) dnl -AC_DEFUN(PHP_CHECK_SIZEOF, [ +AC_DEFUN([PHP_CHECK_SIZEOF], [ AC_MSG_CHECKING([size of $1]) _PHP_CHECK_SIZEOF($1, $2, $3, [ AC_DEFINE_UNQUOTED([SIZEOF_]translit($1,a-z,A-Z_), [$]php_cv_sizeof_[]$1, [Size of $1])