aboutsummaryrefslogtreecommitdiff
path: root/libffi/configure.ac
diff options
context:
space:
mode:
authorKelley Cook <kcook@gcc.gnu.org>2005-05-18 01:49:43 +0000
committerR. Kelley Cook <kcook@gcc.gnu.org>2005-05-18 01:49:43 +0000
commita097ef55fcd0c3d10daba2f02f38a810a14094c3 (patch)
tree93288870ffb704b27298ee841ea2c448f3e1bc3a /libffi/configure.ac
parent12e5fe37a0d04facff099f93924442065ad16a3b (diff)
downloadgcc-a097ef55fcd0c3d10daba2f02f38a810a14094c3.zip
gcc-a097ef55fcd0c3d10daba2f02f38a810a14094c3.tar.gz
gcc-a097ef55fcd0c3d10daba2f02f38a810a14094c3.tar.bz2
configure.ac: Use AC_C_BIGENDIAN instead of AC_C_BIGENDIAN_CROSS.
2005-05-03 Kelley Cook <kcook@gcc.gnu.org> * configure.ac: Use AC_C_BIGENDIAN instead of AC_C_BIGENDIAN_CROSS. Use AC_CHECK_SIZEOF instead of AC_COMPILE_CHECK_SIZEOF. * Makefile.am (ACLOCAL_AMFLAGS): Remove -I ../config. * aclocal.m4, configure, fficonfig.h.in, Makefile.in, include/Makefile.in, testsuite/Makefile.in: Regenerate. From-SVN: r99879
Diffstat (limited to 'libffi/configure.ac')
-rw-r--r--libffi/configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/libffi/configure.ac b/libffi/configure.ac
index 6d17160..b0bfd49 100644
--- a/libffi/configure.ac
+++ b/libffi/configure.ac
@@ -118,8 +118,8 @@ AC_HEADER_STDC
AC_CHECK_FUNCS(memcpy)
AC_FUNC_ALLOCA
-AC_COMPILE_CHECK_SIZEOF(double)
-AC_COMPILE_CHECK_SIZEOF(long double)
+AC_CHECK_SIZEOF(double)
+AC_CHECK_SIZEOF(long double)
# Also AC_SUBST this variable for ffi.h.
HAVE_LONG_DOUBLE=0
@@ -131,7 +131,7 @@ if test $ac_cv_sizeof_double != $ac_cv_sizeof_long_double; then
fi
AC_SUBST(HAVE_LONG_DOUBLE)
-AC_C_BIGENDIAN_CROSS
+AC_C_BIGENDIAN
if test x$TARGET = xSPARC; then
AC_CACHE_CHECK([assembler and linker support unaligned pc related relocs],