diff options
author | linimon <linimon@FreeBSD.org> | 2007-10-02 13:18:10 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-10-02 13:18:10 +0800 |
commit | 7539e406386631cd62dbf6f38910d97cd4cf1c77 (patch) | |
tree | 109836048ece8da5196c6e82d69e7ec628ef77c3 /emulators | |
parent | 9588ba1813f1bc5ca2a4606732d80bbe5c19dc80 (diff) | |
download | freebsd-ports-gnome-7539e406386631cd62dbf6f38910d97cd4cf1c77.tar.gz freebsd-ports-gnome-7539e406386631cd62dbf6f38910d97cd4cf1c77.tar.zst freebsd-ports-gnome-7539e406386631cd62dbf6f38910d97cd4cf1c77.zip |
Mark as broken with gcc4.2 on 64-bit archs. While here, remove cruft
for obsolete versions of 5.x.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/yape/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/emulators/yape/Makefile b/emulators/yape/Makefile index 84ef2dec221b..08b7489ae3b3 100644 --- a/emulators/yape/Makefile +++ b/emulators/yape/Makefile @@ -25,8 +25,10 @@ PORTDOCS= * .include <bsd.port.pre.mk> -.if ${OSVERSION} < 503001 -IGNORE= build only in 5.3 or uppper (Need fmax(3) and fmin(3) function) +.if ${OSVERSION} >= 700042 +.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" +BROKEN= Does not compile with GCC 4.2 +.endif .endif post-extract: |