]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Invert the "yes" and "no" values for $ap_void_ptr_lt_long, which
authorColm MacCarthaigh <colm@apache.org>
Tue, 4 Oct 2005 19:25:51 +0000 (19:25 +0000)
committerColm MacCarthaigh <colm@apache.org>
Tue, 4 Oct 2005 19:25:51 +0000 (19:25 +0000)
as Rudiger points out; are exactly wrong.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@294902 13f79535-47bb-0310-9956-ffa450edef68

acinclude.m4

index 313d7150d6d3f9ca32a373f614d1d99b9b3b34e9..742711fa8d40572e000e7e20027fd751da989fa7 100644 (file)
@@ -584,10 +584,10 @@ AC_CACHE_CHECK([for void pointer length], [ap_void_ptr_lt_long],
 int main(void)
 {
     return sizeof(void *) < sizeof(long); 
-}], [ap_void_ptr_lt_long=yes], [ap_void_ptr_lt_long=no], 
-    [ap_void_ptr_lt_long=no])])
+}], [ap_void_ptr_lt_long=no], [ap_void_ptr_lt_long=yes], 
+    [ap_void_ptr_lt_long=yes])])
 
-if test "$ap_void_ptr_lt_long" = "no"; then
+if test "$ap_void_ptr_lt_long" = "yes"; then
     AC_MSG_ERROR([Size of "void *" is less than size of "long"])
 fi
 ])