From 1b8b32400263335b95f1a268e31bf1754cffded5 Mon Sep 17 00:00:00 2001 From: Zuzana Miklankova Date: Mon, 2 May 2022 11:24:13 +0200 Subject: [PATCH] remove configure flag --enable-json1, as it is default from 3.38.0 Its usage causes warnings, as the flag is not available anymore. Upstream docs: https://www.sqlite.org/compile.html#enable_json1 Moreover --disable-dependency-tracking and --enable-threads-override-locks flags are not supported by the sqlite, but used as configure options and are causing WARNING. This is because they are a part of %configure macro and can not be removed easily from there. --- sqlite.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/sqlite.spec b/sqlite.spec index 218afec..4a7aba9 100644 --- a/sqlite.spec +++ b/sqlite.spec @@ -169,7 +169,6 @@ export CFLAGS="$CFLAGS -mbranch-protection=standard" %configure %{!?with_tcl:--disable-tcl} \ --enable-rtree \ - --enable-json1 \ --enable-fts3 \ --enable-fts4 \ --enable-fts5 \