aboutsummaryrefslogtreecommitdiff
path: root/www/mod_fcgid/files
diff options
context:
space:
mode:
authorPhilip M. Gollucci <pgollucci@FreeBSD.org>2010-02-05 04:10:24 +0000
committerPhilip M. Gollucci <pgollucci@FreeBSD.org>2010-02-05 04:10:24 +0000
commit454c7f37863e7edf7a22507312da1c89077a3b31 (patch)
tree3d7bc66641c778022d7f608cc21b418fb2e2f824 /www/mod_fcgid/files
parent31c7d214a2090a9757bf89e27a3804f26b3e9eb7 (diff)
downloadports-454c7f37863e7edf7a22507312da1c89077a3b31.tar.gz
ports-454c7f37863e7edf7a22507312da1c89077a3b31.zip
- Update 2.3.5 [1]
- added patch from http://svn.apache.org/viewvc?view=revision&revision=905302 [1] (fixes incorrect mutex permissions) PR: 142795 [2], 143435 [3], 143458 [3], 143563 [1] Submitted by: Sergey Prikhodko <sergey@network-asp.biz> Approved by: maintainer timeout (hemi@puresimplicity.net; 22 days [2]) no response from maintainer [3]
Notes
Notes: svn path=/head/; revision=249266
Diffstat (limited to 'www/mod_fcgid/files')
-rw-r--r--www/mod_fcgid/files/patch-modules-fcgid-fcgid_conf.c13
-rw-r--r--www/mod_fcgid/files/patch-modules-fcgid-fcgid_mutex_unix.c17
2 files changed, 17 insertions, 13 deletions
diff --git a/www/mod_fcgid/files/patch-modules-fcgid-fcgid_conf.c b/www/mod_fcgid/files/patch-modules-fcgid-fcgid_conf.c
deleted file mode 100644
index f1adc418cf88..000000000000
--- a/www/mod_fcgid/files/patch-modules-fcgid-fcgid_conf.c
+++ /dev/null
@@ -1,13 +0,0 @@
---- modules/fcgid/fcgid_conf.c.orig 2009-10-07 05:16:08.000000000 +0200
-+++ modules/fcgid/fcgid_conf.c 2009-12-11 16:18:09.000000000 +0100
-@@ -35,8 +35,8 @@
- #define DEFAULT_ERROR_SCAN_INTERVAL 3
- #define DEFAULT_ZOMBIE_SCAN_INTERVAL 3
- #define DEFAULT_PROC_LIFETIME (60*60)
--#define DEFAULT_SOCKET_PREFIX "logs/fcgidsock"
--#define DEFAULT_SHM_PATH "logs/fcgid_shm"
-+#define DEFAULT_SOCKET_PREFIX "/var/run/fcgidsock"
-+#define DEFAULT_SHM_PATH "/var/run/fcgid_shm"
- #define DEFAULT_SPAWNSOCRE_UPLIMIT 10
- #define DEFAULT_SPAWN_SCORE 1
- #define DEFAULT_TERMINATION_SCORE 2
diff --git a/www/mod_fcgid/files/patch-modules-fcgid-fcgid_mutex_unix.c b/www/mod_fcgid/files/patch-modules-fcgid-fcgid_mutex_unix.c
new file mode 100644
index 000000000000..630f11e67cb9
--- /dev/null
+++ b/www/mod_fcgid/files/patch-modules-fcgid-fcgid_mutex_unix.c
@@ -0,0 +1,17 @@
+Index: modules/fcgid/fcgid_mutex_unix.c
+===================================================================
+--- modules/fcgid/fcgid_mutex_unix.c (revision 904780)
++++ modules/fcgid/fcgid_mutex_unix.c (working copy)
+@@ -56,6 +56,10 @@
+
+ #include "ap_mpm.h"
+
++#if MODULE_MAGIC_NUMBER_MAJOR < 20051115
++#define AP_NEED_SET_MUTEX_PERMS 1
++#endif
++
+ #if AP_NEED_SET_MUTEX_PERMS
+ #include "unixd.h"
+ #endif
+
+