Received: by mail.netbsd.org (Postfix, from userid 605) id 5DD8B84E6F; Tue, 24 May 2022 09:54:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 95A8C84D8A for ; Tue, 24 May 2022 09:54:14 +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 tfR9IaQxM-eG for ; Tue, 24 May 2022 09:54:14 +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 14BF784C13 for ; Tue, 24 May 2022 09:54:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DCEA1FAEB; Tue, 24 May 2022 09:55:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1653386102218810" MIME-Version: 1.0 Date: Tue, 24 May 2022 09:55:02 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/x11/pixman To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20220524095502.DCEA1FAEB@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1653386102218810 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue May 24 09:55:02 UTC 2022 Modified Files: pkgsrc/x11/pixman: hacks.mk Log Message: pixman: Use OPSYS_VERSION To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/x11/pixman/hacks.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1653386102218810 Content-Disposition: inline Content-Length: 717 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/pixman/hacks.mk diff -u pkgsrc/x11/pixman/hacks.mk:1.13 pkgsrc/x11/pixman/hacks.mk:1.14 --- pkgsrc/x11/pixman/hacks.mk:1.13 Sun Nov 3 09:14:14 2019 +++ pkgsrc/x11/pixman/hacks.mk Tue May 24 09:55:02 2022 @@ -1,4 +1,4 @@ -# $NetBSD: hacks.mk,v 1.13 2019/11/03 09:14:14 rillig Exp $ +# $NetBSD: hacks.mk,v 1.14 2022/05/24 09:55:02 nia Exp $ # .if !defined(PIXMAN_HACKS_MK) PIXMAN_HACKS_MK= # empty @@ -21,7 +21,7 @@ CONFIGURE_ARGS+= --disable-sse2 --disabl CONFIGURE_ARGS.MirBSD+= PTHREAD_LIBS=-pthread -.if !empty(MACHINE_PLATFORM:MNetBSD-[0-5].*-*) +.if ${OPSYS} == "NetBSD" && ${OPSYS_VERSION} < 060000 CONFIGURE_ENV+= ac_cv_tls=none CFLAGS+= -DPIXMAN_NO_TLS .endif --_----------=_1653386102218810--