------------------------------------------------------------------------ r1871981 | minfrin | 2019-12-26 02:19:49 +0100 (Thu, 26 Dec 2019) | 3 lines Backport r1871980. Use AC_CHECK_SIZEOF, so as to support cross compiling. PR 56053. ------------------------------------------------------------------------ diff --git a/build/apr_common.m4 b/build/apr_common.m4 index 2cb366c39b78380e..7239a19995218ccc 100644 --- a/build/apr_common.m4 +++ b/build/apr_common.m4 @@ -451,43 +451,6 @@ fi ]) -dnl -dnl APR_CHECK_SIZEOF_EXTENDED(INCLUDES, TYPE [, CROSS_SIZE]) -dnl -dnl A variant of AC_CHECK_SIZEOF which allows the checking of -dnl sizes of non-builtin types -dnl -AC_DEFUN([APR_CHECK_SIZEOF_EXTENDED], -[changequote(<<, >>)dnl -dnl The name to #define. -define(<>, translit(sizeof_$2, [a-z *], [A-Z_P]))dnl -dnl The cache variable name. -define(<>, translit(ac_cv_sizeof_$2, [ *], [_p]))dnl -changequote([, ])dnl -AC_MSG_CHECKING(size of $2) -AC_CACHE_VAL(AC_CV_NAME, -[AC_TRY_RUN([#include -$1 -#ifdef WIN32 -#define binmode "b" -#else -#define binmode -#endif -main() -{ - FILE *f=fopen("conftestval", "w" binmode); - if (!f) exit(1); - fprintf(f, "%d\n", sizeof($2)); - exit(0); -}], AC_CV_NAME=`cat conftestval`, AC_CV_NAME=0, ifelse([$3],,, -AC_CV_NAME=$3))])dnl -AC_MSG_RESULT($AC_CV_NAME) -AC_DEFINE_UNQUOTED(AC_TYPE_NAME, $AC_CV_NAME, [The size of ]$2) -undefine([AC_TYPE_NAME])dnl -undefine([AC_CV_NAME])dnl -]) - - dnl dnl APR_TRY_COMPILE_NO_WARNING(INCLUDES, FUNCTION-BODY, dnl [ACTIONS-IF-NO-WARNINGS], [ACTIONS-IF-WARNINGS]) diff --git a/configure.in b/configure.in index 7ab8277a2782dbef..d858951af97f3a1b 100644 --- a/configure.in +++ b/configure.in @@ -1799,7 +1799,7 @@ else socklen_t_value="int" fi -APR_CHECK_SIZEOF_EXTENDED([#include ], pid_t, 8) +AC_CHECK_SIZEOF(pid_t) if test "$ac_cv_sizeof_pid_t" = "$ac_cv_sizeof_short"; then pid_t_fmt='#define APR_PID_T_FMT "hd"' @@ -1871,7 +1871,7 @@ APR_CHECK_TYPES_FMT_COMPATIBLE(size_t, unsigned long, lu, [size_t_fmt="lu"], [ APR_CHECK_TYPES_FMT_COMPATIBLE(size_t, unsigned int, u, [size_t_fmt="u"]) ]) -APR_CHECK_SIZEOF_EXTENDED([#include ], ssize_t, 8) +AC_CHECK_SIZEOF(ssize_t) dnl the else cases below should no longer occur; AC_MSG_CHECKING([which format to use for apr_ssize_t]) @@ -1889,7 +1889,7 @@ fi ssize_t_fmt="#define APR_SSIZE_T_FMT \"$ssize_t_fmt\"" -APR_CHECK_SIZEOF_EXTENDED([#include ], size_t, 8) +AC_CHECK_SIZEOF(size_t) # else cases below should no longer occur; AC_MSG_CHECKING([which format to use for apr_size_t]) @@ -1907,7 +1907,7 @@ fi size_t_fmt="#define APR_SIZE_T_FMT \"$size_t_fmt\"" -APR_CHECK_SIZEOF_EXTENDED([#include ], off_t, 8) +AC_CHECK_SIZEOF(off_t) if test "${ac_cv_sizeof_off_t}${apr_cv_use_lfs64}" = "4yes"; then # Enable LFS @@ -2001,7 +2001,7 @@ case $host in ;; *) ino_t_value=ino_t - APR_CHECK_SIZEOF_EXTENDED(AC_INCLUDES_DEFAULT, ino_t, $ac_cv_sizeof_long) + AC_CHECK_SIZEOF(ino_t) if test $ac_cv_sizeof_ino_t = 4; then if test $ac_cv_sizeof_long = 4; then ino_t_value="unsigned long" @@ -2021,8 +2021,8 @@ else bigendian=0 fi -APR_CHECK_SIZEOF_EXTENDED([#include -#include ],struct iovec,0) +AC_CHECK_SIZEOF(struct iovec,,[AC_INCLUDES_DEFAULT +#include ]) if test "$ac_cv_sizeof_struct_iovec" = "0"; then have_iovec=0 else