Index: head/net/kamailio/Makefile =================================================================== --- head/net/kamailio/Makefile (revision 396194) +++ head/net/kamailio/Makefile (revision 396195) @@ -1,171 +1,180 @@ # Created by: Oliver Mahmoudi # $FreeBSD$ -# PORTNAME= kamailio -PORTVERSION= 4.2.4 -PORTREVISION= 1 +PORTVERSION= 4.3.1 CATEGORIES= net MASTER_SITES= http://www.kamailio.org/pub/kamailio/${PORTVERSION}/src/ DISTNAME= ${PORTNAME}-${PORTVERSION}_src MAINTAINER= pi@FreeBSD.org COMMENT= Very fast and configurable open source SIP proxy LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 \ libxml2.so:${PORTSDIR}/textproc/libxml2 \ libcurl.so:${PORTSDIR}/ftp/curl RUN_DEPENDS= ${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash USES= gmake readline shebangfix USE_LDCONFIG= yes SHEBANG_FILES= utils/kamctl/dbtextdb/dbtextdb.py \ utils/kamctl/kamctl utils/kamctl/kamdbctl CFLAGS+= -Wall WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} USE_RC_SUBR= kamailio USERS= kamailio GROUPS= kamailio -OPTIONS_DEFINE= DOCS MYSQL PGSQL RADIUS JITSI JABBER TLS UNIXODBC PRESENCE +OPTIONS_DEFINE= DOCS MYSQL PGSQL RADIUS JITSI JABBER TLS UNIXODBC \ + PRESENCE WEBSOCKET OPTIONS_DEFAULT=MYSQL RADIUS JABBER TLS PRESENCE OPTIONS_SUB= YES JITSI_DESC= VoIP Frontend GUI via Jitsi PRESENCE_DESC= Presence support +WEBSOCKET_DESC= Websocket support MYSQL_USE= mysql=yes PGSQL_USES= pgsql JITSI_RUN_DEPENDS= jitsi:${PORTSDIR}/net-im/jitsi UNIXODBC_LIB_DEPENDS= libodbc.so:${PORTSDIR}/databases/unixODBC RADIUS_LIB_DEPENDS= libradiusclient-ng.so:${PORTSDIR}/net/radiusclient TLS_USE= OPENSSL=yes .include .if ${OPSYS} == FreeBSD && ${OSVERSION} < 900000 BUILD_DEPENDS+= clang33:${PORTSDIR}/lang/clang33 .endif DEFAULT_GROUP_INCLUDE= standard standard-dep .if ${PORT_OPTIONS:MMYSQL} EXTRA_GROUPS+= mysql .endif .if ${PORT_OPTIONS:MPGSQL} EXTRA_GROUPS+= postgres .endif .if ${PORT_OPTIONS:MUNIXODBC} EXTRA_MODULES+= db_unixodbc .endif .if ${PORT_OPTIONS:MRADIUS} EXTRA_GROUPS+= radius .endif .if ${PORT_OPTIONS:MJABBER} EXTRA_MODULES+= jabber .endif .if ${PORT_OPTIONS:MTLS} EXTRA_MODULES+= tls .endif .if ${PORT_OPTIONS:MPRESENCE} EXTRA_GROUPS+= presence .endif +.if ${PORT_OPTIONS:MWEBSOCKET} +EXTRA_MODULES+= websocket +LIB_DEPENDS+= libunistring.so:${PORTSDIR}/devel/libunistring +.endif + .if !empty (EXTRA_GROUPS) MAKE_ARGS+= group_include="${DEFAULT_GROUP_INCLUDE} ${EXTRA_GROUPS}" .else MAKE_ARGS+= group_include="${DEFAULT_GROUP_INCLUDE}" .endif .if !empty (EXTRA_MODULES) MAKE_ARGS+= include_modules="${EXTRA_MODULES}" .endif post-patch: .if ! ${PORT_OPTIONS:MDOCS} ${REINPLACE_CMD} -e 's#install-doc install-man#install-man#' \ ${WRKSRC}/Makefile .endif .if ${OPSYS} == FreeBSD && ${OSVERSION} < 900000 ${REINPLACE_CMD} -e 's/clang/clang33/g' ${WRKSRC}/Makefile.defs .endif pre-build: cd ${WRKSRC} && ${GMAKE} ${MAKE_ARGS} cfg do-build: cd ${WRKSRC} && ${GMAKE} ${ALL_TARGET} post-stage: # Strip modules in lib/kamailio/modules @${ECHO_CMD} "Stripping modules in ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/modules/" .for i in db_mysql db_postgres db_unixodbc tls blst \ xhttp_rpc nat_traversal print msrp mi_datagram \ userblacklist msilo uid_uri_db drouting enum \ p_usrloc avpops matrix rr sst \ rtpproxy rtpproxy-ng mohqueue mqueue tmx sqlops dialog \ usrloc dispatcher auth_db uac permissions \ path tm mediaproxy nathelper print_lib \ mangler group textops rtimer db_cluster \ textopsx db_flatstore sl pipelimit counters \ mi_fifo statistics stun cnxcc corex debugger pv \ ratelimit ctl db2_ops mi_rpc tmrec \ benchmark domainpolicy acc exec siputils \ malloc_test kex cfg_rpc diversion ipops \ uid_auth_db imc cfg_db xhttp seas \ timer auth_diameter dmq uac_redirect pdt \ call_control uri_db alias_db sca avp \ cfgutils pike uid_domain domain maxfwd \ htable topoh auth sms async \ prefix_route speeddial registrar mtree uid_avp_db \ xlog sipt siptrace qos pdb xprint auth_radius \ sanity uid_gflags db_text sdpops sipcapture \ tsilo nosip rtpengine jsonrpc-s \ presence presence_conference presence_dialog presence_dialoginfo \ presence_mwi \ presence_profile presence_reginfo presence_xml pua_bla \ pua_dialoginfo pua_mi pua_reginfo pua_usrloc rls \ - acc_radius misc_radius peering pua pua_xmpp xcap_client xcap_server + acc_radius misc_radius peering pua pua_xmpp xcap_client xcap_server \ + tcpops auth_xkeys statsd dmq_usrloc rtjson websocket @if [ -e ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/modules/${i}.so ]; then \ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/modules/${i}.so; \ fi .endfor # Strip libraries in lib/kamailio @${ECHO_CMD} "Stripping libraries in ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/" .for j in srdb2 srdb1 kcore srutils kmi trie print @if [ -e ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/lib${j}.so.1 ]; then \ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/lib${j}.so.1; \ fi .endfor # This is also part of lib/kamailio but ends in .so.0 @if [ -e ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/libbinrpc.so.0 ]; then \ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/libbinrpc.so.0; \ fi # Strip binaries in sbin @${ECHO_CMD} "Stripping binaries in ${STAGEDIR}${PREFIX}/sbin/" .for k in kamailio kamcmd @${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/${k} .endfor do-install: cd ${WRKSRC} && ${GMAKE} ${INSTALL_TARGET} +.if ! ${PORT_OPTIONS:MMYSQL} && ! ${PORT_OPTIONS:MPGSQL} + ${RMDIR} ${STAGEDIR}${PREFIX}/share/${PORTNAME} +.endif .include Index: head/net/kamailio/distinfo =================================================================== --- head/net/kamailio/distinfo (revision 396194) +++ head/net/kamailio/distinfo (revision 396195) @@ -1,2 +1,2 @@ -SHA256 (kamailio-4.2.4_src.tar.gz) = 6cc16f8d8759f555f836371780f9a9de087a09e14a1468c07dbe50dcf03c884d -SIZE (kamailio-4.2.4_src.tar.gz) = 11171494 +SHA256 (kamailio-4.3.1_src.tar.gz) = da5216b2116f1d76189c61697eeea4ee787c168b0209c9a89e03aac65d179908 +SIZE (kamailio-4.3.1_src.tar.gz) = 11335477 Index: head/net/kamailio/files/patch-ip_addr_h =================================================================== --- head/net/kamailio/files/patch-ip_addr_h (revision 396194) +++ head/net/kamailio/files/patch-ip_addr_h (nonexistent) @@ -1,13 +0,0 @@ ---- ip_addr.h.orig 2015-02-08 08:55:12.465621472 +0800 -+++ ip_addr.h 2015-02-08 08:57:10.297609516 +0800 -@@ -59,6 +59,10 @@ - enum comp_methods { COMP_NONE, COMP_SIGCOMP, COMP_SERGZ }; - #endif - -+#ifndef INADDR_LOOPBACK -+#define INADDR_LOOPBACK (u_int32_t)0x7f000001 -+#endif -+ - struct ip_addr{ - unsigned int af; /* address family: AF_INET6 or AF_INET */ - unsigned int len; /* address len, 16 or 4 */ Property changes on: head/net/kamailio/files/patch-ip_addr_h ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/net/kamailio/files/patch-utils__sercmd__Makefile =================================================================== --- head/net/kamailio/files/patch-utils__sercmd__Makefile (revision 396194) +++ head/net/kamailio/files/patch-utils__sercmd__Makefile (nonexistent) @@ -1,22 +0,0 @@ ---- utils/sercmd/Makefile.orig 2015-01-11 14:54:24.246707463 +0100 -+++ utils/sercmd/Makefile 2015-01-11 14:56:12.692702813 +0100 -@@ -12,7 +12,7 @@ - NAME=sercmd - endif - --readline_locations= /usr/include/readline/readline.h \ -+readline_locations= /usr/local/include/readline/readline.h \ - $(LOCALBASE)/include/readline/readline.h - - use_readline ?= -@@ -71,8 +71,8 @@ - endif - - ifeq ($(use_readline),1) -- DEFS+=-DUSE_READLINE -- LIBS+=-lreadline -lncurses -+ DEFS+=-DUSE_READLINE -I${LOCALBASE}/include -+ LIBS+=-L${LOCALBASE}/lib -lreadline -lncurses - endif - - Property changes on: head/net/kamailio/files/patch-utils__sercmd__Makefile ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/net/kamailio/files/patch-Makefile =================================================================== --- head/net/kamailio/files/patch-Makefile (revision 396194) +++ head/net/kamailio/files/patch-Makefile (revision 396195) @@ -1,26 +1,35 @@ ---- Makefile.orig 2014-10-16 14:46:22.000000000 +0200 -+++ Makefile 2014-11-09 11:52:07.000000000 +0100 -@@ -95,7 +95,7 @@ +--- Makefile.orig 2015-07-20 13:16:24 UTC ++++ Makefile +@@ -34,7 +34,7 @@ err_fail?=1 # whether or not to install $(MAIN_NAME).cfg or just $(MAIN_NAME).cfg.default # ($(MAIN_NAME).cfg will never be overwritten by make install, this is usefull # when creating packages) -skip_cfg_install?= +skip_cfg_install?=yes #extra modules to exclude skip_modules?= -@@ -819,10 +819,10 @@ +@@ -646,7 +646,7 @@ sunpkg: + .PHONY: install + install: mk_params="compile_for_install=yes" + install: install-bin install-every-module install-cfg \ +- install-doc install-man install-utils install-share ++ install-man install-utils install-share + + .PHONY: dbinstall + dbinstall: +@@ -761,10 +761,10 @@ install-cfg: $(cfg_prefix)/$(cfg_dir) fi ; \ fi ; \ : ; done; true - @# radius dictionary - @$(INSTALL_TOUCH) $(cfg_prefix)/$(cfg_dir)/dictionary.$(CFG_NAME) - @$(INSTALL_CFG) etc/dictionary.$(CFG_NAME) $(cfg_prefix)/$(cfg_dir) - @echo "config files installed" + # radius dictionary + $(INSTALL_TOUCH) $(cfg_prefix)/$(cfg_dir)/dictionary.$(CFG_NAME).sample + $(INSTALL_CFG) etc/dictionary.$(CFG_NAME) $(cfg_prefix)/$(cfg_dir)/dictionary.$(CFG_NAME).sample + echo "config files installed" install-bin: $(bin_prefix)/$(bin_dir) $(NAME) $(INSTALL_TOUCH) $(bin_prefix)/$(bin_dir)/$(NAME) Index: head/net/kamailio/files/patch-Makefile.defs =================================================================== --- head/net/kamailio/files/patch-Makefile.defs (revision 396194) +++ head/net/kamailio/files/patch-Makefile.defs (revision 396195) @@ -1,50 +1,38 @@ ---- Makefile.defs.orig 2014-10-16 14:46:23.000000000 +0200 -+++ Makefile.defs 2014-11-09 11:54:46.000000000 +0100 -@@ -264,7 +264,7 @@ +--- Makefile.defs.orig 2015-07-20 13:16:26 UTC ++++ Makefile.defs +@@ -197,7 +197,7 @@ YACC := $(shell echo "$${YACC}") # find compiler name & version ifeq ($(CC),) - CC=gcc + CC=clang endif LD= $(CC) CC_LONGVER:=$(shell if $(CC) -v 2>/dev/null; then \ -@@ -278,7 +278,7 @@ +@@ -211,7 +211,7 @@ MKTAGS=ctags #find-out the compiler's name ifneq (,$(findstring gcc, $(CC_LONGVER))) - CC_NAME=gcc + CC_NAME=clang RPAREN=) CC_VER:=$(word 1,$(CC)) $(shell $(CC) - --version|head -n 1|\ sed -e 's/([^$(RPAREN)]*)//g' \ -@@ -431,7 +431,7 @@ +@@ -366,7 +366,7 @@ LIBDIR ?= ifeq ($(LIBDIR),) ARCHBSZ= $(shell echo $(ARCH) | sed -e 's/.*64.*/64b/') ifeq ($(ARCHBSZ),64b) - LIBDIR = lib64 + LIBDIR = lib else LIBDIR = lib endif -@@ -945,10 +945,7 @@ - ifeq ($(CC_NAME), clang) - $(call set_if_empty,CPU,athlon64) - C_DEFS+=-DCC_GCC_LIKE_ASM -- CFLAGS+=-g -m32 -- $(CC_OPT) \ -- \ -- -mtune=$(CPU) -+ CFLAGS+=-g -m32 $(CC_OPT) -mtune=$(CPU) - LDFLAGS+=-m32 - else # CC_NAME, clang - ifeq ($(CC_NAME), icc) -@@ -1744,7 +1741,7 @@ +@@ -1693,7 +1693,7 @@ ifeq ($(YACC),) endif YACC_FLAGS=-d -b cfg # on solaris add -lxnet (e.g. LIBS= -lxnet) -LIBS= -ldl -lresolv +LIBS= LIB_PREFIX:=lib LIB_SUFFIX:=.so Index: head/net/kamailio/files/patch-ip__addr.h =================================================================== --- head/net/kamailio/files/patch-ip__addr.h (nonexistent) +++ head/net/kamailio/files/patch-ip__addr.h (revision 396195) @@ -0,0 +1,13 @@ +--- ip_addr.h.orig 2015-09-05 21:17:34 UTC ++++ ip_addr.h +@@ -53,6 +53,10 @@ enum comp_methods { COMP_NONE, COMP_SIGC + #define INADDR_LOOPBACK (u_int32_t)0x7f000001 + #endif + ++#ifndef INADDR_LOOPBACK ++#define INADDR_LOOPBACK (u_int32_t)0x7f000001 ++#endif ++ + struct ip_addr{ + unsigned int af; /* address family: AF_INET6 or AF_INET */ + unsigned int len; /* address len, 16 or 4 */ Property changes on: head/net/kamailio/files/patch-ip__addr.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net/kamailio/files/patch-main.c =================================================================== --- head/net/kamailio/files/patch-main.c (nonexistent) +++ head/net/kamailio/files/patch-main.c (revision 396195) @@ -0,0 +1,11 @@ +--- main.c.orig 2015-07-20 13:16:25 UTC ++++ main.c +@@ -353,7 +353,7 @@ int received_dns = 0; + int sr_auto_aliases=1; + char* working_dir = 0; + char* chroot_dir = 0; +-char* runtime_dir = "" RUN_DIR; ++char* runtime_dir = "/var/run/kamailio/"; + char* user=0; + char* group=0; + int uid = 0; Property changes on: head/net/kamailio/files/patch-main.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net/kamailio/files/patch-modules__db_berkeley__Makefile =================================================================== --- head/net/kamailio/files/patch-modules__db_berkeley__Makefile (revision 396194) +++ head/net/kamailio/files/patch-modules__db_berkeley__Makefile (revision 396195) @@ -1,11 +1,11 @@ ---- modules/db_berkeley/Makefile.orig 2014-08-06 15:29:51 UTC +--- modules/db_berkeley/Makefile.orig 2015-07-20 13:16:25 UTC +++ modules/db_berkeley/Makefile -@@ -25,7 +25,7 @@ +@@ -24,7 +24,7 @@ ifeq ($(INSTALL_FLAVOUR),kamailio) # extra install for kamailio install-berkeley-scripts: $(bin_prefix)/$(bin_dir) - BERKELEYDBON=yes make -C ../../utils/kamctl/ install-modules + BERKELEYDBON=yes $(MAKE) -C ../../utils/kamctl/ install-modules install-scripts: install-berkeley-scripts Index: head/net/kamailio/files/patch-modules__db_oracle__Makefile =================================================================== --- head/net/kamailio/files/patch-modules__db_oracle__Makefile (revision 396194) +++ head/net/kamailio/files/patch-modules__db_oracle__Makefile (revision 396195) @@ -1,11 +1,11 @@ ---- modules/db_oracle/Makefile.orig 2014-08-06 15:29:51 UTC +--- modules/db_oracle/Makefile.orig 2015-07-20 13:16:25 UTC +++ modules/db_oracle/Makefile -@@ -71,7 +71,7 @@ +@@ -70,7 +70,7 @@ ifeq ($(INSTALL_FLAVOUR),kamailio) # extra install for kamailio install-oracle-scripts: $(bin_prefix)/$(bin_dir) - ORACLEON=yes make -C ../../utils/kamctl/ install-modules + ORACLEON=yes $(MAKE) -C ../../utils/kamctl/ install-modules install-scripts: install-oracle-scripts Index: head/net/kamailio/files/patch-modules__db_sqlite__Makefile =================================================================== --- head/net/kamailio/files/patch-modules__db_sqlite__Makefile (revision 396194) +++ head/net/kamailio/files/patch-modules__db_sqlite__Makefile (revision 396195) @@ -1,11 +1,11 @@ ---- modules/db_sqlite/Makefile.orig 2014-08-06 15:29:51 UTC +--- modules/db_sqlite/Makefile.orig 2015-07-20 13:16:25 UTC +++ modules/db_sqlite/Makefile -@@ -23,7 +23,7 @@ +@@ -22,7 +22,7 @@ ifeq ($(INSTALL_FLAVOUR),kamailio) # extra install for kamailio install-sqlite-scripts: $(bin_prefix)/$(bin_dir) - SQLITEON=yes make -C ../../utils/kamctl/ install-modules + SQLITEON=yes $(MAKE) -C ../../utils/kamctl/ install-modules install-scripts: install-sqlite-scripts Index: head/net/kamailio/files/patch-modules__tls__Makefile =================================================================== --- head/net/kamailio/files/patch-modules__tls__Makefile (revision 396194) +++ head/net/kamailio/files/patch-modules__tls__Makefile (revision 396195) @@ -1,11 +1,11 @@ ---- modules/tls/Makefile.orig 2014-08-06 15:29:51 UTC +--- modules/tls/Makefile.orig 2015-07-20 13:16:26 UTC +++ modules/tls/Makefile -@@ -9,6 +9,8 @@ +@@ -8,6 +8,8 @@ include ../../Makefile.defs auto_gen= NAME=tls.so +skip_cfg_install?=yes + ifeq ($(CROSS_COMPILE),) SSL_BUILDER=$(shell \ if pkg-config --exists libssl; then \ Index: head/net/kamailio/files/patch-modules_ctl_ctl__defaults.h =================================================================== --- head/net/kamailio/files/patch-modules_ctl_ctl__defaults.h (nonexistent) +++ head/net/kamailio/files/patch-modules_ctl_ctl__defaults.h (revision 396195) @@ -0,0 +1,15 @@ +--- modules/ctl/ctl_defaults.h.orig 2015-07-20 13:16:25 UTC ++++ modules/ctl/ctl_defaults.h +@@ -4,10 +4,10 @@ + /*listen by default on: */ + #ifdef SRNAME + /* this is used when compiling sercmd tool */ +-#define DEFAULT_CTL_SOCKET "unixs:" RUN_DIR "/" SRNAME "_ctl" ++#define DEFAULT_CTL_SOCKET "unixs:" "/var/run/" SRNAME "_ctl" + #else + /* this is used when compiling sip server */ +-#define DEFAULT_CTL_SOCKET "unixs:" RUN_DIR "/" NAME "_ctl" ++#define DEFAULT_CTL_SOCKET "unixs:" "/var/run/" NAME "_ctl" + #endif + /* port used by default for tcp/udp if no port is explicitely specified */ + #define DEFAULT_CTL_PORT 2049 Property changes on: head/net/kamailio/files/patch-modules_ctl_ctl__defaults.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net/kamailio/files/patch-modules_tls_sip-router__cert.sh =================================================================== --- head/net/kamailio/files/patch-modules_tls_sip-router__cert.sh (nonexistent) +++ head/net/kamailio/files/patch-modules_tls_sip-router__cert.sh (revision 396195) @@ -0,0 +1,9 @@ +--- modules/tls/sip-router_cert.sh.orig 2015-07-20 13:16:26 UTC ++++ modules/tls/sip-router_cert.sh +@@ -197,5 +197,6 @@ if [ $? != 0 ] ; then + else + echo "Private key stored in '$DIR/$KEY_FILENAME'." + echo "Certificate stored in '$DIR/$CERT_FILENAME'." ++ rm ~/.rnd + exit 0; + fi Property changes on: head/net/kamailio/files/patch-modules_tls_sip-router__cert.sh ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net/kamailio/files/patch-modules_websocket_ws__frame.c =================================================================== --- head/net/kamailio/files/patch-modules_websocket_ws__frame.c (nonexistent) +++ head/net/kamailio/files/patch-modules_websocket_ws__frame.c (revision 396195) @@ -0,0 +1,11 @@ +--- modules/websocket/ws_frame.c.orig 2015-09-05 21:18:25 UTC ++++ modules/websocket/ws_frame.c +@@ -29,7 +29,7 @@ + #ifdef EMBEDDED_UTF8_DECODE + #include "utf8_decode.h" + #else +-#include ++/* #include */ + #endif + + #include "../../events.h" Property changes on: head/net/kamailio/files/patch-modules_websocket_ws__frame.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net/kamailio/files/patch-utils__kamcmd__Makefile =================================================================== --- head/net/kamailio/files/patch-utils__kamcmd__Makefile (nonexistent) +++ head/net/kamailio/files/patch-utils__kamcmd__Makefile (revision 396195) @@ -0,0 +1,22 @@ +--- utils/kamcmd/Makefile.orig 2015-07-20 13:16:26 UTC ++++ utils/kamcmd/Makefile +@@ -12,7 +12,7 @@ else + NAME=kamcmd + endif + +-readline_locations= /usr/include/readline/readline.h \ ++readline_locations= /usr/local/include/readline/readline.h \ + $(LOCALBASE)/include/readline/readline.h + + use_readline ?= +@@ -72,8 +72,8 @@ endif + endif + + ifeq ($(use_readline),1) +- DEFS+=-DUSE_READLINE +- LIBS+=-lreadline -lncurses ++ DEFS+=-DUSE_READLINE -I${LOCALBASE}/include ++ LIBS+=-L${LOCALBASE}/lib -lreadline -lncurses + endif + + Property changes on: head/net/kamailio/files/patch-utils__kamcmd__Makefile ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net/kamailio/files/patch-utils__kamctl__Makefile =================================================================== --- head/net/kamailio/files/patch-utils__kamctl__Makefile (revision 396194) +++ head/net/kamailio/files/patch-utils__kamctl__Makefile (revision 396195) @@ -1,21 +1,21 @@ ---- utils/kamctl/Makefile.orig 2014-08-06 15:29:51 UTC +--- utils/kamctl/Makefile.orig 2015-07-20 13:16:26 UTC +++ utils/kamctl/Makefile -@@ -3,6 +3,8 @@ - include $(COREPATH)/Makefile.defs - include $(COREPATH)/config.mak +@@ -9,6 +9,8 @@ else + kamctltmpdir = $(basedir) + endif +skip_cfg_install?=yes + all: @echo "No compilation needed for kamctl" -@@ -15,7 +17,8 @@ +@@ -21,7 +23,8 @@ install-cfg: $(cfg_prefix)/$(cfg_dir) $(INSTALL_TOUCH) $(cfg_prefix)/$(cfg_dir)/kamctlrc.sample $(INSTALL_CFG) kamctlrc \ $(cfg_prefix)/$(cfg_dir)/kamctlrc.sample - if [ ! -f $(cfg_prefix)/$(cfg_dir)/kamctlrc ]; then \ + if [ -z "${skip_cfg_install}" -a \ + ! -f $(cfg_prefix)/$(cfg_dir)/kamctlrc ]; then \ mv -f $(cfg_prefix)/$(cfg_dir)/kamctlrc.sample \ $(cfg_prefix)/$(cfg_dir)/kamctlrc; \ fi Index: head/net/kamailio/pkg-plist =================================================================== --- head/net/kamailio/pkg-plist (revision 396194) +++ head/net/kamailio/pkg-plist (revision 396195) @@ -1,458 +1,334 @@ sbin/kamailio sbin/kamcmd sbin/kamctl sbin/kamdbctl @sample etc/kamailio/dictionary.kamailio.sample @sample etc/kamailio/kamailio-advanced.cfg.sample @sample etc/kamailio/kamailio-basic.cfg.sample @sample etc/kamailio/kamailio.cfg.sample @sample etc/kamailio/kamctlrc.sample %%TLS%%@sample etc/kamailio/tls.cfg.sample %%TLS%%etc/kamailio/kamailio-selfsigned.key %%TLS%%etc/kamailio/kamailio-selfsigned.pem lib/kamailio/libbinrpc.so lib/kamailio/libbinrpc.so.0 lib/kamailio/libkcore.so lib/kamailio/libkcore.so.1 lib/kamailio/libkmi.so lib/kamailio/libkmi.so.1 lib/kamailio/libprint.so lib/kamailio/libprint.so.1 lib/kamailio/libsrdb1.so lib/kamailio/libsrdb1.so.1 -lib/kamailio/libsrdb2.so -lib/kamailio/libsrdb2.so.1 +%%MYSQL%%lib/kamailio/libsrdb2.so +%%MYSQL%%lib/kamailio/libsrdb2.so.1 lib/kamailio/libsrutils.so lib/kamailio/libsrutils.so.1 -lib/kamailio/libtrie.so -lib/kamailio/libtrie.so.1 +%%MYSQL%%lib/kamailio/libtrie.so +%%MYSQL%%lib/kamailio/libtrie.so.1 lib/kamailio/kamctl/kamctl.base lib/kamailio/kamctl/kamctl.ctlbase -lib/kamailio/kamctl/kamctl.dbtext +%%MYSQL%%lib/kamailio/kamctl/kamctl.dbtext lib/kamailio/kamctl/kamctl.fifo %%MYSQL%%lib/kamailio/kamctl/kamctl.mysql %%PGSQL%%lib/kamailio/kamctl/kamctl.pgsql lib/kamailio/kamctl/kamctl.ser lib/kamailio/kamctl/kamctl.ser_mi lib/kamailio/kamctl/kamctl.sqlbase lib/kamailio/kamctl/kamctl.unixsock lib/kamailio/kamctl/kamdbctl.base -lib/kamailio/kamctl/kamdbctl.dbtext +%%MYSQL%%lib/kamailio/kamctl/kamdbctl.dbtext %%MYSQL%%lib/kamailio/kamctl/kamdbctl.mysql %%PGSQL%%lib/kamailio/kamctl/kamdbctl.pgsql -lib/kamailio/kamctl/dbtextdb/dbtextdb.py -lib/kamailio/modules/acc.so -lib/kamailio/modules/alias_db.so +%%MYSQL%%lib/kamailio/kamctl/dbtextdb/dbtextdb.py +%%MYSQL%%lib/kamailio/modules/acc.so +%%MYSQL%%lib/kamailio/modules/alias_db.so lib/kamailio/modules/async.so lib/kamailio/modules/auth.so -lib/kamailio/modules/auth_db.so +%%MYSQL%%lib/kamailio/modules/auth_db.so lib/kamailio/modules/auth_diameter.so %%RADIUS%%lib/kamailio/modules/auth_radius.so +lib/kamailio/modules/auth_xkeys.so lib/kamailio/modules/avp.so -lib/kamailio/modules/avpops.so +%%MYSQL%%lib/kamailio/modules/avpops.so lib/kamailio/modules/benchmark.so lib/kamailio/modules/blst.so lib/kamailio/modules/call_control.so -lib/kamailio/modules/cfg_db.so +%%MYSQL%%lib/kamailio/modules/cfg_db.so lib/kamailio/modules/cfg_rpc.so lib/kamailio/modules/cfgutils.so -lib/kamailio/modules/cnxcc.so lib/kamailio/modules/corex.so lib/kamailio/modules/counters.so lib/kamailio/modules/ctl.so -lib/kamailio/modules/db_cluster.so -lib/kamailio/modules/db_flatstore.so +%%MYSQL%%lib/kamailio/modules/db_cluster.so +%%MYSQL%%lib/kamailio/modules/db_flatstore.so %%MYSQL%%lib/kamailio/modules/db_mysql.so %%PGSQL%%lib/kamailio/modules/db_postgres.so %%UNIXODBC%%lib/kamailio/modules/db_unixodbc.so %%TLS%%lib/kamailio/modules/tls.so -lib/kamailio/modules/db_text.so +%%MYSQL%%lib/kamailio/modules/db_text.so lib/kamailio/modules/debugger.so -lib/kamailio/modules/dialog.so -lib/kamailio/modules/dispatcher.so +%%MYSQL%%lib/kamailio/modules/dialog.so +%%MYSQL%%lib/kamailio/modules/dispatcher.so lib/kamailio/modules/diversion.so lib/kamailio/modules/dmq.so -lib/kamailio/modules/domain.so +lib/kamailio/modules/dmq_usrloc.so +%%MYSQL%%lib/kamailio/modules/domain.so lib/kamailio/modules/domainpolicy.so -lib/kamailio/modules/drouting.so +%%MYSQL%%lib/kamailio/modules/drouting.so lib/kamailio/modules/enum.so lib/kamailio/modules/exec.so -lib/kamailio/modules/group.so -lib/kamailio/modules/htable.so -lib/kamailio/modules/imc.so +%%MYSQL%%lib/kamailio/modules/group.so +%%MYSQL%%lib/kamailio/modules/htable.so +%%MYSQL%%lib/kamailio/modules/imc.so lib/kamailio/modules/ipops.so lib/kamailio/modules/jsonrpc-s.so lib/kamailio/modules/kex.so lib/kamailio/modules/malloc_test.so lib/kamailio/modules/mangler.so -lib/kamailio/modules/matrix.so +%%MYSQL%%lib/kamailio/modules/matrix.so lib/kamailio/modules/maxfwd.so lib/kamailio/modules/mediaproxy.so lib/kamailio/modules/mi_datagram.so lib/kamailio/modules/mi_fifo.so lib/kamailio/modules/mi_rpc.so -lib/kamailio/modules/mohqueue.so +%%MYSQL%%lib/kamailio/modules/mohqueue.so lib/kamailio/modules/mqueue.so -lib/kamailio/modules/msilo.so +%%MYSQL%%lib/kamailio/modules/msilo.so lib/kamailio/modules/msrp.so -lib/kamailio/modules/mtree.so +%%MYSQL%%lib/kamailio/modules/mtree.so lib/kamailio/modules/nat_traversal.so lib/kamailio/modules/nathelper.so lib/kamailio/modules/nosip.so -lib/kamailio/modules/p_usrloc.so +%%MYSQL%%lib/kamailio/modules/p_usrloc.so lib/kamailio/modules/path.so lib/kamailio/modules/pdb.so -lib/kamailio/modules/pdt.so -lib/kamailio/modules/permissions.so +%%MYSQL%%lib/kamailio/modules/pdt.so +%%MYSQL%%lib/kamailio/modules/permissions.so lib/kamailio/modules/pike.so -lib/kamailio/modules/pipelimit.so -lib/kamailio/modules/prefix_route.so +%%MYSQL%%lib/kamailio/modules/pipelimit.so +%%MYSQL%%lib/kamailio/modules/prefix_route.so lib/kamailio/modules/print.so lib/kamailio/modules/print_lib.so lib/kamailio/modules/pv.so lib/kamailio/modules/qos.so lib/kamailio/modules/ratelimit.so -lib/kamailio/modules/registrar.so +%%MYSQL%%lib/kamailio/modules/registrar.so lib/kamailio/modules/rr.so lib/kamailio/modules/rtimer.so +lib/kamailio/modules/rtjson.so lib/kamailio/modules/rtpengine.so lib/kamailio/modules/rtpproxy.so lib/kamailio/modules/sanity.so lib/kamailio/modules/sca.so lib/kamailio/modules/sdpops.so lib/kamailio/modules/seas.so -lib/kamailio/modules/sipcapture.so +%%MYSQL%%lib/kamailio/modules/sipcapture.so lib/kamailio/modules/sipt.so -lib/kamailio/modules/siptrace.so +%%MYSQL%%lib/kamailio/modules/siptrace.so lib/kamailio/modules/siputils.so lib/kamailio/modules/sl.so lib/kamailio/modules/sms.so -lib/kamailio/modules/speeddial.so -lib/kamailio/modules/sqlops.so +%%MYSQL%%lib/kamailio/modules/speeddial.so +%%MYSQL%%lib/kamailio/modules/sqlops.so lib/kamailio/modules/sst.so lib/kamailio/modules/statistics.so +lib/kamailio/modules/statsd.so lib/kamailio/modules/stun.so +lib/kamailio/modules/tcpops.so lib/kamailio/modules/textops.so lib/kamailio/modules/textopsx.so lib/kamailio/modules/timer.so lib/kamailio/modules/tm.so lib/kamailio/modules/tmrec.so lib/kamailio/modules/tmx.so lib/kamailio/modules/topoh.so -lib/kamailio/modules/uac.so +lib/kamailio/modules/tsilo.so +%%MYSQL%%lib/kamailio/modules/uac.so lib/kamailio/modules/uac_redirect.so -lib/kamailio/modules/uri_db.so -lib/kamailio/modules/userblacklist.so -lib/kamailio/modules/usrloc.so +%%MYSQL%%lib/kamailio/modules/uri_db.so +%%MYSQL%%lib/kamailio/modules/userblacklist.so +%%MYSQL%%lib/kamailio/modules/usrloc.so +%%WEBSOCKET%%lib/kamailio/modules/websocket.so lib/kamailio/modules/xhttp.so lib/kamailio/modules/xhttp_rpc.so lib/kamailio/modules/xlog.so lib/kamailio/modules/xprint.so -%%DATADIR%%/dbtext/kamailio/acc -%%DATADIR%%/dbtext/kamailio/acc_cdrs -%%DATADIR%%/dbtext/kamailio/active_watchers -%%DATADIR%%/dbtext/kamailio/address -%%DATADIR%%/dbtext/kamailio/aliases -%%DATADIR%%/dbtext/kamailio/carrier_name -%%DATADIR%%/dbtext/kamailio/carrierfailureroute -%%DATADIR%%/dbtext/kamailio/carrierroute -%%DATADIR%%/dbtext/kamailio/cpl -%%DATADIR%%/dbtext/kamailio/dbaliases -%%DATADIR%%/dbtext/kamailio/dialog -%%DATADIR%%/dbtext/kamailio/dialog_vars -%%DATADIR%%/dbtext/kamailio/dialplan -%%DATADIR%%/dbtext/kamailio/dispatcher -%%DATADIR%%/dbtext/kamailio/domain -%%DATADIR%%/dbtext/kamailio/domain_attrs -%%DATADIR%%/dbtext/kamailio/domain_name -%%DATADIR%%/dbtext/kamailio/domainpolicy -%%DATADIR%%/dbtext/kamailio/dr_gateways -%%DATADIR%%/dbtext/kamailio/dr_groups -%%DATADIR%%/dbtext/kamailio/dr_gw_lists -%%DATADIR%%/dbtext/kamailio/dr_rules -%%DATADIR%%/dbtext/kamailio/globalblacklist -%%DATADIR%%/dbtext/kamailio/grp -%%DATADIR%%/dbtext/kamailio/htable -%%DATADIR%%/dbtext/kamailio/imc_members -%%DATADIR%%/dbtext/kamailio/imc_rooms -%%DATADIR%%/dbtext/kamailio/lcr_gw -%%DATADIR%%/dbtext/kamailio/lcr_rule -%%DATADIR%%/dbtext/kamailio/lcr_rule_target -%%DATADIR%%/dbtext/kamailio/location -%%DATADIR%%/dbtext/kamailio/location_attrs -%%DATADIR%%/dbtext/kamailio/matrix -%%DATADIR%%/dbtext/kamailio/missed_calls -%%DATADIR%%/dbtext/kamailio/mohqcalls -%%DATADIR%%/dbtext/kamailio/mohqueues -%%DATADIR%%/dbtext/kamailio/mtree -%%DATADIR%%/dbtext/kamailio/mtrees -%%DATADIR%%/dbtext/kamailio/pdt -%%DATADIR%%/dbtext/kamailio/pl_pipes -%%DATADIR%%/dbtext/kamailio/presentity -%%DATADIR%%/dbtext/kamailio/pua -%%DATADIR%%/dbtext/kamailio/purplemap -%%DATADIR%%/dbtext/kamailio/re_grp -%%DATADIR%%/dbtext/kamailio/rls_presentity -%%DATADIR%%/dbtext/kamailio/rls_watchers -%%DATADIR%%/dbtext/kamailio/rtpproxy -%%DATADIR%%/dbtext/kamailio/sca_subscriptions -%%DATADIR%%/dbtext/kamailio/silo -%%DATADIR%%/dbtext/kamailio/sip_trace -%%DATADIR%%/dbtext/kamailio/speed_dial -%%DATADIR%%/dbtext/kamailio/subscriber -%%DATADIR%%/dbtext/kamailio/trusted -%%DATADIR%%/dbtext/kamailio/uacreg -%%DATADIR%%/dbtext/kamailio/uid_credentials -%%DATADIR%%/dbtext/kamailio/uid_domain -%%DATADIR%%/dbtext/kamailio/uid_domain_attrs -%%DATADIR%%/dbtext/kamailio/uid_global_attrs -%%DATADIR%%/dbtext/kamailio/uid_uri -%%DATADIR%%/dbtext/kamailio/uid_uri_attrs -%%DATADIR%%/dbtext/kamailio/uid_user_attrs -%%DATADIR%%/dbtext/kamailio/uri -%%DATADIR%%/dbtext/kamailio/userblacklist -%%DATADIR%%/dbtext/kamailio/usr_preferences -%%DATADIR%%/dbtext/kamailio/version -%%DATADIR%%/dbtext/kamailio/watchers -%%DATADIR%%/dbtext/kamailio/xcap +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/acc +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/acc_cdrs +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/active_watchers +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/address +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/aliases +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/carrier_name +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/carrierfailureroute +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/carrierroute +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/cpl +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/dbaliases +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/dialog +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/dialog_vars +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/dialplan +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/dispatcher +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/domain +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/domain_attrs +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/domain_name +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/domainpolicy +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/dr_gateways +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/dr_groups +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/dr_gw_lists +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/dr_rules +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/globalblacklist +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/grp +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/htable +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/imc_members +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/imc_rooms +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/lcr_gw +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/lcr_rule +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/lcr_rule_target +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/location +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/location_attrs +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/matrix +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/missed_calls +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/mohqcalls +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/mohqueues +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/mtree +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/mtrees +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/pdt +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/pl_pipes +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/presentity +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/pua +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/purplemap +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/re_grp +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/rls_presentity +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/rls_watchers +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/rtpproxy +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/sca_subscriptions +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/silo +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/sip_trace +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/speed_dial +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/subscriber +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/trusted +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/uacreg +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/uid_credentials +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/uid_domain +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/uid_domain_attrs +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/uid_global_attrs +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/uid_uri +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/uid_uri_attrs +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/uid_user_attrs +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/uri +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/userblacklist +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/usr_preferences +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/version +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/watchers +%%MYSQL%%%%DATADIR%%/dbtext/kamailio/xcap %%MYSQL%%%%DATADIR%%/mysql/acc-create.sql %%MYSQL%%%%DATADIR%%/mysql/alias_db-create.sql %%MYSQL%%%%DATADIR%%/mysql/auth_db-create.sql %%MYSQL%%%%DATADIR%%/mysql/avpops-create.sql %%MYSQL%%%%DATADIR%%/mysql/carrierroute-create.sql %%MYSQL%%%%DATADIR%%/mysql/cpl-create.sql %%MYSQL%%%%DATADIR%%/mysql/dialog-create.sql +%%MYSQL%%%%DATADIR%%/mysql/dialog_ng-create.sql %%MYSQL%%%%DATADIR%%/mysql/dialplan-create.sql %%MYSQL%%%%DATADIR%%/mysql/dispatcher-create.sql %%MYSQL%%%%DATADIR%%/mysql/domain-create.sql %%MYSQL%%%%DATADIR%%/mysql/domainpolicy-create.sql %%MYSQL%%%%DATADIR%%/mysql/drouting-create.sql %%MYSQL%%%%DATADIR%%/mysql/group-create.sql %%MYSQL%%%%DATADIR%%/mysql/htable-create.sql %%MYSQL%%%%DATADIR%%/mysql/imc-create.sql +%%MYSQL%%%%DATADIR%%/mysql/ims_charging_create.sql %%MYSQL%%%%DATADIR%%/mysql/ims_usrloc_pcscf-create.sql %%MYSQL%%%%DATADIR%%/mysql/ims_usrloc_scscf-create.sql %%MYSQL%%%%DATADIR%%/mysql/lcr-create.sql %%MYSQL%%%%DATADIR%%/mysql/matrix-create.sql %%MYSQL%%%%DATADIR%%/mysql/mohqueue-create.sql %%MYSQL%%%%DATADIR%%/mysql/msilo-create.sql %%MYSQL%%%%DATADIR%%/mysql/mtree-create.sql %%MYSQL%%%%DATADIR%%/mysql/pdt-create.sql %%MYSQL%%%%DATADIR%%/mysql/permissions-create.sql %%MYSQL%%%%DATADIR%%/mysql/pipelimit-create.sql %%MYSQL%%%%DATADIR%%/mysql/presence-create.sql %%MYSQL%%%%DATADIR%%/mysql/purple-create.sql %%MYSQL%%%%DATADIR%%/mysql/registrar-create.sql %%MYSQL%%%%DATADIR%%/mysql/rls-create.sql %%MYSQL%%%%DATADIR%%/mysql/rtpproxy-create.sql %%MYSQL%%%%DATADIR%%/mysql/sca-create.sql %%MYSQL%%%%DATADIR%%/mysql/siptrace-create.sql %%MYSQL%%%%DATADIR%%/mysql/speeddial-create.sql %%MYSQL%%%%DATADIR%%/mysql/standard-create.sql %%MYSQL%%%%DATADIR%%/mysql/uac-create.sql %%MYSQL%%%%DATADIR%%/mysql/uid_auth_db-create.sql %%MYSQL%%%%DATADIR%%/mysql/uid_avp_db-create.sql %%MYSQL%%%%DATADIR%%/mysql/uid_domain-create.sql %%MYSQL%%%%DATADIR%%/mysql/uid_gflags-create.sql %%MYSQL%%%%DATADIR%%/mysql/uid_uri_db-create.sql %%MYSQL%%%%DATADIR%%/mysql/uri_db-create.sql %%MYSQL%%%%DATADIR%%/mysql/userblacklist-create.sql %%MYSQL%%%%DATADIR%%/mysql/usrloc-create.sql %%PGSQL%%%%DATADIR%%/postgres/acc-create.sql %%PGSQL%%%%DATADIR%%/postgres/alias_db-create.sql %%PGSQL%%%%DATADIR%%/postgres/auth_db-create.sql %%PGSQL%%%%DATADIR%%/postgres/avpops-create.sql %%PGSQL%%%%DATADIR%%/postgres/carrierroute-create.sql %%PGSQL%%%%DATADIR%%/postgres/cpl-create.sql %%PGSQL%%%%DATADIR%%/postgres/dialog-create.sql %%PGSQL%%%%DATADIR%%/postgres/dialplan-create.sql %%PGSQL%%%%DATADIR%%/postgres/dispatcher-create.sql %%PGSQL%%%%DATADIR%%/postgres/domain-create.sql %%PGSQL%%%%DATADIR%%/postgres/domainpolicy-create.sql %%PGSQL%%%%DATADIR%%/postgres/drouting-create.sql %%PGSQL%%%%DATADIR%%/postgres/group-create.sql %%PGSQL%%%%DATADIR%%/postgres/htable-create.sql %%PGSQL%%%%DATADIR%%/postgres/imc-create.sql %%PGSQL%%%%DATADIR%%/postgres/lcr-create.sql %%PGSQL%%%%DATADIR%%/postgres/matrix-create.sql %%PGSQL%%%%DATADIR%%/postgres/mohqueue-create.sql %%PGSQL%%%%DATADIR%%/postgres/msilo-create.sql %%PGSQL%%%%DATADIR%%/postgres/mtree-create.sql %%PGSQL%%%%DATADIR%%/postgres/pdt-create.sql %%PGSQL%%%%DATADIR%%/postgres/permissions-create.sql %%PGSQL%%%%DATADIR%%/postgres/pipelimit-create.sql %%PGSQL%%%%DATADIR%%/postgres/presence-create.sql %%PGSQL%%%%DATADIR%%/postgres/purple-create.sql %%PGSQL%%%%DATADIR%%/postgres/registrar-create.sql %%PGSQL%%%%DATADIR%%/postgres/rls-create.sql %%PGSQL%%%%DATADIR%%/postgres/rtpproxy-create.sql %%PGSQL%%%%DATADIR%%/postgres/sca-create.sql %%PGSQL%%%%DATADIR%%/postgres/siptrace-create.sql %%PGSQL%%%%DATADIR%%/postgres/speeddial-create.sql %%PGSQL%%%%DATADIR%%/postgres/standard-create.sql %%PGSQL%%%%DATADIR%%/postgres/uac-create.sql %%PGSQL%%%%DATADIR%%/postgres/uid_auth_db-create.sql %%PGSQL%%%%DATADIR%%/postgres/uid_avp_db-create.sql %%PGSQL%%%%DATADIR%%/postgres/uid_domain-create.sql %%PGSQL%%%%DATADIR%%/postgres/uid_gflags-create.sql %%PGSQL%%%%DATADIR%%/postgres/uid_uri_db-create.sql %%PGSQL%%%%DATADIR%%/postgres/uri_db-create.sql %%PGSQL%%%%DATADIR%%/postgres/userblacklist-create.sql %%PGSQL%%%%DATADIR%%/postgres/usrloc-create.sql -%%PORTDOCS%%%%DOCSDIR%%/AUTHORS -%%PORTDOCS%%%%DOCSDIR%%/INSTALL -%%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/README-MODULES -%%PORTDOCS%%%%DOCSDIR%%/modules/README.acc -%%PORTDOCS%%%%DOCSDIR%%/modules/README.alias_db -%%PORTDOCS%%%%DOCSDIR%%/modules/README.async -%%PORTDOCS%%%%DOCSDIR%%/modules/README.auth -%%PORTDOCS%%%%DOCSDIR%%/modules/README.auth_db -%%PORTDOCS%%%%DOCSDIR%%/modules/README.auth_diameter -%%PORTDOCS%%%%RADIUS%%%%DOCSDIR%%/modules/README.auth_radius -%%PORTDOCS%%%%DOCSDIR%%/modules/README.avp -%%PORTDOCS%%%%DOCSDIR%%/modules/README.avpops -%%PORTDOCS%%%%DOCSDIR%%/modules/README.benchmark -%%PORTDOCS%%%%DOCSDIR%%/modules/README.blst -%%PORTDOCS%%%%DOCSDIR%%/modules/README.call_control -%%PORTDOCS%%%%DOCSDIR%%/modules/README.cfg_db -%%PORTDOCS%%%%DOCSDIR%%/modules/README.cfg_rpc -%%PORTDOCS%%%%DOCSDIR%%/modules/README.cfgutils -%%PORTDOCS%%%%DOCSDIR%%/modules/README.cnxcc -%%PORTDOCS%%%%DOCSDIR%%/modules/README.corex -%%PORTDOCS%%%%DOCSDIR%%/modules/README.counters -%%PORTDOCS%%%%DOCSDIR%%/modules/README.ctl -%%PORTDOCS%%%%DOCSDIR%%/modules/README.db_cluster -%%PORTDOCS%%%%DOCSDIR%%/modules/README.db_flatstore -%%PORTDOCS%%%%MYSQL%%%%DOCSDIR%%/modules/README.db_mysql -%%PORTDOCS%%%%PGSQL%%%%DOCSDIR%%/modules/README.db_postgres -%%PORTDOCS%%%%UNIXODBC%%%%DOCSDIR%%/modules/README.db_unixodbc -%%PORTDOCS%%%%TLS%%%%DOCSDIR%%/modules/README.tls -%%PORTDOCS%%%%DOCSDIR%%/modules/README.db_text -%%PORTDOCS%%%%DOCSDIR%%/modules/README.debugger -%%PORTDOCS%%%%DOCSDIR%%/modules/README.dialog -%%PORTDOCS%%%%DOCSDIR%%/modules/README.dispatcher -%%PORTDOCS%%%%DOCSDIR%%/modules/README.diversion -%%PORTDOCS%%%%DOCSDIR%%/modules/README.dmq -%%PORTDOCS%%%%DOCSDIR%%/modules/README.domain -%%PORTDOCS%%%%DOCSDIR%%/modules/README.domainpolicy -%%PORTDOCS%%%%DOCSDIR%%/modules/README.drouting -%%PORTDOCS%%%%DOCSDIR%%/modules/README.enum -%%PORTDOCS%%%%DOCSDIR%%/modules/README.exec -%%PORTDOCS%%%%DOCSDIR%%/modules/README.group -%%PORTDOCS%%%%DOCSDIR%%/modules/README.htable -%%PORTDOCS%%%%DOCSDIR%%/modules/README.imc -%%PORTDOCS%%%%DOCSDIR%%/modules/README.ipops -%%PORTDOCS%%%%DOCSDIR%%/modules/README.jsonrpc-s -%%PORTDOCS%%%%DOCSDIR%%/modules/README.kex -%%PORTDOCS%%%%DOCSDIR%%/modules/README.malloc_test -%%PORTDOCS%%%%DOCSDIR%%/modules/README.mangler -%%PORTDOCS%%%%DOCSDIR%%/modules/README.matrix -%%PORTDOCS%%%%DOCSDIR%%/modules/README.maxfwd -%%PORTDOCS%%%%DOCSDIR%%/modules/README.mediaproxy -%%PORTDOCS%%%%DOCSDIR%%/modules/README.mi_datagram -%%PORTDOCS%%%%DOCSDIR%%/modules/README.mi_fifo -%%PORTDOCS%%%%DOCSDIR%%/modules/README.mi_rpc -%%PORTDOCS%%%%DOCSDIR%%/modules/README.mohqueue -%%PORTDOCS%%%%DOCSDIR%%/modules/README.mqueue -%%PORTDOCS%%%%DOCSDIR%%/modules/README.msilo -%%PORTDOCS%%%%DOCSDIR%%/modules/README.msrp -%%PORTDOCS%%%%DOCSDIR%%/modules/README.mtree -%%PORTDOCS%%%%DOCSDIR%%/modules/README.nat_traversal -%%PORTDOCS%%%%DOCSDIR%%/modules/README.nathelper -%%PORTDOCS%%%%DOCSDIR%%/modules/README.nosip -%%PORTDOCS%%%%DOCSDIR%%/modules/README.p_usrloc -%%PORTDOCS%%%%DOCSDIR%%/modules/README.path -%%PORTDOCS%%%%DOCSDIR%%/modules/README.pdb -%%PORTDOCS%%%%DOCSDIR%%/modules/README.pdt -%%PORTDOCS%%%%DOCSDIR%%/modules/README.permissions -%%PORTDOCS%%%%DOCSDIR%%/modules/README.pike -%%PORTDOCS%%%%DOCSDIR%%/modules/README.pipelimit -%%PORTDOCS%%%%DOCSDIR%%/modules/README.prefix_route -%%PORTDOCS%%%%DOCSDIR%%/modules/README.print -%%PORTDOCS%%%%DOCSDIR%%/modules/README.print_lib -%%PORTDOCS%%%%DOCSDIR%%/modules/README.pv -%%PORTDOCS%%%%DOCSDIR%%/modules/README.qos -%%PORTDOCS%%%%DOCSDIR%%/modules/README.ratelimit -%%PORTDOCS%%%%DOCSDIR%%/modules/README.registrar -%%PORTDOCS%%%%DOCSDIR%%/modules/README.rr -%%PORTDOCS%%%%DOCSDIR%%/modules/README.rtimer -%%PORTDOCS%%%%DOCSDIR%%/modules/README.rtpengine -%%PORTDOCS%%%%DOCSDIR%%/modules/README.rtpproxy -%%PORTDOCS%%%%DOCSDIR%%/modules/README.sanity -%%PORTDOCS%%%%DOCSDIR%%/modules/README.sca -%%PORTDOCS%%%%DOCSDIR%%/modules/README.sdpops -%%PORTDOCS%%%%DOCSDIR%%/modules/README.seas -%%PORTDOCS%%%%DOCSDIR%%/modules/README.sipcapture -%%PORTDOCS%%%%DOCSDIR%%/modules/README.sipt -%%PORTDOCS%%%%DOCSDIR%%/modules/README.siptrace -%%PORTDOCS%%%%DOCSDIR%%/modules/README.siputils -%%PORTDOCS%%%%DOCSDIR%%/modules/README.sl -%%PORTDOCS%%%%DOCSDIR%%/modules/README.sms -%%PORTDOCS%%%%DOCSDIR%%/modules/README.speeddial -%%PORTDOCS%%%%DOCSDIR%%/modules/README.sqlops -%%PORTDOCS%%%%DOCSDIR%%/modules/README.sst -%%PORTDOCS%%%%DOCSDIR%%/modules/README.statistics -%%PORTDOCS%%%%DOCSDIR%%/modules/README.stun -%%PORTDOCS%%%%DOCSDIR%%/modules/README.textops -%%PORTDOCS%%%%DOCSDIR%%/modules/README.textopsx -%%PORTDOCS%%%%DOCSDIR%%/modules/README.timer -%%PORTDOCS%%%%DOCSDIR%%/modules/README.tm -%%PORTDOCS%%%%DOCSDIR%%/modules/README.tmrec -%%PORTDOCS%%%%DOCSDIR%%/modules/README.tmx -%%PORTDOCS%%%%DOCSDIR%%/modules/README.topoh -%%PORTDOCS%%%%DOCSDIR%%/modules/README.uac -%%PORTDOCS%%%%DOCSDIR%%/modules/README.uac_redirect -%%PORTDOCS%%%%DOCSDIR%%/modules/README.uri_db -%%PORTDOCS%%%%DOCSDIR%%/modules/README.userblacklist -%%PORTDOCS%%%%DOCSDIR%%/modules/README.usrloc -%%PORTDOCS%%%%DOCSDIR%%/modules/README.xhttp -%%PORTDOCS%%%%DOCSDIR%%/modules/README.xhttp_rpc -%%PORTDOCS%%%%DOCSDIR%%/modules/README.xlog -%%PORTDOCS%%%%DOCSDIR%%/modules/README.xprint man/man5/kamailio.cfg.5.gz man/man8/kamailio.8.gz man/man8/kamcmd.8.gz man/man8/kamctl.8.gz man/man8/kamdbctl.8.gz %%RADIUS%%lib/kamailio/modules/acc_radius.so %%RADIUS%%lib/kamailio/modules/misc_radius.so %%RADIUS%%lib/kamailio/modules/peering.so %%PRESENCE%%lib/kamailio/modules/pua.so %%PRESENCE%%lib/kamailio/modules/pua_xmpp.so %%PRESENCE%%lib/kamailio/modules/xcap_client.so %%PRESENCE%%lib/kamailio/modules/xcap_server.so %%PRESENCE%%lib/kamailio/modules/presence.so %%PRESENCE%%lib/kamailio/modules/presence_conference.so %%PRESENCE%%lib/kamailio/modules/presence_dialoginfo.so %%PRESENCE%%lib/kamailio/modules/presence_mwi.so %%PRESENCE%%lib/kamailio/modules/presence_profile.so %%PRESENCE%%lib/kamailio/modules/presence_reginfo.so %%PRESENCE%%lib/kamailio/modules/presence_xml.so %%PRESENCE%%lib/kamailio/modules/pua_bla.so %%PRESENCE%%lib/kamailio/modules/pua_dialoginfo.so %%PRESENCE%%lib/kamailio/modules/pua_mi.so %%PRESENCE%%lib/kamailio/modules/pua_reginfo.so %%PRESENCE%%lib/kamailio/modules/pua_usrloc.so %%PRESENCE%%lib/kamailio/modules/rls.so -%%PORTDOCS%%%%RADIUS%%%%DOCSDIR%%/modules/README.acc_radius -%%PORTDOCS%%%%RADIUS%%%%DOCSDIR%%/modules/README.misc_radius -%%PORTDOCS%%%%RADIUS%%%%DOCSDIR%%/modules/README.peering -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.pua -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.pua_xmpp -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.xcap_client -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.xcap_server -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.presence -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.presence_conference -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.presence_dialoginfo -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.presence_mwi -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.presence_profile -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.presence_reginfo -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.presence_xml -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.pua_bla -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.pua_dialoginfo -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.pua_mi -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.pua_reginfo -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.pua_usrloc -%%PORTDOCS%%%%PRESENCE%%%%DOCSDIR%%/modules/README.rls