You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
323 B
C++
14 lines
323 B
C++
// SPDX-License-Identifier: BSD-2-Clause
|
|
// author: Max Kellermann <max.kellermann@gmail.com>
|
|
|
|
#include "Version.hxx"
|
|
|
|
#include <curl/curl.h>
|
|
|
|
bool
|
|
IsCurlOlderThan(unsigned version_num) noexcept
|
|
{
|
|
const auto *const info = curl_version_info(CURLVERSION_FIRST);
|
|
return info == nullptr || info->version_num < version_num;
|
|
}
|