mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 07:36:17 +01:00
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:
parent
cdf9707a02
commit
fc28f0832f
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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 ()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user