Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-gnome
Path: blob/main/ftp/curl/files/patch-lib-url.c
16130 views
1
Description: Different handling of signals and threads.
2
Forwarded: not-needed
3
Author: Peter Pentchev <roam@FreeBSD.org>
4
Last-Update: 2010-12-18
5
6
--- lib/url.c.orig 2020-12-08 07:39:35 UTC
7
+++ lib/url.c
8
@@ -607,6 +607,10 @@ CURLcode Curl_init_userdefined(struct Curl_easy *data)
9
CURL_HTTP_VERSION_1_1
10
#endif
11
;
12
+#if defined(__FreeBSD_version)
13
+ /* different handling of signals and threads */
14
+ set->no_signal = TRUE;
15
+#endif
16
Curl_http2_init_userset(set);
17
return result;
18
}
19
20