diff options
author | flo <flo@FreeBSD.org> | 2013-08-17 18:43:22 +0800 |
---|---|---|
committer | flo <flo@FreeBSD.org> | 2013-08-17 18:43:22 +0800 |
commit | 85a48b686629b1f7967dfa6ac70ddab79f9ef66d (patch) | |
tree | a452c9e415d9285e8eecd539d88c44af45564cd0 | |
parent | 95950741da880acf455731a98c370913ae79e2c3 (diff) | |
download | freebsd-ports-gnome-85a48b686629b1f7967dfa6ac70ddab79f9ef66d.tar.gz freebsd-ports-gnome-85a48b686629b1f7967dfa6ac70ddab79f9ef66d.tar.zst freebsd-ports-gnome-85a48b686629b1f7967dfa6ac70ddab79f9ef66d.zip |
Add a work around for crashes on i386.
PR: ports/180473
Submitted by: Jan Beich <jbeich@tormail.org>
Reported by: Heino Tiedemann <rotkap@gmx.de>
-rw-r--r-- | www/seamonkey/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/www/seamonkey/Makefile b/www/seamonkey/Makefile index 3fe55748db68..882b5ac7dd9e 100644 --- a/www/seamonkey/Makefile +++ b/www/seamonkey/Makefile @@ -3,6 +3,7 @@ PORTNAME= seamonkey DISTVERSION= 2.20 +PORTREVISION= 1 CATEGORIES?= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source DISTFILES= ${PORTNAME}-${DISTVERSION}.source${EXTRACT_SUFX} @@ -82,6 +83,9 @@ MOZ_OPTIONS+= --disable-ldap --disable-mailnews .if ! ${PORT_OPTIONS:MLDAP} MOZ_OPTIONS+= --disable-ldap --enable-mailnews .else +. if ${ARCH} == i386 +USE_GCC?= yes +. endif MOZ_OPTIONS+= --enable-ldap --enable-mailnews .endif .if ${PORT_OPTIONS:MENIGMAIL} |