From ca680fb18dbdb081ddd9ddc7c5011ebcecc37649 Mon Sep 17 00:00:00 2001 From: Mark Brand Date: Thu, 12 Dec 2013 17:45:56 +0100 Subject: package sqlite: do not disable thread safety This was disabled in 9ff1828308481a01ada21c772320f863393ea072 due to buggy pthread support, but this this option does not induce sqlite to use multiple threads. Instead, it builds sqlite with the necessary mutexes to make the library thread safe. https://sqlite.org/threadsafe.html --- src/sqlite.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sqlite.mk b/src/sqlite.mk index a440b7c..49809b9 100644 --- a/src/sqlite.mk +++ b/src/sqlite.mk @@ -23,6 +23,6 @@ define $(PKG)_BUILD --disable-shared \ --prefix='$(PREFIX)/$(TARGET)' \ --disable-readline \ - --disable-threadsafe + --enable-threadsafe $(MAKE) -C '$(1)' -j '$(JOBS)' install endef -- cgit v0.12