From owner-svn-ports-all@freebsd.org Fri Aug 21 12:52:45 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9C0A39BD388; Fri, 21 Aug 2015 12:52:45 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8C05C127B; Fri, 21 Aug 2015 12:52:45 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7LCqjWt063471; Fri, 21 Aug 2015 12:52:45 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7LCqj2u063470; Fri, 21 Aug 2015 12:52:45 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201508211252.t7LCqj2u063470@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 21 Aug 2015 12:52:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394951 - head/www/seamonkey/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Aug 2015 12:52:45 -0000 Author: jbeich Date: Fri Aug 21 12:52:44 2015 New Revision: 394951 URL: https://svnweb.freebsd.org/changeset/ports/394951 Log: www/seamonkey: fix bundled jemalloc3 configure on DragonFly seamonkey-2.33.1 uses firefox-36.0.4 codebase shiped with jemalloc-3.6.0. Obtained from: https://github.com/jemalloc/jemalloc/commit/1aa25a3 Added: head/www/seamonkey/files/patch-mozilla-memory-jemalloc-configure.ac (contents, props changed) Added: head/www/seamonkey/files/patch-mozilla-memory-jemalloc-configure.ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/seamonkey/files/patch-mozilla-memory-jemalloc-configure.ac Fri Aug 21 12:52:44 2015 (r394951) @@ -0,0 +1,28 @@ +commit 1aa25a3 +Author: Michael Neumann +Date: Tue Aug 5 03:06:02 2014 +0200 + + Support DragonFlyBSD + + Note that in contrast to FreeBSD, DragonFly does not work + with force_lazy_lock enabled. +--- + configure.ac | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git mozilla/memory/jemalloc/src/configure.ac mozilla/memory/jemalloc/src/configure.ac +index 645bd46..83c60ec 100644 +--- mozilla/memory/jemalloc/src/configure.ac ++++ mozilla/memory/jemalloc/src/configure.ac +@@ -283,6 +283,11 @@ case "${host}" in + AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ]) + force_lazy_lock="1" + ;; ++ *-*-dragonfly*) ++ CFLAGS="$CFLAGS" ++ abi="elf" ++ AC_DEFINE([JEMALLOC_PURGE_MADVISE_FREE], [ ]) ++ ;; + *-*-linux*) + CFLAGS="$CFLAGS" + CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"