stdint.m4 15 KB

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