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

[meson] require at least curl 7.66.0

This commit is contained in:
Witold Filipczyk 2024-12-12 11:52:12 +01:00
parent 8ec96bf1ca
commit ad6bcaa30d

View File

@ -521,7 +521,7 @@ endif
conf_data.set('CONFIG_LIBCURL', false)
curldeps = false
if conf_data.get('CONFIG_ECMASCRIPT_SMJS') or conf_data.get('CONFIG_QUICKJS') or conf_data.get('CONFIG_MUJS')
curldeps = dependency('libcurl', static: st, required: false)
curldeps = dependency('libcurl', static: st, version: '>=7.66.0', required: false)
if not curldeps.found()
curldeps = compiler.find_library('curl', static: st)
endif
@ -532,7 +532,7 @@ if conf_data.get('CONFIG_ECMASCRIPT_SMJS') or conf_data.get('CONFIG_QUICKJS') or
endif
if not conf_data.get('CONFIG_LIBCURL') and get_option('libcurl')
curldeps = dependency('libcurl', static: st, required: false)
curldeps = dependency('libcurl', static: st, version: '>=7.66.0', required: false)
if not curldeps.found()
curldeps = compiler.find_library('curl', static: st)
endif