stdint.m4 15 KB

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