diff options
author | linimon <linimon@FreeBSD.org> | 2007-10-02 13:24:15 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-10-02 13:24:15 +0800 |
commit | ce246a700ccaf0d2369fb09f2eeda05fae366844 (patch) | |
tree | 91671f599a95dcad84048ebcdc76ef13f3041704 /emulators | |
parent | 0e42ec4775c7b2e3fb07912408f675689cacd913 (diff) | |
download | freebsd-ports-gnome-ce246a700ccaf0d2369fb09f2eeda05fae366844.tar.gz freebsd-ports-gnome-ce246a700ccaf0d2369fb09f2eeda05fae366844.tar.zst freebsd-ports-gnome-ce246a700ccaf0d2369fb09f2eeda05fae366844.zip |
Mark as broken with gcc4.2. While here, remove antique compatibilty cruft.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/vba/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/emulators/vba/Makefile b/emulators/vba/Makefile index 60794fa334ae..bfb15969d5fd 100644 --- a/emulators/vba/Makefile +++ b/emulators/vba/Makefile @@ -35,11 +35,11 @@ DOC_FILES= COPYING AUTHORS NEWS README ChangeLog INSTALL .include <bsd.port.pre.mk> .if ${ARCH} == "ia64" -BROKEN= "Runaway cc1plus process" +BROKEN= Runaway cc1plus process .endif -.if ( ${OSVERSION} < 500035 ) -CFLAGS+= -O0 +.if ${OSVERSION} >= 700042 +BROKEN= Does not compile with GCC 4.2 .endif .ifdef(WITH_GTK2) @@ -67,9 +67,6 @@ pre-everything:: @${ECHO_MSG} "You can install the GTK2 based X version by defining WITH_GTK2." .endif @${ECHO_MSG} "" - @${ECHO_MSG} "Due to a bug in gcc2 optimizations other than -O0 will be ignored on" - @${ECHO_MSG} "FreeBSD releases that didn't ship with gcc3 (prior 500035)." - @${ECHO_MSG} "" do-install: ${INSTALL_PROGRAM} ${PROG_FILES} ${PREFIX}/bin |