1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
subject: cross build patch
author: Helmut Grohne <helmut@subdivi.de>
forwarded: no
Index: apache2-2.4.66/acinclude.m4
===================================================================
--- apache2-2.4.66.orig/acinclude.m4
+++ apache2-2.4.66/acinclude.m4
@@ -721,16 +721,9 @@ dnl Checks if the size of a void pointer
dnl integer type.
dnl
AC_DEFUN([APACHE_CHECK_VOID_PTR_LEN], [
-
-AC_CACHE_CHECK([for void pointer length], [ap_cv_void_ptr_lt_long],
-[AC_TRY_RUN([
-int main(void)
-{
- return sizeof(void *) < sizeof(long);
-}], [ap_cv_void_ptr_lt_long=no], [ap_cv_void_ptr_lt_long=yes],
- [ap_cv_void_ptr_lt_long=yes])])
-
-if test "$ap_cv_void_ptr_lt_long" = "yes"; then
+AC_CHECK_SIZEOF([void *])
+AC_CHECK_SIZEOF([long])
+if test "$ac_cv_sizeof_void_p" -lt "$ac_cv_sizeof_long"; then
AC_MSG_ERROR([Size of "void *" is less than size of "long"])
fi
])
|