mirror of
https://github.com/curl/curl.git
synced 2026-07-22 16:57:16 +03:00
hyper: drop support
lib : remove all hyper code configure: stop detecting hyper docs: no more mention of hyper tests: mo more special-handling of hyper builds CI: no jobs using hyper Closes #15120
This commit is contained in:
parent
46093d9e0e
commit
fc3e1cbc50
93 changed files with 118 additions and 2546 deletions
|
|
@ -210,9 +210,6 @@ char *curl_version(void)
|
|||
#ifdef USE_LIBRTMP
|
||||
char rtmp_version[30];
|
||||
#endif
|
||||
#ifdef USE_HYPER
|
||||
char hyper_buf[30];
|
||||
#endif
|
||||
#ifdef USE_GSASL
|
||||
char gsasl_buf[30];
|
||||
#endif
|
||||
|
|
@ -277,10 +274,6 @@ char *curl_version(void)
|
|||
Curl_rtmp_version(rtmp_version, sizeof(rtmp_version));
|
||||
src[i++] = rtmp_version;
|
||||
#endif
|
||||
#ifdef USE_HYPER
|
||||
msnprintf(hyper_buf, sizeof(hyper_buf), "Hyper/%s", hyper_version());
|
||||
src[i++] = hyper_buf;
|
||||
#endif
|
||||
#ifdef USE_GSASL
|
||||
msnprintf(gsasl_buf, sizeof(gsasl_buf), "libgsasl/%s",
|
||||
gsasl_check_version(NULL));
|
||||
|
|
@ -676,14 +669,6 @@ curl_version_info_data *curl_version_info(CURLversion stamp)
|
|||
}
|
||||
#endif
|
||||
|
||||
#ifdef USE_HYPER
|
||||
{
|
||||
static char hyper_buffer[30];
|
||||
msnprintf(hyper_buffer, sizeof(hyper_buffer), "Hyper/%s", hyper_version());
|
||||
version_info.hyper_version = hyper_buffer;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef USE_GSASL
|
||||
{
|
||||
version_info.gsasl_version = gsasl_check_version(NULL);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue