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

[meson] Fix

This commit is contained in:
Witold Filipczyk 2023-05-15 19:26:27 +02:00
parent 084558ee5e
commit e470cf76dc

View File

@ -429,11 +429,11 @@ if conf_data.get('CONFIG_ECMASCRIPT_SMJS') or conf_data.get('CONFIG_QUICKJS') or
conf_data.set('CONFIG_LIBDOM', true)
endif
if not cssdeps and get_option('libcss')
if not conf_data.get('CONFIG_LIBCSS') and get_option('libcss')
cssdeps = dependency('libcss', static: st, version: '>=0.9.1')
deps += cssdeps
conf_data.set('CONFIG_LIBCSS', true)
if not libdomdeps
if not conf_data.get('CONFIG_LIBDOM')
libdomdeps = dependency('libdom', static: st, version: '>=0.4.1')
deps += libdomdeps
conf_data.set('CONFIG_LIBDOM', true)