summaryrefslogtreecommitdiff
path: root/project/config/cfgdefs.sh
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-12-19 20:35:26 -0500
committermidipix <writeonce@midipix.org>2018-12-19 22:12:13 -0500
commitc403d0d2a3a7a606c7cdd872a6c66a6491ffb687 (patch)
tree8ecdab33925c484f83caf9fe8c5f6067d8ea5986 /project/config/cfgdefs.sh
parentbc7614b9705c62b62a356408afa3578d1e519512 (diff)
downloadsbpython3-c403d0d2a3a7a606c7cdd872a6c66a6491ffb687.tar.bz2
sbpython3-c403d0d2a3a7a606c7cdd872a6c66a6491ffb687.tar.xz
project: custom config: handle all sqlite-related bits at config-time.
Diffstat (limited to 'project/config/cfgdefs.sh')
-rw-r--r--project/config/cfgdefs.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/project/config/cfgdefs.sh b/project/config/cfgdefs.sh
index 492dd3f..61482d3 100644
--- a/project/config/cfgdefs.sh
+++ b/project/config/cfgdefs.sh
@@ -217,6 +217,20 @@ cfgdefs_perform_target_tests()
mb_cfgtest_makevar='LDFLAGS_TCLTK_LIBS'
cfgtest_makevar_append "$mb_tcltk_libs"
+ # sqlite
+ cfgtest_newline
+ cfgtest_comment 'sqlite3'
+
+ mb_cfgtest_makevar='CFLAGS_SQLITE'
+ cfgtest_makevar_append '-DMODULE_NAME=\"sqlite3\"'
+ cfgtest_makevar_append '-DSQLITE_OMIT_LOAD_EXTENSION'
+
+ mb_cfgtest_makevar='LDFLAGS_SQLITE'
+ cfgtest_makevar_append '-lsqlite3'
+
+ mb_cfgtest_makevar='LDFLAGS_SQLITE_STATIC'
+ cfgtest_makevar_append '$(LDFLAGS_SQLITE)'
+
# pretty cfgdefs.mk
cfgtest_newline
}