diff options
author | Stefan Eßer <se@FreeBSD.org> | 2020-09-22 16:20:01 +0000 |
---|---|---|
committer | Stefan Eßer <se@FreeBSD.org> | 2020-09-22 16:20:01 +0000 |
commit | b0a411162e00f4f449fac188094170736c117884 (patch) | |
tree | 916c79763e915c125089753760d581c289abaf8b /lang/ccl/files/patch-lisp-kernel_threads.h | |
parent | net-im/zoom: Move from /opt to ${LINUXBASE}/opt (diff) |
Fix build with -fno-common
Diffstat (limited to 'lang/ccl/files/patch-lisp-kernel_threads.h')
-rw-r--r-- | lang/ccl/files/patch-lisp-kernel_threads.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/ccl/files/patch-lisp-kernel_threads.h b/lang/ccl/files/patch-lisp-kernel_threads.h new file mode 100644 index 000000000000..25255bc91718 --- /dev/null +++ b/lang/ccl/files/patch-lisp-kernel_threads.h @@ -0,0 +1,11 @@ +--- lisp-kernel/threads.h.orig 2020-04-19 21:32:56 UTC ++++ lisp-kernel/threads.h +@@ -187,7 +187,7 @@ void tsd_set(LispObj, void *); + void *tsd_get(LispObj); + TCR *new_tcr(natural, natural); + void thread_init_tcr(TCR *tcr, void *stack_base, natural stack_size); +-TCR *initial_thread_tcr; ++extern TCR *initial_thread_tcr; + + #define DEFAULT_THREAD_STACK_SIZE ((size_t) -1) + #define MINIMAL_THREAD_STACK_SIZE ((size_t) 0) |