diff options
author | linimon <linimon@FreeBSD.org> | 2007-10-02 09:39:24 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-10-02 09:39:24 +0800 |
commit | 09e94e81c05f81e36127f95468efcb231da4f391 (patch) | |
tree | e559e6d73f2351c4c65000e0bb9be5872d8d6e1f /irc | |
parent | 74d6ecaaa5e8c2bef88eda7b7f73fa6358aa4a89 (diff) | |
download | freebsd-ports-gnome-09e94e81c05f81e36127f95468efcb231da4f391.tar.gz freebsd-ports-gnome-09e94e81c05f81e36127f95468efcb231da4f391.tar.zst freebsd-ports-gnome-09e94e81c05f81e36127f95468efcb231da4f391.zip |
Mark as broken with gcc4.2 on 64-bit archs.
Diffstat (limited to 'irc')
-rw-r--r-- | irc/kvirc/Makefile | 8 | ||||
-rw-r--r-- | irc/quirc/Makefile | 10 |
2 files changed, 16 insertions, 2 deletions
diff --git a/irc/kvirc/Makefile b/irc/kvirc/Makefile index b2ce43cc17a3..cac8459c0fde 100644 --- a/irc/kvirc/Makefile +++ b/irc/kvirc/Makefile @@ -19,10 +19,10 @@ MAINTAINER= mranner@inode.at COMMENT= IRC client for QT and KDE USE_AUTOTOOLS= libtool:15 -INSTALLS_SHLIB= yes USE_BZIP2= yes USE_KDELIBS_VER=3 USE_GMAKE= yes +USE_LDCONFIG= yes CONFIGURE_TARGET= PLIST_SUB= VER=${PORTVERSION} @@ -35,6 +35,12 @@ OPTIONS= ARTS "Compile with arts support" on \ .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 700042 +.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" +BROKEN= Does not compile with GCC 4.2 +.endif +.endif + .if defined(WITH_ARTS) LIB_DEPENDS+= artsc.0:${PORTSDIR}/audio/arts .else diff --git a/irc/quirc/Makefile b/irc/quirc/Makefile index ed66a9e27d6b..771749c8e04d 100644 --- a/irc/quirc/Makefile +++ b/irc/quirc/Makefile @@ -45,4 +45,12 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" +BROKEN= Does not compile with GCC 4.2 +.endif +.endif + +.include <bsd.port.post.mk> |