Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=B82fR/kh; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=JrhAKR0z Received: by mail.netbsd.org (Postfix, from userid 605) id 4410184E60; Mon, 11 Mar 2024 18:07:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710180462; bh=jW5k9+M3Y/W+K4Zt2cNmSqcQu9wx9Hy/Gzx+wUzOxdU=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=B82fR/khUdvR4cEYYNx19cf7B45UlnYTCO1FmJym9/gLcbSFAPKr4JpWQfeAshXFI ZTsQz3u/FUyIWNHB2VOaRjqwHuYhbhQ6ndXQ8oR5D3I83WMExxTQnOAUsj1OduasW9 /Ct0yWRfVKwHe0qz1ezLYQJ/qeTECpQNmwiBHj4I= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 938D384D93 for ; Mon, 11 Mar 2024 18:07:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id KmUDL8ZBgfcB for ; Mon, 11 Mar 2024 18:07:40 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E14D784D54 for ; Mon, 11 Mar 2024 18:07:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1710180460; bh=jW5k9+M3Y/W+K4Zt2cNmSqcQu9wx9Hy/Gzx+wUzOxdU=; h=Date:From:Subject:To:Reply-To; b=JrhAKR0z8bXhl3PBgxmpKuSJC7h/7wAyLAsczfaOyb36+BJ8C0DsOsiF8QbJ0yCEC lDnEJnDiBdBO+4neEdgKEObKwiku98E+QOXdUOOIIntRk0UVb4mYvbDMgytzYvzP64 2iuL2q3dvyIqKxsXG1hboT+ue4HXUHDjVx/r2QhU= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8D107FA2C; Mon, 11 Mar 2024 18:06:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171018036524210" MIME-Version: 1.0 Date: Mon, 11 Mar 2024 18:06:05 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/devel/libuuid To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20240311180605.8D107FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171018036524210 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Mon Mar 11 18:06:05 UTC 2024 Modified Files: pkgsrc/devel/libuuid: builtin.mk Log Message: libuuid: Add /usr/include/uuid to the fake .pc. Fixes software that only looks for . To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/libuuid/builtin.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171018036524210 Content-Disposition: inline Content-Length: 778 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libuuid/builtin.mk diff -u pkgsrc/devel/libuuid/builtin.mk:1.13 pkgsrc/devel/libuuid/builtin.mk:1.14 --- pkgsrc/devel/libuuid/builtin.mk:1.13 Sat Jan 13 20:07:32 2024 +++ pkgsrc/devel/libuuid/builtin.mk Mon Mar 11 18:06:05 2024 @@ -1,4 +1,4 @@ -# $NetBSD: builtin.mk,v 1.13 2024/01/13 20:07:32 riastradh Exp $ +# $NetBSD: builtin.mk,v 1.14 2024/03/11 18:06:05 jperkin Exp $ BUILTIN_PKG:= libuuid @@ -96,7 +96,7 @@ libuuid-fake-pc: ${ECHO} "Description: Universally unique id library"; \ ${ECHO} "Version: ${BUILTIN_VERSION.libuuid}"; \ ${ECHO} "Libs: -L/usr/lib -luuid ${LIBUUID_LDADD}"; \ - ${ECHO} "Cflags: -I/usr/include"; \ + ${ECHO} "Cflags: -I/usr/include -I/usr/include/uuid"; \ } >$${dst} ;\ fi . endif --_----------=_171018036524210--