Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 36C097A346 for ; Sun, 4 Dec 2016 21:56:32 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id DE4BE855CE; Sun, 4 Dec 2016 21:56:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6F34C855C8 for ; Sun, 4 Dec 2016 21:56:31 +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 KVujSo90IReJ for ; Sun, 4 Dec 2016 21:56:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D0D16855BA for ; Sun, 4 Dec 2016 21:56:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CBA31FBA6; Sun, 4 Dec 2016 21:56:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1480888590202180" MIME-Version: 1.0 Date: Sun, 4 Dec 2016 21:56:30 +0000 From: "John Marino" Subject: CVS commit: pkgsrc/net/gssdp To: pkgsrc-changes@NetBSD.org Reply-To: marino@netbsd.org X-Mailer: log_accum Message-Id: <20161204215630.CBA31FBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1480888590202180 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: marino Date: Sun Dec 4 21:56:30 UTC 2016 Modified Files: pkgsrc/net/gssdp: Makefile Log Message: net/gssdp: Specify readline and ncurses requirements Solves: /usr/libexec/binutils225/elf/ld.gold: error: cannot find -lreadline /usr/libexec/binutils225/elf/ld.gold: error: cannot find -lncurses To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60 pkgsrc/net/gssdp/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1480888590202180 Content-Disposition: inline Content-Length: 740 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/gssdp/Makefile diff -u pkgsrc/net/gssdp/Makefile:1.59 pkgsrc/net/gssdp/Makefile:1.60 --- pkgsrc/net/gssdp/Makefile:1.59 Sun Dec 4 05:17:09 2016 +++ pkgsrc/net/gssdp/Makefile Sun Dec 4 21:56:30 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.59 2016/12/04 05:17:09 ryoon Exp $ +# $NetBSD: Makefile,v 1.60 2016/12/04 21:56:30 marino Exp $ DISTNAME= gssdp-1.0.0 PKGREVISION= 1 @@ -22,4 +22,6 @@ PKGCONFIG_OVERRIDE+= gssdp-1.0.pc.in .include "../../devel/gobject-introspection/buildlink3.mk" .include "../../lang/vala/buildlink3.mk" .include "../../net/libsoup/buildlink3.mk" +.include "../../devel/ncurses/buildlink3.mk" +.include "../../devel/readline/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1480888590202180--