From: <abe...@us...> - 2011-12-20 14:32:29
|
Revision: 5319 http://astlinux.svn.sourceforge.net/astlinux/?rev=5319&view=rev Author: abelbeck Date: 2011-12-20 14:32:23 +0000 (Tue, 20 Dec 2011) Log Message: ----------- ipsec-tools, version bump to 0.8.0 Modified Paths: -------------- branches/1.0/package/ipsec-tools/ipsec-tools.mk Modified: branches/1.0/package/ipsec-tools/ipsec-tools.mk =================================================================== --- branches/1.0/package/ipsec-tools/ipsec-tools.mk 2011-12-20 14:18:20 UTC (rev 5318) +++ branches/1.0/package/ipsec-tools/ipsec-tools.mk 2011-12-20 14:32:23 UTC (rev 5319) @@ -4,9 +4,9 @@ # ############################################################# -IPSEC_TOOLS_VERSION = 0.7.3 +IPSEC_TOOLS_VERSION = 0.8.0 IPSEC_TOOLS_SOURCE = ipsec-tools-$(IPSEC_TOOLS_VERSION).tar.bz2 -IPSEC_TOOLS_SITE = http://ftp.sunet.se/pub/NetBSD/misc/ipsec-tools/0.7/ +IPSEC_TOOLS_SITE = http://ftp.sunet.se/pub/NetBSD/misc/ipsec-tools/0.8/ IPSEC_TOOLS_INSTALL_STAGING = YES IPSEC_TOOLS_MAKE = $(MAKE1) IPSEC_TOOLS_DEPENDENCIES = openssl flex host-flex This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-11-29 06:40:56
|
Revision: 7358 http://sourceforge.net/p/astlinux/code/7358 Author: abelbeck Date: 2015-11-29 06:40:54 +0000 (Sun, 29 Nov 2015) Log Message: ----------- ipsec-tools, build with 'ac_cv_va_copy=yes' so generic workaround (fails on x86_64) is not used Modified Paths: -------------- branches/1.0/package/ipsec-tools/ipsec-tools.mk Modified: branches/1.0/package/ipsec-tools/ipsec-tools.mk =================================================================== --- branches/1.0/package/ipsec-tools/ipsec-tools.mk 2015-11-28 17:15:18 UTC (rev 7357) +++ branches/1.0/package/ipsec-tools/ipsec-tools.mk 2015-11-29 06:40:54 UTC (rev 7358) @@ -6,7 +6,7 @@ IPSEC_TOOLS_VERSION = 0.8.2 IPSEC_TOOLS_SOURCE = ipsec-tools-$(IPSEC_TOOLS_VERSION).tar.bz2 -IPSEC_TOOLS_SITE = http://ftp.sunet.se/pub/NetBSD/misc/ipsec-tools/0.8/ +IPSEC_TOOLS_SITE = http://downloads.sourceforge.net/project/ipsec-tools/ipsec-tools/$(IPSEC_TOOLS_VERSION) IPSEC_TOOLS_INSTALL_STAGING = YES IPSEC_TOOLS_MAKE = $(MAKE1) IPSEC_TOOLS_DEPENDENCIES = openssl host-bison flex host-flex @@ -15,11 +15,12 @@ IPSEC_TOOLS_MAKE_OPT = CFLAGS='$(TARGET_CFLAGS)' IPSEC_TOOLS_CONF_OPT = \ - --enable-hybrid \ - --without-libpam \ - --disable-gssapi \ - --localstatedir=/var \ - --with-kernel-headers=$(STAGING_DIR)/usr/include + ac_cv_va_copy=yes \ + --enable-hybrid \ + --without-libpam \ + --disable-gssapi \ + --localstatedir=/var \ + --with-kernel-headers=$(STAGING_DIR)/usr/include ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_ADMINPORT), y) IPSEC_TOOLS_CONF_OPT+= --enable-adminport This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2015-11-29 15:29:58
|
Revision: 7359 http://sourceforge.net/p/astlinux/code/7359 Author: abelbeck Date: 2015-11-29 15:29:55 +0000 (Sun, 29 Nov 2015) Log Message: ----------- ipsec-tools, move 'ac_cv_va_copy=yes' to the shell environment instead of a ./configure argument, no functional change but consistant with other packages Modified Paths: -------------- branches/1.0/package/ipsec-tools/ipsec-tools.mk Modified: branches/1.0/package/ipsec-tools/ipsec-tools.mk =================================================================== --- branches/1.0/package/ipsec-tools/ipsec-tools.mk 2015-11-29 06:40:54 UTC (rev 7358) +++ branches/1.0/package/ipsec-tools/ipsec-tools.mk 2015-11-29 15:29:55 UTC (rev 7359) @@ -14,8 +14,9 @@ # configure hardcodes -Werror, so override CFLAGS on make invocation IPSEC_TOOLS_MAKE_OPT = CFLAGS='$(TARGET_CFLAGS)' +IPSEC_TOOLS_CONF_ENV = ac_cv_va_copy=yes + IPSEC_TOOLS_CONF_OPT = \ - ac_cv_va_copy=yes \ --enable-hybrid \ --without-libpam \ --disable-gssapi \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2017-02-07 14:14:28
|
Revision: 8151 http://sourceforge.net/p/astlinux/code/8151 Author: abelbeck Date: 2017-02-07 14:14:26 +0000 (Tue, 07 Feb 2017) Log Message: ----------- ipsec-tools, build system, remove useless spaces in conditions and fix typo in variable name no functional change with our config Modified Paths: -------------- branches/1.0/package/ipsec-tools/ipsec-tools.mk Modified: branches/1.0/package/ipsec-tools/ipsec-tools.mk =================================================================== --- branches/1.0/package/ipsec-tools/ipsec-tools.mk 2017-02-06 13:27:26 UTC (rev 8150) +++ branches/1.0/package/ipsec-tools/ipsec-tools.mk 2017-02-07 14:14:26 UTC (rev 8151) @@ -23,25 +23,25 @@ --localstatedir=/var \ --with-kernel-headers=$(STAGING_DIR)/usr/include -ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_ADMINPORT), y) +ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_ADMINPORT),y) IPSEC_TOOLS_CONF_OPT+= --enable-adminport else IPSEC_TOOLS_CONF_OPT+= --disable-adminport endif -ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_NATT), y) +ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_NATT),y) IPSEC_TOOLS_CONF_OPT+= --enable-natt else IPSEC_TOOLS_CONF_OPT+= --disable-natt endif -ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_FRAG), y) +ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_FRAG),y) IPSEC_TOOLS_CONF_OPT+= --enable-frag else IPSEC_TOOLS_CONF_OPT+= --disable-frag endif -ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_STATS), y) +ifeq ($(BR2_PACKAGE_IPSEC_TOOLS_STATS),y) IPSEC_TOOLS_CONF_OPT+= --enable-stats else IPSEC_TOOLS_CONF_OPT+= --disable-stats @@ -53,10 +53,10 @@ IPSEC_TOOLS_CONF_OPT+= --disable-ipv6 endif -ifneq ($(BR2_PACKAGE_IPSEC_TOOLS_READLINE), y) +ifneq ($(BR2_PACKAGE_IPSEC_TOOLS_READLINE),y) IPSEC_TOOLS_CONF_OPT+= --without-readline else -IPSEC_DEPENDENCIES += readline +IPSEC_TOOLS_DEPENDENCIES += readline endif ifeq ($(BR2_PACKAGE_IPSEC_SECCTX_DISABLE),y) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |