From: Paul Eggert Date: Tue, 29 May 2007 05:36:28 +0000 (+0000) Subject: * doc/autoconf.texi (Particular Types): AC_TYPE_INT8_T does not X-Git-Tag: v2.62~306 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2f7eaa0d6513e815ca39540b2cafce692050432c;p=thirdparty%2Fautoconf.git * doc/autoconf.texi (Particular Types): AC_TYPE_INT8_T does not define HAVE_INT8_T, and likewise for similar macros. Problem reported by Patrick Welche in . --- diff --git a/ChangeLog b/ChangeLog index 4fc694a8..b44fdd6b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2007-05-28 Paul Eggert + + * doc/autoconf.texi (Particular Types): AC_TYPE_INT8_T does not + define HAVE_INT8_T, and likewise for similar macros. + Problem reported by Patrick Welche in + . + 2007-05-25 Noah Misch * bin/Makefile.am ($(top_builddir)/bin/autom4te): New dependency. diff --git a/doc/autoconf.texi b/doc/autoconf.texi index b0f4cf17..58ceb587 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -5907,8 +5907,8 @@ is the base type of the array argument to @code{getgroups}. @acindex{TYPE_INT8_T} @cvindex HAVE_INT8_T @cvindex int8_t -If @file{stdint.h} or @file{inttypes.h} defines the type @code{int8_t}, -define @code{HAVE_INT8_T}. Otherwise, define @code{int8_t} to a signed +If @file{stdint.h} or @file{inttypes.h} does not define the type +@code{int8_t}, define @code{int8_t} to a signed integer type that is exactly 8 bits wide and that uses two's complement representation, if such a type exists. @end defmac @@ -6056,8 +6056,8 @@ headers do not define them. @acindex{TYPE_UINT8_T} @cvindex HAVE_UINT8_T @cvindex uint8_t -If @file{stdint.h} or @file{inttypes.h} defines the type @code{uint8_t}, -define @code{HAVE_UINT8_T}. Otherwise, define @code{uint8_t} to an +If @file{stdint.h} or @file{inttypes.h} does not define the type +@code{uint8_t}, define @code{uint8_t} to an unsigned integer type that is exactly 8 bits wide, if such a type exists. @end defmac