From: Giuseppe Scrivano Date: Sun, 11 Jul 2010 01:01:32 +0000 (+0200) Subject: Quote AC_CHECK_SIZEOF argument. X-Git-Tag: v1.13~128 X-Git-Url: http://sjero.net/git/?p=wget;a=commitdiff_plain;h=04e4bd614db762d241f8f59da6c768f1064cc792 Quote AC_CHECK_SIZEOF argument. --- diff --git a/ChangeLog b/ChangeLog index 4dd89289..d3c6503d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-07-11 Giuseppe Scrivano + + * configure.ac (AC_CHECK_SIZEOF): Quote argument. + Reported by: Jochen Roderburg . + 2010-07-09 Giuseppe Scrivano * bootstrap.conf (buildreq): Relax gettext version to 0.17. diff --git a/configure.ac b/configure.ac index ffe55d35..9909138f 100644 --- a/configure.ac +++ b/configure.ac @@ -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.