]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/patches/curl-7.84.0-easy_lock_h_include_sched_h_if_available_to_fix_build.patch
curl: Fix build on armv6l
[people/pmueller/ipfire-2.x.git] / src / patches / curl-7.84.0-easy_lock_h_include_sched_h_if_available_to_fix_build.patch
1 commit e2e7f54b7bea521fa8373095d0f43261a720cda0
2 Author: Daniel Stenberg <daniel@haxx.se>
3 Date: Mon Jun 27 08:46:21 2022 +0200
4
5 easy_lock.h: include sched.h if available to fix build
6
7 Patched-by: Harry Sintonen
8
9 Closes #9054
10
11 diff --git a/lib/easy_lock.h b/lib/easy_lock.h
12 index 819f50ce8..1f54289ce 100644
13 --- a/lib/easy_lock.h
14 +++ b/lib/easy_lock.h
15 @@ -36,6 +36,9 @@
16
17 #elif defined (HAVE_ATOMIC)
18 #include <stdatomic.h>
19 +#if defined(HAVE_SCHED_YIELD)
20 +#include <sched.h>
21 +#endif
22
23 #define curl_simple_lock atomic_bool
24 #define CURL_SIMPLE_LOCK_INIT false