You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Lucas Brasilino <br...@recife.pe.gov.br> on 2002/04/15 15:36:29 UTC

Compiling Apache 2.0.35 and all official modules as DSO

Hi All:

	I'm trying to compile the lastest stable version of Apache
with all official modules as DSO, because I'd like to configure
LoadModules by myself.
	With version 1.3 I've made:

./configure --enable-shared=max

	and I've got the work done.
	With version 2.0.35 I've made:

./configure     --prefix=/usr/local/apache2 \
                 --enable-so \
                 --enable-auth-anon \
                 --enable-auth-dbm \
                 --enable-file-cache \
                 --enable-charset-lite \
                 --enable-cache \
                 --enable-disk-cache \
                 --enable-mem-cache \
                 --enable-mime-magic \
                 --enable-cern-meta \
                 --enable-expires \
                 --enable-headers \
                 --enable-usertrack \
                 --enable-proxy \
                 --enable-proxy-connect \
                 --enable-proxy-ftp \
                 --enable-proxy-http \
                 --enable-ssl \
                 --enable-http \
                 --enable-dav \
                 --enable-info \
                 --enable-rewrite

	But didn't work, it still linking modules in httpd. I can
checkout it:

./httpd -l
Compiled in modules:
   core.c
   mod_access.c
   mod_auth.c
   mod_auth_anon.c
   mod_auth_dbm.c
   mod_file_cache.c
   mod_charset_lite.c
   mod_cache.c
   mod_disk_cache.c
   mod_mem_cache.c
   mod_include.c
   mod_log_config.c
   mod_env.c
   mod_mime_magic.c
   mod_cern_meta.c
   mod_expires.c
   mod_headers.c
   mod_usertrack.c
   mod_setenvif.c
   mod_proxy.c
   proxy_connect.c
   proxy_ftp.c
   proxy_http.c
   mod_ssl.c
   prefork.c
   http_core.c
   mod_mime.c
   mod_dav.c
   mod_status.c
   mod_autoindex.c
   mod_asis.c
   mod_info.c
   mod_cgi.c
   mod_dav_fs.c
   mod_negotiation.c
   mod_dir.c
   mod_imap.c
   mod_actions.c
   mod_userdir.c
   mod_alias.c
   mod_rewrite.c
   mod_so.c

	So... Any tip how can I compile these modules as DSO's (.so) ???


Thanks in advance
Bests Regards
		
-- 

[]'s
Lucas Brasilino
brasilino@recife.pe.gov.br
http://www.recife.pe.gov.br
Emprel -	Empresa Municipal de Informatica (pt_BR)
		Municipal Computing Enterprise (en_US)
Recife - Pernambuco - Brasil
Fone: +55-81-34167078


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: Compiling Apache 2.0.35 and all official modules as DSO

Posted by Joshua Slive <jo...@slive.ca>.
On Mon, 15 Apr 2002, Lucas Brasilino wrote:

> Hi All:
>
> 	I'm trying to compile the lastest stable version of Apache
> with all official modules as DSO, because I'd like to configure
> LoadModules by myself.
> 	With version 1.3 I've made:
>
> ./configure --enable-shared=max
>
> 	and I've got the work done.
> 	With version 2.0.35 I've made:
>
> ./configure     --prefix=/usr/local/apache2 \
>                  --enable-so \
>                  --enable-auth-anon \

You can either use --enable-auth-anon=shared, etc, for all the modules or
you can just use --enable-mods-shared=most.

Documentation is at:
http://httpd.apache.org/docs-2.0/install.html

Joshua.


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org