From e323abe5d9a686ac3df5b7d04e5e64e271e0a3b2 Mon Sep 17 00:00:00 2001
From: Yang Tse <yangsita@gmail.com>
Date: Tue, 28 Apr 2009 10:27:04 +0000
Subject: [PATCH] Moved CURL_INCLUDES_INTTYPES to curl-functions.m4 along with
 other CURL_INCLUDES_*

---
 acinclude.m4         | 24 ------------------------
 m4/curl-functions.m4 | 26 +++++++++++++++++++++++++-
 2 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/acinclude.m4 b/acinclude.m4
index cc3fc2fa00..d8f6682aba 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -2712,30 +2712,6 @@ _EOF
 ])
 
 
-dnl CURL_INCLUDES_INTTYPES
-dnl -------------------------------------------------
-dnl Set up variable with list of headers that must be
-dnl included when inttypes.h is to be included.
-
-AC_DEFUN([CURL_INCLUDES_INTTYPES], [
-curl_includes_inttypes="\
-/* includes start */
-#ifdef HAVE_SYS_TYPES_H
-# include <sys/types.h>
-#endif
-#ifdef HAVE_STDINT_H
-# include <stdint.h>
-#endif
-#ifdef HAVE_INTTYPES_H
-# include <inttypes.h>
-#endif
-/* includes end */"
-  AC_CHECK_HEADERS(
-    sys/types.h stdint.h inttypes.h,
-    [], [], [$curl_includes_inttypes])
-])
-
-
 dnl CURL_CONFIGURE_LONG
 dnl -------------------------------------------------
 dnl Find out the size of long as reported by sizeof() and define
diff --git a/m4/curl-functions.m4 b/m4/curl-functions.m4
index a9a16a9816..3523730001 100644
--- a/m4/curl-functions.m4
+++ b/m4/curl-functions.m4
@@ -22,7 +22,7 @@
 #***************************************************************************
 
 # File version for 'aclocal' use. Keep it a single number.
-# serial 46
+# serial 47
 
 
 dnl CURL_INCLUDES_ARPA_INET
@@ -103,6 +103,30 @@ curl_includes_ifaddrs="\
 ])
 
 
+dnl CURL_INCLUDES_INTTYPES
+dnl -------------------------------------------------
+dnl Set up variable with list of headers that must be
+dnl included when inttypes.h is to be included.
+
+AC_DEFUN([CURL_INCLUDES_INTTYPES], [
+curl_includes_inttypes="\
+/* includes start */
+#ifdef HAVE_SYS_TYPES_H
+# include <sys/types.h>
+#endif
+#ifdef HAVE_STDINT_H
+# include <stdint.h>
+#endif
+#ifdef HAVE_INTTYPES_H
+# include <inttypes.h>
+#endif
+/* includes end */"
+  AC_CHECK_HEADERS(
+    sys/types.h stdint.h inttypes.h,
+    [], [], [$curl_includes_inttypes])
+])
+
+
 dnl CURL_INCLUDES_NETDB
 dnl -------------------------------------------------
 dnl Set up variable with list of headers that must be
-- 
GitLab