diff options
author | Yang Tse <yangsita@gmail.com> | 2009-04-28 10:27:04 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-04-28 10:27:04 +0000 |
commit | e323abe5d9a686ac3df5b7d04e5e64e271e0a3b2 (patch) | |
tree | d1a2d8137e05ce5c95c635f2cacf6c1751a54323 /acinclude.m4 | |
parent | afc00b08d7b7c80caf4eef76a0f7261c52f4c8dd (diff) | |
download | curl-e323abe5d9a686ac3df5b7d04e5e64e271e0a3b2.tar.gz |
Moved CURL_INCLUDES_INTTYPES to curl-functions.m4 along with other CURL_INCLUDES_*
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index cc3fc2fa0..d8f6682ab 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 |