Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 29DDE1A921F for ; Mon, 18 Apr 2022 18:47:59 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 62B4C84EB6; Mon, 18 Apr 2022 18:47:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9E76684D59 for ; Mon, 18 Apr 2022 18:47:57 +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 C0AeDFi2LUb5 for ; Mon, 18 Apr 2022 18:47:57 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2386684CF8 for ; Mon, 18 Apr 2022 18:47:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1F3B2FB19; Mon, 18 Apr 2022 18:47:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_165030767755600" MIME-Version: 1.0 Date: Mon, 18 Apr 2022 18:47:57 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/audio/wmmixer To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20220418184757.1F3B2FB19@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_165030767755600 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Apr 18 18:47:57 UTC 2022 Modified Files: pkgsrc/audio/wmmixer: distinfo Added Files: pkgsrc/audio/wmmixer/patches: patch-mixctl.h Log Message: wmmixer: Fix building on illumos To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/audio/wmmixer/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/audio/wmmixer/patches/patch-mixctl.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_165030767755600 Content-Disposition: inline Content-Length: 1657 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/wmmixer/distinfo diff -u pkgsrc/audio/wmmixer/distinfo:1.13 pkgsrc/audio/wmmixer/distinfo:1.14 --- pkgsrc/audio/wmmixer/distinfo:1.13 Tue Oct 26 09:59:35 2021 +++ pkgsrc/audio/wmmixer/distinfo Mon Apr 18 18:47:56 2022 @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.13 2021/10/26 09:59:35 nia Exp $ +$NetBSD: distinfo,v 1.14 2022/04/18 18:47:56 nia Exp $ BLAKE2s (wmmixer-1.9.tar.gz) = 48e1910f081412f4488cbe696c8f7d39520b8318482ae84d1e62f354df30bdab SHA512 (wmmixer-1.9.tar.gz) = 3e1ac2185daad89f8e51ca45c8b96aa3d9791cf9889484fc9873d1111534cf457cfd598296b01a0fa67b2e2c4f4ecea2b9ed3890ef416548342187a1f5dad44d Size (wmmixer-1.9.tar.gz) = 103603 bytes SHA1 (patch-mixctl.cc) = 6301b07ea04d213c1c1ff6677afcf273d85328ce +SHA1 (patch-mixctl.h) = 4a455c606e2a4f82916a99570babed756b06151c Added files: Index: pkgsrc/audio/wmmixer/patches/patch-mixctl.h diff -u /dev/null pkgsrc/audio/wmmixer/patches/patch-mixctl.h:1.1 --- /dev/null Mon Apr 18 18:47:57 2022 +++ pkgsrc/audio/wmmixer/patches/patch-mixctl.h Mon Apr 18 18:47:56 2022 @@ -0,0 +1,17 @@ +$NetBSD: patch-mixctl.h,v 1.1 2022/04/18 18:47:56 nia Exp $ + +Add illumos/Solaris to the list of platforms that have the OSS +header in sys/. Of course, most implementations have a copy in +sys/ (including NetBSD), but never mind that... + +--- mixctl.h.orig 2021-03-03 22:36:51.000000000 +0000 ++++ mixctl.h +@@ -23,7 +23,7 @@ + #ifdef __NetBSD__ + #include + #endif +-#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__) ++#if defined (__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__sun) + #include + #endif + #ifdef __linux__ --_----------=_165030767755600--