diff options
author | linimon <linimon@FreeBSD.org> | 2007-10-02 09:28:34 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-10-02 09:28:34 +0800 |
commit | 617ca25f73bc474a90717a11f543ba048be75c3f (patch) | |
tree | e9396fb35cef9b0db970096a1b5eaa4aa03b55ae /japanese | |
parent | 8b5c2c60c3a4ec0f9beab3adb993744b7bbd6b0a (diff) | |
download | freebsd-ports-gnome-617ca25f73bc474a90717a11f543ba048be75c3f.tar.gz freebsd-ports-gnome-617ca25f73bc474a90717a11f543ba048be75c3f.tar.zst freebsd-ports-gnome-617ca25f73bc474a90717a11f543ba048be75c3f.zip |
Mark as broken with gcc4.2 on 64-bit archs.
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/jmode/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/japanese/jmode/Makefile b/japanese/jmode/Makefile index db15bc2bd965..5007988c00ce 100644 --- a/japanese/jmode/Makefile +++ b/japanese/jmode/Makefile @@ -22,4 +22,12 @@ GNU_CONFIGURE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" -.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> |