diff options
| author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2016-01-23 11:23:43 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-01-23 12:02:43 +0100 |
| commit | 58e931989fb23df55334a17aa5d4ee0d8dc45355 (patch) | |
| tree | 1d17ee97479ea6f6bf6dd137e137042fd8e8545a /package/sqlite | |
| parent | cef9b645cd00c16ee9b2d41591d5e94e634b004c (diff) | |
| download | buildroot-58e931989fb23df55334a17aa5d4ee0d8dc45355.tar.gz buildroot-58e931989fb23df55334a17aa5d4ee0d8dc45355.zip | |
package/sqlite: Dynamically link libsqlite.so to bin/sqlite3
Fixes https://bugs.busybox.net/show_bug.cgi?id=8621#c1
Lonnie Abelbeck wrote:
"recently sqlite changed it's default behavior wrt the sqlite CLI tool,
previously it was dynamically linked with libsqlite3.so.0 by default,
now it is statically linked by default.
The old behavior can be signaled with: --disable-static-shell"
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/sqlite')
| -rw-r--r-- | package/sqlite/sqlite.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/sqlite/sqlite.mk b/package/sqlite/sqlite.mk index 27dad12255..46acbf8aec 100644 --- a/package/sqlite/sqlite.mk +++ b/package/sqlite/sqlite.mk @@ -35,6 +35,8 @@ SQLITE_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) $(SQLITE_CFLAGS)" ifeq ($(BR2_STATIC_LIBS),y) SQLITE_CONF_OPTS += --enable-dynamic-extensions=no +else +SQLITE_CONF_OPTS += --disable-static-shell endif ifeq ($(BR2_TOOLCHAIN_HAS_THREADS),y) |

