diff options
author | Colm MacCarthaigh <colm@apache.org> | 2005-10-04 19:25:51 +0000 |
---|---|---|
committer | Colm MacCarthaigh <colm@apache.org> | 2005-10-04 19:25:51 +0000 |
commit | e78c4186d63576f8c442706d96668f3e66991476 (patch) | |
tree | 6580ee0f1c9522378811f1effb6af738bab63634 /acinclude.m4 | |
parent | 4674da2cc71a116b0277db071b069bf15342cfe8 (diff) | |
download | httpd-e78c4186d63576f8c442706d96668f3e66991476.tar.gz |
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
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 313d7150d6..742711fa8d 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 ]) |