diff options
author | clement <clement@FreeBSD.org> | 2005-12-15 21:38:38 +0000 |
---|---|---|
committer | clement <clement@FreeBSD.org> | 2005-12-15 21:38:38 +0000 |
commit | 70e3890cacf2f85394f5b508d3bd03446eb64822 (patch) | |
tree | de3a17e8dc03394ba7bee79a5adfa8f1511fb17a /www/apache22 | |
parent | d97dc3f6e7cbda078b7c36caa0e8d0e378866529 (diff) | |
download | FreeBSD-ports-70e3890cacf2f85394f5b508d3bd03446eb64822.zip FreeBSD-ports-70e3890cacf2f85394f5b508d3bd03446eb64822.tar.gz |
- Grrrrr. mod_mem_cache needs threads-capable APR
Reported by: pointyhat via kris
Diffstat (limited to 'www/apache22')
-rw-r--r-- | www/apache22/Makefile.modules | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/www/apache22/Makefile.modules b/www/apache22/Makefile.modules index 7eea1ee..16a007e 100644 --- a/www/apache22/Makefile.modules +++ b/www/apache22/Makefile.modules @@ -141,7 +141,10 @@ AUTH_MODULES+= auth_basic auth_digest AUTHN_MODULES+= authn_file authn_dbm authn_anon authn_default AUTHZ_MODULES= authz_host authz_groupfile authz_user authz_dbm \ authz_owner authz_default -CACHE_MODULES= cache disk_cache file_cache mem_cache +CACHE_MODULES= cache disk_cache file_cache +.if defined(WITH_THREADS) +CACHE_MODULES+= mem_cache +.endif DAV_MODULES= dav dav_fs EXPERIMENTAL_MODULES= bucketeer case_filter case_filter_in ext_filter charset_lite \ log_forensic optional_hook_export optional_hook_import \ |