diff options
author | pgollucci <pgollucci@FreeBSD.org> | 2010-02-05 12:10:24 +0800 |
---|---|---|
committer | pgollucci <pgollucci@FreeBSD.org> | 2010-02-05 12:10:24 +0800 |
commit | 536200bf116a84b0cb61b6d6c6f21db3f71a0221 (patch) | |
tree | a10176d585e50b2a1d94007c9d367a380a460fea /www/mod_fcgid | |
parent | b2a1c714707632188db440755985275f824a2138 (diff) | |
download | freebsd-ports-gnome-536200bf116a84b0cb61b6d6c6f21db3f71a0221.tar.gz freebsd-ports-gnome-536200bf116a84b0cb61b6d6c6f21db3f71a0221.tar.zst freebsd-ports-gnome-536200bf116a84b0cb61b6d6c6f21db3f71a0221.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]
Diffstat (limited to 'www/mod_fcgid')
-rw-r--r-- | www/mod_fcgid/Makefile | 2 | ||||
-rw-r--r-- | www/mod_fcgid/distinfo | 6 | ||||
-rw-r--r-- | www/mod_fcgid/files/patch-modules-fcgid-fcgid_conf.c | 13 | ||||
-rw-r--r-- | www/mod_fcgid/files/patch-modules-fcgid-fcgid_mutex_unix.c | 17 |
4 files changed, 21 insertions, 17 deletions
diff --git a/www/mod_fcgid/Makefile b/www/mod_fcgid/Makefile index da8e374abcba..ef5293e85cbb 100644 --- a/www/mod_fcgid/Makefile +++ b/www/mod_fcgid/Makefile @@ -6,7 +6,7 @@ # PORTNAME= mod_fcgid -PORTVERSION= 2.3.4 +PORTVERSION= 2.3.5 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_APACHE_HTTPD} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/www/mod_fcgid/distinfo b/www/mod_fcgid/distinfo index 3cb840ea8572..a7ec56c039b5 100644 --- a/www/mod_fcgid/distinfo +++ b/www/mod_fcgid/distinfo @@ -1,3 +1,3 @@ -MD5 (mod_fcgid-2.3.4.tar.gz) = 3778c0710ae4d750d87dddee70990681 -SHA256 (mod_fcgid-2.3.4.tar.gz) = 139cb06f766fac2bb2ad583272b5e786316f4b935e072256b6f45cecd8b6df1b -SIZE (mod_fcgid-2.3.4.tar.gz) = 94417 +MD5 (mod_fcgid-2.3.5.tar.gz) = 82b5bec1ed1c0fc106d5271075641ef9 +SHA256 (mod_fcgid-2.3.5.tar.gz) = 3280fd287659539d577fc3c77a975739c06bb9d0a9cef48275d4beb13c64ef39 +SIZE (mod_fcgid-2.3.5.tar.gz) = 97784 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 + + |