1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00

[meson] libxml2 deps is pulled automatically

This commit is contained in:
Witold Filipczyk 2021-07-18 12:39:37 +02:00
parent 347b1d43ae
commit be35ee9ec7

View File

@ -255,6 +255,7 @@ if conf_data.get('CONFIG_ECMASCRIPT')
deps += mozjsdeps
sqlite3deps = dependency('sqlite3')
deps += sqlite3deps
conf_data.set('CONFIG_XML', true)
endif
if conf_data.get('CONFIG_SCRIPTING_LUA')
@ -273,13 +274,10 @@ if conf_data.get('CONFIG_GPM')
endif
if conf_data.get('CONFIG_XML')
xml2deps = dependency('libxml2')
deps += xml2deps
xmlplusplusdeps = dependency('libxml++-5.0')
deps += xmlplusplusdeps
endif
if conf_data.get('CONFIG_SCRIPTING_PYTHON')
python3deps = dependency('python3-embed')
deps += python3deps