1 dnl @synopsis GCC_HEADER_STDINT [( HEADER-TO-GENERATE [, HEADERS-TO-CHECK])]
3 dnl the "ISO C9X: 7.18 Integer types <stdint.h>" section requires the
4 dnl existence of an include file <stdint.h> that defines a set of
5 dnl typedefs, especially uint8_t,int32_t,uintptr_t.
6 dnl Many older installations will not provide this file, but some will
7 dnl have the very same definitions in <inttypes.h>. In other enviroments
8 dnl we can use the inet-types in <sys/types.h> which would define the
9 dnl typedefs int8_t and u_int8_t respectivly.
11 dnl This macros will create a local "_stdint.h" or the headerfile given as
12 dnl an argument. In many cases that file will pick the definition from a
13 dnl "#include <stdint.h>" or "#include <inttypes.h>" statement, while
14 dnl in other environments it will provide the set of basic 'stdint's defined:
15 dnl int8_t,uint8_t,int16_t,uint16_t,int32_t,uint32_t,intptr_t,uintptr_t
16 dnl int_least32_t.. int_fast32_t.. intmax_t
17 dnl which may or may not rely on the definitions of other files.
19 dnl Sometimes the stdint.h or inttypes.h headers conflict with sys/types.h,
20 dnl so we test the headers together with sys/types.h and always include it
21 dnl into the generated header (to match the tests with the generated file).
22 dnl Hopefully this is not a big annoyance.
24 dnl If your installed header files require the stdint-types you will want to
25 dnl create an installable file mylib-int.h that all your other installable
26 dnl header may include. So, for a library package named "mylib", just use
27 dnl GCC_HEADER_STDINT(mylib-int.h)
28 dnl in configure.in and install that header file in Makefile.am along with
29 dnl the other headers (mylib.h). The mylib-specific headers can simply
30 dnl use "#include <mylib-int.h>" to obtain the stdint-types.
32 dnl Remember, if the system already had a valid <stdint.h>, the generated
33 dnl file will include it directly. No need for fuzzy HAVE_STDINT_H things...
35 dnl @author Guido Draheim <guidod@gmx.de>, Paolo Bonzini <bonzini@gnu.org>
37 AC_DEFUN([GCC_HEADER_STDINT],
38 [m4_define(_GCC_STDINT_H, m4_ifval($1, $1, _stdint.h))
40 inttype_headers=`echo inttypes.h sys/inttypes.h $2 | sed -e 's/,/ /g'`
42 acx_cv_header_stdint=stddef.h
43 acx_cv_header_stdint_kind="(already complete)"
44 for i in stdint.h $inttype_headers; do
45 unset ac_cv_type_uintptr_t
46 unset ac_cv_type_uintmax_t
47 unset ac_cv_type_int_least32_t
48 unset ac_cv_type_int_fast32_t
49 unset ac_cv_type_uint64_t
50 _AS_ECHO_N([looking for a compliant stdint.h in $i, ])
51 AC_CHECK_TYPE(uintmax_t,[acx_cv_header_stdint=$i],continue,[#include <sys/types.h>
53 AC_CHECK_TYPE(uintptr_t,,[acx_cv_header_stdint_kind="(mostly complete)"], [#include <sys/types.h>
55 AC_CHECK_TYPE(int_least32_t,,[acx_cv_header_stdint_kind="(mostly complete)"], [#include <sys/types.h>
57 AC_CHECK_TYPE(int_fast32_t,,[acx_cv_header_stdint_kind="(mostly complete)"], [#include <sys/types.h>
59 AC_CHECK_TYPE(uint64_t,,[acx_cv_header_stdint_kind="(lacks uint64_t)"], [#include <sys/types.h>
63 if test "$acx_cv_header_stdint" = stddef.h; then
64 acx_cv_header_stdint_kind="(lacks uintmax_t)"
65 for i in stdint.h $inttype_headers; do
66 unset ac_cv_type_uintptr_t
67 unset ac_cv_type_uint32_t
68 unset ac_cv_type_uint64_t
69 _AS_ECHO_N([looking for an incomplete stdint.h in $i, ])
70 AC_CHECK_TYPE(uint32_t,[acx_cv_header_stdint=$i],continue,[#include <sys/types.h>
72 AC_CHECK_TYPE(uint64_t,,,[#include <sys/types.h>
74 AC_CHECK_TYPE(uintptr_t,,,[#include <sys/types.h>
79 if test "$acx_cv_header_stdint" = stddef.h; then
80 acx_cv_header_stdint_kind="(u_intXX_t style)"
81 for i in sys/types.h $inttype_headers; do
82 unset ac_cv_type_u_int32_t
83 unset ac_cv_type_u_int64_t
84 _AS_ECHO_N([looking for u_intXX_t types in $i, ])
85 AC_CHECK_TYPE(u_int32_t,[acx_cv_header_stdint=$i],continue,[#include <sys/types.h>
87 AC_CHECK_TYPE(u_int64_t,,,[#include <sys/types.h>
92 if test "$acx_cv_header_stdint" = stddef.h; then
93 acx_cv_header_stdint_kind="(using manual detection)"
96 test -z "$ac_cv_type_uintptr_t" && ac_cv_type_uintptr_t=no
97 test -z "$ac_cv_type_uint64_t" && ac_cv_type_uint64_t=no
98 test -z "$ac_cv_type_u_int64_t" && ac_cv_type_u_int64_t=no
99 test -z "$ac_cv_type_int_least32_t" && ac_cv_type_int_least32_t=no
100 test -z "$ac_cv_type_int_fast32_t" && ac_cv_type_int_fast32_t=no
102 # ----------------- Summarize what we found so far
104 AC_MSG_CHECKING([what to include in _GCC_STDINT_H])
106 case `AS_BASENAME(_GCC_STDINT_H)` in
107 stdint.h) AC_MSG_WARN([are you sure you want it there?]) ;;
108 inttypes.h) AC_MSG_WARN([are you sure you want it there?]) ;;
112 AC_MSG_RESULT($acx_cv_header_stdint $acx_cv_header_stdint_kind)
114 # ----------------- done included file, check C basic types --------
116 # Lacking an uintptr_t? Test size of void *
117 case "$acx_cv_header_stdint:$ac_cv_type_uintptr_t" in
118 stddef.h:* | *:no) AC_CHECK_SIZEOF(void *) ;;
121 # Lacking an uint64_t? Test size of long
122 case "$acx_cv_header_stdint:$ac_cv_type_uint64_t:$ac_cv_type_u_int64_t" in
123 stddef.h:*:* | *:no:no) AC_CHECK_SIZEOF(long) ;;
126 if test $acx_cv_header_stdint = stddef.h; then
127 # Lacking a good header? Test size of everything and deduce all types.
129 AC_CHECK_SIZEOF(short)
130 AC_CHECK_SIZEOF(char)
132 AC_MSG_CHECKING(for type equivalent to int8_t)
133 case "$ac_cv_sizeof_char" in
134 1) acx_cv_type_int8_t=char ;;
135 *) AC_MSG_ERROR(no 8-bit type, please report a bug)
137 AC_MSG_RESULT($acx_cv_type_int8_t)
139 AC_MSG_CHECKING(for type equivalent to int16_t)
140 case "$ac_cv_sizeof_int:$ac_cv_sizeof_short" in
141 2:*) acx_cv_type_int16_t=int ;;
142 *:2) acx_cv_type_int16_t=short ;;
143 *) AC_MSG_ERROR(no 16-bit type, please report a bug)
145 AC_MSG_RESULT($acx_cv_type_int16_t)
147 AC_MSG_CHECKING(for type equivalent to int32_t)
148 case "$ac_cv_sizeof_int:$ac_cv_sizeof_long" in
149 4:*) acx_cv_type_int32_t=int ;;
150 *:4) acx_cv_type_int32_t=long ;;
151 *) AC_MSG_ERROR(no 32-bit type, please report a bug)
153 AC_MSG_RESULT($acx_cv_type_int32_t)
156 # These tests are here to make the output prettier
158 if test "$ac_cv_type_uint64_t" != yes && test "$ac_cv_type_u_int64_t" != yes; then
159 case "$ac_cv_sizeof_long" in
160 8) acx_cv_type_int64_t=long ;;
162 AC_MSG_CHECKING(for type equivalent to int64_t)
163 AC_MSG_RESULT(${acx_cv_type_int64_t-'using preprocessor symbols'})
166 # Now we can use the above types
168 if test "$ac_cv_type_uintptr_t" != yes; then
169 AC_MSG_CHECKING(for type equivalent to intptr_t)
170 case $ac_cv_sizeof_void_p in
171 2) acx_cv_type_intptr_t=int16_t ;;
172 4) acx_cv_type_intptr_t=int32_t ;;
173 8) acx_cv_type_intptr_t=int64_t ;;
174 *) AC_MSG_ERROR(no equivalent for intptr_t, please report a bug)
176 AC_MSG_RESULT($acx_cv_type_intptr_t)
179 # ----------------- done all checks, emit header -------------
180 AC_CONFIG_COMMANDS(_GCC_STDINT_H, [
181 if test "$GCC" = yes; then
182 echo "/* generated for " `$CC --version | sed 1q` "*/" > tmp-stdint.h
184 echo "/* generated for $CC */" > tmp-stdint.h
187 sed 's/^ *//' >> tmp-stdint.h <<EOF
189 #ifndef GCC_GENERATED_STDINT_H
190 #define GCC_GENERATED_STDINT_H 1
192 #include <sys/types.h>
195 if test "$acx_cv_header_stdint" != stdint.h; then
196 echo "#include <stddef.h>" >> tmp-stdint.h
198 if test "$acx_cv_header_stdint" != stddef.h; then
199 echo "#include <$acx_cv_header_stdint>" >> tmp-stdint.h
202 sed 's/^ *//' >> tmp-stdint.h <<EOF
203 /* glibc uses these symbols as guards to prevent redefinitions. */
204 #ifdef __int8_t_defined
209 #ifdef __uint32_t_defined
215 # ----------------- done header, emit basic int types -------------
216 if test "$acx_cv_header_stdint" = stddef.h; then
217 sed 's/^ *//' >> tmp-stdint.h <<EOF
221 #ifndef __uint8_t_defined
222 #define __uint8_t_defined
223 typedef unsigned $acx_cv_type_int8_t uint8_t;
229 #ifndef __uint16_t_defined
230 #define __uint16_t_defined
231 typedef unsigned $acx_cv_type_int16_t uint16_t;
237 #ifndef __uint32_t_defined
238 #define __uint32_t_defined
239 typedef unsigned $acx_cv_type_int32_t uint32_t;
245 #ifndef __int8_t_defined
246 #define __int8_t_defined
247 typedef $acx_cv_type_int8_t int8_t;
253 #ifndef __int16_t_defined
254 #define __int16_t_defined
255 typedef $acx_cv_type_int16_t int16_t;
261 #ifndef __int32_t_defined
262 #define __int32_t_defined
263 typedef $acx_cv_type_int32_t int32_t;
267 elif test "$ac_cv_type_u_int32_t" = yes; then
268 sed 's/^ *//' >> tmp-stdint.h <<EOF
270 /* int8_t int16_t int32_t defined by inet code, we do the u_intXX types */
283 #ifndef __uint8_t_defined
284 #define __uint8_t_defined
285 typedef u_int8_t uint8_t;
291 #ifndef __uint16_t_defined
292 #define __uint16_t_defined
293 typedef u_int16_t uint16_t;
299 #ifndef __uint32_t_defined
300 #define __uint32_t_defined
301 typedef u_int32_t uint32_t;
306 sed 's/^ *//' >> tmp-stdint.h <<EOF
308 /* Some systems have guard macros to prevent redefinitions, define them. */
330 # ------------- done basic int types, emit int64_t types ------------
331 if test "$ac_cv_type_uint64_t" = yes; then
332 sed 's/^ *//' >> tmp-stdint.h <<EOF
334 /* system headers have good uint64_t and int64_t */
342 elif test "$ac_cv_type_u_int64_t" = yes; then
343 sed 's/^ *//' >> tmp-stdint.h <<EOF
345 /* system headers have an u_int64_t (and int64_t) */
351 #ifndef __uint64_t_defined
352 #define __uint64_t_defined
353 typedef u_int64_t uint64_t;
357 elif test -n "$acx_cv_type_int64_t"; then
358 sed 's/^ *//' >> tmp-stdint.h <<EOF
360 /* architecture has a 64-bit type, $acx_cv_type_int64_t */
363 typedef $acx_cv_type_int64_t int64_t;
367 #ifndef __uint64_t_defined
368 #define __uint64_t_defined
369 typedef unsigned $acx_cv_type_int64_t uint64_t;
374 sed 's/^ *//' >> tmp-stdint.h <<EOF
376 /* some common heuristics for int64_t, using compiler-specific tests */
377 #if defined __STDC_VERSION__ && (__STDC_VERSION__-0) >= 199901L
380 #ifndef __int64_t_defined
381 typedef long long int64_t;
386 typedef unsigned long long uint64_t;
389 #elif defined __GNUC__ && defined (__STDC__) && __STDC__-0
390 /* NextStep 2.0 cc is really gcc 1.93 but it defines __GNUC__ = 2 and
391 does not implement __extension__. But that compiler doesn't define
393 # if __GNUC__ < 2 || (__NeXT__ && !__GNUC_MINOR__)
394 # define __extension__
399 __extension__ typedef long long int64_t;
403 __extension__ typedef unsigned long long uint64_t;
406 #elif !defined __STRICT_ANSI__
407 # if defined _MSC_VER || defined __WATCOMC__ || defined __BORLANDC__
411 typedef __int64 int64_t;
415 typedef unsigned __int64 uint64_t;
417 # endif /* compiler */
419 #endif /* ANSI version */
423 # ------------- done int64_t types, emit intptr types ------------
424 if test "$ac_cv_type_uintptr_t" != yes; then
425 sed 's/^ *//' >> tmp-stdint.h <<EOF
427 /* Define intptr_t based on sizeof(void*) = $ac_cv_sizeof_void_p */
428 #ifndef __uintptr_t_defined
429 typedef u$acx_cv_type_intptr_t uintptr_t;
431 #ifndef __intptr_t_defined
432 typedef $acx_cv_type_intptr_t intptr_t;
437 # ------------- done intptr types, emit int_least types ------------
438 if test "$ac_cv_type_int_least32_t" != yes; then
439 sed 's/^ *//' >> tmp-stdint.h <<EOF
441 /* Define int_least types */
442 typedef int8_t int_least8_t;
443 typedef int16_t int_least16_t;
444 typedef int32_t int_least32_t;
446 typedef int64_t int_least64_t;
449 typedef uint8_t uint_least8_t;
450 typedef uint16_t uint_least16_t;
451 typedef uint32_t uint_least32_t;
453 typedef uint64_t uint_least64_t;
458 # ------------- done intptr types, emit int_fast types ------------
459 if test "$ac_cv_type_int_fast32_t" != yes; then
460 dnl NOTE: The following code assumes that sizeof (int) > 1.
461 dnl Fix when strange machines are reported.
462 sed 's/^ *//' >> tmp-stdint.h <<EOF
464 /* Define int_fast types. short is often slow */
465 typedef int8_t int_fast8_t;
466 typedef int int_fast16_t;
467 typedef int32_t int_fast32_t;
469 typedef int64_t int_fast64_t;
472 typedef uint8_t uint_fast8_t;
473 typedef unsigned int uint_fast16_t;
474 typedef uint32_t uint_fast32_t;
476 typedef uint64_t uint_fast64_t;
481 if test "$ac_cv_type_uintmax_t" != yes; then
482 sed 's/^ *//' >> tmp-stdint.h <<EOF
484 /* Define intmax based on what we found */
486 typedef int64_t intmax_t;
488 typedef long intmax_t;
491 typedef uint64_t uintmax_t;
493 typedef unsigned long uintmax_t;
498 sed 's/^ *//' >> tmp-stdint.h <<EOF
500 #endif /* GCC_GENERATED_STDINT_H */
503 if test -r ]_GCC_STDINT_H[ && cmp -s tmp-stdint.h ]_GCC_STDINT_H[; then
506 mv -f tmp-stdint.h ]_GCC_STDINT_H[
512 acx_cv_header_stdint="$acx_cv_header_stdint"
513 acx_cv_type_int8_t="$acx_cv_type_int8_t"
514 acx_cv_type_int16_t="$acx_cv_type_int16_t"
515 acx_cv_type_int32_t="$acx_cv_type_int32_t"
516 acx_cv_type_int64_t="$acx_cv_type_int64_t"
517 acx_cv_type_intptr_t="$acx_cv_type_intptr_t"
518 ac_cv_type_uintmax_t="$ac_cv_type_uintmax_t"
519 ac_cv_type_uintptr_t="$ac_cv_type_uintptr_t"
520 ac_cv_type_uint64_t="$ac_cv_type_uint64_t"
521 ac_cv_type_u_int64_t="$ac_cv_type_u_int64_t"
522 ac_cv_type_u_int32_t="$ac_cv_type_u_int32_t"
523 ac_cv_type_int_least32_t="$ac_cv_type_int_least32_t"
524 ac_cv_type_int_fast32_t="$ac_cv_type_int_fast32_t"
525 ac_cv_sizeof_void_p="$ac_cv_sizeof_void_p"