Return-Path: Delivered-To: apmail-httpd-users-archive@www.apache.org Received: (qmail 27029 invoked from network); 1 Jun 2004 08:27:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 1 Jun 2004 08:27:58 -0000 Received: (qmail 68311 invoked by uid 500); 1 Jun 2004 08:27:45 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 68258 invoked by uid 500); 1 Jun 2004 08:27:44 -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 68245 invoked by uid 99); 1 Jun 2004 08:27:44 -0000 Received: from [193.229.0.41] (HELO fep01-app.kolumbus.fi) (193.229.0.41) by apache.org (qpsmtpd/0.27.1) with ESMTP; Tue, 01 Jun 2004 01:27:44 -0700 Received: from [195.255.175.142] by fep01-app.kolumbus.fi with ESMTP id <20040601082537.SENY4346.fep01-app.kolumbus.fi@[195.255.175.142]> for ; Tue, 1 Jun 2004 11:25:37 +0300 Mime-Version: 1.0 (Apple Message framework v618) Content-Transfer-Encoding: 7bit Message-Id: <42146BB3-B3A5-11D8-97B8-000A95BD0FA0@kronodoc.com> Content-Type: text/plain; charset=US-ASCII; format=flowed To: users@httpd.apache.org From: Marko Asplund Date: Tue, 1 Jun 2004 11:25:36 +0300 X-Mailer: Apple Mail (2.618) X-Virus-Checked: Checked Subject: [users@httpd] building Apache 2 with static libraries & DSO modules X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N hi i'm trying to build Apache 2.0.49 on Red Hat Enterprise Linux 3 with statically linked apr, apr-util and expat libraries (and dynamically linked system libraries) but with DSO support enabled. the only way i've been able to statically link these libraries has been to build and configure them separately from the Apache binary. statically linking the libraries goes fine now but i'm unable to build DSO modules. the modules that appear in the installation directory are not shared objects. here's a what the modules directory contains after the build: httpd.exp mod_proxy_connect.la mod_proxy_http.a mod_proxy.a mod_proxy_ftp.a mod_proxy_http.la mod_proxy_connect.a mod_proxy_ftp.la mod_proxy.la how can i build Apache modules as DSO objects? here's how i'm building Apache: setenv APHOME /home/aspa/tmp/ap/ap20 cd srclib/apr ./configure --prefix=$APHOME/apr --enable-shared=no make && make install cd ../apr-util/xml/expat ./configure --prefix=$APHOME/expat --enable-shared=no make && make install cd ../.. ./configure --prefix=$APHOME/apr-util --with-expat=$APHOME/expat --with-apr=$APHOME/apr --enable-shared=no make && make install cd ../.. ./configure --prefix=$APHOME --with-expat=$APHOME/expat --with-apr-util=$APHOME/apr-util --with-apr=$APHOME/apr --enable-proxy=shared --enable-proxy-http=shared --enable-shared --enable-so make && make install best regards -- aspa --------------------------------------------------------------------- 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