From mboxrd@z Thu Jan 1 00:00:00 1970 From: Erik Kapfer To: development@lists.ipfire.org Subject: [PATCH] sqlite: Update to version 3310100 Date: Wed, 08 Apr 2020 10:49:36 +0200 Message-ID: <20200408084936.3616-1-ummeegge@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7225664628990567213==" List-Id: --===============7225664628990567213== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Update includes several fixes and enhancements. For a full overview https://www.sqlite(.)org/draft/changes.html . Signed-off-by: Erik Kapfer --- 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 @@ =20 include Config =20 -VER =3D 3260000 +VER =3D 3310100 =20 THISAPP =3D sqlite-autoconf-$(VER) DL_FILE =3D $(THISAPP).tar.gz @@ -40,7 +40,7 @@ objects =3D $(DL_FILE) =20 $(DL_FILE) =3D $(DL_FROM)/$(DL_FILE) =20 -$(DL_FILE)_MD5 =3D ac2b3b8cd3a97600e36fb8e756e8dda1 +$(DL_FILE)_MD5 =3D 2d0a553534c521504e3ac3ad3b90f125 =20 install : $(TARGET) =20 @@ -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=3D/usr + cd $(DIR_APP) && ./configure \ + --prefix=3D/usr \ + --enable-static=3Dno \ + cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install + @rm -rf $(DIR_APP) @$(POSTBUILD) --=20 2.12.2 --===============7225664628990567213==--