mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
- Fix build problems with last mod_cplusplus update
- Fix point to the correct locations for INSTALL.ssl - Bump PORTREVISION Submitted by: Mike Durian <durian@shadetreesoftware.com> (maintainer)
This commit is contained in:
parent
10ae353f6f
commit
b6af2c0f48
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=184932
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= sipxpbx
|
||||
PORTVERSION= 3.6.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= net
|
||||
MASTER_SITES= http://www.sipfoundry.org/pub/sipX/3.6/SRC/
|
||||
|
||||
|
23
net/sipxpbx/files/patch-src_mod_sipxauth_SIPXAuthHandler.cpp
Normal file
23
net/sipxpbx/files/patch-src_mod_sipxauth_SIPXAuthHandler.cpp
Normal file
@ -0,0 +1,23 @@
|
||||
--- src/mod_sipxauth/SIPXAuthHandler.cpp.orig Sun Feb 11 18:35:47 2007
|
||||
+++ src/mod_sipxauth/SIPXAuthHandler.cpp Sun Feb 11 18:41:37 2007
|
||||
@@ -168,7 +168,7 @@
|
||||
rPidStr = temp;
|
||||
}
|
||||
|
||||
-SIPXAuthHandler::SIPXAuthHandler() : ApacheHandler()
|
||||
+SIPXAuthHandler::SIPXAuthHandler(ApacheServerRec *pRequest) : ApacheHandler(pRequest)
|
||||
{
|
||||
// do NOT Initialize the IMDB Singleton - Note this is called
|
||||
// running as user root so delay until running as user apache
|
||||
@@ -625,9 +625,9 @@
|
||||
|
||||
/*=====================INSTANCIATORS==========================*/
|
||||
|
||||
-ApacheHandler *instanciate_auth()
|
||||
+ApacheHandler *instanciate_auth(ApacheServerRec *pServer)
|
||||
{
|
||||
- return new SIPXAuthHandler();
|
||||
+ return new SIPXAuthHandler(pServer);
|
||||
}
|
||||
|
||||
// Make sure this symbol is exported and also it is crucial
|
11
net/sipxpbx/files/patch-src_mod_sipxauth_SIPXAuthHandler.h
Normal file
11
net/sipxpbx/files/patch-src_mod_sipxauth_SIPXAuthHandler.h
Normal file
@ -0,0 +1,11 @@
|
||||
--- src/mod_sipxauth/SIPXAuthHandler.h.orig Sun Feb 11 18:35:54 2007
|
||||
+++ src/mod_sipxauth/SIPXAuthHandler.h Sun Feb 11 18:42:19 2007
|
||||
@@ -56,7 +56,7 @@
|
||||
};
|
||||
|
||||
/** Ctor */
|
||||
- SIPXAuthHandler (void);
|
||||
+ SIPXAuthHandler (ApacheServerRec *pRequest);
|
||||
|
||||
/** Dtor */
|
||||
~SIPXAuthHandler(void);
|
@ -21,7 +21,7 @@ Please read:
|
||||
sipX provide a couple scripts to simplify the SSL certificate
|
||||
generation and installation procedure. Please read:
|
||||
|
||||
%%DOCSDIR%%/INSTALL.ssl
|
||||
%%PREFIX%%/share/doc/sipxcommserverlib/INSTALL.ssl
|
||||
|
||||
You will also need to adjust your %%APACHEETCDIR%%/httpd.conf file.
|
||||
Ensure httpd runs as user sipx and group sipx. Ala:
|
||||
|
Loading…
Reference in New Issue
Block a user