summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/modules/http/httpd-event-conf
diff options
context:
space:
mode:
Diffstat (limited to 'sca-cpp/trunk/modules/http/httpd-event-conf')
-rwxr-xr-xsca-cpp/trunk/modules/http/httpd-event-conf8
1 files changed, 7 insertions, 1 deletions
diff --git a/sca-cpp/trunk/modules/http/httpd-event-conf b/sca-cpp/trunk/modules/http/httpd-event-conf
index a7cab03bc6..093bbe78d9 100755
--- a/sca-cpp/trunk/modules/http/httpd-event-conf
+++ b/sca-cpp/trunk/modules/http/httpd-event-conf
@@ -31,9 +31,15 @@ cat >$root/conf/mpm.conf <<EOF
# Use HTTPD event MPM
LoadModule mpm_event_module ${modules_prefix}/modules/mod_mpm_event.so
-# Generated by: httpd-event-conf $*
+EOF
+
+uname=`uname -s`
+if [ $uname = "Darwin" ]; then
+ cat >>$root/conf/mpm.conf <<EOF
+# Generated by: httpd-conf $*
# Set thread stack size
ThreadStackSize 2097152
EOF
+fi