Hi, building net/iperf with SEPARATE_BUILD=yes breaks the configure test for IPv6 support.
Given how configure.ac abuses the 'includes' parameter of AC_CHECK_TYPES, I don't see a quick and easy fix, other than removing SEPARATE_BUILD. The patch below does that. Ok ? diff --git net/iperf/Makefile net/iperf/Makefile index 93ca769..965b27e 100644 --- net/iperf/Makefile +++ net/iperf/Makefile @@ -3,7 +3,7 @@ COMMENT= tool for measuring maximum TCP and UDP bandwidth DISTNAME= iperf-2.0.5 -REVISION= 2 +REVISION= 3 CATEGORIES= net HOMEPAGE= http://sourceforge.net/projects/iperf/ @@ -19,7 +19,6 @@ MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=iperf/} CONFIGURE_STYLE= autoconf AUTOCONF_VERSION= 2.65 -SEPARATE_BUILD= Yes do-install: ${INSTALL_PROGRAM} ${WRKBUILD}/src/iperf ${PREFIX}/bin -- Matthieu Herrb