Diff for /embedaddon/confuse/m4/inttypes_h.m4 between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2017/01/24 14:48:55 version 1.1.1.2, 2021/03/17 00:49:17
Line 1 Line 1
# inttypes_h.m4 serial 7# inttypes_h.m4 serial 10
dnl Copyright (C) 1997-2004, 2006 Free Software Foundation, Inc.dnl Copyright (C) 1997-2004, 2006, 2008-2013 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation  dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,  dnl gives unlimited permission to copy and/or distribute it,
 dnl with or without modifications, as long as this notice is preserved.  dnl with or without modifications, as long as this notice is preserved.
Line 11  dnl From Paul Eggert. Line 11  dnl From Paul Eggert.
   
 AC_DEFUN([gl_AC_HEADER_INTTYPES_H],  AC_DEFUN([gl_AC_HEADER_INTTYPES_H],
 [  [
  AC_CACHE_CHECK([for inttypes.h], gl_cv_header_inttypes_h,  AC_CACHE_CHECK([for inttypes.h], [gl_cv_header_inttypes_h],
  [AC_TRY_COMPILE(    [AC_COMPILE_IFELSE(
    [#include <sys/types.h>       [AC_LANG_PROGRAM(
#include <inttypes.h>],          [[
    [uintmax_t i = (uintmax_t) -1; return !i;],#include <sys/types.h>
    gl_cv_header_inttypes_h=yes,#include <inttypes.h>
    gl_cv_header_inttypes_h=no)])          ]],
           [[uintmax_t i = (uintmax_t) -1; return !i;]])],
        [gl_cv_header_inttypes_h=yes],
        [gl_cv_header_inttypes_h=no])])
   if test $gl_cv_header_inttypes_h = yes; then    if test $gl_cv_header_inttypes_h = yes; then
    AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H_WITH_UINTMAX, 1,    AC_DEFINE_UNQUOTED([HAVE_INTTYPES_H_WITH_UINTMAX], [1],
       [Define if <inttypes.h> exists, doesn't clash with <sys/types.h>,        [Define if <inttypes.h> exists, doesn't clash with <sys/types.h>,
        and declares uintmax_t. ])         and declares uintmax_t. ])
   fi    fi

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>