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 CF9767A1AF for ; Mon, 13 Feb 2017 13:02:12 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 7ACE1855B4; Mon, 13 Feb 2017 13:02:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0ADD785578 for ; Mon, 13 Feb 2017 13:02:12 +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 5rXuyWuhTVa7 for ; Mon, 13 Feb 2017 13:02:11 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 6A3E684CDF for ; Mon, 13 Feb 2017 13:02:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 653E2FBE3; Mon, 13 Feb 2017 13:02:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1486990931283500" MIME-Version: 1.0 Date: Mon, 13 Feb 2017 13:02:11 +0000 From: "Filip Hajny" Subject: CVS commit: pkgsrc/chat/weechat To: pkgsrc-changes@NetBSD.org Reply-To: fhajny@netbsd.org X-Mailer: log_accum Message-Id: <20170213130211.653E2FBE3@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. --_----------=_1486990931283500 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: fhajny Date: Mon Feb 13 13:02:11 UTC 2017 Modified Files: pkgsrc/chat/weechat: Makefile Log Message: SunOS also needs -lresolve. Fixes joyent/pkgsrc/issues/464. Fix misspelling of PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.71 -r1.72 pkgsrc/chat/weechat/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1486990931283500 Content-Disposition: inline Content-Length: 714 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/chat/weechat/Makefile diff -u pkgsrc/chat/weechat/Makefile:1.71 pkgsrc/chat/weechat/Makefile:1.72 --- pkgsrc/chat/weechat/Makefile:1.71 Tue Feb 7 12:30:29 2017 +++ pkgsrc/chat/weechat/Makefile Mon Feb 13 13:02:11 2017 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.71 2017/02/07 12:30:29 roy Exp $ +# $NetBSD: Makefile,v 1.72 2017/02/13 13:02:11 fhajny Exp $ DISTNAME= weechat-1.7 -PKG_REVISION= 1 +PKGREVISION= 1 CATEGORIES= chat MASTER_SITES= http://www.weechat.org/files/src/ EXTRACT_SUFX= .tar.bz2 @@ -31,6 +31,7 @@ CMAKE_ARGS+= -DENABLE_CHARSET:BOOL=ON LDFLAGS+= ${BUILDLINK_LDADD.gettext} LDFLAGS.Darwin+= -lresolv +LDFLAGS.SunOS+= -lresolv .include "options.mk" --_----------=_1486990931283500--