1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00

Merge pull request #348 from aelmahmoudy/fix-dfltlibdomdeps

Fix default value for libdomdeps to empty list instead of false
This commit is contained in:
rkd77 2024-12-29 18:38:42 +01:00 committed by GitHub
commit 1be9427e7e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -555,7 +555,7 @@ if conf_data.get('CONFIG_ECMASCRIPT_SMJS') or conf_data.get('CONFIG_QUICKJS') or
endif
conf_data.set('CONFIG_LIBDOM', false)
libdomdeps = false
libdomdeps = []
if conf_data.get('CONFIG_ECMASCRIPT_SMJS') or conf_data.get('CONFIG_QUICKJS') or conf_data.get('CONFIG_MUJS')
libdomdeps = dependency('libdom', static: st, version: '>=0.4.2', required: false)