mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 01:56:37 -04:00
- Remove METALINK option: all support removed by upstream - Update NTLM option: it has own configure option now Changes: https://curl.se/changes.html
18 lines
491 B
C
18 lines
491 B
C
Description: Different handling of signals and threads.
|
|
Forwarded: not-needed
|
|
Author: Peter Pentchev <roam@FreeBSD.org>
|
|
Last-Update: 2010-12-18
|
|
|
|
--- lib/url.c.orig 2021-07-20 21:07:48 UTC
|
|
+++ lib/url.c
|
|
@@ -630,6 +630,10 @@ CURLcode Curl_init_userdefined(struct Curl_easy *data)
|
|
CURL_HTTP_VERSION_1_1
|
|
#endif
|
|
;
|
|
+#if defined(__FreeBSD_version)
|
|
+ /* different handling of signals and threads */
|
|
+ set->no_signal = TRUE;
|
|
+#endif
|
|
Curl_http2_init_userset(set);
|
|
return result;
|
|
}
|