meson: fix build with simple

Signed-off-by: David Heidelberg <david@ixit.cz>
This commit is contained in:
David Heidelberg 2019-03-23 16:12:52 +00:00 committed by Arun Raghavan
parent 363b1ae69c
commit f5f474dc67

View file

@ -249,6 +249,8 @@ if get_option('database') == 'tdb'
database_dep = dependency('tdb')
elif get_option('database') == 'gdbm'
database_dep = cc.find_library('gdbm', required : true)
else
database_dep = dependency('', required:false)
endif
if get_option('ipv6')