package/sqlite: bump version to 3.50.4
This commit includes reverts of the last attempt to bump sqlite: git revert --no-editc4c282f8ec014174f00d835b5659eadb481210e9296744b0f4939244b828f0a272ef14274c36578fand the following new changes: The autoconf-based configure script until version 3.48.0 enabled rtree support by default: https://github.com/sqlite/sqlite/blob/version-3.48.0/autoconf/configure.ac#L180 while the autosetup-based needs -DSQLITE_ENABLE_RTREE https://github.com/sqlite/sqlite/blob/version-3.50.4/autosetup/sqlite-config.tcl#L763 Added Config.in option for RTREE support and enabled it for gdal to provide a needed dependency: https://github.com/OSGeo/gdal/blob/v3.11.4/cmake/helpers/CheckDependentLibraries.cmake#L277 Added upstream patch to fix forced addition of rpath and added configure option --disable-rpath to target build. Added configure option --soname=legacy to fix wrong library name which breaks linking of kodi:7f2281bd7cAdded configure option --disable-shared for static builds. Added build fixes for BR2_m68k_cf. Removed SQLITE_CONF_OPTS and readline support from host build to avoid dependencies. Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Tested-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Julien Olivain <ju.o@free.fr> (cherry picked from commit2cc346e763) Signed-off-by: Thomas Perale <thomas.perale@mind.be>
This commit is contained in:
committed by
Arnout Vandecappelle
parent
31addc53be
commit
75bcd1ebd6
@@ -14,6 +14,7 @@ config BR2_PACKAGE_GDAL
|
||||
select BR2_PACKAGE_LIBPNG
|
||||
select BR2_PACKAGE_PROJ
|
||||
select BR2_PACKAGE_QHULL
|
||||
select BR2_PACKAGE_SQLITE_ENABLE_RTREE if BR2_PACKAGE_SQLITE
|
||||
select BR2_PACKAGE_ZLIB
|
||||
help
|
||||
GDAL is a translator library for raster and vector geospatial
|
||||
|
||||
59
package/sqlite/0001-disable-rpath.patch
Normal file
59
package/sqlite/0001-disable-rpath.patch
Normal file
@@ -0,0 +1,59 @@
|
||||
Add the --disable-rpath configure script flag to address
|
||||
|
||||
Upstream: https://sqlite.org/src/info/a59d9bb25e
|
||||
|
||||
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
|
||||
|
||||
Index: autosetup/sqlite-config.tcl
|
||||
==================================================================
|
||||
--- a/autosetup/sqlite-config.tcl
|
||||
+++ b/autosetup/sqlite-config.tcl
|
||||
@@ -334,12 +334,12 @@
|
||||
# canonical build!
|
||||
static-shell=1
|
||||
=> {Link the sqlite3 shell app against the DLL instead of embedding sqlite3.c}
|
||||
}
|
||||
{canonical autoconf} {
|
||||
- # A potential TODO without a current use case:
|
||||
- #rpath=1 => {Disable use of the rpath linker flag}
|
||||
+ rpath=1 => {Disable use of the rpath linker flag}
|
||||
+
|
||||
# soname: https://sqlite.org/src/forumpost/5a3b44f510df8ded
|
||||
soname:=legacy
|
||||
=> {SONAME for libsqlite3.so. "none", or not using this flag, sets no
|
||||
soname. "legacy" sets it to its historical value of
|
||||
libsqlite3.so.0. A value matching the glob "libsqlite3.*" sets
|
||||
@@ -2138,25 +2138,25 @@
|
||||
}
|
||||
|
||||
########################################################################
|
||||
# Handle the --enable/disable-rpath flag.
|
||||
proc sqlite-handle-rpath {} {
|
||||
- proj-check-rpath
|
||||
# autosetup/cc-shared.tcl sets the rpath flag definition in
|
||||
# [get-define SH_LINKRPATH], but it does so on a per-platform basis
|
||||
# rather than as a compiler check. Though we should do a proper
|
||||
# compiler check (as proj-check-rpath does), we may want to consider
|
||||
# adopting its approach of clearing the rpath flags for environments
|
||||
# for which sqlite-env-is-unix-on-windows returns a non-empty
|
||||
# string.
|
||||
|
||||
-# if {[proj-opt-truthy rpath]} {
|
||||
-# proj-check-rpath
|
||||
-# } else {
|
||||
-# msg-result "Disabling use of rpath."
|
||||
-# define LDFLAGS_RPATH ""
|
||||
-# }
|
||||
+ # https://sqlite.org/forum/forumpost/13cac3b56516f849
|
||||
+ if {[proj-opt-truthy rpath]} {
|
||||
+ proj-check-rpath
|
||||
+ } else {
|
||||
+ msg-result "Disabling use of rpath."
|
||||
+ define LDFLAGS_RPATH ""
|
||||
+ }
|
||||
}
|
||||
|
||||
########################################################################
|
||||
# If the --dump-defines configure flag is provided then emit a list of
|
||||
# all [define] values to config.defines.txt, else do nothing.
|
||||
|
||||
@@ -1,48 +0,0 @@
|
||||
From f70123a40193c2056755117aa291582f42db5f35 Mon Sep 17 00:00:00 2001
|
||||
From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
|
||||
Date: Sun, 13 Apr 2025 17:47:53 +0200
|
||||
Subject: [PATCH] sqlite3.pc.in: revert upstream commits causing build issues
|
||||
|
||||
This reverts upstream commit a2d88f6a03c9ebde3d037b0e297f47216c685381
|
||||
and a number of following commits related to the same commit. The
|
||||
sqlite build system is indeed upstream not based on autoconf, but the
|
||||
project "generates" an "autoconf-based amalgamation":
|
||||
|
||||
https://www3.sqlite.org/src/dir?ci=tip&name=autoconf
|
||||
|
||||
Unfortunately commit a2d88f6a03c9ebde3d037b0e297f47216c685381 broke
|
||||
the build with the autoconf amalgamation because while @LIBS@ gets
|
||||
replaced by the autoconf machinery, @LDFLAGS_*@ do not, causing build
|
||||
failures such as:
|
||||
|
||||
output-1/host/lib/gcc/sparc-buildroot-linux-uclibc/13.3.0/../../../../sparc-buildroot-linux-uclibc/bin/ld: cannot find @LDFLAGS_MATH@: No such file or directory
|
||||
output-1/host/lib/gcc/sparc-buildroot-linux-uclibc/13.3.0/../../../../sparc-buildroot-linux-uclibc/bin/ld: cannot find @LDFLAGS_ZLIB@: No such file or directory
|
||||
output-1/host/lib/gcc/sparc-buildroot-linux-uclibc/13.3.0/../../../../sparc-buildroot-linux-uclibc/bin/ld: cannot find @LDFLAGS_ICU@: No such file or directory
|
||||
|
||||
This issue has been reported at
|
||||
https://sqlite.org/forum/info/e40b9b424a, and upstream says that the
|
||||
issue has been fixed in the amalgamation script by basically doing the
|
||||
same as what this commit does:
|
||||
|
||||
https://sqlite.org/src/info/fe47154799bfe
|
||||
|
||||
Upstream: https://sqlite.org/forum/info/e40b9b424a
|
||||
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
|
||||
---
|
||||
sqlite3.pc.in | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/sqlite3.pc.in b/sqlite3.pc.in
|
||||
index a9f941b1e4..3799671e61 100644
|
||||
--- a/sqlite3.pc.in
|
||||
+++ b/sqlite3.pc.in
|
||||
@@ -9,5 +9,5 @@ Name: SQLite
|
||||
Description: SQL database engine
|
||||
Version: @PACKAGE_VERSION@
|
||||
Libs: -L${libdir} -lsqlite3
|
||||
-Libs.private: @LDFLAGS_MATH@ @LDFLAGS_ZLIB@ @LDFLAGS_ICU@
|
||||
+Libs.private: @LIBS@
|
||||
Cflags: -I${includedir}
|
||||
--
|
||||
2.49.0
|
||||
|
||||
@@ -1,36 +0,0 @@
|
||||
From 1cbb088f4be95e7a02627f64de60653ef2b13ab5 Mon Sep 17 00:00:00 2001
|
||||
From: drh <>
|
||||
Date: Sun, 16 Feb 2025 10:57:25 +0000
|
||||
Subject: [PATCH] Add a typecast to avoid 32-bit integer overflow in the
|
||||
concat_ws() function with an enormous separator values and many arguments.
|
||||
|
||||
Fixes the following CVE:
|
||||
- CVE-2025-29087: In SQLite 3.44.0 through 3.49.0 before 3.49.1,
|
||||
the concat_ws() SQL function can cause memory to be
|
||||
written beyond the end of a malloc-allocated buffer.
|
||||
|
||||
For more info see https://nvd.nist.gov/vuln/detail/CVE-2025-29087
|
||||
|
||||
Upstream: https://sqlite.org/src/info/498e3f1cf57f164f
|
||||
|
||||
Signed-off-by: Titouan Christophe <titouan.christophe@mind.be>
|
||||
---
|
||||
sqlite3.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/sqlite3.c b/sqlite3.c
|
||||
index 80433f6..8a43734 100644
|
||||
--- a/sqlite3.c
|
||||
+++ b/sqlite3.c
|
||||
@@ -130954,7 +130954,7 @@ static void concatFuncCore(
|
||||
for(i=0; i<argc; i++){
|
||||
n += sqlite3_value_bytes(argv[i]);
|
||||
}
|
||||
- n += (argc-1)*nSep;
|
||||
+ n += (argc-1)*(i64)nSep;
|
||||
z = sqlite3_malloc64(n+1);
|
||||
if( z==0 ){
|
||||
sqlite3_result_error_nomem(context);
|
||||
--
|
||||
2.49.0
|
||||
|
||||
@@ -1,123 +0,0 @@
|
||||
From 1cbb088f4be95e7a02627f64de60653ef2b13ab5 Mon Sep 17 00:00:00 2001
|
||||
From: drh <>
|
||||
Date: Sun, 16 Feb 2025 10:57:25 +0000
|
||||
Subject: [PATCH] Raise an error right away if the number of aggregate terms in a query exceeds the maximum number of columns.
|
||||
|
||||
CVE: CVE-2025-6965
|
||||
|
||||
For more info see https://nvd.nist.gov/vuln/detail/CVE-2025-6965
|
||||
|
||||
Upstream: https://www.sqlite.org/src/vinfo/5508b56fd24016c13981ec280ecdd833007c9d8dd595edb295b984c2b487b5c8
|
||||
|
||||
[Titouan: adapt to sqlite3 "amalgamation" source code]
|
||||
Signed-off-by: Titouan Christophe <titouan.christophe@mind.be>
|
||||
---
|
||||
sqlite3.c | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/sqlite3.c b/sqlite3.c
|
||||
index 80433f6..8a43734 100644
|
||||
--- a/sqlite3.c 2025-09-03 13:04:29.799853238 +0200
|
||||
+++ b/sqlite3.c 2025-09-03 13:47:54.274155427 +0200
|
||||
@@ -20,7 +20,7 @@
|
||||
** The content in this amalgamation comes from Fossil check-in
|
||||
** d2fe6b05f38d9d7cd78c5d252e99ac59f1ae with changes in files:
|
||||
**
|
||||
-**
|
||||
+**
|
||||
*/
|
||||
#ifndef SQLITE_AMALGAMATION
|
||||
#define SQLITE_CORE 1
|
||||
@@ -15258,6 +15258,14 @@
|
||||
#define SMALLEST_INT64 (((i64)-1) - LARGEST_INT64)
|
||||
|
||||
/*
|
||||
+** Macro SMXV(n) return the maximum value that can be held in variable n,
|
||||
+** assuming n is a signed integer type. UMXV(n) is similar for unsigned
|
||||
+** integer types.
|
||||
+*/
|
||||
+#define SMXV(n) ((((i64)1)<<(sizeof(n)*8-1))-1)
|
||||
+#define UMXV(n) ((((i64)1)<<(sizeof(n)*8))-1)
|
||||
+
|
||||
+/*
|
||||
** Round up a number to the next larger multiple of 8. This is used
|
||||
** to force 8-byte alignment on 64-bit architectures.
|
||||
**
|
||||
@@ -19046,7 +19054,7 @@
|
||||
** from source tables rather than from accumulators */
|
||||
u8 useSortingIdx; /* In direct mode, reference the sorting index rather
|
||||
** than the source table */
|
||||
- u16 nSortingColumn; /* Number of columns in the sorting index */
|
||||
+ u32 nSortingColumn; /* Number of columns in the sorting index */
|
||||
int sortingIdx; /* Cursor number of the sorting index */
|
||||
int sortingIdxPTab; /* Cursor number of pseudo-table */
|
||||
int iFirstReg; /* First register in range for aCol[] and aFunc[] */
|
||||
@@ -19055,8 +19063,8 @@
|
||||
Table *pTab; /* Source table */
|
||||
Expr *pCExpr; /* The original expression */
|
||||
int iTable; /* Cursor number of the source table */
|
||||
- i16 iColumn; /* Column number within the source table */
|
||||
- i16 iSorterColumn; /* Column number in the sorting index */
|
||||
+ int iColumn; /* Column number within the source table */
|
||||
+ int iSorterColumn; /* Column number in the sorting index */
|
||||
} *aCol;
|
||||
int nColumn; /* Number of used entries in aCol[] */
|
||||
int nAccumulator; /* Number of columns that show through to the output.
|
||||
@@ -116445,7 +116453,9 @@
|
||||
){
|
||||
struct AggInfo_col *pCol;
|
||||
int k;
|
||||
+ int mxTerm = pParse->db->aLimit[SQLITE_LIMIT_COLUMN];
|
||||
|
||||
+ assert( mxTerm <= SMXV(i16) );
|
||||
assert( pAggInfo->iFirstReg==0 );
|
||||
pCol = pAggInfo->aCol;
|
||||
for(k=0; k<pAggInfo->nColumn; k++, pCol++){
|
||||
@@ -116463,6 +116473,10 @@
|
||||
assert( pParse->db->mallocFailed );
|
||||
return;
|
||||
}
|
||||
+ if( k>mxTerm ){
|
||||
+ sqlite3ErrorMsg(pParse, "more than %d aggregate terms", mxTerm);
|
||||
+ k = mxTerm;
|
||||
+ }
|
||||
pCol = &pAggInfo->aCol[k];
|
||||
assert( ExprUseYTab(pExpr) );
|
||||
pCol->pTab = pExpr->y.pTab;
|
||||
@@ -116496,6 +116510,7 @@
|
||||
if( pExpr->op==TK_COLUMN ){
|
||||
pExpr->op = TK_AGG_COLUMN;
|
||||
}
|
||||
+ assert( k <= SMXV(pExpr->iAgg) );
|
||||
pExpr->iAgg = (i16)k;
|
||||
}
|
||||
|
||||
@@ -116580,13 +116595,19 @@
|
||||
** function that is already in the pAggInfo structure
|
||||
*/
|
||||
struct AggInfo_func *pItem = pAggInfo->aFunc;
|
||||
+ int mxTerm = pParse->db->aLimit[SQLITE_LIMIT_COLUMN];
|
||||
+ assert( mxTerm <= SMXV(i16) );
|
||||
for(i=0; i<pAggInfo->nFunc; i++, pItem++){
|
||||
if( NEVER(pItem->pFExpr==pExpr) ) break;
|
||||
if( sqlite3ExprCompare(0, pItem->pFExpr, pExpr, -1)==0 ){
|
||||
break;
|
||||
}
|
||||
}
|
||||
- if( i>=pAggInfo->nFunc ){
|
||||
+ if( i>mxTerm ){
|
||||
+ sqlite3ErrorMsg(pParse, "more than %d aggregate terms", mxTerm);
|
||||
+ i = mxTerm;
|
||||
+ assert( i<pAggInfo->nFunc );
|
||||
+ }else if( i>=pAggInfo->nFunc ){
|
||||
/* pExpr is original. Make a new entry in pAggInfo->aFunc[]
|
||||
*/
|
||||
u8 enc = ENC(pParse->db);
|
||||
@@ -116640,6 +116661,7 @@
|
||||
*/
|
||||
assert( !ExprHasProperty(pExpr, EP_TokenOnly|EP_Reduced) );
|
||||
ExprSetVVAProperty(pExpr, EP_NoReduce);
|
||||
+ assert( i <= SMXV(pExpr->iAgg) );
|
||||
pExpr->iAgg = (i16)i;
|
||||
pExpr->pAggInfo = pAggInfo;
|
||||
return WRC_Prune;
|
||||
@@ -30,6 +30,12 @@ config BR2_PACKAGE_SQLITE_ENABLE_FTS3
|
||||
http://www.sqlite.org/amalgamation.html), version 3 of the
|
||||
full-text search engine is added to the build automatically.
|
||||
|
||||
config BR2_PACKAGE_SQLITE_ENABLE_RTREE
|
||||
bool "Enable the RTREE extension for SQLite"
|
||||
help
|
||||
When this option is defined in the amalgamation, the RTREE
|
||||
extension is added to the build automatically.
|
||||
|
||||
config BR2_PACKAGE_SQLITE_ENABLE_UNLOCK_NOTIFY
|
||||
bool "Enable sqlite3_unlock_notify() interface"
|
||||
help
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
# Locally computed
|
||||
sha256 ac992f7fca3989de7ed1fe99c16363f848794c8c32a158dafd4eb927a2e02fd5 sqlite-autoconf-3480000.tar.gz
|
||||
sha256 a3db587a1b92ee5ddac2f66b3edb41b26f9c867275782d46c3a088977d6a5b18 sqlite-autoconf-3500400.tar.gz
|
||||
sha256 66e056b6e8687f32af30d5187611b98b12a8f46f07aaf62f43585f276e8f0ac9 tea/license.terms
|
||||
|
||||
@@ -4,8 +4,8 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
SQLITE_VERSION = 3.48.0
|
||||
SQLITE_TAR_VERSION = 3480000
|
||||
SQLITE_VERSION = 3.50.4
|
||||
SQLITE_TAR_VERSION = 3500400
|
||||
SQLITE_SOURCE = sqlite-autoconf-$(SQLITE_TAR_VERSION).tar.gz
|
||||
SQLITE_SITE = https://www.sqlite.org/2025
|
||||
SQLITE_LICENSE = blessing
|
||||
@@ -13,11 +13,6 @@ SQLITE_LICENSE_FILES = tea/license.terms
|
||||
SQLITE_CPE_ID_VENDOR = sqlite
|
||||
SQLITE_INSTALL_STAGING = YES
|
||||
|
||||
# 0002-Add-a-typecast-to-avoid-32-bit-integer-overflow-in-t.patch
|
||||
SQLITE_IGNORE_CVES = CVE-2025-29087 CVE-2025-3277
|
||||
# 0003-Raise-error-if-too-many-aggregate-terms.patch
|
||||
SQLITE_IGNORE_CVES += CVE-2025-6965
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SQLITE_STAT4),y)
|
||||
SQLITE_CFLAGS += -DSQLITE_ENABLE_STAT4
|
||||
endif
|
||||
@@ -26,8 +21,8 @@ ifeq ($(BR2_PACKAGE_SQLITE_ENABLE_COLUMN_METADATA),y)
|
||||
SQLITE_CFLAGS += -DSQLITE_ENABLE_COLUMN_METADATA
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SQLITE_ENABLE_FTS3),y)
|
||||
SQLITE_CFLAGS += -DSQLITE_ENABLE_FTS3
|
||||
ifeq ($(BR2_PACKAGE_SQLITE_ENABLE_RTREE),y)
|
||||
SQLITE_CFLAGS += -DSQLITE_ENABLE_RTREE
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SQLITE_ENABLE_UNLOCK_NOTIFY),y)
|
||||
@@ -46,35 +41,86 @@ endif
|
||||
# Work around using -O0
|
||||
ifeq ($(BR2_microblaze):$(BR2_TOOLCHAIN_GCC_AT_LEAST_5),y:)
|
||||
SQLITE_CFLAGS += $(TARGET_CFLAGS) -O0
|
||||
else ifeq ($(BR2_TOOLCHAIN_HAS_GCC_BUG_104028),y)
|
||||
SQLITE_CFLAGS += $(TARGET_CFLAGS) -O0
|
||||
else
|
||||
# fallback to standard -O3 when -Ofast is present to avoid -ffast-math
|
||||
SQLITE_CFLAGS += $(subst -Ofast,-O3,$(TARGET_CFLAGS))
|
||||
endif
|
||||
|
||||
SQLITE_CONF_ENV = CFLAGS="$(SQLITE_CFLAGS)"
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
SQLITE_CONF_OPTS += --enable-dynamic-extensions=no
|
||||
else
|
||||
SQLITE_CONF_OPTS += --disable-static-shell
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
||||
SQLITE_CONF_OPTS += --enable-threadsafe
|
||||
else
|
||||
SQLITE_CONF_OPTS += --disable-threadsafe
|
||||
SQLITE_CFLAGS += -DSQLITE_THREADSAFE=0
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_NCURSES)$(BR2_PACKAGE_READLINE),yy)
|
||||
SQLITE_DEPENDENCIES += ncurses readline
|
||||
SQLITE_CONF_OPTS += --disable-editline --enable-readline
|
||||
else ifeq ($(BR2_PACKAGE_LIBEDIT),y)
|
||||
SQLITE_DEPENDENCIES += libedit
|
||||
SQLITE_CONF_OPTS += --enable-editline --disable-readline
|
||||
SQLITE_CFLAGS += -DHAVE_READLINE=1
|
||||
SQLITE_LDFLAGS += -lreadline -lncurses
|
||||
else ifeq ($(BR2_PACKAGE_NCURSES)$(BR2_PACKAGE_LIBEDIT),yy)
|
||||
SQLITE_DEPENDENCIES += ncurses libedit
|
||||
SQLITE_CFLAGS += -DHAVE_EDITLINE=1
|
||||
SQLITE_LDFLAGS += -ledit -lncurses
|
||||
else
|
||||
SQLITE_CONF_OPTS += --disable-editline --disable-readline
|
||||
SQLITE_CONF_OPTS += --disable-readline
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
ifeq ($(BR2_PACKAGE_SQLITE_ENABLE_FTS3),y)
|
||||
SQLITE_CONF_OPTS += --fts3
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_STATIC_LIBS),y)
|
||||
SQLITE_CONF_OPTS += --disable-shared
|
||||
endif
|
||||
|
||||
SQLITE_CONF_ENV = CFLAGS="$(SQLITE_CFLAGS)" LDFLAGS="$(SQLITE_LDFLAGS)"
|
||||
|
||||
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101971
|
||||
define SQLITE_FIX_MAKEFILE
|
||||
chmod +w $(@D)/Makefile
|
||||
sed -i "s/-fPIC//" $(@D)/Makefile
|
||||
endef
|
||||
|
||||
define SQLITE_CONFIGURE_CMDS
|
||||
(cd $(@D); $(TARGET_CONFIGURE_OPTS) \
|
||||
$(if $(BR2_INSTALL_LIBSTDCPP),,CXX=false) \
|
||||
$(SQLITE_CONF_ENV) ./configure \
|
||||
--prefix=/usr \
|
||||
--host="$(GNU_TARGET_NAME)" \
|
||||
--build="$(GNU_HOST_NAME)" \
|
||||
--sysroot="$(STAGING_DIR)" \
|
||||
--disable-rpath \
|
||||
--soname=legacy \
|
||||
$(SQLITE_CONF_OPTS) \
|
||||
)
|
||||
$(if $(BR2_m68k_cf),$(SQLITE_FIX_MAKEFILE))
|
||||
endef
|
||||
|
||||
define SQLITE_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
||||
endef
|
||||
|
||||
define SQLITE_INSTALL_STAGING_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) DESTDIR="$(STAGING_DIR)" -C $(@D) install
|
||||
endef
|
||||
|
||||
define SQLITE_INSTALL_TARGET_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) DESTDIR="$(TARGET_DIR)" -C $(@D) install
|
||||
endef
|
||||
|
||||
define HOST_SQLITE_CONFIGURE_CMDS
|
||||
(cd $(@D); $(HOST_CONFIGURE_OPTS) \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--host="$(GNU_HOST_NAME)" \
|
||||
--build="$(GNU_HOST_NAME)" \
|
||||
--sysroot="$(HOST_DIR)" \
|
||||
--disable-readline \
|
||||
)
|
||||
endef
|
||||
|
||||
define HOST_SQLITE_BUILD_CMDS
|
||||
$(HOST_MAKE_ENV) $(MAKE) -C $(@D)
|
||||
endef
|
||||
|
||||
define HOST_SQLITE_INSTALL_CMDS
|
||||
$(HOST_MAKE_ENV) $(MAKE) DESTDIR="$(HOST_DIR)" -C $(@D) install
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
$(eval $(host-generic-package))
|
||||
|
||||
Reference in New Issue
Block a user