|
# intmax_t.m4 serial 9 |
|
dnl Copyright (C) 1997-2004, 2006-2007, 2009-2023 Free Software Foundation, |
|
dnl Inc. |
|
dnl This file is free software; the Free Software Foundation |
|
dnl gives unlimited permission to copy and/or distribute it, |
|
dnl with or without modifications, as long as this notice is preserved. |
|
|
|
dnl From Paul Eggert. |
|
|
|
AC_PREREQ() |
|
|
|
# Define intmax_t to 'long' or 'long long' |
|
# if it is not already defined in <stdint.h> or <inttypes.h>. |
|
|
|
AC_DEFUN(, |
|
|
|
dnl For simplicity, we assume that a header file defines 'intmax_t' if and |
|
dnl only if it defines 'uintmax_t'. |
|
AC_REQUIRE() |
|
AC_REQUIRE() |
|
if test $gl_cv_header_inttypes_h = no && test $gl_cv_header_stdint_h = no; then |
|
AC_DEFINE_UNQUOTED(, , |
|
) |
|
else |
|
AC_DEFINE(, , |
|
) |
|
fi |
|
]) |
|
|
|
dnl An alternative would be to explicitly test for 'intmax_t'. |
|
|
|
AC_DEFUN(, |
|
|
|
AC_REQUIRE() |
|
AC_REQUIRE() |
|
AC_CACHE_CHECK(, , |
|
|
|
|
|
|
|
#include <stddef.h> |
|
#include <stdlib.h> |
|
#if HAVE_STDINT_H_WITH_UINTMAX |
|
#include <stdint.h> |
|
#endif |
|
#if HAVE_INTTYPES_H_WITH_UINTMAX |
|
#include <inttypes.h> |
|
#endif |
|
]], |
|
)], |
|
, |
|
)]) |
|
if test $gt_cv_c_intmax_t = yes; then |
|
AC_DEFINE(, , |
|
) |
|
else |
|
AC_DEFINE_UNQUOTED(, , |
|
) |
|
fi |
|
]) |
|
|