Return-Path: Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 77425 invoked by uid 500); 22 Oct 2002 14:23:52 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 77413 invoked from network); 22 Oct 2002 14:23:52 -0000 Received: from alpha.listingbook.com (HELO listingbook.com) (206.27.7.1) by daedalus.apache.org with SMTP; 22 Oct 2002 14:23:52 -0000 Received: from WS4 (ws4.listingbook.com [206.27.7.8]) by listingbook.com (Postfix) with SMTP id 7DD6750309 for ; Tue, 22 Oct 2002 10:41:45 -0400 (EDT) Message-ID: <065201c279d6$b288d7b0$08071bce@WS4> From: "Jacob Coby" To: References: <20021022013614.13609.qmail@k2.synapseglobal.com> Date: Tue, 22 Oct 2002 10:24:14 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Subject: Re: [users@httpd] problems compiling mod_ssl + mod_so > I'm trying to compile apache 1.3.27 with some basic modules. I have openssl > already installed, and the latest mod_ssl. > > I go into the mod_ssl source tree and use this line: > > configure --with-apache=../apache_1.3.27 --with-ssl=../openssl-0.9.6g > --prefix=/path/for/apache > > Once thats done I go back to the apache tree and modify config.status like > this: > > SSL_BASE="/usr/local/ssl" \ > ./configure \ > "--with-layout=Apache" \ > "--prefix=/path/for/apache" \ > "--enable-module=most" \ > "--enable-shared=max" \ > > It compiles, but I only get mod_ssl, never mod_so. I have tried using > --enable-shared=so instead of most and max, but no matter what I do, I > cannot get both mod_so and mod_ssl to both compile. This is how configure mod_ssl to enable shared modules: ./configure --with-apache=/usr/local/src/apache-1.3.27/ --with-ssl=/usr --en able-module=all cd /usr/local/src/apache-1.3.27 make && make install It looks like you are installing ssl in /usr/local/ssl, so you'd want to change the --with-ssl arg to reflect that. If you are doing a make install on openssl, you should not have to point the apache compile to the dir you untar'ed the openssl code to (ie NOT ../openssl-0.9.6g). I guess I should note that this compiles _everything_ into apache, including mod_so (which I then use to load php). -Jacob --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org " from the digest: users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org