diff options
author | Clement Laforet <clement@FreeBSD.org> | 2005-07-30 21:38:46 +0000 |
---|---|---|
committer | Clement Laforet <clement@FreeBSD.org> | 2005-07-30 21:38:46 +0000 |
commit | 269b708ca48eafa8e5c3fa24d20119702ab1511c (patch) | |
tree | ec0ec9df40a5943394fddf7123185c04fcfc121d /net/cactid | |
parent | Mark FORBIDDEN and set one month expiration due to multiple (diff) |
- Fix build on 4.x
PR: ports/83723
Submitted by: Marcus Grando <marcus@corp.grupos.com.br>
Also reported by: Krzysztof Stryjek <wtp+cactid@bsdguru.org>,
PR:ports/84286
Diffstat (limited to 'net/cactid')
-rw-r--r-- | net/cactid/files/patch-php.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/net/cactid/files/patch-php.c b/net/cactid/files/patch-php.c new file mode 100644 index 000000000000..fdbae348c836 --- /dev/null +++ b/net/cactid/files/patch-php.c @@ -0,0 +1,30 @@ +--- php.c.orig Tue Jul 19 10:58:48 2005 ++++ php.c Tue Jul 19 10:59:01 2005 +@@ -149,27 +149,9 @@ + int cancel_state; + char *result_string; + +- /* variable to set/get environment limitations */ +- struct rlimit ResourceLimits; +- struct rusage Usage; +- + /* initialize the php process id */ + set.php_sspid = 0; + +- if (getrlimit(RLIMIT_STACK,&ResourceLimits) == 0) { +- if (set.verbose == POLLER_VERBOSITY_DEBUG) { +- printf("DEBUG: Current Max Memory Allocation is '%i' bytes\n", ResourceLimits.rlim_cur); +- printf("DEBUG: Maximum Max Memory Allocation is '%i' bytes\n", ResourceLimits.rlim_max); +- } +- } +- +- if (getrlimit(RLIMIT_AS,&ResourceLimits) == 0) { +- if (set.verbose == POLLER_VERBOSITY_DEBUG) { +- printf("DEBUG: Current Address Space Allocation is '%i' bytes\n", ResourceLimits.rlim_cur); +- printf("DEBUG: Maximum Address Space Allocation is '%i' bytes\n", ResourceLimits.rlim_max); +- } +- } +- + if (set.verbose == POLLER_VERBOSITY_DEBUG) { + snprintf(logmessage, LOGSIZE-1, "DEBUG: PHP Script Server Routine Starting\n"); + cacti_log(logmessage); |