Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 23 Jun 2017 04:47:52 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r444163 - head/Mk
Message-ID:  <201706230447.v5N4lqoS019088@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Fri Jun 23 04:47:52 2017
New Revision: 444163
URL: https://svnweb.freebsd.org/changeset/ports/444163

Log:
  www/libxul: unbreak on FreeBSD < 12.0 after r444091
  
  configure: error: Option, jemalloc, does not take an argument (4).
  
  Reported by:	George Mitchell (via ports@ list)

Modified:
  head/Mk/bsd.gecko.mk   (contents, props changed)

Modified: head/Mk/bsd.gecko.mk
==============================================================================
--- head/Mk/bsd.gecko.mk	Fri Jun 23 00:05:56 2017	(r444162)
+++ head/Mk/bsd.gecko.mk	Fri Jun 23 04:47:52 2017	(r444163)
@@ -142,7 +142,11 @@ LDFLAGS+=		-Wl,--as-needed
 .if ${MOZILLA_VER:R:R} < 55 && ${OPSYS} == FreeBSD && ${OSVERSION} < 1200032
 # use jemalloc 3.0.0 (4.0 for firefox 43+) API for stats/tuning
 MOZ_EXPORT+=	MOZ_JEMALLOC4=1
+.if ${MOZILLA_VER:R:R} >= 48
 MOZ_OPTIONS+=	--enable-jemalloc=4
+.elif ${OSVERSION} < 1100079
+MOZ_OPTIONS+=	--enable-jemalloc
+.endif # Mozilla >= 48
 .endif # Mozilla < 55
 
 # Standard depends



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706230447.v5N4lqoS019088>