Description: Pull upstream fixes for autotools for cross-compiling
Author: Adam Conrad <adconrad@ubuntu.com>
Origin: upstream, http://svn.eu.apache.org/viewvc?view=revision&revision=1328445
Origin: upstream, http://svn.eu.apache.org/viewvc?view=revision&revision=1327907
Origin: upstream, http://svn.eu.apache.org/viewvc?view=revision&revision=1328390
Origin: upstream, http://svn.eu.apache.org/viewvc?view=revision&revision=1328714
Forwarded: not-needed

Index: apache2-2.4.18/acinclude.m4
===================================================================
--- apache2-2.4.18.orig/acinclude.m4	2016-01-21 15:17:25.145584409 -0500
+++ apache2-2.4.18/acinclude.m4	2016-01-21 15:17:25.133584255 -0500
@@ -55,6 +55,8 @@
   APACHE_SUBST(CPPFLAGS)
   APACHE_SUBST(CFLAGS)
   APACHE_SUBST(CXXFLAGS)
+  APACHE_SUBST(CC_FOR_BUILD)
+  APACHE_SUBST(CFLAGS_FOR_BUILD)
   APACHE_SUBST(LTFLAGS)
   APACHE_SUBST(LDFLAGS)
   APACHE_SUBST(LT_LDFLAGS)
@@ -687,7 +689,7 @@
 {
     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])])
+    [ap_cv_void_ptr_lt_long="cross compile - not checked"])])
 
 if test "$ap_cv_void_ptr_lt_long" = "yes"; then
     AC_MSG_ERROR([Size of "void *" is less than size of "long"])
Index: apache2-2.4.18/configure
===================================================================
--- apache2-2.4.18.orig/configure	2016-01-21 15:17:25.145584409 -0500
+++ apache2-2.4.18/configure	2016-01-21 15:17:25.141584358 -0500
@@ -660,6 +660,8 @@
 SH_LDFLAGS
 LT_LDFLAGS
 LTFLAGS
+CFLAGS_FOR_BUILD
+CC_FOR_BUILD
 CXXFLAGS
 CXX
 other_targets
@@ -6060,6 +6062,12 @@
 
 
 
+if test "x${build_alias}" != "x${host_alias}"; then
+  if test "x${CC_FOR_BUILD}" = "x"; then
+    CC_FOR_BUILD=cc
+  fi
+fi
+
 if test "x${cache_file}" = "x/dev/null"; then
   # Likewise, ensure that CC and CPP are passed through to the pcre
   # configure script iff caching is disabled (the autoconf 2.5x default).
@@ -7687,7 +7695,7 @@
   $as_echo_n "(cached) " >&6
 else
   if test "$cross_compiling" = yes; then :
-  ap_cv_void_ptr_lt_long=yes
+  ap_cv_void_ptr_lt_long="cross compile - not checked"
 else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 /* end confdefs.h.  */
@@ -33636,6 +33644,14 @@
 
 
 
+  APACHE_VAR_SUBST="$APACHE_VAR_SUBST CC_FOR_BUILD"
+
+
+
+  APACHE_VAR_SUBST="$APACHE_VAR_SUBST CFLAGS_FOR_BUILD"
+
+
+
   APACHE_VAR_SUBST="$APACHE_VAR_SUBST LTFLAGS"
 
 
Index: apache2-2.4.18/configure.in
===================================================================
--- apache2-2.4.18.orig/configure.in	2016-01-21 15:17:25.145584409 -0500
+++ apache2-2.4.18/configure.in	2016-01-21 15:17:25.141584358 -0500
@@ -206,6 +206,14 @@
 dnl Try to get c99 support for variadic macros
 ifdef([AC_PROG_CC_C99], [AC_PROG_CC_C99])
 
+dnl In case of cross compilation we set CC_FOR_BUILD to cc unless
+dnl we got already CC_FOR_BUILD from environment.
+if test "x${build_alias}" != "x${host_alias}"; then
+  if test "x${CC_FOR_BUILD}" = "x"; then
+    CC_FOR_BUILD=cc
+  fi
+fi
+
 if test "x${cache_file}" = "x/dev/null"; then
   # Likewise, ensure that CC and CPP are passed through to the pcre
   # configure script iff caching is disabled (the autoconf 2.5x default).
Index: apache2-2.4.18/server/Makefile.in
===================================================================
--- apache2-2.4.18.orig/server/Makefile.in	2016-01-21 15:17:25.145584409 -0500
+++ apache2-2.4.18/server/Makefile.in	2016-01-21 15:17:25.141584358 -0500
@@ -24,9 +24,14 @@
 include $(top_builddir)/build/rules.mk
 include $(top_srcdir)/build/library.mk
 
+ifdef CC_FOR_BUILD
+gen_test_char: gen_test_char.c
+	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) -DCROSS_COMPILE -o $@ $<
+else
 gen_test_char_OBJECTS = gen_test_char.lo
 gen_test_char: $(gen_test_char_OBJECTS)
 	$(LINK) $(EXTRA_LDFLAGS) $(gen_test_char_OBJECTS) $(EXTRA_LIBS)
+endif
 
 test_char.h: gen_test_char
 	./gen_test_char > test_char.h
