]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
<inttypes.h> seems to be the proper header for uint16_t etc not <stdint.h>,
authorhno <>
Sat, 20 Apr 2002 02:54:19 +0000 (02:54 +0000)
committerhno <>
Sat, 20 Apr 2002 02:54:19 +0000 (02:54 +0000)
at least according to SUSv2.

acinclude.m4

index 6f599c24353d82e81ea480f043d5e26296f03f72..589fc0cd88c2d350607e599610c5c44bc6935bef 100644 (file)
@@ -13,8 +13,8 @@ changequote([, ])dnl
 AC_MSG_CHECKING(size of $1)
 AC_CACHE_VAL(AC_CV_NAME,
 [AC_TRY_RUN([#include <stdio.h>
-#if HAVE_STDINT_H
-#include <stdint.h>
+#if HAVE_INTTYPES_H
+#include <inttypes.h>
 #endif
 #if HAVE_SYS_TYPES_H
 #include <sys/types.h>