1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

- 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]
This commit is contained in:
Philip M. Gollucci 2010-02-05 04:10:24 +00:00
parent 31c7d214a2
commit 454c7f3786
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=249266
4 changed files with 21 additions and 17 deletions

View File

@ -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}

View File

@ -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

View File

@ -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

View File

@ -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