step: meson: remove mongo dependencies

This commit is contained in:
Alexander Couzens 2022-06-14 21:55:58 +02:00
parent d7ccfdb3f8
commit c0ae67b9fb
1 changed files with 2 additions and 5 deletions

View File

@ -25,9 +25,6 @@ libdbi_sources = files('''
session.c
ims.c
'''.split())
libmongoc_dep = dependency('libmongoc-1.0')
libdbi_inc = include_directories('.')
libdbi = library('ogsdbi',
@ -35,10 +32,10 @@ libdbi = library('ogsdbi',
version : libogslib_version,
c_args : '-DOGS_DBI_COMPILATION',
include_directories : [libdbi_inc, libinc],
dependencies : [libcrypt_dep, libmongoc_dep],
dependencies : [libcrypt_dep],
install : true)
libdbi_dep = declare_dependency(
link_with : libdbi,
include_directories : [libdbi_inc, libinc],
dependencies : [libcrypt_dep, libmongoc_dep])
dependencies : [libcrypt_dep])