diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-07-18 08:30:05 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2014-07-18 08:30:05 +0000 |
commit | 26e10f832935909a3fcb7e07262817a2a5194b75 (patch) | |
tree | 120c1eaa818f2723c3f5b883742ca362d701a101 /net-mgmt | |
parent | 32842933d381608ae254820af0aa9725f9602422 (diff) |
Notes
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/tcpreplay/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/net-mgmt/tcpreplay/Makefile b/net-mgmt/tcpreplay/Makefile index 2a1d04e84e95..574b8911a05b 100644 --- a/net-mgmt/tcpreplay/Makefile +++ b/net-mgmt/tcpreplay/Makefile @@ -18,8 +18,11 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --program-transform-name='s|.*\(tcp.*\)|\1|' \ --with-pcapnav-config=${LOCALBASE}/bin/pcapnav-config -# does not build on FreeBSD 8.x -PORTSCOUT= skipv:4.0.4 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 900000 +BROKEN= does not compile on FreeBSD 8.x +.endif post-patch: @${REINPLACE_CMD} -e 's|-Wall -O3||' ${WRKSRC}/${CONFIGURE_SCRIPT} @@ -27,4 +30,4 @@ post-patch: regression-test: build @cd ${WRKSRC} && ${MAKE} -s test -.include <bsd.port.mk> +.include <bsd.port.post.mk> |