mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Quote AC_CHECK_SIZEOF argument.
This commit is contained in:
parent
49d7bafd79
commit
04e4bd614d
@ -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>
|
2010-07-09 Giuseppe Scrivano <gscrivano@gnu.org>
|
||||||
|
|
||||||
* bootstrap.conf (buildreq): Relax gettext version to 0.17.
|
* bootstrap.conf (buildreq): Relax gettext version to 0.17.
|
||||||
|
10
configure.ac
10
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 integral types on older systems that fail to provide intN_t and
|
||||||
dnl uintN_t typedefs.
|
dnl uintN_t typedefs.
|
||||||
dnl
|
dnl
|
||||||
AC_CHECK_SIZEOF(short)
|
AC_CHECK_SIZEOF([short])
|
||||||
AC_CHECK_SIZEOF(int)
|
AC_CHECK_SIZEOF([int])
|
||||||
AC_CHECK_SIZEOF(long)
|
AC_CHECK_SIZEOF([long])
|
||||||
AC_CHECK_SIZEOF(long long)
|
AC_CHECK_SIZEOF([long long])
|
||||||
AC_CHECK_SIZEOF(void *)
|
AC_CHECK_SIZEOF([void *])
|
||||||
|
|
||||||
dnl
|
dnl
|
||||||
dnl Checks for non-universal or system-specific types.
|
dnl Checks for non-universal or system-specific types.
|
||||||
|
Loading…
Reference in New Issue
Block a user