]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
sqlite3.inc: dynamically link the sqlite3 command-line utility
authorAndre McCurdy <armccurdy@gmail.com>
Sat, 23 Jan 2016 01:26:03 +0000 (17:26 -0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 24 Jan 2016 10:55:44 +0000 (10:55 +0000)
By default, the sqlite3 command-line utility will be statically linked
with sqlite3. For OE, dynamic linking is probably more appropriate and
can be enabled by configuring with "--disable-static-shell".

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-support/sqlite/sqlite3.inc

index 540d2b631485cc8b7536511766b9323ebb5dd68a..87cdf26146193d71abf61f9f4fe4cadfc1a7f59a 100644 (file)
@@ -24,7 +24,12 @@ PACKAGECONFIG_class-native = ""
 
 PACKAGECONFIG[readline] = "--enable-readline,--disable-readline,readline ncurses"
 
-EXTRA_OECONF = "--enable-shared --enable-threadsafe --disable-editline"
+EXTRA_OECONF = " \
+    --enable-shared \
+    --enable-threadsafe \
+    --disable-editline \
+    --disable-static-shell \
+"
 
 # pread() is in POSIX.1-2001 so any reasonable system must surely support it
 BUILD_CFLAGS += "-DUSE_PREAD"