From: William A. Rowe Jr Date: Thu, 19 Jun 2008 20:39:41 +0000 (+0000) Subject: Since we are using AC_CACHE_CHECK, avoid warning X-Git-Tag: 2.2.10~173 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa3f0577e9d25fdac557b9e1994f5bbcda7211a4;p=thirdparty%2Fapache%2Fhttpd.git Since we are using AC_CACHE_CHECK, avoid warning about non-cached item by adding the required _cv_ Submitted by: jim Backports: r664701 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@669682 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/acinclude.m4 b/acinclude.m4 index e80a2153cd3..de3930b115d 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -584,15 +584,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 ])