summaryrefslogtreecommitdiff
path: root/sqlite3/buildfile
diff options
context:
space:
mode:
Diffstat (limited to 'sqlite3/buildfile')
-rw-r--r--sqlite3/buildfile25
1 files changed, 14 insertions, 11 deletions
diff --git a/sqlite3/buildfile b/sqlite3/buildfile
index b85acd4..e408acb 100644
--- a/sqlite3/buildfile
+++ b/sqlite3/buildfile
@@ -3,9 +3,19 @@
./: exe{sqlite3} doc{INSTALL README} man1{sqlite3} manifest
-import libs = libsqlite3%lib{sqlite3}
+import libs = libsqlite3%lib{sqlite3}
+import libs += libz%lib{z}
-exe{sqlite3}: {h c}{*} $libs
+exe{sqlite3}: {h c}{*} $libs testscript
+
+# @@ TMP Workaround GCC bug 84583:
+#
+# shell.exe.o.i:165900:40: error: unterminated string literal
+#
+# Note: on upgrade check if it is still required.
+#
+if ($c.id == 'gcc' && $c.target.system == 'mingw32')
+ obj{shell}: cc.reprocess = true
gcc = ($c.class == 'gcc')
@@ -22,7 +32,8 @@ gcc = ($c.class == 'gcc')
# This is the subset of features that we enable by default in libsqlite3 and
# that affect the shell. They can be overridden in the same way.
#
-cc.poptions =+ -DSQLITE_ENABLE_COLUMN_METADATA -DSQLITE_ENABLE_SESSION=1
+c.poptions =+ -DSQLITE_ENABLE_COLUMN_METADATA -DSQLITE_ENABLE_SESSION=1 \
+ -DSQLITE_HAVE_ZLIB
# Both Debian and Fedora add this so gotta be important.
#
@@ -39,14 +50,6 @@ if $gcc
if $gcc
c.coptions += -Wno-extra -Wno-error
-# Smoke test.
-#
-exe{sqlite3}: file{test.out}: test.stdout = true
-exe{sqlite3}: test.arguments = ':memory:' \
-'CREATE TABLE test (id INTEGER PRIMARY KEY);
-INSERT INTO test VALUES(123);
-SELECT * FROM test;'
-
# Don't install INSTALL file.
#
doc{INSTALL}@./: install = false