Make the size_t size detection work on AIX. (#309725)
authorMatthias Clasen <mclasen@redhat.com>
Thu, 7 Jul 2005 20:37:54 +0000 (20:37 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Thu, 7 Jul 2005 20:37:54 +0000 (20:37 +0000)
2005-07-07  Matthias Clasen  <mclasen@redhat.com>

* configure.in: Make the size_t size detection work on AIX.
(#309725)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-8
configure.in

index bba4fa92cf289f1e1a9136b9e97480e78175c8aa..ce645c01f1674762b672b88dcc379804f0c9560e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-07-07  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Make the size_t size detection work on AIX. 
+       (#309725)
+
 2005-07-06  Matthias Clasen  <mclasen@redhat.com>
 
        * configure.in: Require a newer gtk-doc.
index bba4fa92cf289f1e1a9136b9e97480e78175c8aa..ce645c01f1674762b672b88dcc379804f0c9560e 100644 (file)
@@ -1,3 +1,8 @@
+2005-07-07  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Make the size_t size detection work on AIX. 
+       (#309725)
+
 2005-07-06  Matthias Clasen  <mclasen@redhat.com>
 
        * configure.in: Require a newer gtk-doc.
index bba4fa92cf289f1e1a9136b9e97480e78175c8aa..ce645c01f1674762b672b88dcc379804f0c9560e 100644 (file)
@@ -1,3 +1,8 @@
+2005-07-07  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Make the size_t size detection work on AIX. 
+       (#309725)
+
 2005-07-06  Matthias Clasen  <mclasen@redhat.com>
 
        * configure.in: Require a newer gtk-doc.
index bba4fa92cf289f1e1a9136b9e97480e78175c8aa..ce645c01f1674762b672b88dcc379804f0c9560e 100644 (file)
@@ -1,3 +1,8 @@
+2005-07-07  Matthias Clasen  <mclasen@redhat.com>
+
+       * configure.in: Make the size_t size detection work on AIX. 
+       (#309725)
+
 2005-07-06  Matthias Clasen  <mclasen@redhat.com>
 
        * configure.in: Require a newer gtk-doc.
index 1a8a95be8a6df77d25db49733af57ce061e3110a..1b7bf3475c439133a6e8aee6cacecc57370c0873 100644 (file)
@@ -787,6 +787,9 @@ dnl
 if test $ac_cv_sizeof_size_t = $ac_cv_sizeof_int &&
    test $ac_cv_sizeof_size_t = $ac_cv_sizeof_long ; then
   GLIB_CHECK_COMPILE_WARNINGS([
+#ifdef _AIX
+#pragma options langlvl=stdc89
+#endif
 #include <stddef.h> 
 int main ()
 {
@@ -796,6 +799,9 @@ int main ()
 }
     ],glib_size_type=int,
       [GLIB_CHECK_COMPILE_WARNINGS([
+#ifdef _AIX
+#pragma options langlvl=stdc89
+#endif
 #include <stddef.h> 
 int main ()
 {