From: <abe...@us...> - 2015-11-22 15:56:35
|
Revision: 7338 http://sourceforge.net/p/astlinux/code/7338 Author: abelbeck Date: 2015-11-22 15:56:32 +0000 (Sun, 22 Nov 2015) Log Message: ----------- Cleanup hardcoded ARCH values set to i386 Modified Paths: -------------- branches/1.0/package/kamailio/kamailio.mk branches/1.0/package/opensips/opensips.mk Modified: branches/1.0/package/kamailio/kamailio.mk =================================================================== --- branches/1.0/package/kamailio/kamailio.mk 2015-11-22 15:02:08 UTC (rev 7337) +++ branches/1.0/package/kamailio/kamailio.mk 2015-11-22 15:56:32 UTC (rev 7338) @@ -24,6 +24,12 @@ KAMAILIO_INCLUDE_MODULES += presence presence_xml xmlrpc endif +ifeq ($(ARCH),i586) +KAMAILIO_TARGET_ARCH = i386 +else +KAMAILIO_TARGET_ARCH = $(ARCH) +endif + KAMAILIO_ENV_ARGS = \ LOCALBASE="$(STAGING_DIR)/usr" \ SYSBASE="$(STAGING_DIR)/usr" \ @@ -44,7 +50,7 @@ exclude_modules="$(KAMAILIO_EXCLUDE_MODULES)" \ modules_dirs="modules" \ LIBDIR=usr/lib \ - ARCH="i386" \ + ARCH="$(KAMAILIO_TARGET_ARCH)" \ OS="linux" define KAMAILIO_BUILD_CMDS Modified: branches/1.0/package/opensips/opensips.mk =================================================================== --- branches/1.0/package/opensips/opensips.mk 2015-11-22 15:02:08 UTC (rev 7337) +++ branches/1.0/package/opensips/opensips.mk 2015-11-22 15:56:32 UTC (rev 7338) @@ -18,6 +18,12 @@ pua pua_bla pua_mi pua_usrloc pua_xmpp pua_dialoginfo regex dialplan mi_http pi_http cachedb_sql \ mi_json presence_callinfo presence_xcapdiff +ifeq ($(ARCH),i586) +OPENSIPS_TARGET_ARCH = i386 +else +OPENSIPS_TARGET_ARCH = $(ARCH) +endif + define OPENSIPS_BUILD_CMDS $(TARGET_CONFIGURE_OPTS) \ LOCALBASE="$(STAGING_DIR)/usr" \ @@ -30,7 +36,7 @@ prefix="" \ bin-prefix=/usr/ \ cfg-prefix=/ \ - ARCH="i386" \ + ARCH="$(OPENSIPS_TARGET_ARCH)" \ OS="linux" \ include_modules="$(OPENSIPS_INCLUDE_MODULES)" \ exclude_modules="$(OPENSIPS_EXCLUDE_MODULES)" \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-11-23 15:30:21
|
Revision: 7343 http://sourceforge.net/p/astlinux/code/7343 Author: abelbeck Date: 2015-11-23 15:30:19 +0000 (Mon, 23 Nov 2015) Log Message: ----------- Follow-up to r7338, use KERNEL_ARCH instead Revision Links: -------------- http://sourceforge.net/p/astlinux/code/7338 Modified Paths: -------------- branches/1.0/package/kamailio/kamailio.mk branches/1.0/package/opensips/opensips.mk Modified: branches/1.0/package/kamailio/kamailio.mk =================================================================== --- branches/1.0/package/kamailio/kamailio.mk 2015-11-23 14:13:29 UTC (rev 7342) +++ branches/1.0/package/kamailio/kamailio.mk 2015-11-23 15:30:19 UTC (rev 7343) @@ -24,12 +24,6 @@ KAMAILIO_INCLUDE_MODULES += presence presence_xml xmlrpc endif -ifeq ($(ARCH),i586) -KAMAILIO_TARGET_ARCH = i386 -else -KAMAILIO_TARGET_ARCH = $(ARCH) -endif - KAMAILIO_ENV_ARGS = \ LOCALBASE="$(STAGING_DIR)/usr" \ SYSBASE="$(STAGING_DIR)/usr" \ @@ -50,7 +44,7 @@ exclude_modules="$(KAMAILIO_EXCLUDE_MODULES)" \ modules_dirs="modules" \ LIBDIR=usr/lib \ - ARCH="$(KAMAILIO_TARGET_ARCH)" \ + ARCH="$(KERNEL_ARCH)" \ OS="linux" define KAMAILIO_BUILD_CMDS Modified: branches/1.0/package/opensips/opensips.mk =================================================================== --- branches/1.0/package/opensips/opensips.mk 2015-11-23 14:13:29 UTC (rev 7342) +++ branches/1.0/package/opensips/opensips.mk 2015-11-23 15:30:19 UTC (rev 7343) @@ -18,12 +18,6 @@ pua pua_bla pua_mi pua_usrloc pua_xmpp pua_dialoginfo regex dialplan mi_http pi_http cachedb_sql \ mi_json presence_callinfo presence_xcapdiff -ifeq ($(ARCH),i586) -OPENSIPS_TARGET_ARCH = i386 -else -OPENSIPS_TARGET_ARCH = $(ARCH) -endif - define OPENSIPS_BUILD_CMDS $(TARGET_CONFIGURE_OPTS) \ LOCALBASE="$(STAGING_DIR)/usr" \ @@ -36,7 +30,7 @@ prefix="" \ bin-prefix=/usr/ \ cfg-prefix=/ \ - ARCH="$(OPENSIPS_TARGET_ARCH)" \ + ARCH="$(KERNEL_ARCH)" \ OS="linux" \ include_modules="$(OPENSIPS_INCLUDE_MODULES)" \ exclude_modules="$(OPENSIPS_EXCLUDE_MODULES)" \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-11-30 18:57:50
|
Revision: 7362 http://sourceforge.net/p/astlinux/code/7362 Author: abelbeck Date: 2015-11-30 18:57:48 +0000 (Mon, 30 Nov 2015) Log Message: ----------- uw-imap, version bump to 2007f (July 2011), and compile with -fPIC Modified Paths: -------------- branches/1.0/package/asterisk/asterisk.mk branches/1.0/package/uw-imap/uw-imap.mk Modified: branches/1.0/package/asterisk/asterisk.mk =================================================================== --- branches/1.0/package/asterisk/asterisk.mk 2015-11-30 17:54:56 UTC (rev 7361) +++ branches/1.0/package/asterisk/asterisk.mk 2015-11-30 18:57:48 UTC (rev 7362) @@ -88,7 +88,7 @@ ifeq ($(strip $(BR2_PACKAGE_UW_IMAP)),y) ASTERISK_EXTRAS+=uw-imap ASTERISK_CONFIGURE_ARGS+= \ - --with-imap="$(BUILD_DIR)/uw-imap-2007e" + --with-imap="$(BUILD_DIR)/uw-imap-2007f" endif ifeq ($(strip $(BR2_PACKAGE_NETSNMP)),y) Modified: branches/1.0/package/uw-imap/uw-imap.mk =================================================================== --- branches/1.0/package/uw-imap/uw-imap.mk 2015-11-30 17:54:56 UTC (rev 7361) +++ branches/1.0/package/uw-imap/uw-imap.mk 2015-11-30 18:57:48 UTC (rev 7362) @@ -3,7 +3,7 @@ # uw-imap # ############################################################# -UW_IMAP_VERSION = 2007e +UW_IMAP_VERSION = 2007f UW_IMAP_SITE = ftp://ftp.cac.washington.edu/imap UW_IMAP_SOURCE = imap-$(UW_IMAP_VERSION).tar.gz UW_IMAP_INSTALL_STAGING = NO @@ -16,7 +16,7 @@ endef UW_IMAP_MAKE_OPT = slx CC='$(TARGET_CC)' \ - EXTRACFLAGS="-I$(STAGING_DIR)/usr/include/openssl" \ + EXTRACFLAGS="-I$(STAGING_DIR)/usr/include/openssl -fPIC" \ SSLLIB=$(STAGING_DIR)/lib \ SSLTYPE=nopwd \ SHLIBBASE=c-client \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-12-13 15:13:57
|
Revision: 7401 http://sourceforge.net/p/astlinux/code/7401 Author: abelbeck Date: 2015-12-13 15:13:55 +0000 (Sun, 13 Dec 2015) Log Message: ----------- build system, minor tweaks to cope with CentOS 7 as the build system Modified Paths: -------------- branches/1.0/package/lm-sensors/lm-sensors-no-host-ldconfig.patch branches/1.0/package/rhino/rhino.mk Modified: branches/1.0/package/lm-sensors/lm-sensors-no-host-ldconfig.patch =================================================================== --- branches/1.0/package/lm-sensors/lm-sensors-no-host-ldconfig.patch 2015-12-13 14:50:37 UTC (rev 7400) +++ branches/1.0/package/lm-sensors/lm-sensors-no-host-ldconfig.patch 2015-12-13 15:13:55 UTC (rev 7401) @@ -21,7 +21,7 @@ - $(PROGSENSORSTARGETS): $(PROGSENSORSSOURCES:.c=.ro) lib/$(LIBSHBASENAME) - $(CC) $(EXLDFLAGS) -o $@ $(PROGSENSORSSOURCES:.c=.ro) $(LIBICONV) -Llib -lsensors -+ $(CC) $(EXLDFLAGS) -o $@ $(PROGSENSORSSOURCES:.c=.ro) -Llib -lsensors ++ $(CC) $(EXLDFLAGS) -o $@ $(PROGSENSORSSOURCES:.c=.ro) -Llib -lsensors -lm all-prog-sensors: $(PROGSENSORSTARGETS) user :: all-prog-sensors Modified: branches/1.0/package/rhino/rhino.mk =================================================================== --- branches/1.0/package/rhino/rhino.mk 2015-12-13 14:50:37 UTC (rev 7400) +++ branches/1.0/package/rhino/rhino.mk 2015-12-13 15:13:55 UTC (rev 7401) @@ -14,7 +14,6 @@ RHINO_LEGACY_MODULES := r4fxo RHINO_PREREQS := dahdi-linux -RHINO_CONFIGURE := DAHDI_DIR=$(DAHDI_LINUX_DIR) $(DL_DIR)/$(RHINO_SOURCE): $(WGET) -P $(DL_DIR) $(RHINO_SITE)/$(RHINO_SOURCE) @@ -37,7 +36,7 @@ KINCLUDES=$(STAGING_DIR)/include \ KINSTDIR=/lib/modules/$(LINUX_VERSION_PROBED)/kernel \ INSTALL_PREFIX=$(TARGET_DIR) \ - $(RHINO_CONFIGURE) \ + DAHDI_DIR=$(DAHDI_LINUX_DIR) \ all touch $@ @@ -50,7 +49,7 @@ KINCLUDES=$(STAGING_DIR)/include \ KINSTDIR=/lib/modules/$(LINUX_VERSION_PROBED)/kernel \ INSTALL_PREFIX=$(TARGET_DIR) \ - $(RHINO_CONFIGURE) \ + DAHDI_DIR=$(DAHDI_LINUX_DIR) \ install $(DEPMOD) -ae -F $(LINUX_DIR)/System.map -b $(TARGET_DIR) -r $(LINUX_VERSION_PROBED) echo -e "#!/bin/sh\necho \""$(RHINO_VERSION)"\"" > $(TARGET_DIR)/$(RHINO_TARGET_BINARY) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-01-17 17:03:42
|
Revision: 7462 http://sourceforge.net/p/astlinux/code/7462 Author: abelbeck Date: 2016-01-17 17:03:40 +0000 (Sun, 17 Jan 2016) Log Message: ----------- dynamicdns, add 'nsupdate.info' service type Ref: https://www.nsupdate.info Modified Paths: -------------- branches/1.0/package/inadyn/ddclient/ddclient.conf branches/1.0/package/inadyn/dynamicdns.init branches/1.0/package/webinterface/altweb/admin/network.php Modified: branches/1.0/package/inadyn/ddclient/ddclient.conf =================================================================== --- branches/1.0/package/inadyn/ddclient/ddclient.conf 2016-01-15 16:48:22 UTC (rev 7461) +++ branches/1.0/package/inadyn/ddclient/ddclient.conf 2016-01-17 17:03:40 UTC (rev 7462) @@ -60,6 +60,14 @@ #@pairnic@>login=@DDUSER@ #@pairnic@>password=@DDPASS@ #@pairnic@>@DDHOST@ +#@nsupdate-ipv4@> +#@nsupdate-ipv4@>## nsupdate.info +#@nsupdate-ipv4@>ssl=yes +#@nsupdate-ipv4@>server=ipv4.nsupdate.info +#@nsupdate-ipv4@>protocol=dyndns2 +#@nsupdate-ipv4@>login=@DDUSER@ +#@nsupdate-ipv4@>password=@DDPASS@ +#@nsupdate-ipv4@>@DDHOST@ #@easydns@> #@easydns@>## EasyDNS #@easydns@>server=members.easydns.com Modified: branches/1.0/package/inadyn/dynamicdns.init =================================================================== --- branches/1.0/package/inadyn/dynamicdns.init 2016-01-15 16:48:22 UTC (rev 7461) +++ branches/1.0/package/inadyn/dynamicdns.init 2016-01-17 17:03:40 UTC (rev 7462) @@ -36,6 +36,7 @@ 'de...@fr...') service="freedns" ;; 'de...@dn...') service="dnsomatic" ;; 'de...@pa...') service="pairnic" ;; + 'de...@ns...') service="nsupdate-ipv4" ;; *) service="$(echo "$DDSERVICE" | tr -d '^$*[]|"')" ;; # sanitize for sed regex esac @@ -106,6 +107,12 @@ dyndns_server_url /nic/update?" ;; + 'de...@ns...') + DDSERVICE="dy...@dy..." + ddcustom="dyndns_server_name ipv4.nsupdate.info +dyndns_server_url /nic/update?" + ;; + esac if [ -n "$DDSERVICE" -a -n "$DDUSER" -a -n "$DDPASS" -a -n "$DDHOST" ]; then Modified: branches/1.0/package/webinterface/altweb/admin/network.php =================================================================== --- branches/1.0/package/webinterface/altweb/admin/network.php 2016-01-15 16:48:22 UTC (rev 7461) +++ branches/1.0/package/webinterface/altweb/admin/network.php 2016-01-17 17:03:40 UTC (rev 7462) @@ -88,6 +88,7 @@ 'DynDNS [static]' => 'st...@dy...', 'FreeDNS' => 'de...@fr...', 'No-IP' => 'de...@no...', + 'nsupdate.info' => 'de...@ns...', 'pairNIC' => 'de...@pa...', 'ZoneEdit' => 'de...@zo...' ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-11 22:03:33
|
Revision: 7522 http://sourceforge.net/p/astlinux/code/7522 Author: abelbeck Date: 2016-02-11 22:03:31 +0000 (Thu, 11 Feb 2016) Log Message: ----------- zoneinfo, version bump to 2016a and PHP_TIMEZONEDB 2016.1 Modified Paths: -------------- branches/1.0/package/php/php.mk branches/1.0/package/zoneinfo/zoneinfo.mk Modified: branches/1.0/package/php/php.mk =================================================================== --- branches/1.0/package/php/php.mk 2016-02-11 21:54:19 UTC (rev 7521) +++ branches/1.0/package/php/php.mk 2016-02-11 22:03:31 UTC (rev 7522) @@ -13,7 +13,7 @@ PHP_DEPENDENCIES = host-pkg-config ifeq ($(BR2_PACKAGE_PHP_EXT_TIMEZONEDB),y) -PHP_TIMEZONEDB_VERSION = 2015.7 +PHP_TIMEZONEDB_VERSION = 2016.1 PHP_TIMEZONEDB_SITE = http://files.astlinux.org PHP_TIMEZONEDB_SOURCE = timezonedb-$(PHP_TIMEZONEDB_VERSION).tar.gz Modified: branches/1.0/package/zoneinfo/zoneinfo.mk =================================================================== --- branches/1.0/package/zoneinfo/zoneinfo.mk 2016-02-11 21:54:19 UTC (rev 7521) +++ branches/1.0/package/zoneinfo/zoneinfo.mk 2016-02-11 22:03:31 UTC (rev 7522) @@ -3,7 +3,7 @@ # zoneinfo # ############################################################## -ZONEINFO_VERSION := 2015g +ZONEINFO_VERSION := 2016a ZONEINFO_DATA := tzdata$(ZONEINFO_VERSION).tar.gz ZONEINFO_SOURCE := tzcode$(ZONEINFO_VERSION).tar.gz ZONEINFO_SITE := http://www.iana.org/time-zones/repository/releases This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-02-19 01:11:49
|
Revision: 7543 http://sourceforge.net/p/astlinux/code/7543 Author: abelbeck Date: 2016-02-19 01:11:46 +0000 (Fri, 19 Feb 2016) Log Message: ----------- htop, version bump to 1.0.3, not enabled by default (yet) Modified Paths: -------------- branches/1.0/package/arp-scan/arp-scan.mk branches/1.0/package/htop/Config.in branches/1.0/package/htop/htop.mk Removed Paths: ------------- branches/1.0/package/htop/htop.patch Modified: branches/1.0/package/arp-scan/arp-scan.mk =================================================================== --- branches/1.0/package/arp-scan/arp-scan.mk 2016-02-18 23:31:57 UTC (rev 7542) +++ branches/1.0/package/arp-scan/arp-scan.mk 2016-02-19 01:11:46 UTC (rev 7543) @@ -3,6 +3,7 @@ # arp-scan # ################################################################################ + ARP_SCAN_VERSION = 1.9 ARP_SCAN_SOURCE = arp-scan-$(ARP_SCAN_VERSION).tar.gz ARP_SCAN_SITE = https://github.com/royhills/arp-scan/releases/download/$(ARP_SCAN_VERSION) Modified: branches/1.0/package/htop/Config.in =================================================================== --- branches/1.0/package/htop/Config.in 2016-02-18 23:31:57 UTC (rev 7542) +++ branches/1.0/package/htop/Config.in 2016-02-19 01:11:46 UTC (rev 7543) @@ -5,4 +5,4 @@ htop is an interactive text-mode process viewer for Linux. It aims to be a better top. - http://htop.sf.net + http://hisham.hm/htop/ Modified: branches/1.0/package/htop/htop.mk =================================================================== --- branches/1.0/package/htop/htop.mk 2016-02-18 23:31:57 UTC (rev 7542) +++ branches/1.0/package/htop/htop.mk 2016-02-19 01:11:46 UTC (rev 7543) @@ -4,10 +4,25 @@ # ############################################################# -HTOP_VERSION = 0.9 +HTOP_VERSION = 1.0.3 HTOP_SOURCE = htop-$(HTOP_VERSION).tar.gz -HTOP_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/htop/$(HTOP_VERSION) +HTOP_SITE = http://hisham.hm/htop/releases/$(HTOP_VERSION) HTOP_DEPENDENCIES = ncurses HTOP_AUTORECONF = YES +HTOP_CONF_OPT = \ + --disable-unicode + +HTOP_CONF_ENV = \ + ac_cv_file__proc_stat=yes \ + ac_cv_file__proc_meminfo=yes + +define HTOP_INSTALL_TARGET_CMDS + $(INSTALL) -D -m 0755 $(@D)/htop $(TARGET_DIR)/usr/bin/htop +endef + +define HTOP_UNINSTALL_TARGET_CMDS + rm -f $(TARGET_DIR)/usr/bin/htop +endef + $(eval $(call AUTOTARGETS,package,htop)) Deleted: branches/1.0/package/htop/htop.patch =================================================================== --- branches/1.0/package/htop/htop.patch 2016-02-18 23:31:57 UTC (rev 7542) +++ branches/1.0/package/htop/htop.patch 2016-02-19 01:11:46 UTC (rev 7543) @@ -1,75 +0,0 @@ -# This patch removes the hard dependency on backtrace by checking for -# it at compile time and adds a cross-compile /proc check. -# Patch given to me by Hisham <his...@gm...> (htop-general) -# -# This patch is taken from upstream svn (r213, r215) -# -# Signed-off-by: Andy Kennedy <And...@ad...> -diff -Naur a/CRT.c b/CRT.c ---- a/CRT.c 2010-11-23 09:56:32.000000000 -0600 -+++ b/CRT.c 2011-03-21 17:08:21.000000000 -0500 -@@ -11,7 +11,9 @@ - #include <signal.h> - #include <stdlib.h> - #include <stdbool.h> -+#ifdef HAVE_EXECINFO_H - #include <execinfo.h> -+#endif - - #include "String.h" - -@@ -125,12 +127,14 @@ - CRT_done(); - #if __linux - fprintf(stderr, "\n\nhtop " VERSION " aborting. Please report bug at http://htop.sf.net\n"); -- #else -- fprintf(stderr, "\n\nhtop " VERSION " aborting. Unsupported platform.\n"); -- #endif -+ #ifdef HAVE_EXECINFO_H - size_t size = backtrace(backtraceArray, sizeof(backtraceArray)); - fprintf(stderr, "Backtrace: \n"); - backtrace_symbols_fd(backtraceArray, size, 2); -+ #endif -+ #else -+ fprintf(stderr, "\n\nhtop " VERSION " aborting. Unsupported platform.\n"); -+ #endif - abort(); - } - -diff -Naur a/CRT.h b/CRT.h ---- a/CRT.h 2010-11-23 09:56:32.000000000 -0600 -+++ b/CRT.h 2011-03-21 17:06:16.000000000 -0500 -@@ -14,7 +14,9 @@ - #include <signal.h> - #include <stdlib.h> - #include <stdbool.h> -+#ifdef HAVE_EXECINFO_H - #include <execinfo.h> -+#endif - - #include "String.h" - -diff -Naur a/configure.ac b/configure.ac ---- a/configure.ac 2010-11-23 09:56:32.000000000 -0600 -+++ b/configure.ac 2011-03-21 17:06:16.000000000 -0500 -@@ -25,6 +25,7 @@ - AC_CHECK_HEADERS([stdlib.h string.h strings.h sys/param.h sys/time.h unistd.h curses.h],[:],[ - missing_headers="$missing_headers $ac_header" - ]) -+AC_CHECK_HEADERS([execinfo.h],[:],[:]) - - # Checks for typedefs, structures, and compiler characteristics. - AC_HEADER_STDBOOL -@@ -99,10 +100,10 @@ - AC_MSG_ERROR([missing headers: $missing_headers]) - fi - -- -- -+if test "$cross_compiling" = "no"; then - AC_CHECK_FILE($PROCDIR/stat,,AC_MSG_ERROR(Cannot find /proc/stat. Make sure you have a Linux-compatible /proc filesystem mounted. See the file README for help.)) - AC_CHECK_FILE($PROCDIR/meminfo,,AC_MSG_ERROR(Cannot find /proc/meminfo. Make sure you have a Linux-compatible /proc filesystem mounted. See the file README for help.)) -+fi - - AC_ARG_ENABLE(plpa, [AC_HELP_STRING([--enable-plpa], [enable PLPA support for CPU affinity])], ,enable_plpa="yes") - PLPA_INCLUDED This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-03-15 20:45:42
|
Revision: 7595 http://sourceforge.net/p/astlinux/code/7595 Author: abelbeck Date: 2016-03-15 20:45:39 +0000 (Tue, 15 Mar 2016) Log Message: ----------- zoneinfo, version bump to 2016b and PHP_TIMEZONEDB 2016.2 Modified Paths: -------------- branches/1.0/package/php/php.mk branches/1.0/package/zoneinfo/zoneinfo.mk Modified: branches/1.0/package/php/php.mk =================================================================== --- branches/1.0/package/php/php.mk 2016-03-15 18:06:59 UTC (rev 7594) +++ branches/1.0/package/php/php.mk 2016-03-15 20:45:39 UTC (rev 7595) @@ -13,7 +13,7 @@ PHP_DEPENDENCIES = host-pkg-config ifeq ($(BR2_PACKAGE_PHP_EXT_TIMEZONEDB),y) -PHP_TIMEZONEDB_VERSION = 2016.1 +PHP_TIMEZONEDB_VERSION = 2016.2 PHP_TIMEZONEDB_SITE = http://files.astlinux.org PHP_TIMEZONEDB_SOURCE = timezonedb-$(PHP_TIMEZONEDB_VERSION).tar.gz Modified: branches/1.0/package/zoneinfo/zoneinfo.mk =================================================================== --- branches/1.0/package/zoneinfo/zoneinfo.mk 2016-03-15 18:06:59 UTC (rev 7594) +++ branches/1.0/package/zoneinfo/zoneinfo.mk 2016-03-15 20:45:39 UTC (rev 7595) @@ -3,7 +3,7 @@ # zoneinfo # ############################################################## -ZONEINFO_VERSION := 2016a +ZONEINFO_VERSION := 2016b ZONEINFO_DATA := tzdata$(ZONEINFO_VERSION).tar.gz ZONEINFO_SOURCE := tzcode$(ZONEINFO_VERSION).tar.gz ZONEINFO_SITE := http://www.iana.org/time-zones/repository/releases This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-03-27 12:59:54
|
Revision: 7618 http://sourceforge.net/p/astlinux/code/7618 Author: abelbeck Date: 2016-03-27 12:59:52 +0000 (Sun, 27 Mar 2016) Log Message: ----------- zoneinfo, version bump to 2016c and PHP_TIMEZONEDB 2016.3 Modified Paths: -------------- branches/1.0/package/php/php.mk branches/1.0/package/zoneinfo/zoneinfo.mk Modified: branches/1.0/package/php/php.mk =================================================================== --- branches/1.0/package/php/php.mk 2016-03-26 13:23:54 UTC (rev 7617) +++ branches/1.0/package/php/php.mk 2016-03-27 12:59:52 UTC (rev 7618) @@ -13,7 +13,7 @@ PHP_DEPENDENCIES = host-pkg-config ifeq ($(BR2_PACKAGE_PHP_EXT_TIMEZONEDB),y) -PHP_TIMEZONEDB_VERSION = 2016.2 +PHP_TIMEZONEDB_VERSION = 2016.3 PHP_TIMEZONEDB_SITE = http://files.astlinux.org PHP_TIMEZONEDB_SOURCE = timezonedb-$(PHP_TIMEZONEDB_VERSION).tar.gz Modified: branches/1.0/package/zoneinfo/zoneinfo.mk =================================================================== --- branches/1.0/package/zoneinfo/zoneinfo.mk 2016-03-26 13:23:54 UTC (rev 7617) +++ branches/1.0/package/zoneinfo/zoneinfo.mk 2016-03-27 12:59:52 UTC (rev 7618) @@ -3,7 +3,7 @@ # zoneinfo # ############################################################## -ZONEINFO_VERSION := 2016b +ZONEINFO_VERSION := 2016c ZONEINFO_DATA := tzdata$(ZONEINFO_VERSION).tar.gz ZONEINFO_SOURCE := tzcode$(ZONEINFO_VERSION).tar.gz ZONEINFO_SITE := http://www.iana.org/time-zones/repository/releases This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-03-30 21:23:22
|
Revision: 7623 http://sourceforge.net/p/astlinux/code/7623 Author: abelbeck Date: 2016-03-30 21:23:20 +0000 (Wed, 30 Mar 2016) Log Message: ----------- asterisk, version bump to 11.22.0 and 13.8.0, update pjsip build opts Modified Paths: -------------- branches/1.0/package/asterisk/asterisk-11-configure-cross-fix.patch branches/1.0/package/asterisk/asterisk-11-extension-changed-verbosity-chan_sip.patch branches/1.0/package/asterisk/asterisk-13-configure-menuselect-cross-fix.patch branches/1.0/package/asterisk/asterisk-13-extension-changed-verbosity-chan_sip.patch branches/1.0/package/asterisk/asterisk.mk branches/1.0/package/pjsip/asterisk-config_site.h branches/1.0/package/pjsip/pjsip.mk Added Paths: ----------- branches/1.0/package/asterisk/asterisk-13-main-Makefile-fix.patch Modified: branches/1.0/package/asterisk/asterisk-11-configure-cross-fix.patch =================================================================== --- branches/1.0/package/asterisk/asterisk-11-configure-cross-fix.patch 2016-03-30 12:45:40 UTC (rev 7622) +++ branches/1.0/package/asterisk/asterisk-11-configure-cross-fix.patch 2016-03-30 21:23:20 UTC (rev 7623) @@ -1,6 +1,6 @@ --- asterisk-1.8.25.0/configure.ac.orig 2014-01-24 16:52:23.000000000 -0600 +++ asterisk-1.8.25.0/configure.ac 2014-01-24 16:55:14.000000000 -0600 -@@ -2410,11 +2410,13 @@ +@@ -2474,11 +2474,13 @@ AC_OUTPUT ${ac_cv_path_EGREP} 'CURSES|GTK2|OSARCH|NEWT' makeopts > makeopts.acbak2 Modified: branches/1.0/package/asterisk/asterisk-11-extension-changed-verbosity-chan_sip.patch =================================================================== --- branches/1.0/package/asterisk/asterisk-11-extension-changed-verbosity-chan_sip.patch 2016-03-30 12:45:40 UTC (rev 7622) +++ branches/1.0/package/asterisk/asterisk-11-extension-changed-verbosity-chan_sip.patch 2016-03-30 21:23:20 UTC (rev 7623) @@ -1,6 +1,6 @@ --- asterisk-11.17.1/channels/chan_sip.c.orig 2015-04-23 10:22:04.000000000 -0500 +++ asterisk-11.17.1/channels/chan_sip.c 2015-04-23 10:22:40.000000000 -0500 -@@ -16790,7 +16790,7 @@ +@@ -16781,7 +16781,7 @@ } if (!force) { Modified: branches/1.0/package/asterisk/asterisk-13-configure-menuselect-cross-fix.patch =================================================================== --- branches/1.0/package/asterisk/asterisk-13-configure-menuselect-cross-fix.patch 2016-03-30 12:45:40 UTC (rev 7622) +++ branches/1.0/package/asterisk/asterisk-13-configure-menuselect-cross-fix.patch 2016-03-30 21:23:20 UTC (rev 7623) @@ -1,6 +1,6 @@ --- asterisk-13.1.0/configure.ac.orig 2014-01-24 16:52:23.000000000 -0600 +++ asterisk-13.1.0/configure.ac 2014-01-24 16:55:14.000000000 -0600 -@@ -2523,11 +2523,13 @@ +@@ -2631,11 +2631,13 @@ AC_OUTPUT ${ac_cv_path_EGREP} 'CURSES|GTK2|OSARCH|NEWT' makeopts > makeopts.acbak2 Modified: branches/1.0/package/asterisk/asterisk-13-extension-changed-verbosity-chan_sip.patch =================================================================== --- branches/1.0/package/asterisk/asterisk-13-extension-changed-verbosity-chan_sip.patch 2016-03-30 12:45:40 UTC (rev 7622) +++ branches/1.0/package/asterisk/asterisk-13-extension-changed-verbosity-chan_sip.patch 2016-03-30 21:23:20 UTC (rev 7623) @@ -1,6 +1,6 @@ --- asterisk-11.17.1/channels/chan_sip.c.orig 2015-04-23 10:22:04.000000000 -0500 +++ asterisk-11.17.1/channels/chan_sip.c 2015-04-23 10:22:40.000000000 -0500 -@@ -16943,7 +16943,7 @@ +@@ -17333,7 +17333,7 @@ } if (!force) { Added: branches/1.0/package/asterisk/asterisk-13-main-Makefile-fix.patch =================================================================== --- branches/1.0/package/asterisk/asterisk-13-main-Makefile-fix.patch (rev 0) +++ branches/1.0/package/asterisk/asterisk-13-main-Makefile-fix.patch 2016-03-30 21:23:20 UTC (rev 7623) @@ -0,0 +1,13 @@ +--- asterisk-13.8.0/main/Makefile.orig 2016-03-30 12:32:58.000000000 -0500 ++++ asterisk-13.8.0/main/Makefile 2016-03-30 12:33:23.000000000 -0500 +@@ -226,9 +226,8 @@ + $(ECHO_PREFIX) echo " [LN] $< -> $@" + ifneq ($(LDCONFIG),) + $(CMD_PREFIX) $(LDCONFIG) $(LDCONFIG_FLAGS) . 2>/dev/null +-else +- $(CMD_PREFIX) $(LN) -sf $< $@ + endif ++ $(CMD_PREFIX) $(LN) -sf $< $@ + + else # Darwin + ASTSSL_LIB:=libasteriskssl.dylib Modified: branches/1.0/package/asterisk/asterisk.mk =================================================================== --- branches/1.0/package/asterisk/asterisk.mk 2016-03-30 12:45:40 UTC (rev 7622) +++ branches/1.0/package/asterisk/asterisk.mk 2016-03-30 21:23:20 UTC (rev 7623) @@ -7,9 +7,9 @@ ASTERISK_VERSION := 1.8.32.3 else ifeq ($(BR2_PACKAGE_ASTERISK_v11),y) -ASTERISK_VERSION := 11.21.2 +ASTERISK_VERSION := 11.22.0 else -ASTERISK_VERSION := 13.7.2 +ASTERISK_VERSION := 13.8.0 endif endif ASTERISK_SOURCE := asterisk-$(ASTERISK_VERSION).tar.gz @@ -213,9 +213,10 @@ touch $@ -$(ASTERISK_DIR)/.configured: $(ASTERISK_DIR)/.patched | host-pkg-config host-ncurses host-bison host-flex host-libxml2 \ +$(ASTERISK_DIR)/.configured: $(ASTERISK_DIR)/.patched | host-automake 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; \ + $(HOST_CONFIGURE_OPTS) \ ./bootstrap.sh; \ $(TARGET_CONFIGURE_OPTS) \ ./configure \ Modified: branches/1.0/package/pjsip/asterisk-config_site.h =================================================================== --- branches/1.0/package/pjsip/asterisk-config_site.h 2016-03-30 12:45:40 UTC (rev 7622) +++ branches/1.0/package/pjsip/asterisk-config_site.h 2016-03-30 21:23:20 UTC (rev 7623) @@ -4,40 +4,35 @@ * */ +#include <sys/select.h> + +#define PJ_HAS_IPV6 1 #define NDEBUG 1 -#define PJ_HAS_IPV6 1 -#define PJ_MAX_HOSTNAME 256 -#define PJSIP_MAX_URL_SIZE 512 - -/* The upper limit on MAX_HANDLES is determined by - * the value of FD_SETSIZE on your system. For Linux - * this is usually 1024. The following code sets it - * to whatever FD_SETSIZE is or you can set it to a - * specific number yourself. pjproject will not - * compile if you set it to greater than FD_SETSIZE. - */ -#include <sys/select.h> -#define PJ_IOQUEUE_MAX_HANDLES (FD_SETSIZE) - -/* Set for maximum server performance. - * In tests, setting these parameters reduced - * CPU load by approximately 25% for the same number - * of calls per second. Your results will vary, - * of course. - */ -#define PJ_SCANNER_USE_BITWISE 0 -#define PJ_OS_HAS_CHECK_STACK 0 -#define PJ_LOG_MAX_LEVEL 3 -#define PJ_ENABLE_EXTRA_CHECK 0 -#define PJSIP_MAX_TSX_COUNT ((64*1024)-1) -#define PJSIP_MAX_DIALOG_COUNT ((64*1024)-1) -#define PJSIP_UDP_SO_SNDBUF_SIZE (512*1024) -#define PJSIP_UDP_SO_RCVBUF_SIZE (512*1024) -#define PJ_DEBUG 0 -#define PJSIP_SAFE_MODULE 0 -#define PJ_HAS_STRICMP_ALNUM 0 -#define PJ_HASH_USE_OWN_TOLOWER 1 -#define PJSIP_UNESCAPE_IN_PLACE 1 +#define PJ_MAX_HOSTNAME (256) +#define PJSIP_MAX_URL_SIZE (512) +#ifdef PJ_HAS_LINUX_EPOLL +#define PJ_IOQUEUE_MAX_HANDLES (5000) +#else +#define PJ_IOQUEUE_MAX_HANDLES (FD_SETSIZE) +#endif +#define PJ_IOQUEUE_HAS_SAFE_UNREG 1 +#define PJ_IOQUEUE_MAX_EVENTS_IN_SINGLE_POLL (16) + +#define PJ_SCANNER_USE_BITWISE 0 +#define PJ_OS_HAS_CHECK_STACK 0 +#define PJ_LOG_MAX_LEVEL 3 +#define PJ_ENABLE_EXTRA_CHECK 0 +#define PJSIP_MAX_TSX_COUNT ((64*1024)-1) +#define PJSIP_MAX_DIALOG_COUNT ((64*1024)-1) +#define PJSIP_UDP_SO_SNDBUF_SIZE (512*1024) +#define PJSIP_UDP_SO_RCVBUF_SIZE (512*1024) +#define PJ_DEBUG 0 +#define PJSIP_SAFE_MODULE 0 +#define PJ_HAS_STRICMP_ALNUM 0 +#define PJ_HASH_USE_OWN_TOLOWER 1 +#define PJSIP_UNESCAPE_IN_PLACE 1 +#define PJSIP_MAX_PKT_LEN 6000 + #undef PJ_TODO #define PJ_TODO(x) Modified: branches/1.0/package/pjsip/pjsip.mk =================================================================== --- branches/1.0/package/pjsip/pjsip.mk 2016-03-30 12:45:40 UTC (rev 7622) +++ branches/1.0/package/pjsip/pjsip.mk 2016-03-30 21:23:20 UTC (rev 7623) @@ -23,10 +23,14 @@ PJSIP_CONF_OPT = \ --with-external-srtp \ + --disable-video \ + --disable-v4l2 \ --disable-sound \ + --disable-opencore-amr \ + --disable-ilbc-codec \ + --disable-g7221-codec \ --disable-resample \ - --disable-video \ - --disable-opencore-amr + --without-libyuv 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. |
From: <abe...@us...> - 2016-04-19 12:53:00
|
Revision: 7647 http://sourceforge.net/p/astlinux/code/7647 Author: abelbeck Date: 2016-04-19 12:52:58 +0000 (Tue, 19 Apr 2016) Log Message: ----------- zoneinfo, version bump to 2016d and PHP_TIMEZONEDB 2016.4 Modified Paths: -------------- branches/1.0/package/php/php.mk branches/1.0/package/zoneinfo/zoneinfo.mk Modified: branches/1.0/package/php/php.mk =================================================================== --- branches/1.0/package/php/php.mk 2016-04-17 15:13:48 UTC (rev 7646) +++ branches/1.0/package/php/php.mk 2016-04-19 12:52:58 UTC (rev 7647) @@ -13,7 +13,7 @@ PHP_DEPENDENCIES = host-pkg-config ifeq ($(BR2_PACKAGE_PHP_EXT_TIMEZONEDB),y) -PHP_TIMEZONEDB_VERSION = 2016.3 +PHP_TIMEZONEDB_VERSION = 2016.4 PHP_TIMEZONEDB_SITE = http://files.astlinux.org PHP_TIMEZONEDB_SOURCE = timezonedb-$(PHP_TIMEZONEDB_VERSION).tar.gz Modified: branches/1.0/package/zoneinfo/zoneinfo.mk =================================================================== --- branches/1.0/package/zoneinfo/zoneinfo.mk 2016-04-17 15:13:48 UTC (rev 7646) +++ branches/1.0/package/zoneinfo/zoneinfo.mk 2016-04-19 12:52:58 UTC (rev 7647) @@ -3,7 +3,7 @@ # zoneinfo # ############################################################## -ZONEINFO_VERSION := 2016c +ZONEINFO_VERSION := 2016d ZONEINFO_DATA := tzdata$(ZONEINFO_VERSION).tar.gz ZONEINFO_SOURCE := tzcode$(ZONEINFO_VERSION).tar.gz ZONEINFO_SITE := http://www.iana.org/time-zones/repository/releases This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-04-29 21:30:14
|
Revision: 7661 http://sourceforge.net/p/astlinux/code/7661 Author: abelbeck Date: 2016-04-29 21:30:11 +0000 (Fri, 29 Apr 2016) Log Message: ----------- build system, Makefile.in: add CPPFLAGS support, no longer force -fPIC globally for x86_64 Modified Paths: -------------- branches/1.0/package/Makefile.in branches/1.0/package/libpri/libpri.mk branches/1.0/package/prosody/prosody.mk Modified: branches/1.0/package/Makefile.in =================================================================== --- branches/1.0/package/Makefile.in 2016-04-29 17:29:56 UTC (rev 7660) +++ branches/1.0/package/Makefile.in 2016-04-29 21:30:11 UTC (rev 7661) @@ -60,25 +60,15 @@ TARGET_DEBUGGING=-g3 endif -TARGET_CFLAGS=$(TARGET_OPTIMIZATION) $(TARGET_DEBUGGING) - -ifneq ($(BR2_PREFER_STATIC_LIB),y) -ifeq ($(BR2_x86_64),y) -TARGET_CFLAGS+=-fPIC -DPIC -endif # PIC for dynamic objects on x86_64 +ifeq ($(BR2_LARGEFILE),y) +TARGET_CPPFLAGS += -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 endif -ifeq ($(findstring yy,$(BR2_mips)$(BR2_MIPS_ABI64)),yy) -TARGET_CFLAGS+=-fno-pic -mno-abicalls -endif +TARGET_CFLAGS = $(TARGET_CPPFLAGS) $(TARGET_OPTIMIZATION) $(TARGET_DEBUGGING) -ifeq ($(BR2_LARGEFILE),y) -TARGET_CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -endif +TARGET_CXXFLAGS = $(TARGET_CFLAGS) +TARGET_LDFLAGS = $(call qstrip,$(BR2_TARGET_LDFLAGS)) -TARGET_CXXFLAGS=$(TARGET_CFLAGS) -TARGET_LDFLAGS=$(call qstrip,$(BR2_TARGET_LDFLAGS)) - ifeq ($(BR2_TOOLCHAIN_BUILDROOT)$(BR2_TOOLCHAIN_CTNG),y) TARGET_CROSS=$(HOST_DIR)/usr/bin/$(REAL_GNU_TARGET_NAME)- else @@ -136,9 +126,10 @@ BISON:=$(shell which bison || type -p bison) SED:=$(shell which sed || type -p sed) -i -e +HOST_CPPFLAGS = -I$(HOST_DIR)/usr/include HOST_CFLAGS ?= -O2 -HOST_CFLAGS += -I$(HOST_DIR)/include -I$(HOST_DIR)/usr/include -HOST_CXXFLAGS += -I$(HOST_DIR)/include -I$(HOST_DIR)/usr/include +HOST_CFLAGS += $(HOST_CPPFLAGS) +HOST_CXXFLAGS += $(HOST_CFLAGS) HOST_LDFLAGS += -L$(HOST_DIR)/lib -L$(HOST_DIR)/usr/lib -Wl,-rpath,$(HOST_DIR)/usr/lib HOST_PATH=$(HOST_DIR)/bin:$(HOST_DIR)/usr/bin:$(PATH) @@ -167,12 +158,14 @@ CXX_FOR_BUILD="$(HOSTCXX)" \ FC_FOR_BUILD="$(HOSTFC)" \ LD_FOR_BUILD="$(HOSTLD)" \ + CPPFLAGS_FOR_BUILD="$(HOST_CPPFLAGS)" \ CFLAGS_FOR_BUILD="$(HOST_CFLAGS)" \ CXXFLAGS_FOR_BUILD="$(HOST_CXXFLAGS)" \ LDFLAGS_FOR_BUILD="$(HOST_LDFLAGS)" \ FCFLAGS_FOR_BUILD="$(HOST_FCFLAGS)" \ DEFAULT_ASSEMBLER="$(TARGET_AS)" \ DEFAULT_LINKER="$(TARGET_LD)" \ + CPPFLAGS="$(TARGET_CPPFLAGS)" \ CFLAGS="$(TARGET_CFLAGS)" \ CXXFLAGS="$(TARGET_CXXFLAGS)" \ LDFLAGS="$(TARGET_LDFLAGS)" \ @@ -193,6 +186,7 @@ GCC="$(HOSTCC)" \ CXX="$(HOSTCXX)" \ CPP="$(HOSTCPP)" \ + CPPFLAGS="$(HOST_CPPFLAGS)" \ CFLAGS="$(HOST_CFLAGS)" \ CXXFLAGS="$(HOST_CXXFLAGS)" \ LDFLAGS="$(HOST_LDFLAGS)" \ Modified: branches/1.0/package/libpri/libpri.mk =================================================================== --- branches/1.0/package/libpri/libpri.mk 2016-04-29 17:29:56 UTC (rev 7660) +++ branches/1.0/package/libpri/libpri.mk 2016-04-29 21:30:11 UTC (rev 7661) @@ -17,7 +17,8 @@ LIBPRI_MAKE_OPT = \ OSARCH=Linux \ INSTALL_BASE=/usr \ - $(TARGET_CONFIGURE_OPTS) + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS) -fPIC" LIBPRI_INSTALL_STAGING_OPT = \ OSARCH=Linux \ Modified: branches/1.0/package/prosody/prosody.mk =================================================================== --- branches/1.0/package/prosody/prosody.mk 2016-04-29 17:29:56 UTC (rev 7660) +++ branches/1.0/package/prosody/prosody.mk 2016-04-29 21:30:11 UTC (rev 7661) @@ -17,7 +17,7 @@ --with-lua="$(HOST_DIR)/usr" \ --with-lua-include="$(STAGING_DIR)/usr/include" \ --with-lua-lib="$(STAGING_DIR)/usr/lib" \ - --cflags="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS) -fPIC -std=gnu99 -D_GNU_SOURCE" \ + --cflags="$(TARGET_CFLAGS) -fPIC -std=gnu99 -D_GNU_SOURCE" \ --ldflags="$(TARGET_LDFLAGS) -shared" \ --datadir="/etc/prosody/data" \ --c-compiler='$(TARGET_CC)' \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-05-13 20:31:55
|
Revision: 7676 http://sourceforge.net/p/astlinux/code/7676 Author: abelbeck Date: 2016-05-13 20:31:53 +0000 (Fri, 13 May 2016) Log Message: ----------- asterisk, version bump to 13.9.1 Modified Paths: -------------- branches/1.0/package/asterisk/asterisk-13-configure-menuselect-cross-fix.patch branches/1.0/package/asterisk/asterisk.mk branches/1.0/package/pjsip/asterisk-config_site.h Removed Paths: ------------- branches/1.0/package/asterisk/asterisk-13-app_queue-segfault-fix.patch branches/1.0/package/asterisk/asterisk-13-main-Makefile-fix.patch Deleted: branches/1.0/package/asterisk/asterisk-13-app_queue-segfault-fix.patch =================================================================== --- branches/1.0/package/asterisk/asterisk-13-app_queue-segfault-fix.patch 2016-05-13 16:55:12 UTC (rev 7675) +++ branches/1.0/package/asterisk/asterisk-13-app_queue-segfault-fix.patch 2016-05-13 20:31:53 UTC (rev 7676) @@ -1,15 +0,0 @@ -X-Git-Url: http://git.asterisk.org/gitweb/?p=asterisk%2Fasterisk.git;a=blobdiff_plain;f=apps%2Fapp_queue.c;h=34fdfe7a3ea3296c27dfa814b368ef46d8b7dd4f;hp=939a0e2ad99e415037334bd7e0b377e377ef85e8;hb=3b9d8b60b211377f2023ebfbfdd157cfb668de6e;hpb=56c8182913b4df446e39ac76283dc7be355210f4 - -diff --git a/apps/app_queue.c b/apps/app_queue.c -index 939a0e2..34fdfe7 100644 ---- a/apps/app_queue.c -+++ b/apps/app_queue.c -@@ -4164,7 +4164,7 @@ static int can_ring_entry(struct queue_ent *qe, struct callattempt *call) - return 0; - } - -- if (call->member->in_call && call->lastqueue->wrapuptime) { -+ if (call->member->in_call && call->lastqueue && call->lastqueue->wrapuptime) { - ast_debug(1, "%s is in call, so not available (wrapuptime %d)\n", - call->interface, call->lastqueue->wrapuptime); - return 0; Modified: branches/1.0/package/asterisk/asterisk-13-configure-menuselect-cross-fix.patch =================================================================== --- branches/1.0/package/asterisk/asterisk-13-configure-menuselect-cross-fix.patch 2016-05-13 16:55:12 UTC (rev 7675) +++ branches/1.0/package/asterisk/asterisk-13-configure-menuselect-cross-fix.patch 2016-05-13 20:31:53 UTC (rev 7676) @@ -1,6 +1,6 @@ --- asterisk-13.1.0/configure.ac.orig 2014-01-24 16:52:23.000000000 -0600 +++ asterisk-13.1.0/configure.ac 2014-01-24 16:55:14.000000000 -0600 -@@ -2631,11 +2631,13 @@ +@@ -2630,11 +2630,13 @@ AC_OUTPUT ${ac_cv_path_EGREP} 'CURSES|GTK2|OSARCH|NEWT' makeopts > makeopts.acbak2 Deleted: branches/1.0/package/asterisk/asterisk-13-main-Makefile-fix.patch =================================================================== --- branches/1.0/package/asterisk/asterisk-13-main-Makefile-fix.patch 2016-05-13 16:55:12 UTC (rev 7675) +++ branches/1.0/package/asterisk/asterisk-13-main-Makefile-fix.patch 2016-05-13 20:31:53 UTC (rev 7676) @@ -1,61 +0,0 @@ -From: George Joseph <geo...@fa...> -Date: Wed, 30 Mar 2016 23:34:42 +0000 (-0600) -Subject: pjproject_bundled: Fix use of LDCONFIG for shared library link creation -X-Git-Url: http://git.asterisk.org/gitweb/?p=asterisk%2Fasterisk.git;a=commitdiff_plain;h=304f81780dcb9702d46164d194b9fdd808c4b99f - -pjproject_bundled: Fix use of LDCONFIG for shared library link creation - -LDCONFIG apparently isn't set to something sane on all systems so the creation -of the shared library links fails. Instead of just testing for non-blank, -main/Makefile now checks that LDCONFIG is actually executable and reverts to -LN if it isn't. - -This applies to both libasteriskpj and libasteriskssl. - -Thanks to 'abelbeck' for pointing out that the issue was LDCONFIG. - -ASTERISK-25873 #close -Reported-by: Hans van Eijsden - -Change-Id: I25b76379bc637726ec044b2c0e709b56b3701729 ---- - -diff --git a/main/Makefile b/main/Makefile -index 50fdc57..d52c3f0 100644 ---- a/main/Makefile -+++ b/main/Makefile -@@ -224,11 +224,11 @@ endif - - $(ASTSSL_LIB): $(ASTSSL_LIB).$(ASTSSL_SO_VERSION) - $(ECHO_PREFIX) echo " [LN] $< -> $@" --ifneq ($(LDCONFIG),) -- $(CMD_PREFIX) $(LDCONFIG) $(LDCONFIG_FLAGS) . 2>/dev/null --else -- $(CMD_PREFIX) $(LN) -sf $< $@ --endif -+ $(CMD_PREFIX) if [ -x "$(LDCONFIG)" ] ; then \ -+ $(LDCONFIG) $(LDCONFIG_FLAGS) . 2>/dev/null ;\ -+ else \ -+ $(LN) -sf $< $@ ;\ -+ fi - - else # Darwin - ASTSSL_LIB:=libasteriskssl.dylib -@@ -304,11 +304,11 @@ $(ASTPJ_LIB).$(ASTPJ_SO_VERSION): libasteriskpj.o libasteriskpj.exports - - $(ASTPJ_LIB): $(ASTPJ_LIB).$(ASTPJ_SO_VERSION) - $(ECHO_PREFIX) echo " [LN] $< -> $@" --ifneq ($(LDCONFIG),) -- $(CMD_PREFIX) $(LDCONFIG) $(LDCONFIG_FLAGS) . 2>/dev/null --else -- $(CMD_PREFIX) $(LN) -sf $< $@ --endif -+ $(CMD_PREFIX) if [ -x "$(LDCONFIG)" ] ; then \ -+ $(LDCONFIG) $(LDCONFIG_FLAGS) . 2>/dev/null ;\ -+ else \ -+ $(LN) -sf $< $@ ;\ -+ fi - - else # Darwin - ASTPJ_LIB:=libasteriskpj.dylib - Modified: branches/1.0/package/asterisk/asterisk.mk =================================================================== --- branches/1.0/package/asterisk/asterisk.mk 2016-05-13 16:55:12 UTC (rev 7675) +++ branches/1.0/package/asterisk/asterisk.mk 2016-05-13 20:31:53 UTC (rev 7676) @@ -9,7 +9,7 @@ ifeq ($(BR2_PACKAGE_ASTERISK_v11),y) ASTERISK_VERSION := 11.22.0 else -ASTERISK_VERSION := 13.8.2 +ASTERISK_VERSION := 13.9.1 endif endif ASTERISK_SOURCE := asterisk-$(ASTERISK_VERSION).tar.gz Modified: branches/1.0/package/pjsip/asterisk-config_site.h =================================================================== --- branches/1.0/package/pjsip/asterisk-config_site.h 2016-05-13 16:55:12 UTC (rev 7675) +++ branches/1.0/package/pjsip/asterisk-config_site.h 2016-05-13 20:31:53 UTC (rev 7676) @@ -1,7 +1,5 @@ -/* Custom config for Asterisk - * - * https://wiki.asterisk.org/wiki/display/AST/Building+and+Installing+pjproject - * +/* + * Asterisk config_site.h */ #include <sys/select.h> @@ -30,9 +28,12 @@ #define PJSIP_SAFE_MODULE 0 #define PJ_HAS_STRICMP_ALNUM 0 #define PJ_HASH_USE_OWN_TOLOWER 1 -#define PJSIP_UNESCAPE_IN_PLACE 1 +/* + It is imperative that PJSIP_UNESCAPE_IN_PLACE remain 0 or undefined. + Enabling it will result in SEGFAULTS when URIs containing escape sequences are encountered. +*/ +#undef PJSIP_UNESCAPE_IN_PLACE #define PJSIP_MAX_PKT_LEN 6000 #undef PJ_TODO #define PJ_TODO(x) - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-06-06 15:45:40
|
Revision: 7708 http://sourceforge.net/p/astlinux/code/7708 Author: abelbeck Date: 2016-06-06 15:45:38 +0000 (Mon, 06 Jun 2016) Log Message: ----------- sqlite, version bump to 3.13.0 and sqliteodbc version bump to 0.9994 Modified Paths: -------------- branches/1.0/package/sqlite/sqlite.mk branches/1.0/package/sqliteodbc/sqliteodbc.mk Modified: branches/1.0/package/sqlite/sqlite.mk =================================================================== --- branches/1.0/package/sqlite/sqlite.mk 2016-06-06 15:23:44 UTC (rev 7707) +++ branches/1.0/package/sqlite/sqlite.mk 2016-06-06 15:45:38 UTC (rev 7708) @@ -4,7 +4,7 @@ # ############################################################# -SQLITE_VERSION = 3120200 +SQLITE_VERSION = 3130000 SQLITE_SOURCE = sqlite-autoconf-$(SQLITE_VERSION).tar.gz SQLITE_SITE = http://www.sqlite.org/2016 SQLITE_INSTALL_STAGING = YES Modified: branches/1.0/package/sqliteodbc/sqliteodbc.mk =================================================================== --- branches/1.0/package/sqliteodbc/sqliteodbc.mk 2016-06-06 15:23:44 UTC (rev 7707) +++ branches/1.0/package/sqliteodbc/sqliteodbc.mk 2016-06-06 15:45:38 UTC (rev 7708) @@ -3,7 +3,7 @@ # sqliteodbc # ############################################################# -SQLITEODBC_VERSION = 0.9993 +SQLITEODBC_VERSION = 0.9994 SQLITEODBC_SOURCE = sqliteodbc-$(SQLITEODBC_VERSION).tar.gz SQLITEODBC_SITE = http://www.ch-werner.de/sqliteodbc SQLITEODBC_SUBDIR = sqliteodbc-$(SQLITEODBC_VERSION) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-06-16 13:30:17
|
Revision: 7723 http://sourceforge.net/p/astlinux/code/7723 Author: abelbeck Date: 2016-06-16 13:30:14 +0000 (Thu, 16 Jun 2016) Log Message: ----------- zoneinfo, version bump to 2016e and PHP_TIMEZONEDB 2016.5 Modified Paths: -------------- branches/1.0/package/php/php.mk branches/1.0/package/zoneinfo/zoneinfo.mk Modified: branches/1.0/package/php/php.mk =================================================================== --- branches/1.0/package/php/php.mk 2016-06-15 17:51:01 UTC (rev 7722) +++ branches/1.0/package/php/php.mk 2016-06-16 13:30:14 UTC (rev 7723) @@ -13,7 +13,7 @@ PHP_DEPENDENCIES = host-pkg-config ifeq ($(BR2_PACKAGE_PHP_EXT_TIMEZONEDB),y) -PHP_TIMEZONEDB_VERSION = 2016.4 +PHP_TIMEZONEDB_VERSION = 2016.5 PHP_TIMEZONEDB_SITE = http://files.astlinux.org PHP_TIMEZONEDB_SOURCE = timezonedb-$(PHP_TIMEZONEDB_VERSION).tar.gz Modified: branches/1.0/package/zoneinfo/zoneinfo.mk =================================================================== --- branches/1.0/package/zoneinfo/zoneinfo.mk 2016-06-15 17:51:01 UTC (rev 7722) +++ branches/1.0/package/zoneinfo/zoneinfo.mk 2016-06-16 13:30:14 UTC (rev 7723) @@ -3,7 +3,7 @@ # zoneinfo # ############################################################## -ZONEINFO_VERSION := 2016d +ZONEINFO_VERSION := 2016e ZONEINFO_DATA := tzdata$(ZONEINFO_VERSION).tar.gz ZONEINFO_SOURCE := tzcode$(ZONEINFO_VERSION).tar.gz ZONEINFO_SITE := http://www.iana.org/time-zones/repository/releases This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-06-19 22:42:02
|
Revision: 7728 http://sourceforge.net/p/astlinux/code/7728 Author: abelbeck Date: 2016-06-19 22:41:59 +0000 (Sun, 19 Jun 2016) Log Message: ----------- build system, rename Amazon S3 URL's 'files.astlinux.org' to 'files.astlinux-project.org' Modified Paths: -------------- branches/1.0/package/arnofw/arnofw.mk branches/1.0/package/clix/clix.mk branches/1.0/package/freeswitch/freeswitch.mk branches/1.0/package/iksemel/iksemel.mk branches/1.0/package/inadyn/inadyn.mk branches/1.0/package/libical/libical.mk branches/1.0/package/libsrtp/libsrtp.mk branches/1.0/package/lm-sensors/lm-sensors.mk branches/1.0/package/luasec/luasec.mk branches/1.0/package/luasocket/luasocket.mk branches/1.0/package/mac2vendor/mac2vendor.mk branches/1.0/package/mdnsresponder/mdnsresponder.mk branches/1.0/package/perl/perl.mk branches/1.0/package/php/php.mk branches/1.0/package/r8168/r8168.mk branches/1.0/package/rtpproxy/rtpproxy.mk branches/1.0/package/shellinabox/shellinabox.mk branches/1.0/package/sipgrep/sipgrep.mk branches/1.0/package/tg3/tg3.mk Modified: branches/1.0/package/arnofw/arnofw.mk =================================================================== --- branches/1.0/package/arnofw/arnofw.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/arnofw/arnofw.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -7,7 +7,7 @@ ARNOFW_ROOT := arno-iptables-firewall ARNOFW_SOURCE := $(ARNOFW_ROOT)_$(ARNOFW_VER).tar.gz ARNOFW_SITE := http://rocky.eld.leidenuniv.nl/arno-iptables-firewall -#ARNOFW_SITE := http://files.astlinux.org +#ARNOFW_SITE := http://files.astlinux-project.org ARNOFW_DIR := $(BUILD_DIR)/$(ARNOFW_ROOT)_$(ARNOFW_VER) ARNOFW_CAT := zcat ARNOFW_TARGET_BINARY := /usr/sbin/arno-iptables-firewall Modified: branches/1.0/package/clix/clix.mk =================================================================== --- branches/1.0/package/clix/clix.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/clix/clix.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -5,7 +5,7 @@ ############################################################# CLIX_VERSION = 2013-03-30 CLIX_SOURCE = clix-$(CLIX_VERSION).tar.gz -CLIX_SITE = http://files.astlinux.org +CLIX_SITE = http://files.astlinux-project.org define CLIX_INSTALL_TARGET_CMDS install -D -m 755 $(@D)/clix.bin $(TARGET_DIR)/usr/bin/clix Modified: branches/1.0/package/freeswitch/freeswitch.mk =================================================================== --- branches/1.0/package/freeswitch/freeswitch.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/freeswitch/freeswitch.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -7,7 +7,7 @@ # Manual snapshots generated from: # git clone git://git.freeswitch.org/freeswitch.git # -FREESWITCH_SITE := http://files.astlinux.org +FREESWITCH_SITE := http://files.astlinux-project.org FREESWITCH_VERSION := 2011-10-18 FREESWITCH_SOURCE := freeswitch-$(FREESWITCH_VERSION).tar.gz FREESWITCH_DIR := $(BUILD_DIR)/freeswitch-$(FREESWITCH_VERSION) Modified: branches/1.0/package/iksemel/iksemel.mk =================================================================== --- branches/1.0/package/iksemel/iksemel.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/iksemel/iksemel.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -6,7 +6,7 @@ IKSEMEL_VERSION = 1.5-pre1 IKSEMEL_SOURCE = iksemel-$(IKSEMEL_VERSION).tar.gz #IKSEMEL_SITE = http://iksemel.googlecode.com/files -IKSEMEL_SITE = http://files.astlinux.org +IKSEMEL_SITE = http://files.astlinux-project.org IKSEMEL_DEPENDENCIES = openssl IKSEMEL_INSTALL_STAGING = YES Modified: branches/1.0/package/inadyn/inadyn.mk =================================================================== --- branches/1.0/package/inadyn/inadyn.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/inadyn/inadyn.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -6,7 +6,7 @@ INADYN_VERSION = 1.96.2 INADYN_SOURCE:=inadyn-$(INADYN_VERSION).tar.gz -INADYN_SITE = http://files.astlinux.org +INADYN_SITE = http://files.astlinux-project.org define INADYN_DDCLIENT_EXTRACT $(INSTALL) -m 0755 -D package/inadyn/ddclient/ddclient.pl $(@D)/ddclient/ddclient Modified: branches/1.0/package/libical/libical.mk =================================================================== --- branches/1.0/package/libical/libical.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/libical/libical.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -7,7 +7,7 @@ #LIBICAL_VERSION = 0.48 #LIBICAL_SITE = http://downloads.sourceforge.net/project/freeassociation/libical/libical-$(LIBICAL_VERSION) LIBICAL_VERSION = r1139 -LIBICAL_SITE = http://files.astlinux.org +LIBICAL_SITE = http://files.astlinux-project.org LIBICAL_DEPENDENCIES = host-bison host-flex LIBICAL_INSTALL_STAGING = YES LIBICAL_AUTORECONF = YES Modified: branches/1.0/package/libsrtp/libsrtp.mk =================================================================== --- branches/1.0/package/libsrtp/libsrtp.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/libsrtp/libsrtp.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -4,7 +4,7 @@ # ############################################################# LIBSRTP_VERSION = 1.5.4 -LIBSRTP_SITE = http://files.astlinux.org +LIBSRTP_SITE = http://files.astlinux-project.org #LIBSRTP_SITE = https://github.com/cisco/libsrtp/releases LIBSRTP_SOURCE = libsrtp-$(LIBSRTP_VERSION).tar.gz LIBSRTP_INSTALL_STAGING = YES Modified: branches/1.0/package/lm-sensors/lm-sensors.mk =================================================================== --- branches/1.0/package/lm-sensors/lm-sensors.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/lm-sensors/lm-sensors.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -6,7 +6,7 @@ LM_SENSORS_VERSION = 3.4.0 LM_SENSORS_SOURCE = lm_sensors-$(LM_SENSORS_VERSION).tar.bz2 ##down##LM_SENSORS_SITE = http://dl.lm-sensors.org/lm-sensors/releases -LM_SENSORS_SITE = http://files.astlinux.org +LM_SENSORS_SITE = http://files.astlinux-project.org LM_SENSORS_INSTALL_STAGING = YES LM_SENSORS_DEPENDENCIES = host-bison host-flex Modified: branches/1.0/package/luasec/luasec.mk =================================================================== --- branches/1.0/package/luasec/luasec.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/luasec/luasec.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -6,7 +6,7 @@ LUASEC_VERSION = 0.5 LUASEC_SOURCE = luasec-prosody-$(LUASEC_VERSION).tar.gz -LUASEC_SITE = http://files.astlinux.org +LUASEC_SITE = http://files.astlinux-project.org LUASEC_DEPENDENCIES = lua openssl luasocket define LUASEC_BUILD_CMDS Modified: branches/1.0/package/luasocket/luasocket.mk =================================================================== --- branches/1.0/package/luasocket/luasocket.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/luasocket/luasocket.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -6,7 +6,7 @@ LUASOCKET_VERSION = 3.0-rc1 LUASOCKET_SOURCE = luasocket-$(LUASOCKET_VERSION).tar.gz -LUASOCKET_SITE = http://files.astlinux.org +LUASOCKET_SITE = http://files.astlinux-project.org #LUASOCKET_SITE = http://github.com/diegonehab/luasocket/archive LUASOCKET_DEPENDENCIES = lua Modified: branches/1.0/package/mac2vendor/mac2vendor.mk =================================================================== --- branches/1.0/package/mac2vendor/mac2vendor.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/mac2vendor/mac2vendor.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -6,7 +6,7 @@ MAC2VENDOR_VERSION = 2016-01-17 MAC2VENDOR_SOURCE = oui-$(MAC2VENDOR_VERSION).txt -MAC2VENDOR_SITE = http://files.astlinux.org +MAC2VENDOR_SITE = http://files.astlinux-project.org ## ## curl -o dl/oui-2016-01-17.txt http://standards-oui.ieee.org/oui.txt Modified: branches/1.0/package/mdnsresponder/mdnsresponder.mk =================================================================== --- branches/1.0/package/mdnsresponder/mdnsresponder.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/mdnsresponder/mdnsresponder.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -6,7 +6,7 @@ MDNSRESPONDER_VERSION := 107.6 MDNSRESPONDER_SOURCE := mDNSResponder-$(MDNSRESPONDER_VERSION).tar.gz #MDNSRESPONDER_SITE := http://www.opensource.apple.com/tarballs/mDNSResponder -MDNSRESPONDER_SITE := http://files.astlinux.org +MDNSRESPONDER_SITE := http://files.astlinux-project.org MDNSRESPONDER_DIR := $(BUILD_DIR)/mDNSResponder-$(MDNSRESPONDER_VERSION) MDNSRESPONDER_BINARY := mDNSPosix/build/prod/mDNSProxyResponderPosix MDNSRESPONDER_TARGET_BINARY := usr/sbin/mDNSProxyResponderPosix Modified: branches/1.0/package/perl/perl.mk =================================================================== --- branches/1.0/package/perl/perl.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/perl/perl.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -19,7 +19,7 @@ PERL_CROSS_VERSION = 1.0.2 PERL_CROSS_SITE = https://github.com/arsv/perl-cross/releases/download/$(PERL_CROSS_VERSION) -#PERL_CROSS_SITE = http://files.astlinux.org +#PERL_CROSS_SITE = http://files.astlinux-project.org PERL_CROSS_SOURCE = perl-$(PERL_VERSION)-cross-$(PERL_CROSS_VERSION).tar.gz # We use the perlcross hack to cross-compile perl. It should Modified: branches/1.0/package/php/php.mk =================================================================== --- branches/1.0/package/php/php.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/php/php.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -14,7 +14,7 @@ ifeq ($(BR2_PACKAGE_PHP_EXT_TIMEZONEDB),y) PHP_TIMEZONEDB_VERSION = 2016.5 -PHP_TIMEZONEDB_SITE = http://files.astlinux.org +PHP_TIMEZONEDB_SITE = http://files.astlinux-project.org PHP_TIMEZONEDB_SOURCE = timezonedb-$(PHP_TIMEZONEDB_VERSION).tar.gz define PHP_TIMEZONEDB_DOWNLOAD Modified: branches/1.0/package/r8168/r8168.mk =================================================================== --- branches/1.0/package/r8168/r8168.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/r8168/r8168.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -6,7 +6,7 @@ R8168_VERSION = 8.038.00 R8168_SOURCE:=r8168-$(R8168_VERSION).tar.bz2 -R8168_SITE = http://files.astlinux.org +R8168_SITE = http://files.astlinux-project.org R8168_DEPENDENCIES = linux R8168_UNINSTALL_STAGING_OPT = --version Modified: branches/1.0/package/rtpproxy/rtpproxy.mk =================================================================== --- branches/1.0/package/rtpproxy/rtpproxy.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/rtpproxy/rtpproxy.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -5,7 +5,7 @@ ############################################################# RTPPROXY_VERSION = 2.0.0 -RTPPROXY_SITE = http://files.astlinux.org +RTPPROXY_SITE = http://files.astlinux-project.org #RTPPROXY_SITE = https://github.com/sippy/rtpproxy RTPPROXY_SOURCE = rtpproxy-$(RTPPROXY_VERSION).tar.gz Modified: branches/1.0/package/shellinabox/shellinabox.mk =================================================================== --- branches/1.0/package/shellinabox/shellinabox.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/shellinabox/shellinabox.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -6,7 +6,7 @@ SHELLINABOX_VERSION = 2.19 SHELLINABOX_SOURCE = shellinabox-$(SHELLINABOX_VERSION).tar.gz #SHELLINABOX_SITE = https://github.com/shellinabox/shellinabox -SHELLINABOX_SITE = http://files.astlinux.org +SHELLINABOX_SITE = http://files.astlinux-project.org SHELLINABOX_DEPENDENCIES = openssl SHELLINABOX_AUTORECONF = YES Modified: branches/1.0/package/sipgrep/sipgrep.mk =================================================================== --- branches/1.0/package/sipgrep/sipgrep.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/sipgrep/sipgrep.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -6,7 +6,7 @@ SIPGREP_VERSION = 2.1.0 SIPGREP_SOURCE = sipgrep-$(SIPGREP_VERSION).tar.gz -SIPGREP_SITE = http://files.astlinux.org +SIPGREP_SITE = http://files.astlinux-project.org #SIPGREP_SITE = https://github.com/adubovikov/sipgrep/releases SIPGREP_DEPENDENCIES = libpcap pcre Modified: branches/1.0/package/tg3/tg3.mk =================================================================== --- branches/1.0/package/tg3/tg3.mk 2016-06-19 22:35:06 UTC (rev 7727) +++ branches/1.0/package/tg3/tg3.mk 2016-06-19 22:41:59 UTC (rev 7728) @@ -6,7 +6,7 @@ TG3_VERSION = 3.137k TG3_SOURCE:=tg3-$(TG3_VERSION).tar.gz -TG3_SITE = http://files.astlinux.org +TG3_SITE = http://files.astlinux-project.org TG3_DEPENDENCIES = linux TG3_UNINSTALL_STAGING_OPT = --version This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-07-20 15:47:04
|
Revision: 7762 http://sourceforge.net/p/astlinux/code/7762 Author: abelbeck Date: 2016-07-20 15:47:02 +0000 (Wed, 20 Jul 2016) Log Message: ----------- zoneinfo, version bump to 2016f and PHP_TIMEZONEDB 2016.6 Modified Paths: -------------- branches/1.0/package/php/php.mk branches/1.0/package/zoneinfo/zoneinfo.mk Modified: branches/1.0/package/php/php.mk =================================================================== --- branches/1.0/package/php/php.mk 2016-07-20 15:32:06 UTC (rev 7761) +++ branches/1.0/package/php/php.mk 2016-07-20 15:47:02 UTC (rev 7762) @@ -13,7 +13,7 @@ PHP_DEPENDENCIES = host-pkg-config ifeq ($(BR2_PACKAGE_PHP_EXT_TIMEZONEDB),y) -PHP_TIMEZONEDB_VERSION = 2016.5 +PHP_TIMEZONEDB_VERSION = 2016.6 PHP_TIMEZONEDB_SITE = http://files.astlinux-project.org PHP_TIMEZONEDB_SOURCE = timezonedb-$(PHP_TIMEZONEDB_VERSION).tar.gz Modified: branches/1.0/package/zoneinfo/zoneinfo.mk =================================================================== --- branches/1.0/package/zoneinfo/zoneinfo.mk 2016-07-20 15:32:06 UTC (rev 7761) +++ branches/1.0/package/zoneinfo/zoneinfo.mk 2016-07-20 15:47:02 UTC (rev 7762) @@ -3,7 +3,7 @@ # zoneinfo # ############################################################## -ZONEINFO_VERSION := 2016e +ZONEINFO_VERSION := 2016f ZONEINFO_DATA := tzdata$(ZONEINFO_VERSION).tar.gz ZONEINFO_SOURCE := tzcode$(ZONEINFO_VERSION).tar.gz ZONEINFO_SITE := http://www.iana.org/time-zones/repository/releases This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-08-03 16:36:21
|
Revision: 7786 http://sourceforge.net/p/astlinux/code/7786 Author: abelbeck Date: 2016-08-03 16:36:19 +0000 (Wed, 03 Aug 2016) Log Message: ----------- dnscrypt-proxy version bump to 1.7.0, libsodium version bump to 1.0.11 Modified Paths: -------------- branches/1.0/package/dnscrypt-proxy/dnscrypt-proxy.mk branches/1.0/package/libsodium/libsodium.mk Modified: branches/1.0/package/dnscrypt-proxy/dnscrypt-proxy.mk =================================================================== --- branches/1.0/package/dnscrypt-proxy/dnscrypt-proxy.mk 2016-08-03 14:46:33 UTC (rev 7785) +++ branches/1.0/package/dnscrypt-proxy/dnscrypt-proxy.mk 2016-08-03 16:36:19 UTC (rev 7786) @@ -3,14 +3,16 @@ # dnscrypt-proxy # ############################################################# -DNSCRYPT_PROXY_VERSION = 1.6.1 -DNSCRYPT_PROXY_SOURCE = dnscrypt-proxy-$(DNSCRYPT_PROXY_VERSION).tar.gz -DNSCRYPT_PROXY_SITE = http://download.dnscrypt.org/dnscrypt-proxy -#DNSCRYPT_PROXY_SOURCE = dnscrypt-proxy-$(DNSCRYPT_PROXY_VERSION).tar.bz2 -#DNSCRYPT_PROXY_SITE = https://github.com/jedisct1/dnscrypt-proxy/releases/download/$(DNSCRYPT_PROXY_VERSION) +DNSCRYPT_PROXY_VERSION = 1.7.0 +DNSCRYPT_PROXY_SOURCE = dnscrypt-proxy-$(DNSCRYPT_PROXY_VERSION).tar.bz2 +DNSCRYPT_PROXY_SITE = https://github.com/jedisct1/dnscrypt-proxy/releases/download/$(DNSCRYPT_PROXY_VERSION) DNSCRYPT_PROXY_DEPENDENCIES += libsodium +DNSCRYPT_PROXY_CONF_OPT = \ + --without-systemd \ + --disable-plugins + # libltdl (libtool) ifeq ($(BR2_PACKAGE_LIBTOOL),y) DNSCRYPT_PROXY_DEPENDENCIES += libtool Modified: branches/1.0/package/libsodium/libsodium.mk =================================================================== --- branches/1.0/package/libsodium/libsodium.mk 2016-08-03 14:46:33 UTC (rev 7785) +++ branches/1.0/package/libsodium/libsodium.mk 2016-08-03 16:36:19 UTC (rev 7786) @@ -3,14 +3,14 @@ # libsodium # ############################################################# -LIBSODIUM_VERSION = 1.0.10 +LIBSODIUM_VERSION = 1.0.11 LIBSODIUM_SOURCE = libsodium-$(LIBSODIUM_VERSION).tar.gz LIBSODIUM_SITE = https://github.com/jedisct1/libsodium/releases/download/$(LIBSODIUM_VERSION) -#LIBSODIUM_SITE = https://download.dnscrypt.org/libsodium/releases LIBSODIUM_INSTALL_STAGING = YES -LIBSODIUM_CONF_OPT = --enable-minimal +LIBSODIUM_CONF_OPT = \ + --enable-minimal define LIBSODIUM_INSTALL_TARGET_CMDS cp -a $(STAGING_DIR)/usr/lib/libsodium.so* $(TARGET_DIR)/usr/lib/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-09-03 01:08:10
|
Revision: 7816 http://sourceforge.net/p/astlinux/code/7816 Author: abelbeck Date: 2016-09-03 01:08:07 +0000 (Sat, 03 Sep 2016) Log Message: ----------- asterisk, version bump to 13.11.0 with pjsip version bump to 2.5.5 Modified Paths: -------------- branches/1.0/package/asterisk/asterisk-13-configure-menuselect-cross-fix.patch branches/1.0/package/asterisk/asterisk-13-extension-changed-verbosity-chan_sip.patch branches/1.0/package/asterisk/asterisk.mk branches/1.0/package/pjsip/asterisk-config_site.h branches/1.0/package/pjsip/pjsip.mk Added Paths: ----------- branches/1.0/package/pjsip/pjsip-0002-Fix-1946-Avoid-deinitialization-of-uninitialized-cli.patch Removed Paths: ------------- branches/1.0/package/asterisk/asterisk-13-SILK-CODEC-support.patch branches/1.0/package/pjsip/pjsip-0001-evsub-Add-APIs-to-add-decrement-an-event-subscriptio.patch branches/1.0/package/pjsip/pjsip-0002-sip_transport_tcp-tls-Set-factory-on-transports-crea.patch Deleted: branches/1.0/package/asterisk/asterisk-13-SILK-CODEC-support.patch =================================================================== --- branches/1.0/package/asterisk/asterisk-13-SILK-CODEC-support.patch 2016-09-02 16:50:57 UTC (rev 7815) +++ branches/1.0/package/asterisk/asterisk-13-SILK-CODEC-support.patch 2016-09-03 01:08:07 UTC (rev 7816) @@ -1,346 +0,0 @@ -From 28501051b47e6bb8968bb016abf0b3493c05fa21 Mon Sep 17 00:00:00 2001 -From: Mark Michelson <mmi...@di...> -Date: Thu, 30 Jun 2016 15:58:53 -0500 -Subject: [PATCH] Update support for SILK format. - -This commit adds scaffolding in order to support the SILK audio format -on calls. Roughly, this is what is added: - -* Cached silk formats. One for each possible sample rate. -* ast_codec structures for each possible sample rate. -* RTP payload mappings for "SILK". - -In addition, this change overhauls the res_format_attr_silk file in the -following ways: - -* The "samplerate" attribute is scrapped. That's native to the format. -* There are far more checks to ensure that attributes have been - allocated before attempting to reference them. -* We do not SDP fmtp lines for attributes set to 0. - -These changes make way to be able to install a codec_silk module and -have it actually work. It also should allow for passthrough silk calls -in Asterisk. - -Change-Id: Ieeb39c95a9fecc9246bcfd3c45a6c9b51c59380e ---- - include/asterisk/format_cache.h | 8 +++++ - main/codec_builtin.c | 63 ++++++++++++++++++++++++++++++++++++++ - main/format_cache.c | 20 ++++++++++++ - main/rtp_engine.c | 10 ++++++ - res/res_format_attr_silk.c | 64 ++++++++++++++++++++------------------- - 5 files changed, 134 insertions(+), 31 deletions(-) - -diff --git a/include/asterisk/format_cache.h b/include/asterisk/format_cache.h -index 9f4e06a..ff03bb4 100644 ---- a/include/asterisk/format_cache.h -+++ b/include/asterisk/format_cache.h -@@ -224,6 +224,14 @@ extern struct ast_format *ast_format_t140_red; - extern struct ast_format *ast_format_none; - - /*! -+ * \brief Built-in SILK format. -+ */ -+extern struct ast_format *ast_format_silk8; -+extern struct ast_format *ast_format_silk12; -+extern struct ast_format *ast_format_silk16; -+extern struct ast_format *ast_format_silk24; -+ -+/*! - * \brief Initialize format cache support within the core. - * - * \retval 0 success -diff --git a/main/codec_builtin.c b/main/codec_builtin.c -index d3f6517..1d329bc 100644 ---- a/main/codec_builtin.c -+++ b/main/codec_builtin.c -@@ -772,6 +772,65 @@ static struct ast_codec t140 = { - .type = AST_MEDIA_TYPE_TEXT, - }; - -+static int silk_samples(struct ast_frame *frame) -+{ -+ /* XXX This is likely not at all what's intended from this callback. However, -+ * since SILK is variable bit rate, I have no idea how to take a frame of data -+ * and determine the number of samples present. Instead, we base this on the -+ * sample rate of the codec and the expected number of samples to receive in 20ms. -+ * In testing, this has worked just fine. -+ */ -+ return ast_format_get_sample_rate(frame->subclass.format) / 50; -+} -+ -+static struct ast_codec silk8 = { -+ .name = "silk", -+ .description = "SILK Codec (8 KHz)", -+ .type = AST_MEDIA_TYPE_AUDIO, -+ .sample_rate = 8000, -+ .minimum_ms = 20, -+ .maximum_ms = 100, -+ .default_ms = 20, -+ .minimum_bytes = 160, -+ .samples_count = silk_samples -+}; -+ -+static struct ast_codec silk12 = { -+ .name = "silk", -+ .description = "SILK Codec (12 KHz)", -+ .type = AST_MEDIA_TYPE_AUDIO, -+ .sample_rate = 12000, -+ .minimum_ms = 20, -+ .maximum_ms = 100, -+ .default_ms = 20, -+ .minimum_bytes = 240, -+ .samples_count = silk_samples -+}; -+ -+static struct ast_codec silk16 = { -+ .name = "silk", -+ .description = "SILK Codec (16 KHz)", -+ .type = AST_MEDIA_TYPE_AUDIO, -+ .sample_rate = 16000, -+ .minimum_ms = 20, -+ .maximum_ms = 100, -+ .default_ms = 20, -+ .minimum_bytes = 320, -+ .samples_count = silk_samples -+}; -+ -+static struct ast_codec silk24 = { -+ .name = "silk", -+ .description = "SILK Codec (24 KHz)", -+ .type = AST_MEDIA_TYPE_AUDIO, -+ .sample_rate = 24000, -+ .minimum_ms = 20, -+ .maximum_ms = 100, -+ .default_ms = 20, -+ .minimum_bytes = 480, -+ .samples_count = silk_samples -+}; -+ - #define CODEC_REGISTER_AND_CACHE(codec) \ - ({ \ - int __res_ ## __LINE__ = 0; \ -@@ -843,6 +902,10 @@ int ast_codec_builtin_init(void) - res |= CODEC_REGISTER_AND_CACHE(t140red); - res |= CODEC_REGISTER_AND_CACHE(t140); - res |= CODEC_REGISTER_AND_CACHE(none); -+ res |= CODEC_REGISTER_AND_CACHE_NAMED("silk8", silk8); -+ res |= CODEC_REGISTER_AND_CACHE_NAMED("silk12", silk12); -+ res |= CODEC_REGISTER_AND_CACHE_NAMED("silk16", silk16); -+ res |= CODEC_REGISTER_AND_CACHE_NAMED("silk24", silk24); - - return res; - } -diff --git a/main/format_cache.c b/main/format_cache.c -index 6638a78..74ebfe8 100644 ---- a/main/format_cache.c -+++ b/main/format_cache.c -@@ -232,6 +232,14 @@ struct ast_format *ast_format_t140_red; - */ - struct ast_format *ast_format_none; - -+/*! -+ * \brief Built-in "silk" format -+ */ -+struct ast_format *ast_format_silk8; -+struct ast_format *ast_format_silk12; -+struct ast_format *ast_format_silk16; -+struct ast_format *ast_format_silk24; -+ - /*! \brief Number of buckets to use for the media format cache (should be prime for performance reasons) */ - #define CACHE_BUCKETS 53 - -@@ -331,6 +339,10 @@ static void format_cache_shutdown(void) - ao2_replace(ast_format_t140_red, NULL); - ao2_replace(ast_format_t140, NULL); - ao2_replace(ast_format_none, NULL); -+ ao2_replace(ast_format_silk8, NULL); -+ ao2_replace(ast_format_silk12, NULL); -+ ao2_replace(ast_format_silk16, NULL); -+ ao2_replace(ast_format_silk24, NULL); - } - - int ast_format_cache_init(void) -@@ -426,6 +438,14 @@ static void set_cached_format(const char *name, struct ast_format *format) - ao2_replace(ast_format_t140, format); - } else if (!strcmp(name, "none")) { - ao2_replace(ast_format_none, format); -+ } else if (!strcmp(name, "silk8")) { -+ ao2_replace(ast_format_silk8, format); -+ } else if (!strcmp(name, "silk12")) { -+ ao2_replace(ast_format_silk12, format); -+ } else if (!strcmp(name, "silk16")) { -+ ao2_replace(ast_format_silk16, format); -+ } else if (!strcmp(name, "silk24")) { -+ ao2_replace(ast_format_silk24, format); - } - } - -diff --git a/main/rtp_engine.c b/main/rtp_engine.c -index 462d4c5..8d46bfd 100644 ---- a/main/rtp_engine.c -+++ b/main/rtp_engine.c -@@ -2198,6 +2198,11 @@ int ast_rtp_engine_init(void) - /* Opus and VP8 */ - set_next_mime_type(ast_format_opus, 0, "audio", "opus", 48000); - set_next_mime_type(ast_format_vp8, 0, "video", "VP8", 90000); -+ /* DA SILK */ -+ set_next_mime_type(ast_format_silk8, 0, "audio", "silk", 8000); -+ set_next_mime_type(ast_format_silk12, 0, "audio", "silk", 12000); -+ set_next_mime_type(ast_format_silk16, 0, "audio", "silk", 16000); -+ set_next_mime_type(ast_format_silk24, 0, "audio", "silk", 24000); - - /* Define the static rtp payload mappings */ - add_static_payload(0, ast_format_ulaw, 0); -@@ -2243,6 +2248,11 @@ int ast_rtp_engine_init(void) - add_static_payload(100, ast_format_vp8, 0); - add_static_payload(107, ast_format_opus, 0); - -+ add_static_payload(108, ast_format_silk8, 0); -+ add_static_payload(109, ast_format_silk12, 0); -+ add_static_payload(113, ast_format_silk16, 0); -+ add_static_payload(114, ast_format_silk24, 0); -+ - return 0; - } - -diff --git a/res/res_format_attr_silk.c b/res/res_format_attr_silk.c -index dcbbe4c..d52ec74 100644 ---- a/res/res_format_attr_silk.c -+++ b/res/res_format_attr_silk.c -@@ -40,7 +40,6 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") - * \note The only attribute that affects compatibility here is the sample rate. - */ - struct silk_attr { -- unsigned int samplerate; - unsigned int maxbitrate; - unsigned int dtx; - unsigned int fec; -@@ -54,10 +53,15 @@ static void silk_destroy(struct ast_format *format) - ast_free(attr); - } - -+static void attr_init(struct silk_attr *attr) -+{ -+ memset(attr, 0, sizeof(*attr)); -+} -+ - static int silk_clone(const struct ast_format *src, struct ast_format *dst) - { - struct silk_attr *original = ast_format_get_attribute_data(src); -- struct silk_attr *attr = ast_calloc(1, sizeof(*attr)); -+ struct silk_attr *attr = ast_malloc(sizeof(*attr)); - - if (!attr) { - return -1; -@@ -65,6 +69,8 @@ static int silk_clone(const struct ast_format *src, struct ast_format *dst) - - if (original) { - *attr = *original; -+ } else { -+ attr_init(attr); - } - - ast_format_set_attribute_data(dst, attr); -@@ -109,17 +115,17 @@ static void silk_generate_sdp_fmtp(const struct ast_format *format, unsigned int - ast_str_append(str, 0, "a=fmtp:%u maxaveragebitrate=%u\r\n", payload, attr->maxbitrate); - } - -- ast_str_append(str, 0, "a=fmtp:%u usedtx=%u\r\n", payload, attr->dtx); -- ast_str_append(str, 0, "a=fmtp:%u useinbandfec=%u\r\n", payload, attr->fec); -+ if (attr->dtx) { -+ ast_str_append(str, 0, "a=fmtp:%u usedtx=%u\r\n", payload, attr->dtx); -+ } -+ if (attr->fec) { -+ ast_str_append(str, 0, "a=fmtp:%u useinbandfec=%u\r\n", payload, attr->fec); -+ } - } - - static enum ast_format_cmp_res silk_cmp(const struct ast_format *format1, const struct ast_format *format2) - { -- struct silk_attr *attr1 = ast_format_get_attribute_data(format1); -- struct silk_attr *attr2 = ast_format_get_attribute_data(format2); -- -- if (((!attr1 || !attr1->samplerate) && (!attr2 || !attr2->samplerate)) || -- (attr1->samplerate == attr2->samplerate)) { -+ if (ast_format_get_sample_rate(format1) == ast_format_get_sample_rate(format2)) { - return AST_FORMAT_CMP_EQUAL; - } - -@@ -130,13 +136,10 @@ static struct ast_format *silk_getjoint(const struct ast_format *format1, const - { - struct silk_attr *attr1 = ast_format_get_attribute_data(format1); - struct silk_attr *attr2 = ast_format_get_attribute_data(format2); -- unsigned int samplerate; - struct ast_format *jointformat; - struct silk_attr *attr_res; - -- samplerate = attr1->samplerate & attr2->samplerate; -- /* sample rate is the only attribute that has any bearing on if joint capabilities exist or not */ -- if (samplerate) { -+ if (ast_format_get_sample_rate(format1) != ast_format_get_sample_rate(format2)) { - return NULL; - } - -@@ -145,22 +148,25 @@ static struct ast_format *silk_getjoint(const struct ast_format *format1, const - return NULL; - } - attr_res = ast_format_get_attribute_data(jointformat); -- attr_res->samplerate = samplerate; - -- /* Take the lowest max bitrate */ -- attr_res->maxbitrate = MIN(attr1->maxbitrate, attr2->maxbitrate); -+ if (!attr1 || !attr2) { -+ attr_init(attr_res); -+ } else { -+ /* Take the lowest max bitrate */ -+ attr_res->maxbitrate = MIN(attr1->maxbitrate, attr2->maxbitrate); - -- /* Only do dtx if both sides want it. DTX is a trade off between -- * computational complexity and bandwidth. */ -- attr_res->dtx = attr1->dtx && attr2->dtx ? 1 : 0; -+ /* Only do dtx if both sides want it. DTX is a trade off between -+ * computational complexity and bandwidth. */ -+ attr_res->dtx = attr1->dtx && attr2->dtx ? 1 : 0; - -- /* Only do FEC if both sides want it. If a peer specifically requests not -- * to receive with FEC, it may be a waste of bandwidth. */ -- attr_res->fec = attr1->fec && attr2->fec ? 1 : 0; -+ /* Only do FEC if both sides want it. If a peer specifically requests not -+ * to receive with FEC, it may be a waste of bandwidth. */ -+ attr_res->fec = attr1->fec && attr2->fec ? 1 : 0; - -- /* Use the maximum packetloss percentage between the two attributes. This affects how -- * much redundancy is used in the FEC. */ -- attr_res->packetloss_percentage = MAX(attr1->packetloss_percentage, attr2->packetloss_percentage); -+ /* Use the maximum packetloss percentage between the two attributes. This affects how -+ * much redundancy is used in the FEC. */ -+ attr_res->packetloss_percentage = MAX(attr1->packetloss_percentage, attr2->packetloss_percentage); -+ } - - return jointformat; - } -@@ -183,9 +189,7 @@ static struct ast_format *silk_set(const struct ast_format *format, const char * - } - attr = ast_format_get_attribute_data(cloned); - -- if (!strcasecmp(name, "sample_rate")) { -- attr->samplerate = val; -- } else if (!strcasecmp(name, "max_bitrate")) { -+ if (!strcasecmp(name, "max_bitrate")) { - attr->maxbitrate = val; - } else if (!strcasecmp(name, "dtx")) { - attr->dtx = val; -@@ -205,9 +209,7 @@ static const void *silk_get(const struct ast_format *format, const char *name) - struct silk_attr *attr = ast_format_get_attribute_data(format); - unsigned int *val; - -- if (!strcasecmp(name, "sample_rate")) { -- val = &attr->samplerate; -- } else if (!strcasecmp(name, "max_bitrate")) { -+ if (!strcasecmp(name, "max_bitrate")) { - val = &attr->maxbitrate; - } else if (!strcasecmp(name, "dtx")) { - val = &attr->dtx; --- -1.7.9.5 Modified: branches/1.0/package/asterisk/asterisk-13-configure-menuselect-cross-fix.patch =================================================================== --- branches/1.0/package/asterisk/asterisk-13-configure-menuselect-cross-fix.patch 2016-09-02 16:50:57 UTC (rev 7815) +++ branches/1.0/package/asterisk/asterisk-13-configure-menuselect-cross-fix.patch 2016-09-03 01:08:07 UTC (rev 7816) @@ -1,6 +1,6 @@ --- asterisk-13.1.0/configure.ac.orig 2014-01-24 16:52:23.000000000 -0600 +++ asterisk-13.1.0/configure.ac 2014-01-24 16:55:14.000000000 -0600 -@@ -2636,11 +2636,13 @@ +@@ -2625,11 +2625,13 @@ AC_OUTPUT ${ac_cv_path_EGREP} 'CURSES|GTK2|OSARCH|NEWT' makeopts > makeopts.acbak2 Modified: branches/1.0/package/asterisk/asterisk-13-extension-changed-verbosity-chan_sip.patch =================================================================== --- branches/1.0/package/asterisk/asterisk-13-extension-changed-verbosity-chan_sip.patch 2016-09-02 16:50:57 UTC (rev 7815) +++ branches/1.0/package/asterisk/asterisk-13-extension-changed-verbosity-chan_sip.patch 2016-09-03 01:08:07 UTC (rev 7816) @@ -1,6 +1,6 @@ --- asterisk-11.17.1/channels/chan_sip.c.orig 2015-04-23 10:22:04.000000000 -0500 +++ asterisk-11.17.1/channels/chan_sip.c 2015-04-23 10:22:40.000000000 -0500 -@@ -17351,7 +17351,7 @@ +@@ -17319,7 +17319,7 @@ } if (!force) { Modified: branches/1.0/package/asterisk/asterisk.mk =================================================================== --- branches/1.0/package/asterisk/asterisk.mk 2016-09-02 16:50:57 UTC (rev 7815) +++ branches/1.0/package/asterisk/asterisk.mk 2016-09-03 01:08:07 UTC (rev 7816) @@ -9,7 +9,7 @@ ifeq ($(BR2_PACKAGE_ASTERISK_v11),y) ASTERISK_VERSION := 11.23.0 else -ASTERISK_VERSION := 13.10.0 +ASTERISK_VERSION := 13.11.0 endif endif ASTERISK_SOURCE := asterisk-$(ASTERISK_VERSION).tar.gz @@ -271,6 +271,7 @@ (cd $(ASTERISK_DIR); \ menuselect/menuselect --enable res_pktccops menuselect.makeopts; \ menuselect/menuselect --disable CORE-SOUNDS-EN-GSM --disable MOH-OPSOUND-WAV menuselect.makeopts; \ + menuselect/menuselect --disable BUILD_NATIVE menuselect.makeopts; \ ) endif touch $@ Modified: branches/1.0/package/pjsip/asterisk-config_site.h =================================================================== --- branches/1.0/package/pjsip/asterisk-config_site.h 2016-09-02 16:50:57 UTC (rev 7815) +++ branches/1.0/package/pjsip/asterisk-config_site.h 2016-09-03 01:08:07 UTC (rev 7816) @@ -19,7 +19,7 @@ #define PJ_SCANNER_USE_BITWISE 0 #define PJ_OS_HAS_CHECK_STACK 0 #define PJ_LOG_MAX_LEVEL 3 -#define PJ_ENABLE_EXTRA_CHECK 0 +#define PJ_ENABLE_EXTRA_CHECK 1 #define PJSIP_MAX_TSX_COUNT ((64*1024)-1) #define PJSIP_MAX_DIALOG_COUNT ((64*1024)-1) #define PJSIP_UDP_SO_SNDBUF_SIZE (512*1024) @@ -37,3 +37,7 @@ #undef PJ_TODO #define PJ_TODO(x) + +/* Defaults too low for WebRTC */ +#define PJ_ICE_MAX_CAND 32 +#define PJ_ICE_MAX_CHECKS (PJ_ICE_MAX_CAND * 2) Deleted: branches/1.0/package/pjsip/pjsip-0001-evsub-Add-APIs-to-add-decrement-an-event-subscriptio.patch =================================================================== --- branches/1.0/package/pjsip/pjsip-0001-evsub-Add-APIs-to-add-decrement-an-event-subscriptio.patch 2016-09-02 16:50:57 UTC (rev 7815) +++ branches/1.0/package/pjsip/pjsip-0001-evsub-Add-APIs-to-add-decrement-an-event-subscriptio.patch 2016-09-03 01:08:07 UTC (rev 7816) @@ -1,72 +0,0 @@ -From a5030c9b33b2c936879fbacb1d2ea5edc2979181 Mon Sep 17 00:00:00 2001 -From: George Joseph <gj...@di...> -Date: Sat, 18 Jun 2016 10:14:34 -0600 -Subject: [PATCH] evsub: Add APIs to add/decrement an event subscription's - group lock - -These APIs can be used to ensure that the evsub isn't destroyed before -an application is finished using it. ---- - pjsip/include/pjsip-simple/evsub.h | 20 ++++++++++++++++++++ - pjsip/src/pjsip-simple/evsub.c | 14 ++++++++++++++ - 2 files changed, 34 insertions(+) - -diff --git a/pjsip/include/pjsip-simple/evsub.h b/pjsip/include/pjsip-simple/evsub.h -index 2dc4d69..31f85f8 100644 ---- a/pjsip/include/pjsip-simple/evsub.h -+++ b/pjsip/include/pjsip-simple/evsub.h -@@ -490,6 +490,26 @@ PJ_DECL(void) pjsip_evsub_set_mod_data( pjsip_evsub *sub, unsigned mod_id, - PJ_DECL(void*) pjsip_evsub_get_mod_data( pjsip_evsub *sub, unsigned mod_id ); - - -+/** -+ * Increment the event subscription's group lock. -+ * -+ * @param sub The server subscription instance. -+ * -+ * @return PJ_SUCCESS on success. -+ */ -+PJ_DEF(pj_status_t) pjsip_evsub_add_ref(pjsip_evsub *sub); -+ -+ -+/** -+ * Decrement the event subscription's group lock. -+ * -+ * @param sub The server subscription instance. -+ * -+ * @return PJ_SUCCESS on success. -+ */ -+PJ_DEF(pj_status_t) pjsip_evsub_dec_ref(pjsip_evsub *sub); -+ -+ - - PJ_END_DECL - -diff --git a/pjsip/src/pjsip-simple/evsub.c b/pjsip/src/pjsip-simple/evsub.c -index 7cd8859..68a9564 100644 ---- a/pjsip/src/pjsip-simple/evsub.c -+++ b/pjsip/src/pjsip-simple/evsub.c -@@ -831,7 +831,21 @@ static pj_status_t evsub_create( pjsip_dialog *dlg, - return PJ_SUCCESS; - } - -+/* -+ * Increment the event subscription's group lock. -+ */ -+PJ_DEF(pj_status_t) pjsip_evsub_add_ref(pjsip_evsub *sub) -+{ -+ return pj_grp_lock_add_ref(sub->grp_lock); -+} - -+/* -+ * Decrement the event subscription's group lock. -+ */ -+PJ_DEF(pj_status_t) pjsip_evsub_dec_ref(pjsip_evsub *sub) -+{ -+ return pj_grp_lock_dec_ref(sub->grp_lock); -+} - - /* - * Create client subscription session. --- -2.5.5 Added: branches/1.0/package/pjsip/pjsip-0002-Fix-1946-Avoid-deinitialization-of-uninitialized-cli.patch =================================================================== --- branches/1.0/package/pjsip/pjsip-0002-Fix-1946-Avoid-deinitialization-of-uninitialized-cli.patch (rev 0) +++ branches/1.0/package/pjsip/pjsip-0002-Fix-1946-Avoid-deinitialization-of-uninitialized-cli.patch 2016-09-03 01:08:07 UTC (rev 7816) @@ -0,0 +1,55 @@ +From 33fd755e819dc85a96718abc0ae26a9b46f14800 Mon Sep 17 00:00:00 2001 +From: nanang <nanang@localhost> +Date: Thu, 28 Jul 2016 08:21:45 +0000 +Subject: [PATCH 2/3] Fix #1946: Avoid deinitialization of uninitialized client + auth session. + +--- + pjsip/src/pjsip/sip_dialog.c | 18 ++++++------------ + 1 file changed, 6 insertions(+), 12 deletions(-) + +diff --git a/pjsip/src/pjsip/sip_dialog.c b/pjsip/src/pjsip/sip_dialog.c +index f03885d..421ddc4 100644 +--- a/pjsip/src/pjsip/sip_dialog.c ++++ b/pjsip/src/pjsip/sip_dialog.c +@@ -92,6 +92,12 @@ static pj_status_t create_dialog( pjsip_user_agent *ua, + pj_list_init(&dlg->inv_hdr); + pj_list_init(&dlg->rem_cap_hdr); + ++ /* Init client authentication session. */ ++ status = pjsip_auth_clt_init(&dlg->auth_sess, dlg->endpt, ++ dlg->pool, 0); ++ if (status != PJ_SUCCESS) ++ goto on_error; ++ + status = pj_mutex_create_recursive(pool, dlg->obj_name, &dlg->mutex_); + if (status != PJ_SUCCESS) + goto on_error; +@@ -283,12 +289,6 @@ PJ_DEF(pj_status_t) pjsip_dlg_create_uac( pjsip_user_agent *ua, + /* Initial route set is empty. */ + pj_list_init(&dlg->route_set); + +- /* Init client authentication session. */ +- status = pjsip_auth_clt_init(&dlg->auth_sess, dlg->endpt, +- dlg->pool, 0); +- if (status != PJ_SUCCESS) +- goto on_error; +- + /* Register this dialog to user agent. */ + status = pjsip_ua_register_dlg( ua, dlg ); + if (status != PJ_SUCCESS) +@@ -506,12 +506,6 @@ pj_status_t create_uas_dialog( pjsip_user_agent *ua, + } + dlg->route_set_frozen = PJ_TRUE; + +- /* Init client authentication session. */ +- status = pjsip_auth_clt_init(&dlg->auth_sess, dlg->endpt, +- dlg->pool, 0); +- if (status != PJ_SUCCESS) +- goto on_error; +- + /* Increment the dialog's lock since tsx may cause the dialog to be + * destroyed prematurely (such as in case of transport error). + */ +-- +2.7.4 Deleted: branches/1.0/package/pjsip/pjsip-0002-sip_transport_tcp-tls-Set-factory-on-transports-crea.patch =================================================================== --- branches/1.0/package/pjsip/pjsip-0002-sip_transport_tcp-tls-Set-factory-on-transports-crea.patch 2016-09-02 16:50:57 UTC (rev 7815) +++ branches/1.0/package/pjsip/pjsip-0002-sip_transport_tcp-tls-Set-factory-on-transports-crea.patch 2016-09-03 01:08:07 UTC (rev 7816) @@ -1,47 +0,0 @@ -From b7cb93b0e1729589a71e8b30d9a9893f0918e2a2 Mon Sep 17 00:00:00 2001 -From: George Joseph <geo...@fa...> -Date: Mon, 30 May 2016 11:58:22 -0600 -Subject: [PATCH] sip_transport_tcp/tls: Set factory on transports created - from accept - -The ability to re-use tcp and tls transports when a factory is -specified now depends on transport->factory being set which is a new field -in 2.5. This was being set only on new outgoing sockets not on -incoming sockets. The result was that a client REGISTER created a new -socket but without the factory set, the next outgoing request to the -client, OPTIONS, INVITE, etc, would attempt to create another socket -which the client would refuse. - -This patch sets the factory on transports created as a result of an -accept. ---- - pjsip/src/pjsip/sip_transport_tcp.c | 1 + - pjsip/src/pjsip/sip_transport_tls.c | 1 + - 2 files changed, 2 insertions(+) - -diff --git a/pjsip/src/pjsip/sip_transport_tcp.c b/pjsip/src/pjsip/sip_transport_tcp.c -index 1bbb324..00eb8fc 100644 ---- a/pjsip/src/pjsip/sip_transport_tcp.c -+++ b/pjsip/src/pjsip/sip_transport_tcp.c -@@ -713,6 +713,7 @@ static pj_status_t tcp_create( struct tcp_listener *listener, - tcp->base.send_msg = &tcp_send_msg; - tcp->base.do_shutdown = &tcp_shutdown; - tcp->base.destroy = &tcp_destroy_transport; -+ tcp->base.factory = &listener->factory; - - /* Create group lock */ - status = pj_grp_lock_create(pool, NULL, &tcp->grp_lock); -diff --git a/pjsip/src/pjsip/sip_transport_tls.c b/pjsip/src/pjsip/sip_transport_tls.c -index a83ac32..36ee70d 100644 ---- a/pjsip/src/pjsip/sip_transport_tls.c -+++ b/pjsip/src/pjsip/sip_transport_tls.c -@@ -742,6 +742,7 @@ static pj_status_t tls_create( struct tls_listener *listener, - tls->base.send_msg = &tls_send_msg; - tls->base.do_shutdown = &tls_shutdown; - tls->base.destroy = &tls_destroy_transport; -+ tls->base.factory = &listener->factory; - - tls->ssock = ssock; - --- -2.5.5 Modified: branches/1.0/package/pjsip/pjsip.mk =================================================================== --- branches/1.0/package/pjsip/pjsip.mk 2016-09-02 16:50:57 UTC (rev 7815) +++ branches/1.0/package/pjsip/pjsip.mk 2016-09-03 01:08:07 UTC (rev 7816) @@ -4,7 +4,7 @@ # ################################################################################ -PJSIP_VERSION = 2.5 +PJSIP_VERSION = 2.5.5 PJSIP_SOURCE = pjproject-$(PJSIP_VERSION).tar.bz2 PJSIP_SITE = http://www.pjsip.org/release/$(PJSIP_VERSION) PJSIP_INSTALL_STAGING = YES @@ -17,23 +17,36 @@ PJSIP_POST_PATCH_HOOKS += PJSIP_CUSTOM_CONFIG PJSIP_CONF_ENV = \ - CFLAGS="$(TARGET_CFLAGS) -O2" \ + CFLAGS="$(TARGET_CFLAGS) -O2 -Wno-unused-but-set-variable -Wno-unused-variable -Wno-unused-label -Wno-unused-function -Wno-strict-aliasing" \ LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ LD="$(TARGET_CC)" PJSIP_CONF_OPT = \ - --with-external-srtp \ --disable-speex-codec \ --disable-speex-aec \ --disable-gsm-codec \ + --disable-ilbc-codec \ + --disable-l16-codec \ + --disable-g711-codec \ + --disable-g722-codec \ + --disable-g7221-codec \ + --disable-opencore-amr \ + --disable-webrtc \ + --disable-silk \ + --disable-opus \ --disable-video \ --disable-v4l2 \ --disable-sound \ - --disable-opencore-amr \ - --disable-ilbc-codec \ - --disable-g7221-codec \ + --disable-ext-sound \ + --disable-oss \ + --disable-sdl \ + --disable-libyuv \ --disable-resample \ - --without-libyuv + --disable-ffmpeg \ + --disable-openh264 \ + --disable-ipp \ + --without-external-pa \ + --with-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. |
From: <abe...@us...> - 2016-09-07 16:14:01
|
Revision: 7821 http://sourceforge.net/p/astlinux/code/7821 Author: abelbeck Date: 2016-09-07 16:13:58 +0000 (Wed, 07 Sep 2016) Log Message: ----------- libcurl, version bump to 7.50.2, ca-certificates version bump to 2016-09-07 Modified Paths: -------------- branches/1.0/package/ca-certificates/ca-certificates.mk branches/1.0/package/libcurl/libcurl.mk Modified: branches/1.0/package/ca-certificates/ca-certificates.mk =================================================================== --- branches/1.0/package/ca-certificates/ca-certificates.mk 2016-09-07 14:18:19 UTC (rev 7820) +++ branches/1.0/package/ca-certificates/ca-certificates.mk 2016-09-07 16:13:58 UTC (rev 7821) @@ -4,7 +4,7 @@ # ################################################################################ -CA_CERTIFICATES_VERSION = 2016-04-20 +CA_CERTIFICATES_VERSION = 2016-09-07 CA_CERTIFICATES_SOURCE = cacert-$(CA_CERTIFICATES_VERSION).pem CA_CERTIFICATES_SITE = https://curl.haxx.se/ca Modified: branches/1.0/package/libcurl/libcurl.mk =================================================================== --- branches/1.0/package/libcurl/libcurl.mk 2016-09-07 14:18:19 UTC (rev 7820) +++ branches/1.0/package/libcurl/libcurl.mk 2016-09-07 16:13:58 UTC (rev 7821) @@ -3,7 +3,7 @@ # libcurl # ############################################################# -LIBCURL_VERSION = 7.50.1 +LIBCURL_VERSION = 7.50.2 LIBCURL_SOURCE = curl-$(LIBCURL_VERSION).tar.gz LIBCURL_SITE = https://curl.haxx.se/download LIBCURL_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-09-21 20:17:36
|
Revision: 7854 http://sourceforge.net/p/astlinux/code/7854 Author: abelbeck Date: 2016-09-21 20:17:34 +0000 (Wed, 21 Sep 2016) Log Message: ----------- web interface, Edit tab, add 'Reload Firewall Blocklist' action menu item Modified Paths: -------------- branches/1.0/package/iptables/iptables.init branches/1.0/package/webinterface/altweb/admin/edit.php branches/1.0/package/webinterface/altweb/common/functions.php Modified: branches/1.0/package/iptables/iptables.init =================================================================== --- branches/1.0/package/iptables/iptables.init 2016-09-21 11:50:29 UTC (rev 7853) +++ branches/1.0/package/iptables/iptables.init 2016-09-21 20:17:34 UTC (rev 7854) @@ -7,7 +7,6 @@ if [ ! -e /tmp/etc/arno-iptables-firewall ]; then ln -s /mnt/kd/arno-iptables-firewall /tmp/etc/arno-iptables-firewall fi - } start () { @@ -21,37 +20,34 @@ files, and create a firewall configuration corresponding to this version of Arno's Firewall. NO FIREWALL IS ACTIVE!!!" fi - else - echo "Firewall is disabled." - fi - } stop () { if [ "$FWVERS" = "arno" ] || [ -z "$FWVERS" ]; then - /usr/sbin/arno-iptables-firewall stop - fi - } restart () { if [ "$FWVERS" = "arno" ]; then - /usr/sbin/arno-iptables-firewall restart - else - /usr/sbin/arno-iptables-firewall stop + fi +} +reload () { + + if [ "$FWVERS" = "arno" ]; then + /usr/sbin/arno-iptables-firewall force-reload + else + echo "Firewall is disabled." fi - } case $1 in @@ -73,8 +69,12 @@ restart ;; +reload) + reload + ;; + *) - echo "Usage: start|stop|restart" + echo "Usage: start|stop|restart|reload" ;; esac Modified: branches/1.0/package/webinterface/altweb/admin/edit.php =================================================================== --- branches/1.0/package/webinterface/altweb/admin/edit.php 2016-09-21 11:50:29 UTC (rev 7853) +++ branches/1.0/package/webinterface/altweb/admin/edit.php 2016-09-21 20:17:34 UTC (rev 7854) @@ -12,6 +12,7 @@ // 02-18-2013, Added OpenVPN Client Config editing // 09-06-2013, Added Shortcut support // 06-07-2016, Added Avahi mDNS/DNS-SD support +// 09-21-2016, Added Reload Firewall Blocklist // $myself = $_SERVER['PHP_SELF']; @@ -50,6 +51,7 @@ if (is_file('/etc/init.d/kamailio')) { $select_reload['kamailio'] = 'Restart Kamailio'; } +$select_reload['IPTABLES'] = 'Reload Firewall Blocklist'; $select_reload['cron'] = 'Reload Cron for root'; $sys_label = array ( @@ -260,6 +262,8 @@ $result = restartPROCESS($process, 47, $result, 'init'); } elseif ($process === 'avahi') { $result = restartPROCESS($process, 48, $result, 'init'); + } elseif ($process === 'IPTABLES') { + $result = restartPROCESS('iptables', 66, $result, 'reload'); } elseif ($process === 'cron') { $result = updateCRON('root', 30, $result); } @@ -401,6 +405,8 @@ putHtml('<p style="color: green;">Fossil Server'.statusPROCESS('fossil').'.</p>'); } elseif ($result == 48) { putHtml('<p style="color: green;">mDNS/DNS-SD (Avahi)'.statusPROCESS('avahi').'.</p>'); + } elseif ($result == 66) { + putHtml('<p style="color: green;">Firewall Blocklist has been Reloaded.</p>'); } elseif ($result == 99) { putHtml('<p style="color: red;">Action Failed.</p>'); } elseif ($result == 999) { Modified: branches/1.0/package/webinterface/altweb/common/functions.php =================================================================== --- branches/1.0/package/webinterface/altweb/common/functions.php 2016-09-21 11:50:29 UTC (rev 7853) +++ branches/1.0/package/webinterface/altweb/common/functions.php 2016-09-21 20:17:34 UTC (rev 7854) @@ -65,11 +65,11 @@ $cmd .= ';sleep '.$wait; $cmd .= ';/usr/sbin/gen-rc-conf'; $cmd .= ';service '.$process.' '.$start.' >/dev/null 2>/dev/null'; + } elseif ($start === 'reload') { + $cmd .= ';service '.$process.' '.$start.' >/dev/null 2>/dev/null'; } elseif ($process === 'iptables') { $cmd .= ';/usr/sbin/gen-rc-conf'; $cmd .= ';service iptables restart >/dev/null 2>/dev/null'; - } elseif ($start === 'reload') { - $cmd .= ';service '.$process.' '.$start.' >/dev/null 2>/dev/null'; } else { $cmd .= ';service '.$process.' stop >/dev/null 2>/dev/null'; $cmd .= ';sleep '.$wait; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-09-29 13:45:14
|
Revision: 7867 http://sourceforge.net/p/astlinux/code/7867 Author: abelbeck Date: 2016-09-29 13:45:11 +0000 (Thu, 29 Sep 2016) Log Message: ----------- zoneinfo, version bump to 2016g and PHP_TIMEZONEDB 2016.7 Modified Paths: -------------- branches/1.0/package/php/php.mk branches/1.0/package/zoneinfo/zoneinfo.mk Modified: branches/1.0/package/php/php.mk =================================================================== --- branches/1.0/package/php/php.mk 2016-09-28 16:29:56 UTC (rev 7866) +++ branches/1.0/package/php/php.mk 2016-09-29 13:45:11 UTC (rev 7867) @@ -13,7 +13,7 @@ PHP_DEPENDENCIES = host-pkg-config ifeq ($(BR2_PACKAGE_PHP_EXT_TIMEZONEDB),y) -PHP_TIMEZONEDB_VERSION = 2016.6 +PHP_TIMEZONEDB_VERSION = 2016.7 PHP_TIMEZONEDB_SITE = http://files.astlinux-project.org PHP_TIMEZONEDB_SOURCE = timezonedb-$(PHP_TIMEZONEDB_VERSION).tar.gz Modified: branches/1.0/package/zoneinfo/zoneinfo.mk =================================================================== --- branches/1.0/package/zoneinfo/zoneinfo.mk 2016-09-28 16:29:56 UTC (rev 7866) +++ branches/1.0/package/zoneinfo/zoneinfo.mk 2016-09-29 13:45:11 UTC (rev 7867) @@ -3,7 +3,7 @@ # zoneinfo # ############################################################## -ZONEINFO_VERSION := 2016f +ZONEINFO_VERSION := 2016g ZONEINFO_DATA := tzdata$(ZONEINFO_VERSION).tar.gz ZONEINFO_SOURCE := tzcode$(ZONEINFO_VERSION).tar.gz ZONEINFO_SITE := http://www.iana.org/time-zones/repository/releases This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-10-15 16:56:25
|
Revision: 7893 http://sourceforge.net/p/astlinux/code/7893 Author: abelbeck Date: 2016-10-15 16:56:23 +0000 (Sat, 15 Oct 2016) Log Message: ----------- build system, use $(TARGET_MAKE_ENV) when calling $(MAKE), from upstream Buildroot, mostly to set $PATH to find host variants Modified Paths: -------------- branches/1.0/package/dmidecode/dmidecode.mk branches/1.0/package/ex-vi/ex-vi.mk branches/1.0/package/ncurses/ncurses.mk branches/1.0/package/openssl/openssl.mk branches/1.0/package/statserial/statserial.mk Modified: branches/1.0/package/dmidecode/dmidecode.mk =================================================================== --- branches/1.0/package/dmidecode/dmidecode.mk 2016-10-15 15:31:46 UTC (rev 7892) +++ branches/1.0/package/dmidecode/dmidecode.mk 2016-10-15 16:56:23 UTC (rev 7893) @@ -8,11 +8,11 @@ DMIDECODE_SITE = http://download.savannah.gnu.org/releases/dmidecode define DMIDECODE_BUILD_CMDS - $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) endef define DMIDECODE_INSTALL_TARGET_CMDS - $(MAKE) -C $(@D) prefix=/usr DESTDIR=$(TARGET_DIR) install + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) prefix=/usr DESTDIR=$(TARGET_DIR) install endef $(eval $(call GENTARGETS,package,dmidecode)) Modified: branches/1.0/package/ex-vi/ex-vi.mk =================================================================== --- branches/1.0/package/ex-vi/ex-vi.mk 2016-10-15 15:31:46 UTC (rev 7892) +++ branches/1.0/package/ex-vi/ex-vi.mk 2016-10-15 16:56:23 UTC (rev 7893) @@ -15,7 +15,7 @@ endif define EX_VI_BUILD_CMDS - $(MAKE) CC="$(TARGET_CC)" \ + $(TARGET_MAKE_ENV) $(MAKE) CC="$(TARGET_CC)" \ TERMLIB="ncurses" \ FEATURES="-DCHDIR -DFASTTAG -DUCVISUAL -DMB -DBIT8 -DTIOCGWINSZ" \ -C $(@D) Modified: branches/1.0/package/ncurses/ncurses.mk =================================================================== --- branches/1.0/package/ncurses/ncurses.mk 2016-10-15 15:31:46 UTC (rev 7892) +++ branches/1.0/package/ncurses/ncurses.mk 2016-10-15 16:56:23 UTC (rev 7893) @@ -53,7 +53,7 @@ NCURSES_LIBS-$(BR2_PACKAGE_NCURSES_TARGET_FORM) += form define NCURSES_BUILD_CMDS - $(MAKE1) -C $(@D) DESTDIR=$(STAGING_DIR) + $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) DESTDIR=$(STAGING_DIR) endef define NCURSES_INSTALL_TARGET_LIBS Modified: branches/1.0/package/openssl/openssl.mk =================================================================== --- branches/1.0/package/openssl/openssl.mk 2016-10-15 15:31:46 UTC (rev 7892) +++ branches/1.0/package/openssl/openssl.mk 2016-10-15 16:56:23 UTC (rev 7893) @@ -74,15 +74,15 @@ endef define OPENSSL_BUILD_CMDS - $(MAKE1) -C $(@D) + $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) endef define OPENSSL_INSTALL_STAGING_CMDS - $(MAKE1) -C $(@D) INSTALL_PREFIX=$(STAGING_DIR) install + $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) INSTALL_PREFIX=$(STAGING_DIR) install endef define OPENSSL_INSTALL_TARGET_CMDS - $(MAKE1) -C $(@D) INSTALL_PREFIX=$(TARGET_DIR) install + $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) INSTALL_PREFIX=$(TARGET_DIR) install # Keep target /usr/lib/ssl rm -f $(TARGET_DIR)/usr/bin/c_rehash endef Modified: branches/1.0/package/statserial/statserial.mk =================================================================== --- branches/1.0/package/statserial/statserial.mk 2016-10-15 15:31:46 UTC (rev 7892) +++ branches/1.0/package/statserial/statserial.mk 2016-10-15 16:56:23 UTC (rev 7893) @@ -9,7 +9,7 @@ STATSERIAL_DEPENDENCIES = ncurses define STATSERIAL_BUILD_CMDS - $(MAKE) CC="$(TARGET_CC)" LD="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" -C $(@D) + $(TARGET_MAKE_ENV) $(MAKE) CC="$(TARGET_CC)" LD="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" -C $(@D) endef define STATSERIAL_INSTALL_TARGET_CMDS This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-11-02 17:40:06
|
Revision: 7909 http://sourceforge.net/p/astlinux/code/7909 Author: abelbeck Date: 2016-11-02 17:40:03 +0000 (Wed, 02 Nov 2016) Log Message: ----------- build system, use when calling , from upstream Buildroot, mostly to set /usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin:/home/dev/.local/bin:/home/dev/bin to find host variants, followup to r7893 Revision Links: -------------- http://sourceforge.net/p/astlinux/code/7893 Modified Paths: -------------- branches/1.0/package/bfdetect/bfdetect.mk branches/1.0/package/dhcpdump/dhcpdump.mk branches/1.0/package/dosfstools/dosfstools.mk branches/1.0/package/htpasswd/htpasswd.mk branches/1.0/package/lm-sensors/lm-sensors.mk branches/1.0/package/lua/lua.mk branches/1.0/package/luaexpat/luaexpat.mk branches/1.0/package/luafilesystem/luafilesystem.mk branches/1.0/package/luasec/luasec.mk branches/1.0/package/luasocket/luasocket.mk branches/1.0/package/memtest/memtest.mk branches/1.0/package/miniupnpd/miniupnpd.mk branches/1.0/package/perl/perl.mk branches/1.0/package/pppd/pppd.mk branches/1.0/package/sudo/sudo.mk branches/1.0/package/vsftpd/vsftpd.mk Modified: branches/1.0/package/bfdetect/bfdetect.mk =================================================================== --- branches/1.0/package/bfdetect/bfdetect.mk 2016-11-02 15:26:01 UTC (rev 7908) +++ branches/1.0/package/bfdetect/bfdetect.mk 2016-11-02 17:40:03 UTC (rev 7909) @@ -23,7 +23,7 @@ $(BFDETECT_DIR)/$(BFDETECT_BINARY): $(BFDETECT_DIR)/.configured $(SED) 's/^[[:space:]]*strip /#strip /' $(BFDETECT_DIR)/Makefile - $(MAKE) CC=$(TARGET_CC) CFLAGS='$(TARGET_CFLAGS)' -C $(BFDETECT_DIR) + $(TARGET_MAKE_ENV) $(MAKE) CC=$(TARGET_CC) CFLAGS='$(TARGET_CFLAGS)' -C $(BFDETECT_DIR) $(TARGET_DIR)/$(BFDETECT_TARGET_BINARY): $(BFDETECT_DIR)/$(BFDETECT_BINARY) $(INSTALL) -D -m 0755 $(BFDETECT_DIR)/$(BFDETECT_BINARY) $(TARGET_DIR)/$(BFDETECT_TARGET_BINARY) Modified: branches/1.0/package/dhcpdump/dhcpdump.mk =================================================================== --- branches/1.0/package/dhcpdump/dhcpdump.mk 2016-11-02 15:26:01 UTC (rev 7908) +++ branches/1.0/package/dhcpdump/dhcpdump.mk 2016-11-02 17:40:03 UTC (rev 7909) @@ -11,7 +11,7 @@ DHCPDUMP_DEPENDENCIES = libpcap define DHCPDUMP_BUILD_CMDS - $(MAKE) -C $(@D) CC="$(TARGET_CC) $(TARGET_CFLAGS)" + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) CC="$(TARGET_CC) $(TARGET_CFLAGS)" endef define DHCPDUMP_INSTALL_TARGET_CMDS Modified: branches/1.0/package/dosfstools/dosfstools.mk =================================================================== --- branches/1.0/package/dosfstools/dosfstools.mk 2016-11-02 15:26:01 UTC (rev 7908) +++ branches/1.0/package/dosfstools/dosfstools.mk 2016-11-02 17:40:03 UTC (rev 7909) @@ -21,7 +21,7 @@ MKFS_FAT_MKDOSFS_LINK = mkdosfs define DOSFSTOOLS_BUILD_CMDS - $(MAKE) $(TARGET_CONFIGURE_OPTS) LDLIBS="$(DOSFSTOOLS_LDLIBS)" -C $(@D) + $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) LDLIBS="$(DOSFSTOOLS_LDLIBS)" -C $(@D) endef DOSFSTOOLS_INSTALL_BIN_FILES_$(BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL)+=$(FATLABEL_BINARY) Modified: branches/1.0/package/htpasswd/htpasswd.mk =================================================================== --- branches/1.0/package/htpasswd/htpasswd.mk 2016-11-02 15:26:01 UTC (rev 7908) +++ branches/1.0/package/htpasswd/htpasswd.mk 2016-11-02 17:40:03 UTC (rev 7909) @@ -17,7 +17,7 @@ touch $@ $(HTPASSWD_DIR)/$(HTPASSWD_BINARY): $(HTPASSWD_DIR)/.configured - $(MAKE) $(TARGET_CONFIGURE_OPTS) \ + $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \ CFLAGS='$(TARGET_CFLAGS)' \ LDFLAGS='$(TARGET_LDFLAGS)' \ -C $(HTPASSWD_DIR) Modified: branches/1.0/package/lm-sensors/lm-sensors.mk =================================================================== --- branches/1.0/package/lm-sensors/lm-sensors.mk 2016-11-02 15:26:01 UTC (rev 7908) +++ branches/1.0/package/lm-sensors/lm-sensors.mk 2016-11-02 17:40:03 UTC (rev 7909) @@ -19,21 +19,21 @@ LM_SENSORS_BINS_$(BR2_PACKAGE_LM_SENSORS_SENSORS_DETECT) += sbin/sensors-detect define LM_SENSORS_BUILD_CMDS - $(MAKE) $(TARGET_CONFIGURE_OPTS) MACHINE=$(KERNEL_ARCH) \ + $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) MACHINE=$(KERNEL_ARCH) \ PREFIX=/usr -C $(@D) endef define LM_SENSORS_INSTALL_STAGING_CMDS - $(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(STAGING_DIR) install + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(STAGING_DIR) install rm -f $(addprefix $(STAGING_DIR)/usr/,$(LM_SENSORS_BINS_) $(LM_SENSORS_BINS_y)) endef define LM_SENSORS_UNINSTALL_STAGING_CMDS - $(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(STAGING_DIR) uninstall + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(STAGING_DIR) uninstall endef define LM_SENSORS_INSTALL_TARGET_CMDS - $(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(TARGET_DIR) install + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(TARGET_DIR) install $(INSTALL) -D -m 0755 package/lm-sensors/lm-sensors.init $(TARGET_DIR)/etc/init.d/lmsensors mv $(TARGET_DIR)/etc/sensors3.conf $(TARGET_DIR)/stat/etc/sensors.conf.default ln -sf /tmp/etc/sensors3.conf $(TARGET_DIR)/etc/sensors3.conf @@ -42,7 +42,7 @@ endef define LM_SENSORS_UNINSTALL_TARGET_CMDS - $(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(TARGET_DIR) uninstall + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) PREFIX=/usr DESTDIR=$(TARGET_DIR) uninstall endef define LM_SENSORS_CLEAN_CMDS Modified: branches/1.0/package/lua/lua.mk =================================================================== --- branches/1.0/package/lua/lua.mk 2016-11-02 15:26:01 UTC (rev 7908) +++ branches/1.0/package/lua/lua.mk 2016-11-02 17:40:03 UTC (rev 7909) @@ -20,7 +20,7 @@ HOST_LUA_LDFLAGS = -Wl,-rpath,$(HOST_DIR)/usr/lib define LUA_BUILD_CMDS - $(MAKE) \ + $(TARGET_MAKE_ENV) $(MAKE) \ CC="$(TARGET_CC)" RANLIB="$(TARGET_RANLIB)" \ CFLAGS="$(TARGET_CFLAGS) $(LUA_CFLAGS)" \ MYLIBS="$(LUA_MYLIBS)" AR="$(TARGET_CROSS)ar rcu" \ @@ -28,7 +28,7 @@ endef define HOST_LUA_BUILD_CMDS - $(MAKE) \ + $(HOST_MAKE_ENV) $(MAKE) \ CFLAGS="$(HOST_LUA_CFLAGS)" \ MYLIBS="$(HOST_LUA_MYLIBS)" \ MYLDFLAGS="$(HOST_LUA_LDFLAGS)" \ Modified: branches/1.0/package/luaexpat/luaexpat.mk =================================================================== --- branches/1.0/package/luaexpat/luaexpat.mk 2016-11-02 15:26:01 UTC (rev 7908) +++ branches/1.0/package/luaexpat/luaexpat.mk 2016-11-02 17:40:03 UTC (rev 7909) @@ -17,7 +17,7 @@ define LUAEXPAT_BUILD_CMDS - $(MAKE) -C $(@D) $(LUAEXPAT_MFLAGS) + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) $(LUAEXPAT_MFLAGS) endef define LUAEXPAT_INSTALL_TARGET_CMDS Modified: branches/1.0/package/luafilesystem/luafilesystem.mk =================================================================== --- branches/1.0/package/luafilesystem/luafilesystem.mk 2016-11-02 15:26:01 UTC (rev 7908) +++ branches/1.0/package/luafilesystem/luafilesystem.mk 2016-11-02 17:40:03 UTC (rev 7909) @@ -13,7 +13,7 @@ endif define LUAFILESYSTEM_BUILD_CMDS - $(MAKE) -C $(@D) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS) $(LFS_CFLAGS) -fPIC" + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS) $(LFS_CFLAGS) -fPIC" endef define LUAFILESYSTEM_INSTALL_TARGET_CMDS Modified: branches/1.0/package/luasec/luasec.mk =================================================================== --- branches/1.0/package/luasec/luasec.mk 2016-11-02 15:26:01 UTC (rev 7908) +++ branches/1.0/package/luasec/luasec.mk 2016-11-02 17:40:03 UTC (rev 7909) @@ -10,7 +10,7 @@ LUASEC_DEPENDENCIES = lua openssl luasocket define LUASEC_BUILD_CMDS - $(MAKE) -C $(@D) linux \ + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) linux \ INC_PATH="" \ LIB_PATH="" \ LIBDIR="-L$(STAGING_DIR)/usr/lib/ -L$(@D)/src/luasocket" \ @@ -19,7 +19,7 @@ endef define LUASEC_INSTALL_TARGET_CMDS - $(MAKE) -C $(@D) install \ + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) install \ LUACPATH="$(TARGET_DIR)/usr/lib/lua" \ LUAPATH="$(TARGET_DIR)/usr/share/lua" endef Modified: branches/1.0/package/luasocket/luasocket.mk =================================================================== --- branches/1.0/package/luasocket/luasocket.mk 2016-11-02 15:26:01 UTC (rev 7908) +++ branches/1.0/package/luasocket/luasocket.mk 2016-11-02 17:40:03 UTC (rev 7909) @@ -11,12 +11,12 @@ LUASOCKET_DEPENDENCIES = lua define LUASOCKET_BUILD_CMDS - $(MAKE) -C $(@D) -f makefile \ + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) -f makefile \ CC="$(TARGET_CC)" LD="$(TARGET_CC)" endef define LUASOCKET_INSTALL_TARGET_CMDS - $(MAKE) -C $(@D) -f makefile \ + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) -f makefile \ INSTALL_TOP_LDIR="$(TARGET_DIR)/usr/share/lua" \ INSTALL_TOP_CDIR="$(TARGET_DIR)/usr/lib/lua" install-unix endef Modified: branches/1.0/package/memtest/memtest.mk =================================================================== --- branches/1.0/package/memtest/memtest.mk 2016-11-02 15:26:01 UTC (rev 7908) +++ branches/1.0/package/memtest/memtest.mk 2016-11-02 17:40:03 UTC (rev 7909) @@ -23,7 +23,7 @@ touch $@ $(MEMTEST_DIR)/$(MEMTEST_BIN): $(MEMTEST_DIR)/.configured - $(MAKE1) -C $(MEMTEST_DIR) CC=$(TARGET_CC) memtest.bin + $(TARGET_MAKE_ENV) $(MAKE1) -C $(MEMTEST_DIR) CC=$(TARGET_CC) memtest.bin memtest: $(MEMTEST_DIR)/$(MEMTEST_BIN) Modified: branches/1.0/package/miniupnpd/miniupnpd.mk =================================================================== --- branches/1.0/package/miniupnpd/miniupnpd.mk 2016-11-02 15:26:01 UTC (rev 7908) +++ branches/1.0/package/miniupnpd/miniupnpd.mk 2016-11-02 17:40:03 UTC (rev 7909) @@ -24,7 +24,7 @@ define MINIUPNPD_BUILD_CMDS $(TARGET_CONFIGURE_OPTS) \ CONFIG_OPTIONS="--leasefile --portinuse --vendorcfg --disable-pppconn" \ - $(MAKE) -f Makefile.linux -C $(@D) miniupnpd + $(TARGET_MAKE_ENV) $(MAKE) -f Makefile.linux -C $(@D) miniupnpd endef define MINIUPNPD_INSTALL_TARGET_CMDS Modified: branches/1.0/package/perl/perl.mk =================================================================== --- branches/1.0/package/perl/perl.mk 2016-11-02 15:26:01 UTC (rev 7908) +++ branches/1.0/package/perl/perl.mk 2016-11-02 17:40:03 UTC (rev 7909) @@ -73,22 +73,23 @@ endif define PERL_CONFIGURE_CMDS - (cd $(@D); HOSTCC='$(HOSTCC_NOCACHE)' ./configure $(PERL_CONF_OPT)) + (cd $(@D); $(TARGET_MAKE_ENV) HOSTCC='$(HOSTCC_NOCACHE)' \ + ./configure $(PERL_CONF_OPT)) $(SED) 's/UNKNOWN-/Buildroot $(BR2_VERSION_FULL) /' $(@D)/patchlevel.h endef define PERL_BUILD_CMDS - $(MAKE1) -C $(@D) all + $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) all endef define PERL_INSTALL_STAGING_CMDS - $(MAKE1) -C $(@D) DESTDIR="$(STAGING_DIR)" install.perl + $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) DESTDIR="$(STAGING_DIR)" install.perl endef define PERL_INSTALL_TARGET_CMDS # Undefine utils.lst file so cpan, corelist, ... perlthanks are not installed, keep shasum echo "utils/shasum" > $(@D)/utils.lst - $(MAKE1) -C $(@D) DESTDIR="$(TARGET_DIR)" install.perl + $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) DESTDIR="$(TARGET_DIR)" install.perl # Remove CORE dir rm -rf $(TARGET_DIR)/usr/lib/perl5/$(PERL_VERSION)/$(PERL_ARCHNAME)/CORE # Remove all .pod files Modified: branches/1.0/package/pppd/pppd.mk =================================================================== --- branches/1.0/package/pppd/pppd.mk 2016-11-02 15:26:01 UTC (rev 7908) +++ branches/1.0/package/pppd/pppd.mk 2016-11-02 17:40:03 UTC (rev 7909) @@ -26,11 +26,11 @@ define PPPD_CONFIGURE_CMDS $(SED) 's/FILTER=y/#FILTER=y/' $(PPPD_DIR)/pppd/Makefile.linux $(SED) 's/ifneq ($$(wildcard \/usr\/include\/pcap-bpf.h),)/ifdef FILTER/' $(PPPD_DIR)/*/Makefile.linux - ( cd $(@D); ./configure --prefix=/usr ) + ( cd $(@D); $(TARGET_MAKE_ENV) ./configure --prefix=/usr ) endef define PPPD_BUILD_CMDS - $(MAKE) CC="$(TARGET_CC)" COPTS="$(TARGET_CFLAGS)" \ + $(TARGET_MAKE_ENV) $(MAKE) CC="$(TARGET_CC)" COPTS="$(TARGET_CFLAGS)" \ -C $(@D) $(PPPD_MAKE_OPT) endef @@ -90,7 +90,7 @@ endef define PPPD_INSTALL_STAGING_CMDS - $(MAKE) INSTROOT=$(STAGING_DIR)/ -C $(@D) $(PPPD_MAKE_OPT) install-devel + $(TARGET_MAKE_ENV) $(MAKE) INSTROOT=$(STAGING_DIR)/ -C $(@D) $(PPPD_MAKE_OPT) install-devel endef $(eval $(call GENTARGETS,package,pppd)) Modified: branches/1.0/package/sudo/sudo.mk =================================================================== --- branches/1.0/package/sudo/sudo.mk 2016-11-02 15:26:01 UTC (rev 7908) +++ branches/1.0/package/sudo/sudo.mk 2016-11-02 17:40:03 UTC (rev 7909) @@ -21,7 +21,7 @@ # mksigname/mksiglist needs to run on build host to generate source files define SUDO_BUILD_MKSIGNAME_MKSIGLIST_HOST - $(MAKE) $(HOST_CONFIGURE_OPTS) \ + $(HOST_MAKE_ENV) $(MAKE) $(HOST_CONFIGURE_OPTS) \ CPPFLAGS="$(HOST_CPPFLAGS) -I../../include -I../.." \ -C $(@D)/lib/util mksigname mksiglist endef Modified: branches/1.0/package/vsftpd/vsftpd.mk =================================================================== --- branches/1.0/package/vsftpd/vsftpd.mk 2016-11-02 15:26:01 UTC (rev 7908) +++ branches/1.0/package/vsftpd/vsftpd.mk 2016-11-02 17:40:03 UTC (rev 7909) @@ -25,7 +25,7 @@ endif define VSFTPD_BUILD_CMDS - $(MAKE) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" \ + $(TARGET_MAKE_ENV) $(MAKE) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" \ LDFLAGS="$(TARGET_LDFLAGS)" LIBS="$(VSFTPD_LIBS)" -C $(@D) endef This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-11-03 14:38:14
|
Revision: 7913 http://sourceforge.net/p/astlinux/code/7913 Author: abelbeck Date: 2016-11-03 14:38:11 +0000 (Thu, 03 Nov 2016) Log Message: ----------- libpcap, version bump to 1.8.1; tcpdump, version bump to 4.8.1 Modified Paths: -------------- branches/1.0/package/libpcap/libpcap.mk branches/1.0/package/ngrep/ngrep.mk branches/1.0/package/sipgrep/sipgrep.mk branches/1.0/package/tcpdump/tcpdump.mk Removed Paths: ------------- branches/1.0/package/libpcap/libpcap-remove-libnl-include-path.patch Deleted: branches/1.0/package/libpcap/libpcap-remove-libnl-include-path.patch =================================================================== --- branches/1.0/package/libpcap/libpcap-remove-libnl-include-path.patch 2016-11-03 13:38:01 UTC (rev 7912) +++ branches/1.0/package/libpcap/libpcap-remove-libnl-include-path.patch 2016-11-03 14:38:11 UTC (rev 7913) @@ -1,25 +0,0 @@ -Remove hardcoded path to libnl3 include directory - -Signed-off-by: Thomas Petazzoni <tho...@fr...> -[Gustavo: update for 1.7.2] - -diff -Nura libpcap-1.7.2.orig/configure.in libpcap-1.7.2/configure.in ---- libpcap-1.7.2.orig/configure.in 2015-03-14 08:02:05.538706347 -0300 -+++ libpcap-1.7.2/configure.in 2015-03-14 08:17:22.637519050 -0300 -@@ -471,14 +471,13 @@ - # - # Yes, we have libnl 3.x. - # -- LIBS="${libnldir} -lnl-genl-3 -lnl-3 $LIBS" -+ LIBS="-lnl-genl-3 -lnl-3 $LIBS" - AC_DEFINE(HAVE_LIBNL,1,[if libnl exists]) - AC_DEFINE(HAVE_LIBNL_3_x,1,[if libnl exists and is version 3.x]) - AC_DEFINE(HAVE_LIBNL_NLE,1,[libnl has NLE_FAILURE]) - AC_DEFINE(HAVE_LIBNL_SOCKETS,1,[libnl has new-style socket api]) -- V_INCLS="$V_INCLS ${incdir}" - have_any_nl="yes" -- ],[], ${incdir} ${libnldir} -lnl-genl-3 -lnl-3 ) -+ ],[], -lnl-genl-3 -lnl-3 ) - - if test x$have_any_nl = xno ; then - # Modified: branches/1.0/package/libpcap/libpcap.mk =================================================================== --- branches/1.0/package/libpcap/libpcap.mk 2016-11-03 13:38:01 UTC (rev 7912) +++ branches/1.0/package/libpcap/libpcap.mk 2016-11-03 14:38:11 UTC (rev 7913) @@ -4,16 +4,13 @@ # ############################################################# -LIBPCAP_VERSION = 1.7.4 +LIBPCAP_VERSION = 1.8.1 LIBPCAP_SITE = http://www.tcpdump.org/release LIBPCAP_SOURCE = libpcap-$(LIBPCAP_VERSION).tar.gz LIBPCAP_INSTALL_STAGING = YES LIBPCAP_DEPENDENCIES = zlib host-flex host-bison -# We're patching configure.in -LIBPCAP_AUTORECONF = YES LIBPCAP_CONF_ENV = \ - ac_cv_linux_vers=2 \ ac_cv_header_linux_wireless_h=yes \ CFLAGS="$(LIBPCAP_CFLAGS)" LIBPCAP_CFLAGS = $(TARGET_CFLAGS) @@ -40,15 +37,16 @@ endif ifeq ($(BR2_PACKAGE_LIBUSB),y) -LIBPCAP_CONF_OPT += --enable-canusb +LIBPCAP_CONF_OPT += --enable-usb LIBPCAP_DEPENDENCIES += libusb else -LIBPCAP_CONF_OPT += --disable-canusb +LIBPCAP_CONF_OPT += --disable-usb endif ifeq ($(BR2_PACKAGE_LIBNL),y) LIBPCAP_DEPENDENCIES += libnl LIBPCAP_CFLAGS += "-I$(STAGING_DIR)/usr/include/libnl3" +LIBPCAP_CONF_OPT += --with-libnl=$(STAGING_DIR)/usr else LIBPCAP_CONF_OPT += --without-libnl endif Modified: branches/1.0/package/ngrep/ngrep.mk =================================================================== --- branches/1.0/package/ngrep/ngrep.mk 2016-11-03 13:38:01 UTC (rev 7912) +++ branches/1.0/package/ngrep/ngrep.mk 2016-11-03 14:38:11 UTC (rev 7913) @@ -12,6 +12,7 @@ NGREP_UNINSTALL_STAGING_OPT = --version NGREP_CONF_OPT += \ + --disable-pcap-restart \ --with-pcap-includes=$(STAGING_DIR)/usr/include/pcap \ --with-pcre=$(STAGING_DIR)/usr \ --enable-pcre \ Modified: branches/1.0/package/sipgrep/sipgrep.mk =================================================================== --- branches/1.0/package/sipgrep/sipgrep.mk 2016-11-03 13:38:01 UTC (rev 7912) +++ branches/1.0/package/sipgrep/sipgrep.mk 2016-11-03 14:38:11 UTC (rev 7913) @@ -13,6 +13,7 @@ SIPGREP_UNINSTALL_STAGING_OPT = --version SIPGREP_CONF_OPT += \ + --disable-pcap-restart \ --with-pcap-includes=$(STAGING_DIR)/usr/include/pcap \ --enable-ipv6 Modified: branches/1.0/package/tcpdump/tcpdump.mk =================================================================== --- branches/1.0/package/tcpdump/tcpdump.mk 2016-11-03 13:38:01 UTC (rev 7912) +++ branches/1.0/package/tcpdump/tcpdump.mk 2016-11-03 14:38:11 UTC (rev 7913) @@ -4,12 +4,11 @@ # ############################################################# -TCPDUMP_VERSION = 4.8.0 +TCPDUMP_VERSION = 4.8.1 TCPDUMP_SITE = http://www.tcpdump.org/release TCPDUMP_SOURCE = tcpdump-$(TCPDUMP_VERSION).tar.gz TCPDUMP_CONF_ENV = \ - ac_cv_linux_vers=2 \ td_cv_buggygetaddrinfo=no \ PCAP_CONFIG=$(STAGING_DIR)/usr/bin/pcap-config TCPDUMP_CONF_OPT = \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |