* prefork MPM: Run cleanups for final request when process exits gracefully to work around a flaw in apr-util. * mod_reqtimeout: Do not wrongly enforce timeouts for mod_proxy's backend connections and other protocol handlers (like mod_ftp). Enforce the timeout for AP_MODE_GETLINE. If there is a timeout, shorten the lingering close time from 30 to 2 seconds. * Proxy balancer: support setting error status according to HTTP response code from a backend. * mod_authnz_ldap: If AuthLDAPCharsetConfig is set, also convert the password to UTF-8. * core: check symlink ownership if both FollowSymlinks and SymlinksIfOwnerMatch are set * core: fix origin checking in SymlinksIfOwnerMatch * mod_headers: Enable multi-match-and-replace edit option * mod_log_config: Make ${cookie}C correctly match whole cookie names instead of substrings. * mod_dir, mod_negotiation: Pass the output filter information to newly created sub requests; as these are later on used as true requests with an internal redirect. This allows for mod_cache et.al. to trap the results of the redirect. * rotatelogs: Fix possible buffer overflow if admin configures a mongo log file path. * mod_ssl: Do not do overlapping memcpy. * vhost: A purely-numeric Host: header should not be treated as a port. * core: (re)-introduce -T commandline option to suppress documentroot check at startup.
27 lines
803 B
Makefile
27 lines
803 B
Makefile
# $NetBSD: buildlink3.mk,v 1.9 2010/11/01 17:28:49 adam Exp $
|
|
|
|
BUILDLINK_TREE+= apache
|
|
|
|
.if !defined(APACHE_BUILDLINK3_MK)
|
|
APACHE_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.apache+= apache>=2.2.3
|
|
BUILDLINK_ABI_DEPENDS.apache?= apache>=2.2.14nb1
|
|
BUILDLINK_PKGSRCDIR.apache?= ../../www/apache22
|
|
BUILDLINK_DEPMETHOD.apache?= build
|
|
.if defined(APACHE_MODULE)
|
|
BUILDLINK_DEPMETHOD.apache+= full
|
|
.endif
|
|
USE_TOOLS+= perl # for "apxs"
|
|
CONFIGURE_ENV+= APR_LIBTOOL=${LIBTOOL:Q} # make apxs use the libtool we specify
|
|
MAKE_ENV+= APR_LIBTOOL=${LIBTOOL:Q}
|
|
APXS?= ${BUILDLINK_PREFIX.apache}/sbin/apxs
|
|
.if defined(GNU_CONFIGURE)
|
|
CONFIGURE_ARGS+= --with-apxs2=${APXS:Q}
|
|
.endif
|
|
|
|
.include "../../devel/apr/buildlink3.mk"
|
|
.include "../../devel/apr-util/buildlink3.mk"
|
|
.endif # APACHE_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -apache
|