stdint.m4 18 KB

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