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 6E6627A291 for ; Mon, 12 Dec 2016 16:17:55 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 22244855D2; Mon, 12 Dec 2016 16:17:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A6AFB85587 for ; Mon, 12 Dec 2016 16:17:54 +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 05ftt7RYGscq for ; Mon, 12 Dec 2016 16:17:54 +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 0C1D584CEE for ; Mon, 12 Dec 2016 16:17:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 025C4FBA6; Mon, 12 Dec 2016 16:17:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1481559473266980" MIME-Version: 1.0 Date: Mon, 12 Dec 2016 16:17:53 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/databases/sqlite3 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20161212161754.025C4FBA6@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. --_----------=_1481559473266980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Dec 12 16:17:53 UTC 2016 Modified Files: pkgsrc/databases/sqlite3: Makefile Log Message: Do not unconditionally add libedit/libreadline to LDFLAGS. This way they got added as dependencies to sqlite3.so, while only the sqlite3 binary really needs libreadline. However, even without the LDFLAGS, the sqlite3 binary correctly links the library in for me (on NetBSD). Addresses PR 50776. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.111 -r1.112 pkgsrc/databases/sqlite3/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1481559473266980 Content-Disposition: inline Content-Length: 1003 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/sqlite3/Makefile diff -u pkgsrc/databases/sqlite3/Makefile:1.111 pkgsrc/databases/sqlite3/Makefile:1.112 --- pkgsrc/databases/sqlite3/Makefile:1.111 Sun Dec 4 05:17:04 2016 +++ pkgsrc/databases/sqlite3/Makefile Mon Dec 12 16:17:53 2016 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.111 2016/12/04 05:17:04 ryoon Exp $ +# $NetBSD: Makefile,v 1.112 2016/12/12 16:17:53 wiz Exp $ # # used by databases/sqlite3-tcl/Makefile -PKGREVISION= 1 +PKGREVISION= 2 .include "Makefile.common" PKGNAME= sqlite3-${SQLITE3_VERSION} @@ -50,15 +50,5 @@ LDFLAGS.SCO_SV+= -lpthread .endif .include "../../mk/readline.buildlink3.mk" -.if ${READLINE_TYPE} == "editline" && !empty(IS_BUILTIN.editline:M[yY][eE][sS]) -LDFLAGS.NetBSD+= -ledit -LDFLAGS.DragonFly+= -ledit -LDFLAGS.FreeBSD+= -ledit -.else -LDFLAGS.NetBSD+= -lreadline -LDFLAGS.DragonFly+= -lreadline -LDFLAGS.FreeBSD+= -lreadline -.endif - .include "../../mk/dlopen.buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1481559473266980--