diff options
author | linimon <linimon@FreeBSD.org> | 2007-10-02 15:41:51 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-10-02 15:41:51 +0800 |
commit | 3afcd34ab93ea614767e2892cca31f0d130d7a9f (patch) | |
tree | 48f41203cc41bccae3e4d765fb6865a3cae3a064 /devel | |
parent | c7553db0e6b873035ab17fc41dbac67c33b4735c (diff) | |
download | freebsd-ports-gnome-3afcd34ab93ea614767e2892cca31f0d130d7a9f.tar.gz freebsd-ports-gnome-3afcd34ab93ea614767e2892cca31f0d130d7a9f.tar.zst freebsd-ports-gnome-3afcd34ab93ea614767e2892cca31f0d130d7a9f.zip |
Mark as broken with gcc4.2 on 64-bit archs. While here, remove 4.x cruft.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/titano/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/devel/titano/Makefile b/devel/titano/Makefile index 9bfaaff0bb20..43f22e550438 100644 --- a/devel/titano/Makefile +++ b/devel/titano/Makefile @@ -23,8 +23,12 @@ GNU_CONFIGURE= yes .include <bsd.port.pre.mk> -.if ${OSVERSION} > 500034 EXTRA_PATCHES+= ${FILESDIR}/gcc3-* + +.if ${OSVERSION} >= 700042 +.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" +BROKEN= Does not compile with GCC 4.2 +.endif .endif pre-patch: .SILENT |