meson.build

changeset 43189
3f33bf2e4efc
parent 43186
f869ebb47d88
child 43191
ba72c5b3582b
equal deleted inserted replaced
43188:8bb4549ab7f6 43189:3f33bf2e4efc
244 message('Versions of libxml2 < 2.6.18 may contain bugs that could cause XMPP messages to be discarded.') 244 message('Versions of libxml2 < 2.6.18 may contain bugs that could cause XMPP messages to be discarded.')
245 endif 245 endif
246 246
247 seagull_dep = dependency('seagull', version : '>= 0.1.1') 247 seagull_dep = dependency('seagull', version : '>= 0.1.1')
248 sqlite3 = dependency('sqlite3', version : '>= 3.27.0') 248 sqlite3 = dependency('sqlite3', version : '>= 3.27.0')
249 xeme = dependency('xeme') 249 xeme_dep = dependency('xeme')
250 250
251 dependency('shoes', required : false) 251 dependency('shoes', required : false)
252 252
253 DEFAULT_PRPLS = ['demo', 'ircv3', 'xmpp'] 253 DEFAULT_PRPLS = ['demo', 'ircv3', 'xmpp']
254 254
258 endif 258 endif
259 DYNAMIC_PRPLS = [] 259 DYNAMIC_PRPLS = []
260 foreach prpl : dynamic_list 260 foreach prpl : dynamic_list
261 if prpl == '' 261 if prpl == ''
262 # The list was empty; do nothing. 262 # The list was empty; do nothing.
263 elif prpl == 'xmpp' and not xeme.found() 263 elif prpl == 'xmpp' and not xeme_dep.found()
264 # Do nothing. 264 # Do nothing.
265 else 265 else
266 DYNAMIC_PRPLS += [prpl] 266 DYNAMIC_PRPLS += [prpl]
267 endif 267 endif
268 endforeach 268 endforeach

mercurial