Revert "sqlite: enable ICU support"

This reverts commit 537c0e2b4b5c12c298d9e6c776feb4cdc3118dcc.
This commit is contained in:
Matthias Reichl 2022-01-14 19:08:31 +01:00
parent ab106bb639
commit 772bcabf7a
3 changed files with 3 additions and 5 deletions

View File

@ -12,6 +12,8 @@ PKG_DEPENDS_TARGET="toolchain icu:host"
PKG_LONGDESC="International Components for Unicode library."
PKG_TOOLCHAIN="configure"
PKG_BUILD_FLAGS="-sysroot"
configure_package() {
PKG_CONFIGURE_SCRIPT="${PKG_BUILD}/icu4c/source/configure"
PKG_CONFIGURE_OPTS_TARGET="--disable-layout \

View File

@ -10,7 +10,7 @@ PKG_LICENSE="PublicDomain"
PKG_SITE="https://www.sqlite.org/"
PKG_URL="https://www.sqlite.org/2021/${PKG_NAME}-autoconf-${PKG_VERSION_SQLITE/./0}.tar.gz"
PKG_DEPENDS_HOST="ccache:host autoconf:host automake:host"
PKG_DEPENDS_TARGET="toolchain ncurses icu"
PKG_DEPENDS_TARGET="toolchain ncurses"
PKG_LONGDESC="An Embeddable SQL Database Engine."
# libsqlite3.a(sqlite3.o): requires dynamic R_X86_64_PC32 reloc against 'sqlite3_stricmp' which may overflow at runtime
PKG_BUILD_FLAGS="+pic +pic:host -parallel"
@ -53,8 +53,4 @@ pre_configure_target() {
# sqlite3_config(SQLITE_CONFIG_MMAP_SIZE) call, or at run-time using the
# mmap_size pragma.
CFLAGS+=" -DSQLITE_TEMP_STORE=3 -DSQLITE_DEFAULT_MMAP_SIZE=268435456"
# Enable ICU support.
# This make case insensitive like statement for non ASCII characters.
CFLAGS+=" -DSQLITE_ENABLE_ICU -licuio -licui18n -licuuc -licudata"
}