From: Martin Kraemer Date: Tue, 16 Jul 2002 08:30:41 +0000 (+0000) Subject: If "@APACHECTL_ULIMIT@" is used in apachectl.in, then something must X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=354b7f5f65b5bc649e67e49358fac03bd9472eba;p=apache 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 --- 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 ||||||||||||||||||||