| Summary: | sqlite package, properly enable readline | ||
|---|---|---|---|
| Product: | buildroot | Reporter: | Lonnie Abelbeck <lonnie> |
| Component: | Other | Assignee: | unassigned |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | buildroot |
| Priority: | P5 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Host: | Target: | ||
| Build: | |||
|
Description
Lonnie Abelbeck
2016-01-21 00:52:35 UTC
Additionally, while you are checking out this readline fix, 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 Either add the configure option by default or possibly: ifeq ($(BR2_STATIC_LIBS),y) SQLITE_CONF_OPTS += --enable-dynamic-extensions=no + else + SQLITE_CONF_OPTS += --disable-static-shell endif Works in my testing. |