lib/sqlite: disable if -Ddatabase=false

Fixes build failure in StickerCommands.cxx.
This commit is contained in:
Max Kellermann 2019-11-04 14:10:03 +01:00
parent 65778a3774
commit 129d8e89b9
2 changed files with 7 additions and 1 deletions

1
NEWS
View File

@ -1,6 +1,7 @@
ver 0.21.17 (not yet released) ver 0.21.17 (not yet released)
* outputs * outputs
- jack: mark ports as terminal - jack: mark ports as terminal
* fix build failure with -Ddatabase=false
ver 0.21.16 (2019/10/16) ver 0.21.16 (2019/10/16)
* queue * queue

View File

@ -1,4 +1,9 @@
sqlite_dep = dependency('sqlite3', version: '>= 3.7.3', required: get_option('sqlite')) if enable_database
sqlite_dep = dependency('sqlite3', version: '>= 3.7.3', required: get_option('sqlite'))
else
sqlite_dep = dependency('', required: false)
endif
conf.set('ENABLE_SQLITE', sqlite_dep.found()) conf.set('ENABLE_SQLITE', sqlite_dep.found())
if not sqlite_dep.found() if not sqlite_dep.found()
subdir_done() subdir_done()