summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorFelipe Pena <felipe@php.net>2010-05-05 21:55:44 +0000
committerFelipe Pena <felipe@php.net>2010-05-05 21:55:44 +0000
commitd787d545d2b7e0920b7db04aaa40fc4973c49d82 (patch)
treec4726b993510f83c139476a2ce5e1016cdc07af9 /acinclude.m4
parent1e96fbe4a8391621a6bd2d634d117eba4dec0b35 (diff)
downloadphp-git-d787d545d2b7e0920b7db04aaa40fc4973c49d82.tar.gz
- Fixed bug #51740 (acinclude.m4 macro PHP_CHECK_SIZEOF is not properly quoted)
Patch by: dave dot mulford at gmail dot com
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
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])