]> sjero.net Git - wget/commitdiff
Quote AC_CHECK_SIZEOF argument.
authorGiuseppe Scrivano <gscrivano@gnu.org>
Sun, 11 Jul 2010 01:01:32 +0000 (03:01 +0200)
committerGiuseppe Scrivano <gscrivano@gnu.org>
Sun, 11 Jul 2010 01:01:32 +0000 (03:01 +0200)
ChangeLog
configure.ac

index 4dd89289574b0ee3f6a5606d15be38a39f5735ff..d3c6503d998a78b63991b36945bffa042b94f1a3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
 2010-07-09  Giuseppe Scrivano  <gscrivano@gnu.org>
 
        * bootstrap.conf (buildreq): Relax gettext version to 0.17.
index ffe55d35169e5cca2c895a2a507f6ee87f0ea244..9909138faa60c85114563d0425bbf3bf322a9eca 100644 (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
 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.
 
 dnl
 dnl Checks for non-universal or system-specific types.