diff options
author | linimon <linimon@FreeBSD.org> | 2003-12-23 16:41:52 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2003-12-23 16:41:52 +0800 |
commit | 888b324233ef3601c19a6d80dacc6a90c7711eb2 (patch) | |
tree | 2edb76437c3579010b982626f2c705481a032a1e /irc | |
parent | 430e4d6c85064d3c8bab055dd02aa7e0d8460a3c (diff) | |
download | freebsd-ports-gnome-888b324233ef3601c19a6d80dacc6a90c7711eb2.tar.gz freebsd-ports-gnome-888b324233ef3601c19a6d80dacc6a90c7711eb2.tar.zst freebsd-ports-gnome-888b324233ef3601c19a6d80dacc6a90c7711eb2.zip |
Per bento logs, mark as broken on recent versions of 5.x due to gcc3.3
deprecating 'long long'. Informed maintainer.
Diffstat (limited to 'irc')
-rw-r--r-- | irc/quirc/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/irc/quirc/Makefile b/irc/quirc/Makefile index 9b1812db9922..3b832b154f6f 100644 --- a/irc/quirc/Makefile +++ b/irc/quirc/Makefile @@ -31,6 +31,12 @@ MYPORTDOCS= AUTHORS ChangeLog FAQ NEWS README doc/color.txt \ doc/dccresum.txt doc/links.txt doc/nickcomp.txt \ doc/quedit.txt doc/rfc1459.txt doc/tdcc.txt +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile on FreeBSD ${OSVERSION}" +.endif + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/quirc @@ -39,4 +45,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |