changeset 4865:38bc9910cd35

sqlite: autoreconf and use --enable-threadsafe
author John W. Eaton <jwe@octave.org>
date Tue, 30 Oct 2018 12:19:02 -0400
parents b0e1e4363cf0
children 5ab457504494
files src/sqlite.mk
diffstat 1 files changed, 2 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/sqlite.mk	Tue Oct 30 11:48:02 2018 -0400
+++ b/src/sqlite.mk	Tue Oct 30 12:19:02 2018 -0400
@@ -18,13 +18,12 @@
 
 define $(PKG)_BUILD
     $(SED) -i 's/^Cflags/#Cflags/;' '$(1)/sqlite3.pc.in'
-    cd '$(1)' && ./configure \
+    cd '$(1)' && autoreconf && ./configure \
         $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
         $(ENABLE_SHARED_OR_STATIC) \
         --prefix='$(HOST_PREFIX)' \
         CFLAGS="-Os -DSQLITE_ENABLE_COLUMN_METADATA" \
-        --disable-readline \
-        --disable-threadsafe
+        --disable-readline
     $(MAKE) -C '$(1)' -j 1
     $(MAKE) -C '$(1)' -j 1 install DESTDIR='$(3)'
 endef