pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

kamailo: Update to 5.3.3



Module Name:	pkgsrc-wip
Committed By:	Greg Troxel <gdt%lexort.com@localhost>
Pushed By:	gdt
Date:		Mon Mar 16 19:09:16 2020 -0400
Changeset:	7acef4ea840be81bf1410b82482c92c5b469ccbe

Modified Files:
	kamailio/Makefile
	kamailio/distinfo
	kamailio/patches/patch-src_Makefile.defs

Log Message:
kamailo: Update to 5.3.3

(Doesn't quite build due to pthread mutex attribute shared issue.)

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=7acef4ea840be81bf1410b82482c92c5b469ccbe

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 kamailio/Makefile                        |  2 +-
 kamailio/distinfo                        | 10 +++++-----
 kamailio/patches/patch-src_Makefile.defs | 30 ++++++++++++++++++++++++++++--
 3 files changed, 34 insertions(+), 8 deletions(-)

diffs:
diff --git a/kamailio/Makefile b/kamailio/Makefile
index 7b6186d169..3641d44782 100644
--- a/kamailio/Makefile
+++ b/kamailio/Makefile
@@ -1,6 +1,6 @@
 # $NetBSD$
 
-VERSION=	5.3.2
+VERSION=	5.3.3
 DISTNAME=	kamailio-${VERSION}_src
 PKGNAME=	kamailio-${VERSION}
 CATEGORIES=	comms
diff --git a/kamailio/distinfo b/kamailio/distinfo
index 70cb307b03..eda930d7d2 100644
--- a/kamailio/distinfo
+++ b/kamailio/distinfo
@@ -1,8 +1,8 @@
 $NetBSD$
 
-SHA1 (kamailio-5.3.2_src.tar.gz) = e1d6c7e7e628906534383147716001042af3677e
-RMD160 (kamailio-5.3.2_src.tar.gz) = a2119e9116feb9ed77e3bdb50f61fd9ffe6b8759
-SHA512 (kamailio-5.3.2_src.tar.gz) = 60ac9d8a3a652f6f433e88ae41c5018608917a716826044bec90c9622a77a35c88e50c781341b1a7377211660c53bf6cf8f46ceb9ee69b993f9cc24b4892a5dc
-Size (kamailio-5.3.2_src.tar.gz) = 12448971 bytes
-SHA1 (patch-src_Makefile.defs) = 8446fc371d34888cc0347c79e19c9bc52cdd7779
+SHA1 (kamailio-5.3.3_src.tar.gz) = 89552042bf8cdc04ccf183fa86df4af699d70fbf
+RMD160 (kamailio-5.3.3_src.tar.gz) = f2d25772de8418f887a3977f35554ee6ca5b36bf
+SHA512 (kamailio-5.3.3_src.tar.gz) = 99c0216a32a0b70ad7608dd9967890107a47a0692a1305bca98cbcecbdca8fe1ac6a1377a1d09ea6f1e99ba011b0fe2bd69a8bf4c92113b249e608fa14f66e3d
+Size (kamailio-5.3.3_src.tar.gz) = 12447194 bytes
+SHA1 (patch-src_Makefile.defs) = eacc2d36bf93b0a0d8a7f606434c4e90d4a17f29
 SHA1 (patch-src_lib_srdb1_db__ut.c) = ecdc2d3185e9497127a4662794a8ec779cb20165
diff --git a/kamailio/patches/patch-src_Makefile.defs b/kamailio/patches/patch-src_Makefile.defs
index 4cd5895e5b..7078713320 100644
--- a/kamailio/patches/patch-src_Makefile.defs
+++ b/kamailio/patches/patch-src_Makefile.defs
@@ -5,9 +5,18 @@ but Linux).
 
 Not yet filed upstream.
 
---- src/Makefile.defs.orig	2019-11-14 11:38:12.000000000 +0000
+--- src/Makefile.defs.orig	2020-03-16 14:17:27.000000000 +0000
 +++ src/Makefile.defs
-@@ -440,15 +440,7 @@ endif
+@@ -212,7 +212,7 @@ endif
+ 
+ ifeq ($(LIBSSL_SET_MUTEX_SHARED), 1)
+ CC_PMUTEX_OPTS = -pthread -DKSR_PTHREAD_MUTEX_SHARED
+-LD_PMUTEX_OPTS = -pthread -rdynamic -ldl -Wl,-Bsymbolic-functions
++LD_PMUTEX_OPTS = -pthread -rdynamic -Wl,-Bsymbolic-functions
+ else
+ CC_PMUTEX_OPTS =
+ LD_PMUTEX_OPTS =
+@@ -443,15 +443,7 @@ endif
  
  $(info target architecture <$(ARCH)>, host architecture <$(HOST_ARCH)>)
  
@@ -24,3 +33,20 @@ Not yet filed upstream.
  
  # dirs
  cfg_dir = etc/$(MAIN_NAME)/
+@@ -1821,7 +1813,7 @@ ifeq ($(YACC),)
+ endif
+ YACC_FLAGS=-d -b core/cfg
+ # on solaris add -lxnet (e.g. LIBS= -lxnet)
+-LIBS= -ldl -lresolv
++LIBS= -lresolv
+ LIB_PREFIX:=lib
+ LIB_SUFFIX:=.so
+ 
+@@ -2042,6 +2034,7 @@ ifeq ($(OS), netbsd)
+ 	ifneq ($(found_lock_method), yes)
+ 		C_DEFS+= -DUSE_SYSV_SEM  # try pthread sems
+ 		found_lock_method=yes
++		LIBS+= -pthread   #dlopen is in libc
+ 	endif
+ 	# check for ver >= 2.0.0
+ 	ifeq ($(shell [ $(OSREL_N) -ge 2000000 ] && echo has_kqueue), has_kqueue)


Home | Main Index | Thread Index | Old Index