diff options
author | Thierry Thomas <thierry@freebsd.org> | 2022-09-22 23:47:30 -0700 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2022-09-22 23:51:10 -0700 |
commit | d53f8e2377829d0cc9fa237e942481a763289e11 (patch) | |
tree | 0562714e7cfa284a2ce896a5788c788eac6f5b07 /math/giacxcas/files/patch-src_quickjs-libc.c | |
parent | www/authelia: Update 4.36.7 -> 4.36.8 (diff) |
math/giacxcas: Update 1.6.0-7 -> 1.9.0-21
The newly introduced bundled dependency micropython-1.12 causes
SEGV and it was disabled.
Diffstat (limited to 'math/giacxcas/files/patch-src_quickjs-libc.c')
-rw-r--r-- | math/giacxcas/files/patch-src_quickjs-libc.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/math/giacxcas/files/patch-src_quickjs-libc.c b/math/giacxcas/files/patch-src_quickjs-libc.c new file mode 100644 index 000000000000..34ba89847a41 --- /dev/null +++ b/math/giacxcas/files/patch-src_quickjs-libc.c @@ -0,0 +1,24 @@ +--- src/quickjs-libc.c.orig 2021-03-20 11:09:33 UTC ++++ src/quickjs-libc.c +@@ -58,8 +58,11 @@ char ** environ=&ptr; + char ** environ=&ptr; + #endif + +-#if defined(__APPLE__) ++#if defined(__APPLE__) || defined(__FreeBSD__) ++extern char **environ; + typedef sig_t sighandler_t; ++#endif ++#if defined(__APPLE__) + #if !defined(environ) + #include <crt_externs.h> + #define environ (*_NSGetEnviron()) +@@ -3613,6 +3616,8 @@ void js_std_set_worker_new_context_func(JSContext *(*f + #define OS_PLATFORM "darwin" + #elif defined(EMSCRIPTEN) + #define OS_PLATFORM "js" ++#elif defined(__FreeBSD__) ++#define OS_PLATFORM "freebsd" + #else + #define OS_PLATFORM "linux" + #endif |