From e78c4186d63576f8c442706d96668f3e66991476 Mon Sep 17 00:00:00 2001 From: Colm MacCarthaigh Date: Tue, 4 Oct 2005 19:25:51 +0000 Subject: [PATCH] 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 --- acinclude.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ]) -- 2.47.2