freebsd-ports/www/apache22/files/patch-support:envvars-std.in
Clement Laforet 1343a99fc9 - Fix envvars.d [1]
- Add apache22_http_accept_enable to load accf_http kernel module [2]
  Additionnally, if it's not defined, we drop accept filter support
- Drop obsolete apache22ssl_enable rc.conf option
- Sync apache22.sh behavior with apachectl
  Add graceful and graceful-stop targets
- Rework categories (add CACHE_MODULES)
- Add support for apr_dbd: MySQL, PostgrSQL and SQLite3 backends are supported
  It adds mod_auth_dbd and mod_dbd automatically

more fixes to come soon...

PR:             ports/90309 [1],
                ports/90103 [2]
Submitted by:   Simun Mikecin <sime@data.home.hr> [1],
                Melvyn Sopacua <melvyn@melvyn.homeunix.net> [2]
2005-12-13 22:26:57 +00:00

13 lines
316 B
Text

--- support/envvars-std.in.orig Fri Dec 17 14:39:21 2004
+++ support/envvars-std.in Fri Dec 17 14:41:06 2004
@@ -21,3 +21,10 @@
export @SHLIBPATH_VAR@
#
@OS_SPECIFIC_VARS@
+
+ENVVARS_DIR=%%PREFIX%%/etc/apache22/envvars.d
+
+for envvars_file in $(ls ${ENVVARS_DIR}/*.env 2>/dev/null)
+do
+ . ${envvars_file}
+done