Skip to content

Commit

Permalink
package/libpjsip: bump to 2.9
Browse files Browse the repository at this point in the history
Updates:
 - remove patch now upstream
 - remove --disable-oss, not supported anymore
 - 2.9 supports gnutls, add optional dependency
 - bonus: switch to https for downloading

Signed-off-by: Luca Ceresoli <[email protected]>
Signed-off-by: Thomas Petazzoni <[email protected]>
  • Loading branch information
lucaceresoli authored and tpetazzoni committed Sep 15, 2019
1 parent d234c2d commit 5657858
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 32 deletions.
26 changes: 0 additions & 26 deletions package/libpjsip/0001-Fixed-possible-function-name-clash.patch

This file was deleted.

6 changes: 3 additions & 3 deletions package/libpjsip/libpjsip.hash
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# From http://www.pjsip.org/release/2.7.2/MD5SUM.TXT
md5 fa3f0bc098c4bff48ddd92db1c016a7a pjproject-2.7.2.tar.bz2
# From https://www.pjsip.org/release/2.9/MD5SUM.TXT
md5 66757078e7bd7cf316acb0425c2fdd6f pjproject-2.9.tar.bz2

# Locally computed
sha256 9c2c828abab7626edf18e04b041ef274bfaa86f99adf2c25ff56f1509e813772 pjproject-2.7.2.tar.bz2
sha256 d185ef7855c8ec07191dde92f54b65a7a4b7a6f7bf8c46f7af35ceeb1da2a636 pjproject-2.9.tar.bz2
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING
8 changes: 5 additions & 3 deletions package/libpjsip/libpjsip.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
#
################################################################################

LIBPJSIP_VERSION = 2.7.2
LIBPJSIP_VERSION = 2.9
LIBPJSIP_SOURCE = pjproject-$(LIBPJSIP_VERSION).tar.bz2
LIBPJSIP_SITE = http://www.pjsip.org/release/$(LIBPJSIP_VERSION)
LIBPJSIP_SITE = https://www.pjsip.org/release/$(LIBPJSIP_VERSION)
LIBPJSIP_DEPENDENCIES = libsrtp
LIBPJSIP_LICENSE = GPL-2.0+
LIBPJSIP_LICENSE_FILES = COPYING
Expand All @@ -33,7 +33,6 @@ LIBPJSIP_CONF_OPTS = \
--disable-ilbc-codec \
--disable-libwebrtc \
--disable-opus \
--disable-oss \
--disable-ext-sound \
--disable-g711-codec \
--disable-l16-codec \
Expand Down Expand Up @@ -66,6 +65,9 @@ endif
ifeq ($(BR2_PACKAGE_LIBOPENSSL),y)
LIBPJSIP_DEPENDENCIES += libopenssl
LIBPJSIP_CONF_OPTS += --with-ssl=$(STAGING_DIR)/usr
else ifeq ($(BR2_PACKAGE_GNUTLS),y)
LIBPJSIP_DEPENDENCIES += gnutls
LIBPJSIP_CONF_OPTS += --with-gnutls=$(STAGING_DIR)/usr
else
LIBPJSIP_CONF_OPTS += --disable-ssl
endif
Expand Down

0 comments on commit 5657858

Please sign in to comment.