mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-04-22 15:19:16 +02: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>
|
2005-07-06 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* configure.in: Require a newer gtk-doc.
|
* 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>
|
2005-07-06 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* configure.in: Require a newer gtk-doc.
|
* 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>
|
2005-07-06 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* configure.in: Require a newer gtk-doc.
|
* 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>
|
2005-07-06 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* configure.in: Require a newer gtk-doc.
|
* configure.in: Require a newer gtk-doc.
|
||||||
|
@ -787,6 +787,9 @@ dnl
|
|||||||
if test $ac_cv_sizeof_size_t = $ac_cv_sizeof_int &&
|
if test $ac_cv_sizeof_size_t = $ac_cv_sizeof_int &&
|
||||||
test $ac_cv_sizeof_size_t = $ac_cv_sizeof_long ; then
|
test $ac_cv_sizeof_size_t = $ac_cv_sizeof_long ; then
|
||||||
GLIB_CHECK_COMPILE_WARNINGS([
|
GLIB_CHECK_COMPILE_WARNINGS([
|
||||||
|
#ifdef _AIX
|
||||||
|
#pragma options langlvl=stdc89
|
||||||
|
#endif
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
int main ()
|
int main ()
|
||||||
{
|
{
|
||||||
@ -796,6 +799,9 @@ int main ()
|
|||||||
}
|
}
|
||||||
],glib_size_type=int,
|
],glib_size_type=int,
|
||||||
[GLIB_CHECK_COMPILE_WARNINGS([
|
[GLIB_CHECK_COMPILE_WARNINGS([
|
||||||
|
#ifdef _AIX
|
||||||
|
#pragma options langlvl=stdc89
|
||||||
|
#endif
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
int main ()
|
int main ()
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user