summaryrefslogtreecommitdiffstats
path: root/support/apachectl.in
diff options
context:
space:
mode:
authorMartin Kraemer <martin@apache.org>2002-07-16 10:30:41 +0200
committerMartin Kraemer <martin@apache.org>2002-07-16 10:30:41 +0200
commitc10ecb4849f732713f3ec46eb777828e0b4b116f (patch)
treef300472c14af026dff30d31fa02e9f0e5c8e2859 /support/apachectl.in
parentOptimize away a couple 64bit integer divides. (diff)
downloadapache2-c10ecb4849f732713f3ec46eb777828e0b4b116f.tar.xz
apache2-c10ecb4849f732713f3ec46eb777828e0b4b116f.zip
If "@APACHECTL_ULIMIT@" is used in apachectl.in, then something must
replace it by a sensible (platform dependent?) value upon "make install". Until that is done, $ULIMIT_MAX_FILES is set to the empty string so that apachectl does not cause a subsequent error @APACHECTL_ULIMIT@: not found git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96071 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/apachectl.in')
-rw-r--r--support/apachectl.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/apachectl.in b/support/apachectl.in
index a0d21ea7dc..f3ec4545e4 100644
--- a/support/apachectl.in
+++ b/support/apachectl.in
@@ -48,7 +48,7 @@ STATUSURL="http://localhost:@PORT@/server-status"
# number of file descriptors allowed per child process. This is
# critical for configurations that use many file descriptors,
# such as mass vhosting, or a multithreaded server.
-ULIMIT_MAX_FILES="@APACHECTL_ULIMIT@"
+ULIMIT_MAX_FILES=""
# -------------------- --------------------
# |||||||||||||||||||| END CONFIGURATION SECTION ||||||||||||||||||||