From: <abe...@us...> - 2015-06-02 17:52:17
|
Revision: 7093 http://sourceforge.net/p/astlinux/code/7093 Author: abelbeck Date: 2015-06-02 17:52:15 +0000 (Tue, 02 Jun 2015) Log Message: ----------- asterisk, fixes for building menuselect which is compatible with upstream Asterisk changes Modified Paths: -------------- branches/1.0/package/asterisk/asterisk.mk Modified: branches/1.0/package/asterisk/asterisk.mk =================================================================== --- branches/1.0/package/asterisk/asterisk.mk 2015-06-02 15:16:40 UTC (rev 7092) +++ branches/1.0/package/asterisk/asterisk.mk 2015-06-02 17:52:15 UTC (rev 7093) @@ -164,8 +164,6 @@ ifneq ($(ASTERISK_VERSION_SINGLE),1) ifneq ($(ASTERISK_VERSION_SINGLE),11) -ASTERISK_EXTRAS+=host-libxml2 - ifeq ($(strip $(BR2_PACKAGE_PJSIP)),y) ASTERISK_EXTRAS+=pjsip ASTERISK_CONFIGURE_ARGS+= \ @@ -217,7 +215,7 @@ touch $@ -$(ASTERISK_DIR)/.configured: $(ASTERISK_DIR)/.patched | host-pkg-config host-ncurses host-bison host-flex \ +$(ASTERISK_DIR)/.configured: $(ASTERISK_DIR)/.patched | host-pkg-config host-ncurses host-bison host-flex host-libxml2 \ libelf ncurses zlib openssl libtool util-linux $(ASTERISK_EXTRAS) (cd $(ASTERISK_DIR); rm -rf config.cache configure; \ ./bootstrap.sh; \ @@ -238,8 +236,7 @@ CPPFLAGS='$(TARGET_CFLAGS)' \ LIBS='$(ASTERISK_LIBS)' \ ) - (cd $(ASTERISK_DIR)/menuselect; rm -rf config.cache configure; \ - ./bootstrap.sh; \ + (cd $(ASTERISK_DIR)/menuselect; \ $(HOST_CONFIGURE_OPTS) \ ./configure \ ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-03-06 14:17:57
|
Revision: 7573 http://sourceforge.net/p/astlinux/code/7573 Author: abelbeck Date: 2016-03-06 14:17:55 +0000 (Sun, 06 Mar 2016) Log Message: ----------- asterisk, remove configuring with 'ac_cv_pthread_rwlock_timedwrlock=no' since that was only needed with uclibc (added in 2009-08-24) and was carried over through the years. Fallback code is called in main/lock.c when HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK is not defined. Ref: http://git.asterisk.org/gitweb/?p=asterisk/asterisk.git;a=blob;f=main/lock.c Added in: https://sourceforge.net/p/astlinux/code/3209/ Modified Paths: -------------- branches/1.0/package/asterisk/asterisk.mk Modified: branches/1.0/package/asterisk/asterisk.mk =================================================================== --- branches/1.0/package/asterisk/asterisk.mk 2016-03-06 13:24:42 UTC (rev 7572) +++ branches/1.0/package/asterisk/asterisk.mk 2016-03-06 14:17:55 UTC (rev 7573) @@ -47,8 +47,6 @@ ASTERISK_LIBS += -lz endif -TARGET_CONFIGURE_OPTS+=ac_cv_pthread_rwlock_timedwrlock=no - ASTERISK_CONFIGURE_ARGS+= \ --without-sdl This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-04-17 14:54:17
|
Revision: 7645 http://sourceforge.net/p/astlinux/code/7645 Author: abelbeck Date: 2016-04-17 14:54:14 +0000 (Sun, 17 Apr 2016) Log Message: ----------- asterisk, version bump to 13.8.1, security fix Modified Paths: -------------- branches/1.0/package/asterisk/asterisk.mk Modified: branches/1.0/package/asterisk/asterisk.mk =================================================================== --- branches/1.0/package/asterisk/asterisk.mk 2016-04-17 14:33:41 UTC (rev 7644) +++ branches/1.0/package/asterisk/asterisk.mk 2016-04-17 14:54:14 UTC (rev 7645) @@ -9,7 +9,7 @@ ifeq ($(BR2_PACKAGE_ASTERISK_v11),y) ASTERISK_VERSION := 11.22.0 else -ASTERISK_VERSION := 13.8.0 +ASTERISK_VERSION := 13.8.1 endif endif ASTERISK_SOURCE := asterisk-$(ASTERISK_VERSION).tar.gz This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-11-26 01:04:53
|
Revision: 7988 http://sourceforge.net/p/astlinux/code/7988 Author: abelbeck Date: 2016-11-26 01:04:50 +0000 (Sat, 26 Nov 2016) Log Message: ----------- asterisk, don't build with libcap support since we run as root, if we were to change to running asterisk as say user/group 'asterisk' then revert this change so asterisk can set the network packet TOS bits and such Modified Paths: -------------- branches/1.0/package/asterisk/asterisk.mk Modified: branches/1.0/package/asterisk/asterisk.mk =================================================================== --- branches/1.0/package/asterisk/asterisk.mk 2016-11-25 22:14:13 UTC (rev 7987) +++ branches/1.0/package/asterisk/asterisk.mk 2016-11-26 01:04:50 UTC (rev 7988) @@ -49,11 +49,8 @@ ASTERISK_CONFIGURE_ARGS+= \ --without-sdl -ifeq ($(strip $(BR2_PACKAGE_LIBCAP)),y) -ASTERISK_EXTRAS+=libcap ASTERISK_CONFIGURE_ARGS+= \ - --with-cap="$(STAGING_DIR)/usr" -endif + --without-cap ifeq ($(strip $(BR2_PACKAGE_LIBXML2)),y) ASTERISK_EXTRAS+=libxml2 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-12-05 14:32:34
|
Revision: 8015 http://sourceforge.net/p/astlinux/code/8015 Author: abelbeck Date: 2016-12-05 14:32:31 +0000 (Mon, 05 Dec 2016) Log Message: ----------- asterisk, revert back to 13.12.2 because of 13.13.0 issues Modified Paths: -------------- branches/1.0/package/asterisk/asterisk.mk Modified: branches/1.0/package/asterisk/asterisk.mk =================================================================== --- branches/1.0/package/asterisk/asterisk.mk 2016-12-05 14:16:36 UTC (rev 8014) +++ branches/1.0/package/asterisk/asterisk.mk 2016-12-05 14:32:31 UTC (rev 8015) @@ -7,7 +7,7 @@ ASTERISK_VERSION := 11.25.0 else ifeq ($(BR2_PACKAGE_ASTERISK_v13),y) -ASTERISK_VERSION := 13.13.0 +ASTERISK_VERSION := 13.12.2 else ASTERISK_VERSION := 15.0.0 endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2017-04-07 14:18:46
|
Revision: 8259 http://sourceforge.net/p/astlinux/code/8259 Author: abelbeck Date: 2017-04-07 14:18:44 +0000 (Fri, 07 Apr 2017) Log Message: ----------- asterisk, rename version 13.15.0-rc3 to official 13.15.0 Modified Paths: -------------- branches/1.0/package/asterisk/asterisk.mk Modified: branches/1.0/package/asterisk/asterisk.mk =================================================================== --- branches/1.0/package/asterisk/asterisk.mk 2017-04-05 16:44:32 UTC (rev 8258) +++ branches/1.0/package/asterisk/asterisk.mk 2017-04-07 14:18:44 UTC (rev 8259) @@ -7,7 +7,7 @@ ASTERISK_VERSION := 11.25.1 else ifeq ($(BR2_PACKAGE_ASTERISK_v13),y) -ASTERISK_VERSION := 13.15.0-rc3 +ASTERISK_VERSION := 13.15.0 else ASTERISK_VERSION := 15.0.0 endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2017-05-20 12:26:09
|
Revision: 8310 http://sourceforge.net/p/astlinux/code/8310 Author: abelbeck Date: 2017-05-20 12:26:06 +0000 (Sat, 20 May 2017) Log Message: ----------- asterisk, version bump to 13.15.1, security fix: AST-2017-004 Modified Paths: -------------- branches/1.0/package/asterisk/asterisk.mk Modified: branches/1.0/package/asterisk/asterisk.mk =================================================================== --- branches/1.0/package/asterisk/asterisk.mk 2017-05-20 04:22:34 UTC (rev 8309) +++ branches/1.0/package/asterisk/asterisk.mk 2017-05-20 12:26:06 UTC (rev 8310) @@ -7,7 +7,7 @@ ASTERISK_VERSION := 11.25.1 else ifeq ($(BR2_PACKAGE_ASTERISK_v13),y) -ASTERISK_VERSION := 13.15.0 +ASTERISK_VERSION := 13.15.1 else ASTERISK_VERSION := 15.0.0 endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |