Workaround AC_C_BIGENDIAN breakage in autoconf 2.61.

svn path=/branches/glib-2-16/; revision=7210
This commit is contained in:
Matthias Clasen 2008-07-20 02:36:20 +00:00
parent 0a7c39f5a2
commit 91b142c490
2 changed files with 19 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2008-07-19 Matthias Clasen <mclasen@redhat.com>
Merge from trunk:
* configure.in: Workaround AC_C_BIGENDIAN breakage in autoconf 2.61.
2008-07-11 Tor Lillqvist <tml@novell.com>
Merge from trunk:

View File

@ -831,6 +831,19 @@ AM_CONDITIONAL(HAVE_SUNSTUDIO_VISIBILITY, [test x$g_have_sunstudio_visibility =
# check for bytesex stuff
AC_C_BIGENDIAN
if test x$ac_cv_c_bigendian = xuniversal ; then
AC_TRY_COMPILE([#include <endian.h>], [#if __BYTE_ORDER == __BIG_ENDIAN
#else
#error Not a big endian.
#endif],
ac_cv_c_bigendian=yes
,AC_TRY_COMPILE([#include <endian.h>], [#if __BYTE_ORDER == __LITTLE_ENDIAN
#else
#error Not a little endian.
#endif],
ac_cv_c_bigendian=no
,AC_MSG_WARN([Could not determine endianness.])))
fi
# check for header files
AC_CHECK_HEADERS([dirent.h float.h limits.h pwd.h grp.h sys/param.h sys/poll.h sys/resource.h])