Received: by mail.netbsd.org (Postfix, from userid 605) id 7330884FA0; Thu, 5 Jul 2018 14:20:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5753084EDE for ; Thu, 5 Jul 2018 14:20:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id gE0sI3XSKTCO for ; Thu, 5 Jul 2018 14:20:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 7FAEE84D85 for ; Thu, 5 Jul 2018 14:20:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 76940FBEC; Thu, 5 Jul 2018 14:20:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1530800443155610" MIME-Version: 1.0 Date: Thu, 5 Jul 2018 14:20:43 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/www/firefox To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20180705142043.76940FBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1530800443155610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Jul 5 14:20:43 UTC 2018 Modified Files: pkgsrc/www/firefox: mozilla-common.mk Log Message: firefox: Disable PIE on SunOS. To generate a diff of this commit: cvs rdiff -u -r1.109 -r1.110 pkgsrc/www/firefox/mozilla-common.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1530800443155610 Content-Disposition: inline Content-Length: 882 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/firefox/mozilla-common.mk diff -u pkgsrc/www/firefox/mozilla-common.mk:1.109 pkgsrc/www/firefox/mozilla-common.mk:1.110 --- pkgsrc/www/firefox/mozilla-common.mk:1.109 Fri Jun 29 12:51:55 2018 +++ pkgsrc/www/firefox/mozilla-common.mk Thu Jul 5 14:20:43 2018 @@ -1,4 +1,4 @@ -# $NetBSD: mozilla-common.mk,v 1.109 2018/06/29 12:51:55 ryoon Exp $ +# $NetBSD: mozilla-common.mk,v 1.110 2018/07/05 14:20:43 jperkin Exp $ # # common Makefile fragment for mozilla packages based on gecko 2.0. # @@ -63,7 +63,9 @@ CHECK_PORTABILITY_SKIP+=${MOZILLA_DIR}br CHECK_PORTABILITY_SKIP+=${MOZILLA_DIR}browser/extensions/loop/run-all-loop-tests.sh CONFIGURE_ARGS+= --enable-default-toolkit=cairo-gtk3 +.if ${OPSYS} != "SunOS" CONFIGURE_ARGS+= --enable-pie +.endif CONFIGURE_ARGS+= --disable-tests CONFIGURE_ARGS+= --with-pthreads # Mozilla Bug 1432751 --_----------=_1530800443155610--