summaryrefslogtreecommitdiffstats
path: root/rules/sqlite.in
diff options
context:
space:
mode:
authorJuergen Beisert <j.beisert@pengutronix.de>2009-03-10 15:16:15 +0000
committerJuergen Beisert <j.beisert@pengutronix.de>2009-03-10 15:16:15 +0000
commit511f18f7b83ae2ba4f1a8bdf4f0555002d0bec51 (patch)
treeb9a9fd755e8bdf4fc1598fee4aa0bb8163cb6b8a /rules/sqlite.in
parent6fbe4f22028a3222ec0ca0d95ac694de00c5189e (diff)
downloadptxdist-511f18f7b83ae2ba4f1a8bdf4f0555002d0bec51.tar.gz
ptxdist-511f18f7b83ae2ba4f1a8bdf4f0555002d0bec51.tar.xz
* sqlite: Version bump and clean up
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@10046 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/sqlite.in')
-rw-r--r--rules/sqlite.in52
1 files changed, 40 insertions, 12 deletions
diff --git a/rules/sqlite.in b/rules/sqlite.in
index d8abe35f1..7c7118554 100644
--- a/rules/sqlite.in
+++ b/rules/sqlite.in
@@ -2,21 +2,29 @@
menuconfig SQLITE
tristate
prompt "sqlite "
+ select TCL if SQLITE_TCL
+ select READLINE if SQLITE_READLINE
+ help
+ SQLite is a software library that implements a self-contained,
+ serverless, zero-configuration, transactional SQL database engine.
+ Note: This package needs a host tclsh to be built.
-if SQLITE
+if SQLITE
-choice
- prompt "Assume text encoding"
- default ISO8859
+comment "build options"
- config SQLITE_ISO8859
- bool
- prompt "ISO8859"
-
- config SQLITE_UTF8
- bool
- prompt "UTF-8"
-endchoice
+#choice
+# prompt "Assume text encoding"
+# default ISO8859
+#
+# config SQLITE_ISO8859
+# bool
+# prompt "ISO8859"
+#
+# config SQLITE_UTF8
+# bool
+# prompt "UTF-8"
+#endchoice
config SQLITE_DISABLE_LFS
bool
@@ -26,4 +34,24 @@ config SQLITE_THREADSAFE
bool
prompt "Safe for use within a multi-threaded program"
+config SQLITE_READLINE
+ bool
+ prompt "use readline"
+ help
+ Enable readline support
+
+config SQLITE_TCL
+ bool
+ prompt "build tcl extension"
+ help
+ Build the TCL extension
+
+comment "install options"
+
+config SQLITE_TOOL
+ bool
+ prompt "install sqlite"
+ help
+ Enable this entry to also install the 'sqlite' tool.
+
endif