You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fu...@apache.org on 2012/04/20 18:40:31 UTC

svn commit: r1328445 - /httpd/httpd/trunk/acinclude.m4

Author: fuankg
Date: Fri Apr 20 16:40:30 2012
New Revision: 1328445

URL: http://svn.apache.org/viewvc?rev=1328445&view=rev
Log:
Avoid AC_TRY_RUN break with cross-compile.

Modified:
    httpd/httpd/trunk/acinclude.m4

Modified: httpd/httpd/trunk/acinclude.m4
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/acinclude.m4?rev=1328445&r1=1328444&r2=1328445&view=diff
==============================================================================
--- httpd/httpd/trunk/acinclude.m4 (original)
+++ httpd/httpd/trunk/acinclude.m4 Fri Apr 20 16:40:30 2012
@@ -707,7 +707,7 @@ 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])])
+    [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"])