]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* doc/autoconf.texi (Particular Types): AC_TYPE_INT8_T does not
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 29 May 2007 05:36:28 +0000 (05:36 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 29 May 2007 05:36:28 +0000 (05:36 +0000)
define HAVE_INT8_T, and likewise for similar macros.
Problem reported by Patrick Welche in
<http://lists.gnu.org/archive/html/autoconf/2007-05/msg00062.html>.

ChangeLog
doc/autoconf.texi

index 4fc694a8fa8ba8c43a8054c228723619afc96c4e..b44fdd6b9b5ebcb4f16a1a56f66df4a6b0625794 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2007-05-28  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * 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
+       <http://lists.gnu.org/archive/html/autoconf/2007-05/msg00062.html>.
+
 2007-05-25  Noah Misch  <noah@cs.caltech.edu>
 
        * bin/Makefile.am ($(top_builddir)/bin/autom4te): New dependency.
index b0f4cf172cb3d6603cf4ddb5c103b58bbb6f4ce8..58ceb587a3a15a5acdd063726fd3c539e783dc47 100644 (file)
@@ -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