From: Akim Demaille Date: Fri, 25 Feb 2000 17:49:29 +0000 (+0000) Subject: * src/acgeneral.texi (AC_INIT_NOTICE): Include inttypes.h in the X-Git-Tag: autoconf-2.50~1123 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6cf2777ddecd4887864b8e16d14cfc56d61a291;p=thirdparty%2Fautoconf.git * src/acgeneral.texi (AC_INIT_NOTICE): Include inttypes.h in the ac_includes_default. * doc/autoconf.texi (Default Includes): Adjust. --- diff --git a/ChangeLog b/ChangeLog index d14d85493..3e38f859e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2000-02-25 Akim Demaille + + * src/acgeneral.texi (AC_INIT_NOTICE): Include inttypes.h in the + ac_includes_default. + * doc/autoconf.texi (Default Includes): Adjust. + 2000-02-25 Akim Demaille Export the knowledge on disabling echo's trailing new line. diff --git a/acgeneral.m4 b/acgeneral.m4 index 6dc8eb95a..fcf0e951a 100644 --- a/acgeneral.m4 +++ b/acgeneral.m4 @@ -513,7 +513,8 @@ popdef([AC_Prefix])dnl AC_DEFUN(AC_INIT_NOTICE, [# Guess values for system-dependent variables and create Makefiles. # Generated automatically using Autoconf version ]AC_ACVERSION[ -# Copyright (C) 1992, 93, 94, 95, 96, 98, 1999 Free Software Foundation, Inc. +# Copyright (C) 1992, 93, 94, 95, 96, 98, 99, 2000 +# Free Software Foundation, Inc. # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. @@ -546,6 +547,9 @@ ac_includes_default="\ # include # endif #endif +#if HAVE_INTTYPES_H +# include +#endif #if HAVE_UNISTD_H # include #endif" diff --git a/doc/autoconf.texi b/doc/autoconf.texi index 5a6d7a5b6..95d767797 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -1919,6 +1919,9 @@ Most generic macros provide the following default set of includes: # include # endif #endif +#if HAVE_INTTYPES_H +# include +#endif #if HAVE_UNISTD_H # include #endif diff --git a/lib/autoconf/general.m4 b/lib/autoconf/general.m4 index 6dc8eb95a..fcf0e951a 100644 --- a/lib/autoconf/general.m4 +++ b/lib/autoconf/general.m4 @@ -513,7 +513,8 @@ popdef([AC_Prefix])dnl AC_DEFUN(AC_INIT_NOTICE, [# Guess values for system-dependent variables and create Makefiles. # Generated automatically using Autoconf version ]AC_ACVERSION[ -# Copyright (C) 1992, 93, 94, 95, 96, 98, 1999 Free Software Foundation, Inc. +# Copyright (C) 1992, 93, 94, 95, 96, 98, 99, 2000 +# Free Software Foundation, Inc. # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. @@ -546,6 +547,9 @@ ac_includes_default="\ # include # endif #endif +#if HAVE_INTTYPES_H +# include +#endif #if HAVE_UNISTD_H # include #endif"