diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2003-12-21 22:28:04 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2003-12-21 22:28:04 +0000 |
commit | eb095c12f1adcd0d597544d792d6c03a67c19b06 (patch) | |
tree | ab8b38e2b1f3d0fd0a5a35dd298917aab1f7fd21 /net-mgmt/netqc | |
parent | - Fix fetching of polish dictionary. (diff) |
Per bento logs, mark as broken on 5.x due to varargs.h being
deprecated. Informed maintainer.
Notes
Notes:
svn path=/head/; revision=96363
Diffstat (limited to 'net-mgmt/netqc')
-rw-r--r-- | net-mgmt/netqc/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net-mgmt/netqc/Makefile b/net-mgmt/netqc/Makefile index 7c7e3ee465cb..bff194410043 100644 --- a/net-mgmt/netqc/Makefile +++ b/net-mgmt/netqc/Makefile @@ -21,6 +21,12 @@ USE_GMAKE= yes MAN1= netqc.1 DOCFILES= COPYING README +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile due to varargs.h being deprecated" +.endif + post-install: ${INSTALL_DATA} ${WRKSRC}/conf ${PREFIX}/etc/netqc.conf.sample .for file in ${MAN1} @@ -31,4 +37,4 @@ post-install: ${INSTALL_DATA} ${DOCFILES:S,^,${WRKSRC}/,} ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |