mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 12:29:55 +00:00
sqlite3.inc: dynamically link the sqlite3 command-line utility
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". (From OE-Core rev: 432952090b2faa14437d550f58a00a364d554b2e) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
9b2835e690
commit
39f6a9e47d
@@ -24,7 +24,12 @@ PACKAGECONFIG_class-native = ""
|
|||||||
|
|
||||||
PACKAGECONFIG[readline] = "--enable-readline,--disable-readline,readline ncurses"
|
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
|
# pread() is in POSIX.1-2001 so any reasonable system must surely support it
|
||||||
BUILD_CFLAGS += "-DUSE_PREAD"
|
BUILD_CFLAGS += "-DUSE_PREAD"
|
||||||
|
|||||||
Reference in New Issue
Block a user