#!/bin/sh

# These are the base Apache 2.0 modules. I've put an X after the ones
# I don't want included in my build. I've put question marks after the ones
# that will be included in this build, but which wouldn't be necessary for
# a site runing a servlet runner.
# mod_access ?
# mod_actions
# mod_alias
# mod_asis ?
# mod_auth ?
# mod_autoindex ?
# mod_cgi ?
# mod_cgid ?
# mod_dir
# mod_env
# mod_imap ?
# mod_include ?
# mod_log_config
# mod_logio
# mod_mime
# mod_negotiation
# mod_setenvif ?
# mod_status X
# mod_userdir X

# The following extensions I consider essential in any Apache 2.0
# installation.
# mod_so (as a nice improvement over Apache 1.3, mod_so is automatically
# included by configure if I ask any module to be enabled shared,
# or if shared objects are detected as working well on my OS)
# mod_ssl (note that you need OpenSSL)

./configure --prefix=/usr/local/apache-2.0.44 \
--enable-mods-shared="most ssl" --disable-status --disable-userdir --enable-usertrack

