]> granicus.if.org Git - apache/commitdiff
Merge r1324760 from trunk:
authorJim Jagielski <jim@apache.org>
Thu, 2 Aug 2012 13:05:28 +0000 (13:05 +0000)
committerJim Jagielski <jim@apache.org>
Thu, 2 Aug 2012 13:05:28 +0000 (13:05 +0000)
Your APR does not include SSL/EVP support. Yes, but how do I enable it? --with-crypto
Submitted by: igalic
Reviewed/backported by: jim

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1368448 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/session/config.m4

diff --git a/STATUS b/STATUS
index eec91f4a0e0e71ab12941a38053b34c200eda5ec..cc91d8a0459cb214f773d87fc5891fb9e7c1d06b 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -88,12 +88,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-   * configure: Add message about how to enable crypto support in APR.
-     trunk patch: http://svn.apache.org/viewvc?view=revision&revision=1324760
-     2.4.x patch: Trunk patch applies.
-     +1: rjung, sf, jim
-     rjung: igalic: you applied it to trunk, care to vote?
-
    * authz: pass the provider name to parse_require_line as pool userdata
      This allows a single C function to implement several authz providers.
      trunk patch: http://svn.apache.org/viewvc?view=revision&revision=1351016
index 719fe9152ce83dfcbb90bf4aaf5ae0c39e015574..7a38185d0f5237392dfca97a56630215e6c31f6d 100644 (file)
@@ -47,7 +47,7 @@ if test "$session_mods_enable_crypto" != "no"; then
   ], [ap_HAVE_APR_CRYPTO="yes"], [ap_HAVE_APR_CRYPTO="no"])
   CPPFLAGS="$saved_CPPFLAGS"
   if test $ap_HAVE_APR_CRYPTO = "no"; then
-    AC_MSG_WARN([Your APR does not include SSL/EVP support.])
+    AC_MSG_WARN([Your APR does not include SSL/EVP support. To enable it: configure --with-crypto])
     if test "$enable_session_crypto" != "" -a "$enable_session_crypto" != "no"; then
         AC_MSG_ERROR([mod_session_crypto cannot be enabled])
     fi