diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-05-20 22:51:49 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-05-06 20:42:50 +0200 |
| commit | a3fcbb3a76e079a5485a0552ea5d35b8d6739116 (patch) | |
| tree | 58f6476b7197c0e32b5aa3d52d0859a9b04db268 /wscript | |
| parent | a4105c6e8dc83407abc9b12e80c958673c942888 (diff) | |
Use sqlite for cinema and DKDM recipient lists.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -629,6 +629,18 @@ def configure(conf): lib=deps, uselib_store='BOOST_PROCESS') + # sqlite3 + conf.check_cfg(package="sqlite3", args='--cflags --libs', uselib_store='SQLITE3', mandatory=True) + conf.check_cxx(fragment=""" + #include <sqlite3.h> + int main() { sqlite3_prepare_v3(nullptr, "", -1, 0, nullptr, nullptr); } + """, + msg='Checking for sqlite3_prepare_v3', + uselib='SQLITE3', + define_name="DCPOMATIC_HAVE_SQLITE3_PREPARE_V3", + mandatory=False) + + # Other stuff conf.find_program('msgfmt', var='MSGFMT') |
