diff options
author | linimon <linimon@FreeBSD.org> | 2018-09-28 07:28:15 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2018-09-28 07:28:15 +0800 |
commit | 02e8ca67a01767ada9b37fc3fd7011c1d2ea228e (patch) | |
tree | 60da3c06304afc2c18baae0d5b82c993db9d7aee | |
parent | a1ebc12bee52c82f6d664c9b00cae6362680825a (diff) | |
download | freebsd-ports-gnome-02e8ca67a01767ada9b37fc3fd7011c1d2ea228e.tar.gz freebsd-ports-gnome-02e8ca67a01767ada9b37fc3fd7011c1d2ea228e.tar.zst freebsd-ports-gnome-02e8ca67a01767ada9b37fc3fd7011c1d2ea228e.zip |
Fix build on gcc-based archs.
While here, pet portlint.
Tested on powerpc64, amd64.
Submitted by: jhibbits
Approved by: portmgr (tier-2 blanket)
Differential Revision: D17044
-rw-r--r-- | lang/spidermonkey52/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/spidermonkey52/Makefile b/lang/spidermonkey52/Makefile index af8919094ce1..c7b2b044e53a 100644 --- a/lang/spidermonkey52/Makefile +++ b/lang/spidermonkey52/Makefile @@ -6,8 +6,8 @@ PORTVERSION= 52.8.0 PORTREVISION= 1 CATEGORIES= lang MASTER_SITES= MOZILLA/firefox/releases/${PORTVERSION}esr/source -DISTNAME= firefox-${PORTVERSION}esr.source PKGNAMESUFFIX= ${SP_VER} +DISTNAME= firefox-${PORTVERSION}esr.source MAINTAINER= kwm@FreeBSD.org COMMENT= Standalone JavaScript based from Mozilla 52-esr @@ -35,6 +35,7 @@ CONFIGURE_ARGS= --with-pthreads \ --disable-gold \ --with-system-icu \ --with-system-nspr +CONFIGURE_ENV= HOST_CC=${CC} HOST_CXX=${CXX} OPTIONS_DEFINE= DEBUG GCZEAL JEMALLOC OPTIMIZE READLINE UTF8 DTRACE OPTIONS_DEFAULT=METHODJIT OPTIMIZE READLINE |