You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Joseph Oaks <tr...@trells.com> on 2004/07/26 22:30:18 UTC

[users@httpd] Question about the httpd.spec for an rpm build

Hello guys, I finally got 2.0.50 to build on RHEL 3.

I am trying to configure it to our specific needs of modules and the
such. This is the normal configure I run when doing a source build.
I would like to be able to do this in the rpm build. However when
I try to add it to the configure area, the httpd -l does not show the
same as it would with a source build.

   ./configure \
   --prefix=/opt/apache/2.0.50 \
   --enable-auth --enable-dir --enable-env \
   --enable-log_config --enable-mime --enable-setenvif \
   --enable-so --enable-ssl --enable-vhost_alias \
   --enable-access --enable-cgi --enable-cgid \
   --enable-alias --enable-rewrite --enable-usertrack \
   --with-ssl --with-mpm=worker \
   --disable-actions --disable-asis --disable-auth_anon \
   --disable-auth_dbm --disable-auth_digest --disable-autoindex \
   --disable-cache --disable-cern_meta --disable-charset_lite \
   --disable-dav --disable-dav_fs --disable-deflate \
   --disable-disk_cache --disable-echo --disable-example \
   --disable-expires --disable-ext_filter --disable-file_cache \
   --disable-headers --disable-include --disable-imap \
   --disable-ldap --disable-auth_ldap \
   --disable-info --disable-isapi --disable-logio \
   --disable-mem_cache --disable-mime_magic --disable-negotiation \
   --disable-nw_ssl --disable-proxy --disable-proxy_connect \
   --disable-proxy_ftp --disable-proxy_http --disable-speling \
   --disable-status --disable-suexec --disable-unique_id \
   --disable-userdir

The source build shows the following...Compiled in modules:
  core.c
  mod_access.c
  mod_auth.c
  mod_log_config.c
  mod_env.c
  mod_usertrack.c
  mod_setenvif.c
  mod_ssl.c
  worker.c
  http_core.c
  mod_mime.c
  mod_cgid.c
  mod_cgi.c
  mod_vhost_alias.c
  mod_dir.c
  mod_alias.c
  mod_rewrite.c
  mod_so.c

Yet with the rpm build it shows...
Compiled in modules:
  core.c
  worker.c
  http_core.c
  mod_so.c

Can someone tell me what I'm doing wrong? I'm still new this rpm build
stuff so I may be doing a lot of things wrong :)

Trell