0d6937644c
In commit b1dcb1c2
a fix was attempted at fixing a build failure where
sqlcipher finds the distribution tcl and tries to build against it.
sqlcipher has two tcl usage scenarios: host-tcl which is required to
actually build it, and target tcl to build bindings.
Since cross-compilation of the bindings isn't clean it fails as well,
and since it wasn't a feature before either just disable it completely,
since the wrong fix makes the sqlcipher build failures worse.
Fixes:
http://autobuild.buildroot.net/results/fc0/fc0528de7fed2f34f503fe8dd8b4c21ded0d6dff/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
35 lines
996 B
Makefile
35 lines
996 B
Makefile
################################################################################
|
|
#
|
|
# sqlcipher
|
|
#
|
|
################################################################################
|
|
|
|
SQLCIPHER_VERSION = v3.2.0
|
|
SQLCIPHER_SITE = $(call github,sqlcipher,sqlcipher,$(SQLCIPHER_VERSION))
|
|
SQLCIPHER_DEPENDENCIES = openssl host-tcl
|
|
SQLCIPHER_INSTALL_STAGING = YES
|
|
|
|
SQLCIPHER_CONF_ENV = \
|
|
CFLAGS="$(TARGET_CFLAGS) $(SQLCIPHER_CFLAGS)" \
|
|
TCLSH_CMD=$(HOST_DIR)/usr/bin/tclsh$(TCL_VERSION_MAJOR)
|
|
|
|
SQLCIPHER_CONF_OPTS = \
|
|
--enable-threadsafe \
|
|
--disable-tcl
|
|
|
|
SQLCIPHER_CFLAGS += -DSQLITE_HAS_CODEC # Required according to the README
|
|
SQLCIPHER_CONF_ENV += LIBS="-lcrypto -lz"
|
|
|
|
ifeq ($(BR2_PACKAGE_SQLCIPHER_STAT3),y)
|
|
SQLCIPHER_CFLAGS += -DSQLITE_ENABLE_STAT3
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SQLCIPHER_READLINE),y)
|
|
SQLCIPHER_DEPENDENCIES += ncurses readline
|
|
SQLCIPHER_CONF_OPTS += --with-readline-inc="-I$(STAGING_DIR)/usr/include"
|
|
else
|
|
SQLCIPHER_CONF_OPTS += --disable-readline
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|