From: Jim Jagielski Date: Mon, 9 Jun 2008 13:32:04 +0000 (+0000) Subject: Since we are using AC_CACHE_CHECK, avoid warning X-Git-Tag: 2.3.0~509 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d82bc914aba864e604643dc7d76c2a292e230340;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/acinclude.m4 b/acinclude.m4 index f984710e526..1daf1802867 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 ])