lib/curl/meson.build: require CURL 7.55.0 or later

For CURLINFO_CONTENT_LENGTH_DOWNLOAD_T (commit 4efd0a9f77).
This commit is contained in:
Max Kellermann 2023-01-16 19:42:32 +01:00
parent 60d04052c5
commit 0948c607b6
2 changed files with 3 additions and 1 deletions

2
NEWS
View File

@ -1,4 +1,6 @@
ver 0.23.12 (not yet released) ver 0.23.12 (not yet released)
* input
- curl: require CURL 7.55.0 or later
* tags * tags
- fix crash bug due to race condition - fix crash bug due to race condition
* fix build failures with GCC 13 * fix build failures with GCC 13

View File

@ -1,4 +1,4 @@
curl_dep = dependency('libcurl', version: '>= 7.33', required: get_option('curl')) curl_dep = dependency('libcurl', version: '>= 7.55', required: get_option('curl'))
conf.set('ENABLE_CURL', curl_dep.found()) conf.set('ENABLE_CURL', curl_dep.found())
if not curl_dep.found() if not curl_dep.found()
subdir_done() subdir_done()