1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
dnl Based on AC_NEED_STDINT_H by Guido Draheim <guidod@gmx.de> that can be
dnl found at http://www.gnu.org/software/ac-archive/. Do not complain him
dnl about this macro.
dnl
dnl $Id: stdint.m4,v 1.3 2003/01/13 19:54:44 mati Exp $
AC_DEFUN([AC_NEED_STDINT_H],
[AC_MSG_CHECKING([for uintXX_t types])
if test "x$1" = "x"; then
ac_stdint_h="stdint.h"
else
ac_stdint_h="$1"
fi
rm -f $ac_stdint_h
ac_header_stdint=""
for i in stdint.h inttypes.h sys/inttypes.h sys/int_types.h sys/types.h; do
if test "x$ac_header_stdint" = "x"; then
AC_TRY_COMPILE([#include <$i>], [uint32_t foo], [ac_header_stdint=$i])
fi
done
if test "x$ac_header_stdint" != "x" ; then
AC_MSG_RESULT([found in <$ac_header_stdint>])
if test "x$ac_header_stdint" != "xstdint.h" ; then
echo "#include <$ac_header_stdint>" > $ac_stdint_h
fi
else
AC_MSG_RESULT([not found, using reasonable defaults])
dnl let's make newer autoconf versions happy.
stdint_h_foobar=define
m4_pattern_allow([^__AC_STDINT_H$])
cat > $ac_stdint_h << EOF
#ifndef __AC_STDINT_H
#$stdint_h_foobar __AC_STDINT_H 1
/* ISO C 9X: 7.18 Integer types <stdint.h> */
#define __int8_t_defined
typedef signed char int8_t;
typedef unsigned char uint8_t;
typedef signed short int16_t;
typedef unsigned short uint16_t;
typedef signed int int32_t;
typedef unsigned int uint32_t;
#endif /* __AC_STDINT_H */
EOF
fi
])
|