stdint.m4 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  1. # stdint.m4 serial 48
  2. dnl Copyright (C) 2001-2016 Free Software Foundation, Inc.
  3. dnl This file is free software; the Free Software Foundation
  4. dnl gives unlimited permission to copy and/or distribute it,
  5. dnl with or without modifications, as long as this notice is preserved.
  6. dnl From Paul Eggert and Bruno Haible.
  7. dnl Test whether <stdint.h> is supported or must be substituted.
  8. AC_DEFUN_ONCE([gl_STDINT_H],
  9. [
  10. AC_PREREQ([2.59])dnl
  11. AC_REQUIRE([gl_LIMITS_H])
  12. dnl Check for long long int and unsigned long long int.
  13. AC_REQUIRE([AC_TYPE_LONG_LONG_INT])
  14. if test $ac_cv_type_long_long_int = yes; then
  15. HAVE_LONG_LONG_INT=1
  16. else
  17. HAVE_LONG_LONG_INT=0
  18. fi
  19. AC_SUBST([HAVE_LONG_LONG_INT])
  20. AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT])
  21. if test $ac_cv_type_unsigned_long_long_int = yes; then
  22. HAVE_UNSIGNED_LONG_LONG_INT=1
  23. else
  24. HAVE_UNSIGNED_LONG_LONG_INT=0
  25. fi
  26. AC_SUBST([HAVE_UNSIGNED_LONG_LONG_INT])
  27. dnl Check for <wchar.h>, in the same way as gl_WCHAR_H does.
  28. AC_CHECK_HEADERS_ONCE([wchar.h])
  29. if test $ac_cv_header_wchar_h = yes; then
  30. HAVE_WCHAR_H=1
  31. else
  32. HAVE_WCHAR_H=0
  33. fi
  34. AC_SUBST([HAVE_WCHAR_H])
  35. dnl Check for <inttypes.h>.
  36. dnl AC_INCLUDES_DEFAULT defines $ac_cv_header_inttypes_h.
  37. if test $ac_cv_header_inttypes_h = yes; then
  38. HAVE_INTTYPES_H=1
  39. else
  40. HAVE_INTTYPES_H=0
  41. fi
  42. AC_SUBST([HAVE_INTTYPES_H])
  43. dnl Check for <sys/types.h>.
  44. dnl AC_INCLUDES_DEFAULT defines $ac_cv_header_sys_types_h.
  45. if test $ac_cv_header_sys_types_h = yes; then
  46. HAVE_SYS_TYPES_H=1
  47. else
  48. HAVE_SYS_TYPES_H=0
  49. fi
  50. AC_SUBST([HAVE_SYS_TYPES_H])
  51. gl_CHECK_NEXT_HEADERS([stdint.h])
  52. if test $ac_cv_header_stdint_h = yes; then
  53. HAVE_STDINT_H=1
  54. else
  55. HAVE_STDINT_H=0
  56. fi
  57. AC_SUBST([HAVE_STDINT_H])
  58. dnl Now see whether we need a substitute <stdint.h>.
  59. if test $ac_cv_header_stdint_h = yes; then
  60. AC_CACHE_CHECK([whether stdint.h conforms to C99],
  61. [gl_cv_header_working_stdint_h],
  62. [gl_cv_header_working_stdint_h=no
  63. AC_COMPILE_IFELSE([
  64. AC_LANG_PROGRAM([[
  65. #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */
  66. #define __STDC_CONSTANT_MACROS 1
  67. #define __STDC_LIMIT_MACROS 1
  68. #include <stdint.h>
  69. /* Dragonfly defines WCHAR_MIN, WCHAR_MAX only in <wchar.h>. */
  70. #if !(defined WCHAR_MIN && defined WCHAR_MAX)
  71. #error "WCHAR_MIN, WCHAR_MAX not defined in <stdint.h>"
  72. #endif
  73. ]
  74. gl_STDINT_INCLUDES
  75. [
  76. #ifdef INT8_MAX
  77. int8_t a1 = INT8_MAX;
  78. int8_t a1min = INT8_MIN;
  79. #endif
  80. #ifdef INT16_MAX
  81. int16_t a2 = INT16_MAX;
  82. int16_t a2min = INT16_MIN;
  83. #endif
  84. #ifdef INT32_MAX
  85. int32_t a3 = INT32_MAX;
  86. int32_t a3min = INT32_MIN;
  87. #endif
  88. #ifdef INT64_MAX
  89. int64_t a4 = INT64_MAX;
  90. int64_t a4min = INT64_MIN;
  91. #endif
  92. #ifdef UINT8_MAX
  93. uint8_t b1 = UINT8_MAX;
  94. #else
  95. typedef int b1[(unsigned char) -1 != 255 ? 1 : -1];
  96. #endif
  97. #ifdef UINT16_MAX
  98. uint16_t b2 = UINT16_MAX;
  99. #endif
  100. #ifdef UINT32_MAX
  101. uint32_t b3 = UINT32_MAX;
  102. #endif
  103. #ifdef UINT64_MAX
  104. uint64_t b4 = UINT64_MAX;
  105. #endif
  106. int_least8_t c1 = INT8_C (0x7f);
  107. int_least8_t c1max = INT_LEAST8_MAX;
  108. int_least8_t c1min = INT_LEAST8_MIN;
  109. int_least16_t c2 = INT16_C (0x7fff);
  110. int_least16_t c2max = INT_LEAST16_MAX;
  111. int_least16_t c2min = INT_LEAST16_MIN;
  112. int_least32_t c3 = INT32_C (0x7fffffff);
  113. int_least32_t c3max = INT_LEAST32_MAX;
  114. int_least32_t c3min = INT_LEAST32_MIN;
  115. int_least64_t c4 = INT64_C (0x7fffffffffffffff);
  116. int_least64_t c4max = INT_LEAST64_MAX;
  117. int_least64_t c4min = INT_LEAST64_MIN;
  118. uint_least8_t d1 = UINT8_C (0xff);
  119. uint_least8_t d1max = UINT_LEAST8_MAX;
  120. uint_least16_t d2 = UINT16_C (0xffff);
  121. uint_least16_t d2max = UINT_LEAST16_MAX;
  122. uint_least32_t d3 = UINT32_C (0xffffffff);
  123. uint_least32_t d3max = UINT_LEAST32_MAX;
  124. uint_least64_t d4 = UINT64_C (0xffffffffffffffff);
  125. uint_least64_t d4max = UINT_LEAST64_MAX;
  126. int_fast8_t e1 = INT_FAST8_MAX;
  127. int_fast8_t e1min = INT_FAST8_MIN;
  128. int_fast16_t e2 = INT_FAST16_MAX;
  129. int_fast16_t e2min = INT_FAST16_MIN;
  130. int_fast32_t e3 = INT_FAST32_MAX;
  131. int_fast32_t e3min = INT_FAST32_MIN;
  132. int_fast64_t e4 = INT_FAST64_MAX;
  133. int_fast64_t e4min = INT_FAST64_MIN;
  134. uint_fast8_t f1 = UINT_FAST8_MAX;
  135. uint_fast16_t f2 = UINT_FAST16_MAX;
  136. uint_fast32_t f3 = UINT_FAST32_MAX;
  137. uint_fast64_t f4 = UINT_FAST64_MAX;
  138. #ifdef INTPTR_MAX
  139. intptr_t g = INTPTR_MAX;
  140. intptr_t gmin = INTPTR_MIN;
  141. #endif
  142. #ifdef UINTPTR_MAX
  143. uintptr_t h = UINTPTR_MAX;
  144. #endif
  145. intmax_t i = INTMAX_MAX;
  146. uintmax_t j = UINTMAX_MAX;
  147. /* Check that SIZE_MAX has the correct type, if possible. */
  148. #if 201112 <= __STDC_VERSION__
  149. int k = _Generic (SIZE_MAX, size_t: 0);
  150. #elif (2 <= __GNUC__ || defined __IBM__TYPEOF__ \
  151. || (0x5110 <= __SUNPRO_C && !__STDC__))
  152. extern size_t k;
  153. extern __typeof__ (SIZE_MAX) k;
  154. #endif
  155. #include <limits.h> /* for CHAR_BIT */
  156. #define TYPE_MINIMUM(t) \
  157. ((t) ((t) 0 < (t) -1 ? (t) 0 : ~ TYPE_MAXIMUM (t)))
  158. #define TYPE_MAXIMUM(t) \
  159. ((t) ((t) 0 < (t) -1 \
  160. ? (t) -1 \
  161. : ((((t) 1 << (sizeof (t) * CHAR_BIT - 2)) - 1) * 2 + 1)))
  162. struct s {
  163. int check_PTRDIFF:
  164. PTRDIFF_MIN == TYPE_MINIMUM (ptrdiff_t)
  165. && PTRDIFF_MAX == TYPE_MAXIMUM (ptrdiff_t)
  166. ? 1 : -1;
  167. /* Detect bug in FreeBSD 6.0 / ia64. */
  168. int check_SIG_ATOMIC:
  169. SIG_ATOMIC_MIN == TYPE_MINIMUM (sig_atomic_t)
  170. && SIG_ATOMIC_MAX == TYPE_MAXIMUM (sig_atomic_t)
  171. ? 1 : -1;
  172. int check_SIZE: SIZE_MAX == TYPE_MAXIMUM (size_t) ? 1 : -1;
  173. int check_WCHAR:
  174. WCHAR_MIN == TYPE_MINIMUM (wchar_t)
  175. && WCHAR_MAX == TYPE_MAXIMUM (wchar_t)
  176. ? 1 : -1;
  177. /* Detect bug in mingw. */
  178. int check_WINT:
  179. WINT_MIN == TYPE_MINIMUM (wint_t)
  180. && WINT_MAX == TYPE_MAXIMUM (wint_t)
  181. ? 1 : -1;
  182. /* Detect bugs in glibc 2.4 and Solaris 10 stdint.h, among others. */
  183. int check_UINT8_C:
  184. (-1 < UINT8_C (0)) == (-1 < (uint_least8_t) 0) ? 1 : -1;
  185. int check_UINT16_C:
  186. (-1 < UINT16_C (0)) == (-1 < (uint_least16_t) 0) ? 1 : -1;
  187. /* Detect bugs in OpenBSD 3.9 stdint.h. */
  188. #ifdef UINT8_MAX
  189. int check_uint8: (uint8_t) -1 == UINT8_MAX ? 1 : -1;
  190. #endif
  191. #ifdef UINT16_MAX
  192. int check_uint16: (uint16_t) -1 == UINT16_MAX ? 1 : -1;
  193. #endif
  194. #ifdef UINT32_MAX
  195. int check_uint32: (uint32_t) -1 == UINT32_MAX ? 1 : -1;
  196. #endif
  197. #ifdef UINT64_MAX
  198. int check_uint64: (uint64_t) -1 == UINT64_MAX ? 1 : -1;
  199. #endif
  200. int check_uint_least8: (uint_least8_t) -1 == UINT_LEAST8_MAX ? 1 : -1;
  201. int check_uint_least16: (uint_least16_t) -1 == UINT_LEAST16_MAX ? 1 : -1;
  202. int check_uint_least32: (uint_least32_t) -1 == UINT_LEAST32_MAX ? 1 : -1;
  203. int check_uint_least64: (uint_least64_t) -1 == UINT_LEAST64_MAX ? 1 : -1;
  204. int check_uint_fast8: (uint_fast8_t) -1 == UINT_FAST8_MAX ? 1 : -1;
  205. int check_uint_fast16: (uint_fast16_t) -1 == UINT_FAST16_MAX ? 1 : -1;
  206. int check_uint_fast32: (uint_fast32_t) -1 == UINT_FAST32_MAX ? 1 : -1;
  207. int check_uint_fast64: (uint_fast64_t) -1 == UINT_FAST64_MAX ? 1 : -1;
  208. int check_uintptr: (uintptr_t) -1 == UINTPTR_MAX ? 1 : -1;
  209. int check_uintmax: (uintmax_t) -1 == UINTMAX_MAX ? 1 : -1;
  210. int check_size: (size_t) -1 == SIZE_MAX ? 1 : -1;
  211. };
  212. ]])],
  213. [dnl Determine whether the various *_MIN, *_MAX macros are usable
  214. dnl in preprocessor expression. We could do it by compiling a test
  215. dnl program for each of these macros. It is faster to run a program
  216. dnl that inspects the macro expansion.
  217. dnl This detects a bug on HP-UX 11.23/ia64.
  218. AC_RUN_IFELSE([
  219. AC_LANG_PROGRAM([[
  220. #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */
  221. #define __STDC_CONSTANT_MACROS 1
  222. #define __STDC_LIMIT_MACROS 1
  223. #include <stdint.h>
  224. ]
  225. gl_STDINT_INCLUDES
  226. [
  227. #include <stdio.h>
  228. #include <string.h>
  229. #define MVAL(macro) MVAL1(macro)
  230. #define MVAL1(expression) #expression
  231. static const char *macro_values[] =
  232. {
  233. #ifdef INT8_MAX
  234. MVAL (INT8_MAX),
  235. #endif
  236. #ifdef INT16_MAX
  237. MVAL (INT16_MAX),
  238. #endif
  239. #ifdef INT32_MAX
  240. MVAL (INT32_MAX),
  241. #endif
  242. #ifdef INT64_MAX
  243. MVAL (INT64_MAX),
  244. #endif
  245. #ifdef UINT8_MAX
  246. MVAL (UINT8_MAX),
  247. #endif
  248. #ifdef UINT16_MAX
  249. MVAL (UINT16_MAX),
  250. #endif
  251. #ifdef UINT32_MAX
  252. MVAL (UINT32_MAX),
  253. #endif
  254. #ifdef UINT64_MAX
  255. MVAL (UINT64_MAX),
  256. #endif
  257. NULL
  258. };
  259. ]], [[
  260. const char **mv;
  261. for (mv = macro_values; *mv != NULL; mv++)
  262. {
  263. const char *value = *mv;
  264. /* Test whether it looks like a cast expression. */
  265. if (strncmp (value, "((unsigned int)"/*)*/, 15) == 0
  266. || strncmp (value, "((unsigned short)"/*)*/, 17) == 0
  267. || strncmp (value, "((unsigned char)"/*)*/, 16) == 0
  268. || strncmp (value, "((int)"/*)*/, 6) == 0
  269. || strncmp (value, "((signed short)"/*)*/, 15) == 0
  270. || strncmp (value, "((signed char)"/*)*/, 14) == 0)
  271. return mv - macro_values + 1;
  272. }
  273. return 0;
  274. ]])],
  275. [gl_cv_header_working_stdint_h=yes],
  276. [],
  277. [dnl When cross-compiling, assume it works.
  278. gl_cv_header_working_stdint_h=yes
  279. ])
  280. ])
  281. ])
  282. fi
  283. HAVE_C99_STDINT_H=0
  284. HAVE_SYS_BITYPES_H=0
  285. HAVE_SYS_INTTYPES_H=0
  286. STDINT_H=stdint.h
  287. if test "$gl_cv_header_working_stdint_h" = yes; then
  288. HAVE_C99_STDINT_H=1
  289. dnl Now see whether the system <stdint.h> works without
  290. dnl __STDC_CONSTANT_MACROS/__STDC_LIMIT_MACROS defined.
  291. AC_CACHE_CHECK([whether stdint.h predates C++11],
  292. [gl_cv_header_stdint_predates_cxx11_h],
  293. [gl_cv_header_stdint_predates_cxx11_h=yes
  294. AC_COMPILE_IFELSE([
  295. AC_LANG_PROGRAM([[
  296. #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */
  297. #include <stdint.h>
  298. ]
  299. gl_STDINT_INCLUDES
  300. [
  301. intmax_t im = INTMAX_MAX;
  302. int32_t i32 = INT32_C (0x7fffffff);
  303. ]])],
  304. [gl_cv_header_stdint_predates_cxx11_h=no])])
  305. if test "$gl_cv_header_stdint_predates_cxx11_h" = yes; then
  306. AC_DEFINE([__STDC_CONSTANT_MACROS], [1],
  307. [Define to 1 if the system <stdint.h> predates C++11.])
  308. AC_DEFINE([__STDC_LIMIT_MACROS], [1],
  309. [Define to 1 if the system <stdint.h> predates C++11.])
  310. fi
  311. AC_CACHE_CHECK([whether stdint.h has UINTMAX_WIDTH etc.],
  312. [gl_cv_header_stdint_width],
  313. [gl_cv_header_stdint_width=no
  314. AC_COMPILE_IFELSE(
  315. [AC_LANG_PROGRAM([[
  316. /* Work if build is not clean. */
  317. #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1
  318. #ifndef __STDC_WANT_IEC_60559_BFP_EXT__
  319. #define __STDC_WANT_IEC_60559_BFP_EXT__ 1
  320. #endif
  321. #include <stdint.h>
  322. ]gl_STDINT_INCLUDES[
  323. int iw = UINTMAX_WIDTH;
  324. ]])],
  325. [gl_cv_header_stdint_width=yes])])
  326. if test "$gl_cv_header_stdint_width" = yes; then
  327. STDINT_H=
  328. fi
  329. else
  330. dnl Check for <sys/inttypes.h>, and for
  331. dnl <sys/bitypes.h> (used in Linux libc4 >= 4.6.7 and libc5).
  332. AC_CHECK_HEADERS([sys/inttypes.h sys/bitypes.h])
  333. if test $ac_cv_header_sys_inttypes_h = yes; then
  334. HAVE_SYS_INTTYPES_H=1
  335. fi
  336. if test $ac_cv_header_sys_bitypes_h = yes; then
  337. HAVE_SYS_BITYPES_H=1
  338. fi
  339. gl_STDINT_TYPE_PROPERTIES
  340. fi
  341. # The substitute stdint.h needs the substitute limit.h's _GL_INTEGER_WIDTH.
  342. LIMITS_H=limits.h
  343. AM_CONDITIONAL([GL_GENERATE_LIMITS_H], [test -n "$LIMITS_H"])
  344. AC_SUBST([HAVE_C99_STDINT_H])
  345. AC_SUBST([HAVE_SYS_BITYPES_H])
  346. AC_SUBST([HAVE_SYS_INTTYPES_H])
  347. AC_SUBST([STDINT_H])
  348. AM_CONDITIONAL([GL_GENERATE_STDINT_H], [test -n "$STDINT_H"])
  349. ])
  350. dnl gl_STDINT_BITSIZEOF(TYPES, INCLUDES)
  351. dnl Determine the size of each of the given types in bits.
  352. AC_DEFUN([gl_STDINT_BITSIZEOF],
  353. [
  354. dnl Use a shell loop, to avoid bloating configure, and
  355. dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into
  356. dnl config.h.in,
  357. dnl - extra AC_SUBST calls, so that the right substitutions are made.
  358. m4_foreach_w([gltype], [$1],
  359. [AH_TEMPLATE([BITSIZEOF_]m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]),
  360. [Define to the number of bits in type ']gltype['.])])
  361. for gltype in $1 ; do
  362. AC_CACHE_CHECK([for bit size of $gltype], [gl_cv_bitsizeof_${gltype}],
  363. [AC_COMPUTE_INT([result], [sizeof ($gltype) * CHAR_BIT],
  364. [$2
  365. #include <limits.h>], [result=unknown])
  366. eval gl_cv_bitsizeof_${gltype}=\$result
  367. ])
  368. eval result=\$gl_cv_bitsizeof_${gltype}
  369. if test $result = unknown; then
  370. dnl Use a nonempty default, because some compilers, such as IRIX 5 cc,
  371. dnl do a syntax check even on unused #if conditions and give an error
  372. dnl on valid C code like this:
  373. dnl #if 0
  374. dnl # if > 32
  375. dnl # endif
  376. dnl #endif
  377. result=0
  378. fi
  379. GLTYPE=`echo "$gltype" | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`
  380. AC_DEFINE_UNQUOTED([BITSIZEOF_${GLTYPE}], [$result])
  381. eval BITSIZEOF_${GLTYPE}=\$result
  382. done
  383. m4_foreach_w([gltype], [$1],
  384. [AC_SUBST([BITSIZEOF_]m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]))])
  385. ])
  386. dnl gl_CHECK_TYPES_SIGNED(TYPES, INCLUDES)
  387. dnl Determine the signedness of each of the given types.
  388. dnl Define HAVE_SIGNED_TYPE if type is signed.
  389. AC_DEFUN([gl_CHECK_TYPES_SIGNED],
  390. [
  391. dnl Use a shell loop, to avoid bloating configure, and
  392. dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into
  393. dnl config.h.in,
  394. dnl - extra AC_SUBST calls, so that the right substitutions are made.
  395. m4_foreach_w([gltype], [$1],
  396. [AH_TEMPLATE([HAVE_SIGNED_]m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]),
  397. [Define to 1 if ']gltype[' is a signed integer type.])])
  398. for gltype in $1 ; do
  399. AC_CACHE_CHECK([whether $gltype is signed], [gl_cv_type_${gltype}_signed],
  400. [AC_COMPILE_IFELSE(
  401. [AC_LANG_PROGRAM([$2[
  402. int verify[2 * (($gltype) -1 < ($gltype) 0) - 1];]])],
  403. result=yes, result=no)
  404. eval gl_cv_type_${gltype}_signed=\$result
  405. ])
  406. eval result=\$gl_cv_type_${gltype}_signed
  407. GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`
  408. if test "$result" = yes; then
  409. AC_DEFINE_UNQUOTED([HAVE_SIGNED_${GLTYPE}], [1])
  410. eval HAVE_SIGNED_${GLTYPE}=1
  411. else
  412. eval HAVE_SIGNED_${GLTYPE}=0
  413. fi
  414. done
  415. m4_foreach_w([gltype], [$1],
  416. [AC_SUBST([HAVE_SIGNED_]m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]))])
  417. ])
  418. dnl gl_INTEGER_TYPE_SUFFIX(TYPES, INCLUDES)
  419. dnl Determine the suffix to use for integer constants of the given types.
  420. dnl Define t_SUFFIX for each such type.
  421. AC_DEFUN([gl_INTEGER_TYPE_SUFFIX],
  422. [
  423. dnl Use a shell loop, to avoid bloating configure, and
  424. dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into
  425. dnl config.h.in,
  426. dnl - extra AC_SUBST calls, so that the right substitutions are made.
  427. m4_foreach_w([gltype], [$1],
  428. [AH_TEMPLATE(m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_])[_SUFFIX],
  429. [Define to l, ll, u, ul, ull, etc., as suitable for
  430. constants of type ']gltype['.])])
  431. for gltype in $1 ; do
  432. AC_CACHE_CHECK([for $gltype integer literal suffix],
  433. [gl_cv_type_${gltype}_suffix],
  434. [eval gl_cv_type_${gltype}_suffix=no
  435. eval result=\$gl_cv_type_${gltype}_signed
  436. if test "$result" = yes; then
  437. glsufu=
  438. else
  439. glsufu=u
  440. fi
  441. for glsuf in "$glsufu" ${glsufu}l ${glsufu}ll ${glsufu}i64; do
  442. case $glsuf in
  443. '') gltype1='int';;
  444. l) gltype1='long int';;
  445. ll) gltype1='long long int';;
  446. i64) gltype1='__int64';;
  447. u) gltype1='unsigned int';;
  448. ul) gltype1='unsigned long int';;
  449. ull) gltype1='unsigned long long int';;
  450. ui64)gltype1='unsigned __int64';;
  451. esac
  452. AC_COMPILE_IFELSE(
  453. [AC_LANG_PROGRAM([$2[
  454. extern $gltype foo;
  455. extern $gltype1 foo;]])],
  456. [eval gl_cv_type_${gltype}_suffix=\$glsuf])
  457. eval result=\$gl_cv_type_${gltype}_suffix
  458. test "$result" != no && break
  459. done])
  460. GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`
  461. eval result=\$gl_cv_type_${gltype}_suffix
  462. test "$result" = no && result=
  463. eval ${GLTYPE}_SUFFIX=\$result
  464. AC_DEFINE_UNQUOTED([${GLTYPE}_SUFFIX], [$result])
  465. done
  466. m4_foreach_w([gltype], [$1],
  467. [AC_SUBST(m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_])[_SUFFIX])])
  468. ])
  469. dnl gl_STDINT_INCLUDES
  470. AC_DEFUN([gl_STDINT_INCLUDES],
  471. [[
  472. /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
  473. included before <wchar.h>. */
  474. #include <stddef.h>
  475. #include <signal.h>
  476. #if HAVE_WCHAR_H
  477. # include <stdio.h>
  478. # include <time.h>
  479. # include <wchar.h>
  480. #endif
  481. ]])
  482. dnl gl_STDINT_TYPE_PROPERTIES
  483. dnl Compute HAVE_SIGNED_t, BITSIZEOF_t and t_SUFFIX, for all the types t
  484. dnl of interest to stdint.in.h.
  485. AC_DEFUN([gl_STDINT_TYPE_PROPERTIES],
  486. [
  487. AC_REQUIRE([gl_MULTIARCH])
  488. if test $APPLE_UNIVERSAL_BUILD = 0; then
  489. gl_STDINT_BITSIZEOF([ptrdiff_t size_t],
  490. [gl_STDINT_INCLUDES])
  491. fi
  492. gl_STDINT_BITSIZEOF([sig_atomic_t wchar_t wint_t],
  493. [gl_STDINT_INCLUDES])
  494. gl_CHECK_TYPES_SIGNED([sig_atomic_t wchar_t wint_t],
  495. [gl_STDINT_INCLUDES])
  496. gl_cv_type_ptrdiff_t_signed=yes
  497. gl_cv_type_size_t_signed=no
  498. if test $APPLE_UNIVERSAL_BUILD = 0; then
  499. gl_INTEGER_TYPE_SUFFIX([ptrdiff_t size_t],
  500. [gl_STDINT_INCLUDES])
  501. fi
  502. gl_INTEGER_TYPE_SUFFIX([sig_atomic_t wchar_t wint_t],
  503. [gl_STDINT_INCLUDES])
  504. dnl If wint_t is smaller than 'int', it cannot satisfy the ISO C 99
  505. dnl requirement that wint_t is "unchanged by default argument promotions".
  506. dnl In this case gnulib's <wchar.h> and <wctype.h> override wint_t.
  507. dnl Set the variable BITSIZEOF_WINT_T accordingly.
  508. if test $BITSIZEOF_WINT_T -lt 32; then
  509. BITSIZEOF_WINT_T=32
  510. fi
  511. ])
  512. dnl Autoconf >= 2.61 has AC_COMPUTE_INT built-in.
  513. dnl Remove this when we can assume autoconf >= 2.61.
  514. m4_ifdef([AC_COMPUTE_INT], [], [
  515. AC_DEFUN([AC_COMPUTE_INT], [_AC_COMPUTE_INT([$2],[$1],[$3],[$4])])
  516. ])