Received: by mail.netbsd.org (Postfix, from userid 605) id E9C5684D50; Mon, 1 Aug 2022 18:52:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2E6DD84CEC for ; Mon, 1 Aug 2022 18:52:29 +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 HLGiypd6ccrY for ; Mon, 1 Aug 2022 18:52:28 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A218284CDC for ; Mon, 1 Aug 2022 18:52:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9B623FB1A; Mon, 1 Aug 2022 18:52:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_165937994823390" MIME-Version: 1.0 Date: Mon, 1 Aug 2022 18:52:28 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/wm/wmi To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220801185228.9B623FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_165937994823390 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Aug 1 18:52:28 UTC 2022 Modified Files: pkgsrc/wm/wmi: distinfo Added Files: pkgsrc/wm/wmi/patches: patch-src_kernel.cpp Log Message: wmi: add string.h for strdup() prototype Fixes build. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/wm/wmi/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/wm/wmi/patches/patch-src_kernel.cpp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_165937994823390 Content-Disposition: inline Content-Length: 1741 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/wm/wmi/distinfo diff -u pkgsrc/wm/wmi/distinfo:1.10 pkgsrc/wm/wmi/distinfo:1.11 --- pkgsrc/wm/wmi/distinfo:1.10 Tue Oct 26 11:25:20 2021 +++ pkgsrc/wm/wmi/distinfo Mon Aug 1 18:52:28 2022 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.10 2021/10/26 11:25:20 nia Exp $ +$NetBSD: distinfo,v 1.11 2022/08/01 18:52:28 wiz Exp $ BLAKE2s (wmi-10.tar.gz) = e68004d020a5495fa6b1c2c7a9b2f823893660406cb2d8c2afd3be945643203d SHA512 (wmi-10.tar.gz) = c50f722facfb119b00a40a7e1b6980f46691259da7c7a91d5f3e5feb204b85aa55e79465680a5724fa0375685d833b7169d0fd0be574b4cd00db7eba4f3237f0 @@ -7,6 +7,7 @@ SHA1 (patch-ab) = d0112ad98f1812aa9be96f SHA1 (patch-ac) = cc10b19adf1867926a4bc15de12f64172d3ddcae SHA1 (patch-ad) = 91cab093a6111b05652a614b6f160a28617279b3 SHA1 (patch-src_action.cpp) = ee9d8eccbed2b3a4974a2b7e9a6f65b1fd3d57ab +SHA1 (patch-src_kernel.cpp) = 0ce20cb9f25bb1885df3b363d1c9fee56313e65b SHA1 (patch-src_logger.cpp) = b755296c5e3e719b6e093a973d4827484a508a7b SHA1 (patch-src_main.cpp) = f54f951aee73cad73286a5791563025c9cbfb183 SHA1 (patch-src_util.cpp) = 53a037bdd1e0d482396e66bda0563bfbe1cba406 Added files: Index: pkgsrc/wm/wmi/patches/patch-src_kernel.cpp diff -u /dev/null pkgsrc/wm/wmi/patches/patch-src_kernel.cpp:1.1 --- /dev/null Mon Aug 1 18:52:28 2022 +++ pkgsrc/wm/wmi/patches/patch-src_kernel.cpp Mon Aug 1 18:52:28 2022 @@ -0,0 +1,14 @@ +$NetBSD: patch-src_kernel.cpp,v 1.1 2022/08/01 18:52:28 wiz Exp $ + +For strdup(). + +--- src/kernel.cpp.orig 2004-10-03 12:15:19.000000000 +0000 ++++ src/kernel.cpp +@@ -6,6 +6,7 @@ + extern "C" { + #include + #include // getenv stuff ++#include + #include + #include + #include --_----------=_165937994823390--