diff options
author | ahze <ahze@FreeBSD.org> | 2006-07-06 07:22:16 +0800 |
---|---|---|
committer | ahze <ahze@FreeBSD.org> | 2006-07-06 07:22:16 +0800 |
commit | 58c8d113c42aac8d0e1f667145748413d74b1c67 (patch) | |
tree | 980789007b7bc8052ca98eb9abbe4914118561e1 /www/seamonkey | |
parent | 4ff6acd29e7c60127c3a66987f2d14b50b3edb63 (diff) | |
download | freebsd-ports-graphics-58c8d113c42aac8d0e1f667145748413d74b1c67.tar.gz freebsd-ports-graphics-58c8d113c42aac8d0e1f667145748413d74b1c67.tar.zst freebsd-ports-graphics-58c8d113c42aac8d0e1f667145748413d74b1c67.zip |
- Don't IGNORE on sparc64 >=601101 anymore
- Pet portlint
Diffstat (limited to 'www/seamonkey')
-rw-r--r-- | www/seamonkey/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/www/seamonkey/Makefile b/www/seamonkey/Makefile index 3b18fcc1ea2..026e0636143 100644 --- a/www/seamonkey/Makefile +++ b/www/seamonkey/Makefile @@ -53,13 +53,17 @@ MOZ_OPTIONS+= --enable-glitz LIB_DEPENDS+= glitz.1:${PORTSDIR}/graphics/glitz .endif -.if ${ARCH} == "alpha" && ${OSVERSION} < 500035 || ${ARCH}=="sparc64" +.if ${ARCH} == "alpha" && ${OSVERSION} < 500035 IGNORE= core dumps on ${ARCH} during post-build .endif +.if ${ARCH}=="sparc64" && ${OSVERSION} < 601101 +IGNORE= core dumps on ${ARCH}, need kern.osreldate>=601101 +.endif + .if ${OSVERSION} < 500000 -USE_GCC= 3.4 -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-security_manager_Makefile.in +USE_GCC= 3.4 +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-security_manager_Makefile.in .endif .if defined(WITHOUT_MAILNEWS) |