mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
611bdd4c01
- add additional patch for mpm-itk [2] - add mod_substitute to apache22 [3] - add some documentation into the mpm-itk* patches - bump portrevision Changes: [1] apache2.2-mpm-itk 2.2.17-01, released 2011-03-21: * Fixed CVE-2011-1176: If NiceValue was set, the default with no AssignUserID was to run as root:root instead of the default Apache user and group, due to the configuration merger having an incorrect default configuration. * Rebase against Apache 2.2.17. * Fix an issue where users can sometimes get spurious 403s on persistent connections, if the .htaccess files are not world readable. * In the config merger, don't reallocate the username, since it's already in the correct pool. (This is not a memory leak, only a small inefficiency.) [2] http://httpd.apache.org/docs/2.2/mod/mod_substitute.html Source: http://mpm-itk.sesse.net/ [1] http://www.pvv.ntnu.no/~knuta/mpm-itk/ [2] http://lists.freebsd.org/pipermail/freebsd-apache/2011-March/002184.html [3] With Hat: apache@ PR: ports/156024 [1][2] Submitted by: Lukasz Wasikowski <lukasz _at_ wasikowski.net> [1][2] Nick Gieczewski <sorongo _at_ gmail.com> [3]
109 lines
5.2 KiB
Makefile
109 lines
5.2 KiB
Makefile
# Makefile.doc
|
|
# Author: Clement Laforet <clement@FreeBSD.org>
|
|
#
|
|
# This files contains:
|
|
# - make options output
|
|
# - apache22 man/docs routines
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
## Available knobs:
|
|
## WITHOUT_APACHE_OPTIONS: Don't use OPTIONS and will allow you to use
|
|
## those knobs directly to select modules.
|
|
## Knobs with (*) are working only if
|
|
## WITHOUT_APACHE_OPTIONS is defined.
|
|
##
|
|
## By default, modules are compiled as dynamically loadable modules (DSO).
|
|
##
|
|
## Modules knobs philosophy:
|
|
## Modules are split in categories, "make show-categories" shows you
|
|
## which modules they contain. You can enable/disable/customize a category (*):
|
|
## - To enable a category: WITH_<CATEGORY>_MODULES=yes
|
|
## [WITH_PROXY_MODULES=yes]
|
|
## - To disable a category: WITHOUT_<CATEGORY>_MODULES=yes
|
|
## [WITHOUT_DAV_MODULES=yes]
|
|
## - To customize a category: WITH_CUSTOM_<CATEGORY>
|
|
## [WITH_CUSTOM_PROXY="proxy proxy_http"]
|
|
##
|
|
## Apache-related
|
|
## WITH_MPM: prefork (default)
|
|
## worker
|
|
## event
|
|
## itk
|
|
## WITH_HTTP_PORT: default: 80
|
|
## WITH_LDAP: Enable LDAP support (mod_auth_ldap) (implies WITH_LDAP_MODULES)
|
|
## WITH_(MYSQL|PGSQL|SQLITE): Enable SQL backend for dbd and apr_dbd.
|
|
## When MySQL is chosen, threads are enabled.
|
|
## WITHOUT_V4MAPPED
|
|
## WITH_IPV6_V6ONLY: Don't allow IPv6 sockets to handle IPv4
|
|
## connections
|
|
## WITHOUT_SSL: Disable SSL support
|
|
## WITH_THREADS: Enable threads support
|
|
## WITH_DBM: Choose your DBM: bdb (Berkeley DB), gdbm or
|
|
## ndbm (default)
|
|
## WITH_BDB: Define to select bdb via bsd.database.mk
|
|
## desired version may be set with
|
|
## WITH_BDB_VER or APACHE22_WITH_BDB_VER
|
|
## WITH_BDB_BASE: Define to use bdb from base (1.85)
|
|
## WITH_STATIC_SUPPORT: Build statically linked support binaries
|
|
## WITH_STATIC_APACHE: Build a static version of httpd (implies
|
|
## WITH_STATIC_MODULES)
|
|
## WITH_ALL_STATIC_MODULES: All modules will be statically linked.
|
|
## WITH_STATIC_MODULES (*): List of modules to build modules statics
|
|
## (usefull for slave ports)
|
|
## (They must be already enabled (i.e.
|
|
## WITH_MODULES or with default configuration
|
|
## use 'make show-modules', to check if they are
|
|
## enabled)
|
|
## WITH_MODULES (*): List of modules you choose
|
|
## WITHOUT_MODULES (*): Disable selected modules
|
|
## WITH_SUEXEC: Enable suExec support
|
|
## SUEXEC_DOCROOT: SuExec root directory
|
|
## SUEXEC_USERDIR: User subdirectory (default public_html)
|
|
## SUEXEC_SAFEPATH: Set the safepath
|
|
## SUEXEC_LOGFILE: Set log file for suexec (default: /var/log/httpd-suexec.log)
|
|
## SUEXEC_UIDMIN: Minimal allowed UID (default 1000)
|
|
## SUEXEC_GIDMIN: Minimal allowed GID (default 1000)
|
|
## SUEXEC_CALLER: User allowed to call SuExec (default
|
|
## ${WWWOWN} (www))
|
|
## SUEXEC_UMASK: Defines umask for suexec'd process(default:
|
|
## unset)
|
|
## WITH_DEBUG: Build a debug versoin of apache (set CFLAGS
|
|
## to "-O0 -g -ggdb3" or ${DEBUG_FLAGS} and
|
|
## defines WITH_EXCEPTION_HOOK too)
|
|
## WITH_EXCEPTION_HOOK: Enable fatal exception hook
|
|
##
|
|
## Optional patches:
|
|
## WITH_EXPERIMENTAL_PATCHES Add performance patches (generally backported
|
|
## from apr/httpd SVN repositories)
|
|
## WITH_ITK_PERDIR_REGEX Add the per-directory setting AssignUserFromPath for mpm-itk
|
|
## as described on http://www.pvv.ntnu.no/~knuta/mpm-itk/
|
|
##
|
|
## Available make targets:
|
|
## show-options: prints this message
|
|
## show-modules: prints list of available modules
|
|
## show-categories: prints list of modules sorted by category
|
|
##
|
|
## Examples (*):
|
|
## make WITH_STATIC_MODULES="ssl rewrite include" WITH_EXPERIMENTAL_MODULES=yes \
|
|
## WITH_CUSTOM_AUTH="auth auth_dbm"
|
|
## make WITHOUT_MODULES="access speling status" WITH_PROXY_MODULES=yes
|
|
## make WITH_MODULES="include rewrite auth"
|
|
## Note: If you define your custom options in /etc/make.conf, don't forget
|
|
## to do not use quotes.
|
|
##
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/apache22
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/apache22
|
|
MAKE_ENV+= EXAMPLESDIR=${EXAMPLESDIR}
|
|
|
|
.if defined(NOPORTDOCS)
|
|
MAKE_ENV+= NOPORTDOCS=yes
|
|
.endif
|
|
|
|
MAN1= dbmmanage.1 htdigest.1 htpasswd.1 htdbm.1
|
|
MAN8= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8 suexec.8 htcacheclean.8
|
|
|
|
PORTDOCS= * #don't blame me ;-)
|