Received: by mail.netbsd.org (Postfix, from userid 605) id 2D80B84D86; Sun, 17 Feb 2019 08:40:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A935784D6B for ; Sun, 17 Feb 2019 08:40:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id FW-4zC9JeNvC for ; Sun, 17 Feb 2019 08:40:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2D6C084C82 for ; Sun, 17 Feb 2019 08:40:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2AD67FB16; Sun, 17 Feb 2019 08:40:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1550392809196970" MIME-Version: 1.0 Date: Sun, 17 Feb 2019 08:40:09 +0000 From: "matthew green" Subject: CVS commit: pkgsrc/devel/jemalloc To: pkgsrc-changes@NetBSD.org Reply-To: mrg@netbsd.org X-Mailer: log_accum Message-Id: <20190217084009.2AD67FB16@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. --_----------=_1550392809196970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mrg Date: Sun Feb 17 08:40:09 UTC 2019 Modified Files: pkgsrc/devel/jemalloc: distinfo Added Files: pkgsrc/devel/jemalloc/patches: patch-include_jemalloc_internal_jemalloc_internal_types.h Log Message: make this build on sparc. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/jemalloc/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/devel/jemalloc/patches/patch-include_jemalloc_internal_jemalloc_internal_types.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1550392809196970 Content-Disposition: inline Content-Length: 2045 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/jemalloc/distinfo diff -u pkgsrc/devel/jemalloc/distinfo:1.8 pkgsrc/devel/jemalloc/distinfo:1.9 --- pkgsrc/devel/jemalloc/distinfo:1.8 Tue May 15 08:35:50 2018 +++ pkgsrc/devel/jemalloc/distinfo Sun Feb 17 08:40:08 2019 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.8 2018/05/15 08:35:50 adam Exp $ +$NetBSD: distinfo,v 1.9 2019/02/17 08:40:08 mrg Exp $ SHA1 (jemalloc-5.1.0.tar.bz2) = 92fdc0b38680aaee1fa7ccd89cbf1af61224ff46 RMD160 (jemalloc-5.1.0.tar.bz2) = 52b1340ca8cafd7414aa5e3a7a028cb1feba0b80 @@ -6,4 +6,5 @@ SHA512 (jemalloc-5.1.0.tar.bz2) = d9abeb Size (jemalloc-5.1.0.tar.bz2) = 515622 bytes SHA1 (patch-Makefile.in) = 62e04375dec9aab678fed5bc32559deb942e799f SHA1 (patch-configure) = 5dec3fb5b2ece549e40743780db3057dd83cc17e +SHA1 (patch-include_jemalloc_internal_jemalloc_internal_types.h) = 07f2d661d8141152fc7c80f24f9dab4be90cb4b3 SHA1 (patch-src_pages.c) = 7c9eea2409b283c5dd80e52349c4dda26ae5befa Added files: Index: pkgsrc/devel/jemalloc/patches/patch-include_jemalloc_internal_jemalloc_internal_types.h diff -u /dev/null pkgsrc/devel/jemalloc/patches/patch-include_jemalloc_internal_jemalloc_internal_types.h:1.1 --- /dev/null Sun Feb 17 08:40:09 2019 +++ pkgsrc/devel/jemalloc/patches/patch-include_jemalloc_internal_jemalloc_internal_types.h Sun Feb 17 08:40:09 2019 @@ -0,0 +1,16 @@ +$NetBSD: patch-include_jemalloc_internal_jemalloc_internal_types.h,v 1.1 2019/02/17 08:40:09 mrg Exp $ + +add 32 bit sparc support. + +--- include/jemalloc/internal/jemalloc_internal_types.h.orig 2019-02-16 23:56:29.457544064 -0800 ++++ include/jemalloc/internal/jemalloc_internal_types.h 2019-02-16 23:56:03.367260510 -0800 +@@ -64,7 +64,8 @@ + # ifdef __alpha__ + # define LG_QUANTUM 4 + # endif +-# if (defined(__sparc64__) || defined(__sparcv9) || defined(__sparc_v9__)) ++# if (defined(__sparc64__) || defined(__sparcv9) || defined(__sparc_v9__) || \ ++ defined(__sparc__)) + # define LG_QUANTUM 4 + # endif + # if (defined(__amd64__) || defined(__x86_64__) || defined(_M_X64)) --_----------=_1550392809196970--