Received: by mail.netbsd.org (Postfix, from userid 605) id 97ABD84E71; Tue, 12 Dec 2017 20:52:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 12A6784E6A for ; Tue, 12 Dec 2017 20:52:20 +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 hx7-Zu9UEACi for ; Tue, 12 Dec 2017 20:52:19 +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 6E98C84DCC for ; Tue, 12 Dec 2017 20:52:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 651B3FB40; Tue, 12 Dec 2017 20:52:19 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1513111939155810" MIME-Version: 1.0 Date: Tue, 12 Dec 2017 20:52:19 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/devel/libuuid To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20171212205219.651B3FB40@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. --_----------=_1513111939155810 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Tue Dec 12 20:52:19 UTC 2017 Modified Files: pkgsrc/devel/libuuid: Makefile Log Message: libuuid: disable NLS for everyone for PLIST consistency. configure script is looking for a symbol _nl_expand_alias. AFAIK we don't have a way to supply this from pkgsrc, so we are left with some operating systems that pass this test (smartos, linux) and some that don't (netbsd + ??) This will not change the binary package to anyone who successfully installed it before, we are missing a NLS-only item in the PLIST. Report by wilbury. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/devel/libuuid/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1513111939155810 Content-Disposition: inline Content-Length: 755 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/libuuid/Makefile diff -u pkgsrc/devel/libuuid/Makefile:1.21 pkgsrc/devel/libuuid/Makefile:1.22 --- pkgsrc/devel/libuuid/Makefile:1.21 Fri Dec 8 08:03:35 2017 +++ pkgsrc/devel/libuuid/Makefile Tue Dec 12 20:52:19 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2017/12/08 08:03:35 adam Exp $ +# $NetBSD: Makefile,v 1.22 2017/12/12 20:52:19 maya Exp $ .include "Makefile.common" @@ -9,6 +9,11 @@ LICENSE= modified-bsd CONFIGURE_ARGS+= --enable-libuuid CONFIGURE_ARGS+= --enable-uuidgen + +# netbsd libintl lacks _nl_expand_alias, resulting in NLS being +# disabled. for consistency, disable for all +CONFIGURE_ARGS+= --disable-nls + PKGCONFIG_OVERRIDE+= libuuid/uuid.pc.in .include "../../mk/bsd.pkg.mk" --_----------=_1513111939155810--