From patchwork Wed Apr 8 08:49:36 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: ummeegge X-Patchwork-Id: 2918 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 48xydT3xbmz3yBs for ; Wed, 8 Apr 2020 08:49:49 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 48xydS0Vhnz1dt; Wed, 8 Apr 2020 08:49:48 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 48xydR3Bq7z2xMY; Wed, 8 Apr 2020 08:49:47 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 48xydP4ZqNz2xMY for ; Wed, 8 Apr 2020 08:49:45 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id 48xydN6xzNz1dt; Wed, 8 Apr 2020 08:49:44 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1586335785; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc; bh=DAEnGl+wEu8xc23S9hrR0aOjM4VXlM4CD25uwcrkOyk=; b=qctQ5X5iAR4J4QHy7cuUDj8UezolaznFsOMZksDWsLnjPdf4gYhRLOIjl9i4btl41lgS6s qRloQVWBv7JXzkCw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1586335785; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc; bh=DAEnGl+wEu8xc23S9hrR0aOjM4VXlM4CD25uwcrkOyk=; b=a+LzC2HmBi5wMHem9y+GlHZC3nz+H5/+OrmqfmnEqqmtzCLn4zAAr1JkKCUDskFBtG/jpo bBWS90X5LGuNpnl0tWYYa4cWHT5sNPgOes6emHCJlO2vDRD9zVKvGH/qtj8MtVY2+/MO86 ZklcHAFt7F9TZSCmd2+RhNewoM7ZuGTiSBAtlVWozNtJxVVqaRo1mwVzS+5QCajoNXt0m9 v/oN2/qpnVf9NUmFXs2VM1EoUMm9lOc0KRqMgbX+AwTzrcmcAQmFPhc0NPxG96GY0bOz1a LbJy4Y902YrbmR+c5cdKop5ypKZemJyzPCNvWvirxshVpR51BuwRvMsHbXROnA== From: Erik Kapfer To: development@lists.ipfire.org Subject: [PATCH] sqlite: Update to version 3310100 Date: Wed, 8 Apr 2020 10:49:36 +0200 Message-Id: <20200408084936.3616-1-ummeegge@ipfire.org> Authentication-Results: mail01.ipfire.org; auth=pass smtp.mailfrom=ummeegge@ipfire.org X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Update includes several fixes and enhancements. For a full overview https://www.sqlite(.)org/draft/changes.html . Signed-off-by: Erik Kapfer Reviewed-by: Michael Tremer --- config/rootfiles/common/sqlite | 2 +- lfs/sqlite | 12 ++++++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/config/rootfiles/common/sqlite b/config/rootfiles/common/sqlite index f3b0b3697..c3863bdb7 100644 --- a/config/rootfiles/common/sqlite +++ b/config/rootfiles/common/sqlite @@ -3,7 +3,7 @@ usr/bin/sqlite3 #usr/include/sqlite3ext.h #usr/lib/libsqlite3.a #usr/lib/libsqlite3.la -usr/lib/libsqlite3.so +#usr/lib/libsqlite3.so usr/lib/libsqlite3.so.0 usr/lib/libsqlite3.so.0.8.6 #usr/lib/pkgconfig/sqlite3.pc diff --git a/lfs/sqlite b/lfs/sqlite index 8f02634cd..000621a0e 100644 --- a/lfs/sqlite +++ b/lfs/sqlite @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2018 IPFire Team # +# Copyright (C) 2007-2020 IPFire Team # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -24,7 +24,7 @@ include Config -VER = 3260000 +VER = 3310100 THISAPP = sqlite-autoconf-$(VER) DL_FILE = $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_MD5 = ac2b3b8cd3a97600e36fb8e756e8dda1 +$(DL_FILE)_MD5 = 2d0a553534c521504e3ac3ad3b90f125 install : $(TARGET) @@ -70,8 +70,12 @@ $(subst %,%_MD5,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && ./configure --prefix=/usr + cd $(DIR_APP) && ./configure \ + --prefix=/usr \ + --enable-static=no \ + cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install + @rm -rf $(DIR_APP) @$(POSTBUILD)