Check for `u_int8_t' and `int8_t'.
authorMartin Baulig <martin@home-of-linux.org>
Sun, 23 Jan 2000 17:51:33 +0000 (17:51 +0000)
committerMartin Baulig <martin@src.gnome.org>
Sun, 23 Jan 2000 17:51:33 +0000 (17:51 +0000)
2000-01-23  Martin Baulig  <martin@home-of-linux.org>

* gnome-libgtop-check.m4 (GNOME_LIBGTOP_TYPES): Check for
`u_int8_t' and `int8_t'.

svn path=/trunk/; revision=1068

macros/ChangeLog
macros/gnome-libgtop-check.m4

index bda0e0f..71b22f8 100644 (file)
@@ -1,3 +1,8 @@
+2000-01-23  Martin Baulig  <martin@home-of-linux.org>
+
+       * gnome-libgtop-check.m4 (GNOME_LIBGTOP_TYPES): Check for
+       `u_int8_t' and `int8_t'.
+
 2000-01-22  Peter Teichman  <peter@helixcode.com>
 
        * gnome-pilot.m4 (PILOT_LIBS): fix the version-checking macro for
index ee67c3b..887acfe 100644 (file)
@@ -7,7 +7,9 @@ dnl
 AC_DEFUN([GNOME_LIBGTOP_TYPES],
 [
        AC_CHECK_TYPE(u_int64_t, unsigned long long int)
-       AC_CHECK_TYPE(int64_t, long long int)
+       AC_CHECK_TYPE(int64_t, signed long long int)
+       AC_CHECK_TYPE(u_int8_t, unsigned char)
+       AC_CHECK_TYPE(int8_t, signed char)
 ])
 
 dnl