856ba32097
The --enable-threadsafe option was unconditionally passed, without taking into account whether the underlying toolchain had thread support or not. Now, we properly pass --enable-threadsafe or --disable-threadsafe depending on the availability of thread support. Fixes http://autobuild.buildroot.net/results/defdc098cff293baabf2f89587476eba71f1c0d0/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
54 lines
1.4 KiB
Makefile
54 lines
1.4 KiB
Makefile
#############################################################
|
|
#
|
|
# sqlite
|
|
#
|
|
#############################################################
|
|
|
|
SQLITE_VERSION = 3071300
|
|
SQLITE_SOURCE = sqlite-autoconf-$(SQLITE_VERSION).tar.gz
|
|
SQLITE_SITE = http://www.sqlite.org
|
|
SQLITE_INSTALL_STAGING = YES
|
|
|
|
ifneq ($(BR2_LARGEFILE),y)
|
|
# the sqlite configure script fails to define SQLITE_DISABLE_LFS when
|
|
# --disable-largefile is passed, breaking the build. Work around it by
|
|
# simply adding it to CFLAGS for configure instead
|
|
SQLITE_CFLAGS += -DSQLITE_DISABLE_LFS
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SQLITE_STAT3),y)
|
|
SQLITE_CFLAGS += -DSQLITE_ENABLE_STAT3
|
|
endif
|
|
|
|
SQLITE_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) $(SQLITE_CFLAGS)"
|
|
|
|
SQLITE_CONF_OPT = \
|
|
--localstatedir=/var
|
|
|
|
ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y)
|
|
SQLITE_CONF_OPT += --enable-threadsafe
|
|
else
|
|
SQLITE_CONF_OPT += --disable-threadsafe
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_SQLITE_READLINE),y)
|
|
SQLITE_DEPENDENCIES += ncurses readline
|
|
SQLITE_CONF_OPT += --with-readline-inc="-I$(STAGING_DIR)/usr/include"
|
|
else
|
|
SQLITE_CONF_OPT += --disable-readline
|
|
endif
|
|
|
|
define SQLITE_UNINSTALL_TARGET_CMDS
|
|
rm -f $(TARGET_DIR)/usr/bin/sqlite3
|
|
rm -f $(TARGET_DIR)/usr/lib/libsqlite3*
|
|
endef
|
|
|
|
define SQLITE_UNINSTALL_STAGING_CMDS
|
|
rm -f $(STAGING_DIR)/usr/bin/sqlite3
|
|
rm -f $(STAGING_DIR)/usr/lib/libsqlite3*
|
|
rm -f $(STAGING_DIR)/usr/lib/pkgconfig/sqlite3.pc
|
|
rm -f $(STAGING_DIR)/usr/include/sqlite3*.h
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|