From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Sun, 16 May 2021 20:54:14 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1liLu2-0005jR-8K for lore@lore.pengutronix.de; Sun, 16 May 2021 20:54:14 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1liLu1-0000Pe-UP; Sun, 16 May 2021 20:54:13 +0200 Received: from dude.hi.pengutronix.de ([2001:67c:670:100:1d::7]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1liLsp-0007mx-2G; Sun, 16 May 2021 20:52:59 +0200 Received: from rhi by dude.hi.pengutronix.de with local (Exim 4.92) (envelope-from ) id 1liLso-0001VD-GM; Sun, 16 May 2021 20:52:58 +0200 From: Roland Hieber To: ptxdist@pengutronix.de Date: Sun, 16 May 2021 20:52:31 +0200 Message-Id: <20210516185231.5680-8-rhi@pengutronix.de> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20210516185231.5680-1-rhi@pengutronix.de> References: <20210516185231.5680-1-rhi@pengutronix.de> MIME-Version: 1.0 Subject: [ptxdist] [PATCH 8/9] sqlite: version bump 3.28 -> 3.35.5 X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Roland Hieber Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Remove the remaining patch, the underlying problem was fixed upstream in version 3.35.0, check-in e64ff2cce3c03ba2. Link: https://www.sqlite.org/src/info/e64ff2cce3c03ba2 Signed-off-by: Roland Hieber --- ...nfigure-make-disable-threadsafe-work.patch | 29 ------------------- patches/sqlite-autoconf-3280000/autogen.sh | 1 - patches/sqlite-autoconf-3280000/series | 4 --- rules/host-sqlite.make | 1 + rules/sqlite.make | 7 +++-- 5 files changed, 5 insertions(+), 37 deletions(-) delete mode 100644 patches/sqlite-autoconf-3280000/0001-configure-make-disable-threadsafe-work.patch delete mode 120000 patches/sqlite-autoconf-3280000/autogen.sh delete mode 100644 patches/sqlite-autoconf-3280000/series diff --git a/patches/sqlite-autoconf-3280000/0001-configure-make-disable-threadsafe-work.patch b/patches/sqlite-autoconf-3280000/0001-configure-make-disable-threadsafe-work.patch deleted file mode 100644 index 1e3a641a72b6..000000000000 --- a/patches/sqlite-autoconf-3280000/0001-configure-make-disable-threadsafe-work.patch +++ /dev/null @@ -1,29 +0,0 @@ -From: Roland Hieber -Date: Tue, 9 Jul 2019 12:18:52 +0200 -Subject: [PATCH] configure: make --disable-threadsafe work - -SQLITE_THREADSAFE can be 0, 1 or 2, and if it is not defined, it -is defined to 1 by default in sqlite3.c. - -_REENTRANT only needs to be defined or undefined according to -https://www.gnu.org/software/libc/manual/html_node/Feature-Test-Macros.html#Feature-Test-Macros - -Forwarded: https://www.mail-archive.com/sqlite-users@mailinglists.sqlite.org/msg115812.html -Signed-off-by: Roland Hieber ---- - configure.ac | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/configure.ac b/configure.ac -index f0b70b96428c..3044077e93f6 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -91,6 +91,8 @@ if test x"$enable_threadsafe" != "xno"; then - BUILD_CFLAGS="$BUILD_CFLAGS -D_REENTRANT=1 -DSQLITE_THREADSAFE=1" - AC_SEARCH_LIBS(pthread_create, pthread) - AC_SEARCH_LIBS(pthread_mutexattr_init, pthread) -+else -+ BUILD_CFLAGS="$BUILD_CFLAGS -DSQLITE_THREADSAFE=0" - fi - #----------------------------------------------------------------------- - diff --git a/patches/sqlite-autoconf-3280000/autogen.sh b/patches/sqlite-autoconf-3280000/autogen.sh deleted file mode 120000 index 9f8a4cb7ddcb..000000000000 --- a/patches/sqlite-autoconf-3280000/autogen.sh +++ /dev/null @@ -1 +0,0 @@ -../autogen.sh \ No newline at end of file diff --git a/patches/sqlite-autoconf-3280000/series b/patches/sqlite-autoconf-3280000/series deleted file mode 100644 index 516ce59bdbad..000000000000 --- a/patches/sqlite-autoconf-3280000/series +++ /dev/null @@ -1,4 +0,0 @@ -# generated by git-ptx-patches -#tag:base --start-number 1 -0001-configure-make-disable-threadsafe-work.patch -# 7c01923b9908ba74dacfdb9f965dc010 - git-ptx-patches magic diff --git a/rules/host-sqlite.make b/rules/host-sqlite.make index 0a32adc0cf07..8fc54861b52c 100644 --- a/rules/host-sqlite.make +++ b/rules/host-sqlite.make @@ -41,6 +41,7 @@ HOST_SQLITE_CONF_OPT := \ --disable-readline \ --enable-threadsafe \ --disable-dynamic-extensions \ + --disable-math \ --disable-fts5 \ --enable-json1 \ --disable-session \ diff --git a/rules/sqlite.make b/rules/sqlite.make index 67a66a3718f1..eb866118accc 100644 --- a/rules/sqlite.make +++ b/rules/sqlite.make @@ -19,11 +19,11 @@ PACKAGES-$(PTXCONF_SQLITE) += sqlite # # Paths and names # -SQLITE_VERSION := 3280000 -SQLITE_MD5 := 3c68eb400f8354605736cd55400e1572 +SQLITE_VERSION := 3350500 +SQLITE_MD5 := d1d1aba394c8e0443077dc9f1a681bb8 SQLITE := sqlite-autoconf-$(SQLITE_VERSION) SQLITE_SUFFIX := tar.gz -SQLITE_URL := https://www.sqlite.org/2019/$(SQLITE).$(SQLITE_SUFFIX) +SQLITE_URL := https://www.sqlite.org/2021/$(SQLITE).$(SQLITE_SUFFIX) SQLITE_SOURCE := $(SRCDIR)/$(SQLITE).$(SQLITE_SUFFIX) SQLITE_DIR := $(BUILDDIR)/$(SQLITE) SQLITE_LICENSE := public_domain @@ -58,6 +58,7 @@ SQLITE_CONF_OPT := \ --$(call ptx/endis,PTXCONF_SQLITE_READLINE)-readline \ --$(call ptx/endis,PTXCONF_SQLITE_THREADSAFE)-threadsafe \ --$(call ptx/endis,PTXCONF_SQLITE_LOAD_EXTENSION)-dynamic-extensions \ + --disable-math \ --enable-fts4 \ --enable-fts3 \ --disable-fts5 \ -- 2.29.2 _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de