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 9A23B7A1FE for ; Sun, 16 Apr 2017 20:27:10 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 439C384DC9; Sun, 16 Apr 2017 20:27:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C644684D7C for ; Sun, 16 Apr 2017 20:27:09 +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 q8Feawjn6-w8 for ; Sun, 16 Apr 2017 20:27:09 +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 5014984D74 for ; Sun, 16 Apr 2017 20:27:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 43399FBE4; Sun, 16 Apr 2017 20:27:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1492374429153540" MIME-Version: 1.0 Date: Sun, 16 Apr 2017 20:27:09 +0000 From: "Pierre Pronchery" Subject: CVS commit: pkgsrc/databases/sqlite To: pkgsrc-changes@NetBSD.org Reply-To: khorben@netbsd.org X-Mailer: log_accum Message-Id: <20170416202709.43399FBE4@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. --_----------=_1492374429153540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: khorben Date: Sun Apr 16 20:27:09 UTC 2017 Modified Files: pkgsrc/databases/sqlite: distinfo pkgsrc/databases/sqlite/patches: patch-Makefile.in Log Message: Avoid a warning while generating config.h No functional change intended. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 pkgsrc/databases/sqlite/distinfo cvs rdiff -u -r1.1 -r1.2 pkgsrc/databases/sqlite/patches/patch-Makefile.in Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1492374429153540 Content-Disposition: inline Content-Length: 2198 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/sqlite/distinfo diff -u pkgsrc/databases/sqlite/distinfo:1.24 pkgsrc/databases/sqlite/distinfo:1.25 --- pkgsrc/databases/sqlite/distinfo:1.24 Tue Nov 3 01:56:35 2015 +++ pkgsrc/databases/sqlite/distinfo Sun Apr 16 20:27:09 2017 @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.24 2015/11/03 01:56:35 agc Exp $ +$NetBSD: distinfo,v 1.25 2017/04/16 20:27:09 khorben Exp $ SHA1 (sqlite-2.8.17.tar.gz) = 75db1cf3b00ea18ae8528e676fc9fdf698e2fe58 RMD160 (sqlite-2.8.17.tar.gz) = f13edcb0c2f7246e97ea7443de1758b4442a9483 SHA512 (sqlite-2.8.17.tar.gz) = 966e0b7f7ebbaaa9e1899864475040946fd7b66363be778d29fadd5184623b1e62644f3c8d4c4ecd001b88044befa7c34d9de9f68590329a1a8301d854b73e3f Size (sqlite-2.8.17.tar.gz) = 969805 bytes -SHA1 (patch-Makefile.in) = 909e53c1ee0b76964774f263f00047118728f38d +SHA1 (patch-Makefile.in) = a7e6d0c15b6bd4c8c0f3a7123e82a145b3848703 SHA1 (patch-aa) = 4df2eff8c92b3e2bff86c710ef1a803d54201559 SHA1 (patch-ab) = 00b7de05589fb62d511e26d0d864a8b5545967c8 Index: pkgsrc/databases/sqlite/patches/patch-Makefile.in diff -u pkgsrc/databases/sqlite/patches/patch-Makefile.in:1.1 pkgsrc/databases/sqlite/patches/patch-Makefile.in:1.2 --- pkgsrc/databases/sqlite/patches/patch-Makefile.in:1.1 Mon Mar 16 11:56:32 2015 +++ pkgsrc/databases/sqlite/patches/patch-Makefile.in Sun Apr 16 20:27:09 2017 @@ -1,6 +1,7 @@ -$NetBSD: patch-Makefile.in,v 1.1 2015/03/16 11:56:32 jperkin Exp $ +$NetBSD: patch-Makefile.in,v 1.2 2017/04/16 20:27:09 khorben Exp $ -Honour LDFLAGS for bl3. +* Honour LDFLAGS for bl3. +* Avoid a warning while generating config.h. --- Makefile.in.orig 2005-04-23 22:43:23.000000000 +0000 +++ Makefile.in @@ -13,3 +14,13 @@ Honour LDFLAGS for bl3. LTINSTALL = $(LIBTOOL) --mode=install $(INSTALL) # Compiler options needed for programs that use the TCL library. +@@ -268,7 +268,8 @@ parse.c: $(TOP)/src/parse.y lemon@BUILD_ + # configure the config.h file. + # + config.h: +- echo '#include ' >temp.c ++ echo '#include ' >temp.c ++ echo '#include ' >>temp.c + echo 'int main(){printf(' >>temp.c + echo '"#define SQLITE_PTR_SZ %d",sizeof(char*));' >>temp.c + echo 'exit(0);}' >>temp.c --_----------=_1492374429153540--