From: Colm MacCarthaigh Date: Tue, 4 Oct 2005 19:25:51 +0000 (+0000) Subject: Invert the "yes" and "no" values for $ap_void_ptr_lt_long, which X-Git-Tag: 2.3.0~2914 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e78c4186d63576f8c442706d96668f3e66991476;p=thirdparty%2Fapache%2Fhttpd.git Invert the "yes" and "no" values for $ap_void_ptr_lt_long, which 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 --- diff --git a/acinclude.m4 b/acinclude.m4 index 313d7150d6d..742711fa8d4 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -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 ])