diff options
author | pav <pav@FreeBSD.org> | 2011-10-13 05:51:17 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2011-10-13 05:51:17 +0800 |
commit | 3867a99c7d959ddad4bb84f56de557f984037119 (patch) | |
tree | e67d8833ab6397b0b80c5217ba3ae64c86ff7ec7 /dns | |
parent | c308f051b12383fc737657bb22d46fde5f559cfe (diff) | |
download | freebsd-ports-gnome-3867a99c7d959ddad4bb84f56de557f984037119.tar.gz freebsd-ports-gnome-3867a99c7d959ddad4bb84f56de557f984037119.tar.zst freebsd-ports-gnome-3867a99c7d959ddad4bb84f56de557f984037119.zip |
- Mark BROKEN on FreeBSD 9.X: does not compile
radns.c:164: error: redefinition of 'struct nd_opt_rdnss'
radns.c:177: error: redefinition of 'struct nd_opt_dnssl'
Reported by: pointyhat
Diffstat (limited to 'dns')
-rw-r--r-- | dns/radns/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dns/radns/Makefile b/dns/radns/Makefile index ddeea50fb883..f7f1ae96f113 100644 --- a/dns/radns/Makefile +++ b/dns/radns/Makefile @@ -28,6 +28,12 @@ MAN8= radns.8 PORTDOCS= LICENSE README README.FreeBSD NEWS +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 900000 +BROKEN= does not compile on FreeBSD 9.X +.endif + post-install: .if !defined(NOPORTDOCS) @${ECHO_MSG} "Installing additional documentation to ${DOCSDIR}" @@ -40,4 +46,4 @@ post-install: .endif @${CAT} ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |