Make the size_t size detection work on AIX. (#309725)

2005-07-07  Matthias Clasen  <mclasen@redhat.com>

	* configure.in: Make the size_t size detection work on AIX.
	(#309725)
This commit is contained in:
Matthias Clasen 2005-07-07 20:37:54 +00:00 committed by Matthias Clasen
parent cdf9707a02
commit fc28f0832f
5 changed files with 26 additions and 0 deletions

View 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.

View 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.

View 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.

View 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.

View 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 ()
{