Received: by mail.netbsd.org (Postfix, from userid 605) id 266A084D36; Thu, 14 Feb 2019 17:43:34 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A02DC84CE9 for ; Thu, 14 Feb 2019 17:43:33 +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 n4OihG30hXhd for ; Thu, 14 Feb 2019 17:43:33 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 25C5F84CDF for ; Thu, 14 Feb 2019 17:43:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 20170FB16; Thu, 14 Feb 2019 17:43:33 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1550166213220350" MIME-Version: 1.0 Date: Thu, 14 Feb 2019 17:43:33 +0000 From: "David Brownlee" Subject: CVS commit: pkgsrc/fonts/harfbuzz To: pkgsrc-changes@NetBSD.org Reply-To: abs@netbsd.org X-Mailer: log_accum Message-Id: <20190214174333.20170FB16@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. --_----------=_1550166213220350 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: abs Date: Thu Feb 14 17:43:33 UTC 2019 Modified Files: pkgsrc/fonts/harfbuzz: distinfo Added Files: pkgsrc/fonts/harfbuzz/patches: patch-src_hb-blob.cc Log Message: Do not play _POSIX_C_SOURCE games on NetBSD - Avoids issues with building under pkgsrc gcc versions To generate a diff of this commit: cvs rdiff -u -r1.85 -r1.86 pkgsrc/fonts/harfbuzz/distinfo cvs rdiff -u -r0 -r1.3 pkgsrc/fonts/harfbuzz/patches/patch-src_hb-blob.cc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1550166213220350 Content-Disposition: inline Content-Length: 1839 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/fonts/harfbuzz/distinfo diff -u pkgsrc/fonts/harfbuzz/distinfo:1.85 pkgsrc/fonts/harfbuzz/distinfo:1.86 --- pkgsrc/fonts/harfbuzz/distinfo:1.85 Wed Feb 13 20:12:10 2019 +++ pkgsrc/fonts/harfbuzz/distinfo Thu Feb 14 17:43:32 2019 @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.85 2019/02/13 20:12:10 wiz Exp $ +$NetBSD: distinfo,v 1.86 2019/02/14 17:43:32 abs Exp $ SHA1 (harfbuzz-2.3.1.tar.bz2) = eb8d4257ea3b533fcc7a9207a92cd018108a2fdf RMD160 (harfbuzz-2.3.1.tar.bz2) = 6c2500882f1f67635e59908efb1f2264e2c00aaa SHA512 (harfbuzz-2.3.1.tar.bz2) = 78a8f05bfcc95cfe3fc0f1a595bdc7298c9c1456db6c7ef70914051fda43f37aaff15eac75aa6922eca82d2291baeb8385e02e6aacb44ca05b4873c311a662ac Size (harfbuzz-2.3.1.tar.bz2) = 17942960 bytes +SHA1 (patch-src_hb-blob.cc) = 54fdce34a93bb9fd85a82cf61f3a09e2e34813b3 SHA1 (patch-src_hb-dsalgs.hh) = f39a705dd8f12733be9edbc1ba12008723b56db0 Added files: Index: pkgsrc/fonts/harfbuzz/patches/patch-src_hb-blob.cc diff -u /dev/null pkgsrc/fonts/harfbuzz/patches/patch-src_hb-blob.cc:1.3 --- /dev/null Thu Feb 14 17:43:33 2019 +++ pkgsrc/fonts/harfbuzz/patches/patch-src_hb-blob.cc Thu Feb 14 17:43:32 2019 @@ -0,0 +1,16 @@ +$NetBSD: patch-src_hb-blob.cc,v 1.3 2019/02/14 17:43:32 abs Exp $ + +Do not play _POSIX_C_SOURCE games on NetBSD. +Avoids issues with building under pkgsrc gcc versions + +--- src/hb-blob.cc.orig 2019-01-29 21:39:07.000000000 +0000 ++++ src/hb-blob.cc +@@ -30,7 +30,7 @@ + * http://www.gnu.org/software/libc/manual/html_node/Feature-Test-Macros.html + * https://www.oracle.com/technetwork/articles/servers-storage-dev/standardheaderfiles-453865.html + */ +-#ifndef _POSIX_C_SOURCE ++#if !defined (_POSIX_C_SOURCE) && !defined (__NetBSD__) + #pragma GCC diagnostic push + #pragma GCC diagnostic ignored "-Wunused-macros" + #define _POSIX_C_SOURCE 200809L --_----------=_1550166213220350--