2N/A# intmax.m4 serial 6 (gettext-0.18.2)
2N/Adnl Copyright (C) 2002-2005, 2008-2010 Free Software Foundation, Inc.
2N/Adnl This file is free software; the Free Software Foundation
2N/Adnl gives unlimited permission to copy and/or distribute it,
2N/Adnl with or without modifications, as long as this notice is preserved.
2N/A
2N/Adnl From Bruno Haible.
2N/Adnl Test whether the system has the 'intmax_t' type, but don't attempt to
2N/Adnl find a replacement if it is lacking.
2N/A
2N/AAC_DEFUN([gt_TYPE_INTMAX_T],
2N/A[
2N/A AC_REQUIRE([gl_AC_HEADER_INTTYPES_H])
2N/A AC_REQUIRE([gl_AC_HEADER_STDINT_H])
2N/A AC_CACHE_CHECK([for intmax_t], [gt_cv_c_intmax_t],
2N/A [AC_COMPILE_IFELSE(
2N/A [AC_LANG_PROGRAM(
2N/A [[
2N/A#include <stddef.h>
2N/A#include <stdlib.h>
2N/A#if HAVE_STDINT_H_WITH_UINTMAX
2N/A#include <stdint.h>
2N/A#endif
2N/A#if HAVE_INTTYPES_H_WITH_UINTMAX
2N/A#include <inttypes.h>
2N/A#endif
2N/A ]],
2N/A [[intmax_t x = -1;
2N/A return !x;]])],
2N/A [gt_cv_c_intmax_t=yes],
2N/A [gt_cv_c_intmax_t=no])])
2N/A if test $gt_cv_c_intmax_t = yes; then
2N/A AC_DEFINE([HAVE_INTMAX_T], [1],
2N/A [Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>.])
2N/A fi
2N/A])