From: <abe...@us...> - 2012-12-28 23:58:22
|
Revision: 5843 http://astlinux.svn.sourceforge.net/astlinux/?rev=5843&view=rev Author: abelbeck Date: 2012-12-28 23:58:16 +0000 (Fri, 28 Dec 2012) Log Message: ----------- iproute2, add cross-compile configure fix Modified Paths: -------------- branches/1.0/package/iproute2/iproute2.mk Modified: branches/1.0/package/iproute2/iproute2.mk =================================================================== --- branches/1.0/package/iproute2/iproute2.mk 2012-12-28 01:33:55 UTC (rev 5842) +++ branches/1.0/package/iproute2/iproute2.mk 2012-12-28 23:58:16 UTC (rev 5843) @@ -6,7 +6,7 @@ IPROUTE2_VERSION = 2.6.35 IPROUTE2_SOURCE = iproute2-$(IPROUTE2_VERSION).tar.bz2 -#IPROUTE2_SITE = http://devresources.linuxfoundation.org/dev/iproute2/download +#IPROUTE2_SITE = http://www.kernel.org/pub/linux/utils/net/iproute2 IPROUTE2_SITE = http://files.astlinux.org IPROUTE2_TARGET_SBINS = ctstat genl ifstat ip lnstat nstat routef routel rtacct rtmon rtpr rtstat ss tc @@ -29,6 +29,9 @@ define IPROUTE2_CONFIGURE_CMDS # Use kernel headers rm -r $(IPROUTE2_DIR)/include/netinet + # Cross-compile configure + $(SED) 's/gcc/$$CC $$CFLAGS/g' $(@D)/configure + cd $(@D) && $(TARGET_CONFIGURE_OPTS) ./configure # arpd needs berkeleydb $(SED) "/^TARGETS=/s: arpd : :" $(IPROUTE2_DIR)/misc/Makefile echo "IPT_LIB_DIR:=/usr/lib/xtables" >>$(IPROUTE2_DIR)/Config This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-08-08 13:11:37
|
Revision: 7794 http://sourceforge.net/p/astlinux/code/7794 Author: abelbeck Date: 2016-08-08 13:11:34 +0000 (Mon, 08 Aug 2016) Log Message: ----------- iproute2, use @D instead of IPROUTE2_DIR Modified Paths: -------------- branches/1.0/package/iproute2/iproute2.mk Modified: branches/1.0/package/iproute2/iproute2.mk =================================================================== --- branches/1.0/package/iproute2/iproute2.mk 2016-08-07 15:23:47 UTC (rev 7793) +++ branches/1.0/package/iproute2/iproute2.mk 2016-08-08 13:11:34 UTC (rev 7794) @@ -22,8 +22,8 @@ IPROUTE2_DEPENDENCIES += iptables define IPROUTE2_WITH_IPTABLES # Makefile is busted so it never passes IPT_LIB_DIR properly - $(SED) "s/-DIPT/-DXT/" $(IPROUTE2_DIR)/tc/Makefile - echo "TC_CONFIG_XT:=y" >>$(IPROUTE2_DIR)/Config + $(SED) "s/-DIPT/-DXT/" $(@D)/tc/Makefile + echo "TC_CONFIG_XT:=y" >>$(@D)/Config endef endif @@ -32,8 +32,8 @@ $(SED) 's/gcc/$$CC $$CFLAGS/g' $(@D)/configure cd $(@D) && $(TARGET_CONFIGURE_OPTS) ./configure # arpd needs berkeleydb - $(SED) "/^TARGETS=/s: arpd : :" $(IPROUTE2_DIR)/misc/Makefile - echo "IPT_LIB_DIR:=/usr/lib/xtables" >>$(IPROUTE2_DIR)/Config + $(SED) "/^TARGETS=/s: arpd : :" $(@D)/misc/Makefile + echo "IPT_LIB_DIR:=/usr/lib/xtables" >>$(@D)/Config $(IPROUTE2_WITH_IPTABLES) endef This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <abe...@us...> - 2016-11-04 16:17:07
|
Revision: 7924 http://sourceforge.net/p/astlinux/code/7924 Author: abelbeck Date: 2016-11-04 16:17:05 +0000 (Fri, 04 Nov 2016) Log Message: ----------- iproute2, version bump to 3.16.0, adds 'bridge' command Modified Paths: -------------- branches/1.0/package/iproute2/iproute2.mk Modified: branches/1.0/package/iproute2/iproute2.mk =================================================================== --- branches/1.0/package/iproute2/iproute2.mk 2016-11-04 14:16:35 UTC (rev 7923) +++ branches/1.0/package/iproute2/iproute2.mk 2016-11-04 16:17:05 UTC (rev 7924) @@ -4,12 +4,12 @@ # ############################################################# -IPROUTE2_VERSION = 3.4.0 -IPROUTE2_SOURCE = iproute2-$(IPROUTE2_VERSION).tar.bz2 +IPROUTE2_VERSION = 3.16.0 +IPROUTE2_SOURCE = iproute2-$(IPROUTE2_VERSION).tar.xz IPROUTE2_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/net/iproute2 -IPROUTE2_TARGET_SBINS = ctstat genl ifstat ip lnstat nstat routef routel rtacct rtmon rtpr rtstat ss tc +IPROUTE2_TARGET_SBINS = ip tc bridge ss rtmon ifcfg rtpr routel routef nstat ifstat rtacct lnstat genl ctstat rtstat -IPROUTE2_DEPENDENCIES += host-bison +IPROUTE2_DEPENDENCIES += host-bison host-flex host-pkg-config # If both iproute2 and busybox are selected, make certain we win # the fight over who gets to have their utils actually installed. @@ -39,7 +39,10 @@ define IPROUTE2_BUILD_CMDS $(SED) 's/$$(CCOPTS)//' $(@D)/netem/Makefile - $(TARGET_MAKE_ENV) $(MAKE) CC="$(TARGET_CC)" CCOPTS="$(TARGET_CFLAGS) -D_GNU_SOURCE" -C $(@D) + $(TARGET_MAKE_ENV) LDFLAGS="$(TARGET_LDFLAGS)" $(MAKE) \ + DBM_INCLUDE="$(STAGING_DIR)/usr/include" \ + SHARED_LIBS=y \ + CC="$(TARGET_CC)" CCOPTS="$(TARGET_CFLAGS) -D_GNU_SOURCE" -C $(@D) endef define IPROUTE2_INSTALL_TARGET_CMDS This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |