Quote AC_CHECK_SIZEOF argument.

This commit is contained in:
Giuseppe Scrivano 2010-07-11 03:01:32 +02:00
parent 49d7bafd79
commit 04e4bd614d
2 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2010-07-11 Giuseppe Scrivano <gscrivano@gnu.org>
* configure.ac (AC_CHECK_SIZEOF): Quote argument.
Reported by: Jochen Roderburg <Roderburg@Uni-Koeln.DE>.
2010-07-09 Giuseppe Scrivano <gscrivano@gnu.org>
* bootstrap.conf (buildreq): Relax gettext version to 0.17.

View File

@ -165,11 +165,11 @@ dnl Check sizes of integer types. These are used to find n-bit
dnl integral types on older systems that fail to provide intN_t and
dnl uintN_t typedefs.
dnl
AC_CHECK_SIZEOF(short)
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
AC_CHECK_SIZEOF(long long)
AC_CHECK_SIZEOF(void *)
AC_CHECK_SIZEOF([short])
AC_CHECK_SIZEOF([int])
AC_CHECK_SIZEOF([long])
AC_CHECK_SIZEOF([long long])
AC_CHECK_SIZEOF([void *])
dnl
dnl Checks for non-universal or system-specific types.