From: <abe...@us...> - 2015-03-02 23:30:54
|
Revision: 6994 http://sourceforge.net/p/astlinux/code/6994 Author: abelbeck Date: 2015-03-02 23:30:51 +0000 (Mon, 02 Mar 2015) Log Message: ----------- pjsip, enable ssl support to define tls symbols such as 'pjsip_tls_transport_start2', Thanks Ian Modified Paths: -------------- branches/1.0/package/pjsip/pjsip.mk Modified: branches/1.0/package/pjsip/pjsip.mk =================================================================== --- branches/1.0/package/pjsip/pjsip.mk 2015-02-28 16:46:12 UTC (rev 6993) +++ branches/1.0/package/pjsip/pjsip.mk 2015-03-02 23:30:51 UTC (rev 6994) @@ -23,4 +23,11 @@ --disable-video \ --disable-opencore-amr +ifeq ($(BR2_PACKAGE_OPENSSL),y) +PJSIP_CONF_OPT += --with-ssl=$(STAGING_DIR)/usr +PJSIP_DEPENDENCIES += openssl +else +PJSIP_CONF_OPT += --disable-ssl +endif + $(eval $(call AUTOTARGETS,package,pjsip)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-11 17:24:09
|
Revision: 7517 http://sourceforge.net/p/astlinux/code/7517 Author: abelbeck Date: 2016-02-11 17:24:07 +0000 (Thu, 11 Feb 2016) Log Message: ----------- pjsip, version bump to 2.4.5 Modified Paths: -------------- branches/1.0/package/pjsip/pjsip.mk Modified: branches/1.0/package/pjsip/pjsip.mk =================================================================== --- branches/1.0/package/pjsip/pjsip.mk 2016-02-11 15:13:00 UTC (rev 7516) +++ branches/1.0/package/pjsip/pjsip.mk 2016-02-11 17:24:07 UTC (rev 7517) @@ -4,7 +4,7 @@ # ################################################################################ -PJSIP_VERSION = 2.4 +PJSIP_VERSION = 2.4.5 PJSIP_SOURCE = pjproject-$(PJSIP_VERSION).tar.bz2 PJSIP_SITE = http://www.pjsip.org/release/$(PJSIP_VERSION) PJSIP_INSTALL_STAGING = YES This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-03-06 00:18:40
|
Revision: 7571 http://sourceforge.net/p/astlinux/code/7571 Author: abelbeck Date: 2016-03-06 00:18:38 +0000 (Sun, 06 Mar 2016) Log Message: ----------- pjsip, add 'util-linux' dependency for libuuid. Note upstream names this package 'libpjsip' Modified Paths: -------------- branches/1.0/package/pjsip/pjsip.mk Modified: branches/1.0/package/pjsip/pjsip.mk =================================================================== --- branches/1.0/package/pjsip/pjsip.mk 2016-03-03 17:56:47 UTC (rev 7570) +++ branches/1.0/package/pjsip/pjsip.mk 2016-03-06 00:18:38 UTC (rev 7571) @@ -35,4 +35,8 @@ PJSIP_CONF_OPT += --disable-ssl endif +ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y) +PJSIP_DEPENDENCIES += util-linux +endif + $(eval $(call AUTOTARGETS,package,pjsip)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-07-21 21:21:37
|
Revision: 7769 http://sourceforge.net/p/astlinux/code/7769 Author: abelbeck Date: 2016-07-21 21:21:35 +0000 (Thu, 21 Jul 2016) Log Message: ----------- pjsip, disable speex and gsm codec's Modified Paths: -------------- branches/1.0/package/pjsip/pjsip.mk Modified: branches/1.0/package/pjsip/pjsip.mk =================================================================== --- branches/1.0/package/pjsip/pjsip.mk 2016-07-21 20:57:04 UTC (rev 7768) +++ branches/1.0/package/pjsip/pjsip.mk 2016-07-21 21:21:35 UTC (rev 7769) @@ -23,6 +23,9 @@ PJSIP_CONF_OPT = \ --with-external-srtp \ + --disable-speex-codec \ + --disable-speex-aec \ + --disable-gsm-codec \ --disable-video \ --disable-v4l2 \ --disable-sound \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2017-04-08 04:37:13
|
Revision: 8260 http://sourceforge.net/p/astlinux/code/8260 Author: abelbeck Date: 2017-04-08 04:37:11 +0000 (Sat, 08 Apr 2017) Log Message: ----------- pjsip, properly disable webrtc, without fully disabling libwebrtc the builtin assumes SSE2 instruction set which our i586 toolchain does not support and fails to build. Incorrect Asterisk commit for 'third-party/pjproject/Makefile.rules' Ref: http://git.asterisk.org/gitweb/?p=asterisk/asterisk.git;a=commit;h=9c05ddbdddb80d46a0621b519858b37d2e7c01fb and unneeded addition to 'third-party/pjproject/patches/config_site.h' Modified Paths: -------------- branches/1.0/package/pjsip/pjsip.mk Modified: branches/1.0/package/pjsip/pjsip.mk =================================================================== --- branches/1.0/package/pjsip/pjsip.mk 2017-04-07 14:18:44 UTC (rev 8259) +++ branches/1.0/package/pjsip/pjsip.mk 2017-04-08 04:37:11 UTC (rev 8260) @@ -38,13 +38,13 @@ --disable-oss \ --disable-sdl \ --disable-libyuv \ + --disable-libwebrtc \ --disable-resample \ --disable-ffmpeg \ --disable-openh264 \ --disable-ipp \ --without-external-pa \ - --without-external-srtp \ - --without-external-webrtc + --without-external-srtp ifeq ($(BR2_PACKAGE_OPENSSL),y) PJSIP_CONF_OPT += --with-ssl=$(STAGING_DIR)/usr This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |