You are viewing a plain text version of this content. The canonical link for it is here.
Posted to bugs@httpd.apache.org by bu...@apache.org on 2008/12/10 11:37:57 UTC

DO NOT REPLY [Bug 46372] New: Cannot configure apache 2.2.10 during installation

https://issues.apache.org/bugzilla/show_bug.cgi?id=46372

           Summary: Cannot configure apache 2.2.10 during installation
           Product: Apache httpd-2
           Version: 2.2.10
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: major
          Priority: P2
         Component: All
        AssignedTo: bugs@httpd.apache.org
        ReportedBy: ryanlau@mtr.com.hk


During configuration, apache 2.2.10 cannot be completed.
The configure command is 
./configure --prefix=/export/home05/apache2210 --disable-status
--disable-charset-lite --enable-so --enable-mods-shared='deflate rewrite'
--enable-ssl --with-ssl=/export/home05/openssl098h --enable-unique-id

where the platform for installation is:
OS: Redhat Enterprise Linux 2.1
Openssl: 0.9.8h

Error:
checking for SSL/TLS toolkit base... /export/home05/openssl098h
  adding "-I/export/home05/openssl098h/include" to CPPFLAGS
  adding "-I/export/home05/openssl098h/include" to INCLUDES
  adding "-L/export/home05/openssl098h/lib" to LDFLAGS
checking for OpenSSL version... checking openssl/opensslv.h usability... yes
checking openssl/opensslv.h presence... yes
checking for openssl/opensslv.h... yes
checking openssl/ssl.h usability... yes
checking openssl/ssl.h presence... yes
checking for openssl/ssl.h... yes
OK
  forcing SSL_LIBS to "-lssl -lcrypto"
  adding "-lssl" to LIBS
  adding "-lcrypto" to LIBS
checking openssl/engine.h usability... yes
checking openssl/engine.h presence... yes
checking for openssl/engine.h... yes
checking for SSLeay_version... yes
checking for SSL_CTX_new... no
checking for ENGINE_init... yes
checking for ENGINE_load_builtin_engines... no
checking for SSL_set_cert_store... no
configure: error: ... Error, SSL/TLS libraries were missing or unusable


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org


DO NOT REPLY [Bug 46372] Cannot configure apache 2.2.10 during installation

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46372


Rainer Jung <ra...@kippdata.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |DUPLICATE




--- Comment #1 from Rainer Jung <ra...@kippdata.de>  2008-12-10 02:47:19 PST ---
Note that 2.2.11 is already in the stage of release vote. It is likely, that
there will be a 2.2.11 release at the beginning of next week, which already
contains the fix.

You can fix yourself by adding the following patch to configure:

--- configure      2008-10-11 15:07:36.000000000 +0200
+++ configure   2008-12-01 19:49:55.000000000 +0100
@@ -14593,10 +14593,10 @@
   fi

       else
-        ap_ssltk_libs="-lssl -lcrypto"
+        ap_ssltk_libs="-lssl -lcrypto `$apr_config --libs`"
       fi
     else
-      ap_ssltk_libs="-lssl -lcrypto"
+      ap_ssltk_libs="-lssl -lcrypto `$apr_config --libs`"
     fi
   fi



*** This bug has been marked as a duplicate of bug 46018 ***


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org