aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2005-01-28 06:43:48 +0000
committerWayne Davison <wayned@samba.org>2005-01-28 06:43:48 +0000
commite32db5c9aade691a13a200e867a812099bfdcdae (patch)
treefa4331bb74bdf93ac9c5098cfcd056e3ace45d0c /configure.in
parent4a6c209a1307b0acbf0a9d18247aec62bc62c4a1 (diff)
downloadandroid_external_rsync-e32db5c9aade691a13a200e867a812099bfdcdae.tar.gz
android_external_rsync-e32db5c9aade691a13a200e867a812099bfdcdae.tar.bz2
android_external_rsync-e32db5c9aade691a13a200e867a812099bfdcdae.zip
Switched the checks for "long long" and "off64_t" to use the
AC_CHECK_SIZEOF() macro since it now fully supports cross- compiling.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in24
1 files changed, 4 insertions, 20 deletions
diff --git a/configure.in b/configure.in
index b45f9bbd..3ecfa7e3 100644
--- a/configure.in
+++ b/configure.in
@@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script.
AC_INIT()
AC_CONFIG_SRCDIR([byteorder.h])
AC_CONFIG_HEADER(config.h)
-AC_PREREQ(2.52)
+AC_PREREQ(2.59)
RSYNC_VERSION=2.6.4cvs
AC_SUBST(RSYNC_VERSION)
@@ -293,7 +293,10 @@ AC_HEADER_MAJOR
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
+AC_CHECK_SIZEOF(long long)
AC_CHECK_SIZEOF(short)
+AC_CHECK_SIZEOF(off_t)
+AC_CHECK_SIZEOF(off64_t)
AC_C_INLINE
@@ -516,25 +519,6 @@ else
AC_MSG_RESULT(no)
fi
-AC_CACHE_CHECK([for long long],rsync_cv_HAVE_LONGLONG,[
-if test x"$GCC" = x"yes"; then
- rsync_cv_HAVE_LONGLONG=yes
-else
- AC_TRY_COMPILE(,[long long i;],
- rsync_cv_HAVE_LONGLONG=yes,rsync_cv_HAVE_LONGLONG=no)
-fi])
-if test x"$rsync_cv_HAVE_LONGLONG" = x"yes"; then
- AC_DEFINE(HAVE_LONGLONG, 1, [Define to 1 if you have the "long long" type])
-fi
-
-AC_CACHE_CHECK([for off64_t],rsync_cv_HAVE_OFF64_T,[
-AC_TRY_COMPILE([#include <stdio.h>
-#include <sys/stat.h>],[off64_t s;],
-rsync_cv_HAVE_OFF64_T=yes,rsync_cv_HAVE_OFF64_T=no)])
-if test x"$rsync_cv_HAVE_OFF64_T" = x"yes"; then
- AC_DEFINE(HAVE_OFF64_T, 1, [Define to 1 if you have the off64_t type])
-fi
-
AC_CACHE_CHECK([for unsigned char],rsync_cv_SIGNED_CHAR_OK,[
AC_TRY_COMPILE([],[signed char *s = ""],
rsync_cv_SIGNED_CHAR_OK=yes,rsync_cv_SIGNED_CHAR_OK=no)])