]> granicus.if.org Git - apache/commitdiff
Since we are using AC_CACHE_CHECK, avoid warning
authorJim Jagielski <jim@apache.org>
Mon, 9 Jun 2008 13:32:04 +0000 (13:32 +0000)
committerJim Jagielski <jim@apache.org>
Mon, 9 Jun 2008 13:32:04 +0000 (13:32 +0000)
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

index f984710e526d1d00cc8ed632598ad45d0409b5b4..1daf18028673f411428a83cc6a5b570430c763d6 100644 (file)
@@ -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
 ])