You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2008/06/19 22:39:41 UTC

svn commit: r669682 - /httpd/httpd/branches/2.2.x/acinclude.m4

Author: wrowe
Date: Thu Jun 19 13:39:41 2008
New Revision: 669682

URL: http://svn.apache.org/viewvc?rev=669682&view=rev
Log:
revert ssl breakage due to the mindless inclusion of pkg-config
values against a random openssl (other than the one specified)

backported from trunk

Modified:
    httpd/httpd/branches/2.2.x/acinclude.m4

Modified: httpd/httpd/branches/2.2.x/acinclude.m4
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/acinclude.m4?rev=669682&r1=669681&r2=669682&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/acinclude.m4 (original)
+++ httpd/httpd/branches/2.2.x/acinclude.m4 Thu Jun 19 13:39:41 2008
@@ -584,15 +584,15 @@
 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
 ])