mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
sqlite: do not assume thread support is available
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>
This commit is contained in:
parent
adbe85c752
commit
856ba32097
@ -23,9 +23,14 @@ endif
|
|||||||
SQLITE_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) $(SQLITE_CFLAGS)"
|
SQLITE_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) $(SQLITE_CFLAGS)"
|
||||||
|
|
||||||
SQLITE_CONF_OPT = \
|
SQLITE_CONF_OPT = \
|
||||||
--enable-threadsafe \
|
|
||||||
--localstatedir=/var
|
--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)
|
ifeq ($(BR2_PACKAGE_SQLITE_READLINE),y)
|
||||||
SQLITE_DEPENDENCIES += ncurses readline
|
SQLITE_DEPENDENCIES += ncurses readline
|
||||||
SQLITE_CONF_OPT += --with-readline-inc="-I$(STAGING_DIR)/usr/include"
|
SQLITE_CONF_OPT += --with-readline-inc="-I$(STAGING_DIR)/usr/include"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user