From d82bc914aba864e604643dc7d76c2a292e230340 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Mon, 9 Jun 2008 13:32:04 +0000 Subject: Since we are using AC_CACHE_CHECK, avoid warning about non-cached item by adding the required _cv_ git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@664701 13f79535-47bb-0310-9956-ffa450edef68 --- acinclude.m4 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'acinclude.m4') diff --git a/acinclude.m4 b/acinclude.m4 index f984710e52..1daf180286 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -592,15 +592,15 @@ dnl integer type. dnl AC_DEFUN([APACHE_CHECK_VOID_PTR_LEN], [ -AC_CACHE_CHECK([for void pointer length], [ap_void_ptr_lt_long], +AC_CACHE_CHECK([for void pointer length], [ap_cv_void_ptr_lt_long], [AC_TRY_RUN([ int main(void) { return sizeof(void *) < sizeof(long); -}], [ap_void_ptr_lt_long=no], [ap_void_ptr_lt_long=yes], - [ap_void_ptr_lt_long=yes])]) +}], [ap_cv_void_ptr_lt_long=no], [ap_cv_void_ptr_lt_long=yes], + [ap_cv_void_ptr_lt_long=yes])]) -if test "$ap_void_ptr_lt_long" = "yes"; then +if test "$ap_cv_void_ptr_lt_long" = "yes"; then AC_MSG_ERROR([Size of "void *" is less than size of "long"]) fi ]) -- cgit v1.2.3