summaryrefslogtreecommitdiffstats
path: root/network/basilisk/glibc-2.30+.patch
diff options
context:
space:
mode:
author Andrew Clemons2022-02-06 01:02:14 +0100
committer Willy Sudiarto Raharjo2022-02-06 09:47:08 +0100
commit1a66fca315d6eb6557d3b3c53af6ab0cecddca14 (patch)
tree40991014ec7467c27d2e8cab73ac7511c9f879d3 /network/basilisk/glibc-2.30+.patch
parent24a3a4603694287f228df145a31cb36ca7943263 (diff)
downloadslackbuilds-1a66fca315d6eb6557d3b3c53af6ab0cecddca14.tar.gz
network/basilisk: Removed (upstream development suspended).
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/basilisk/glibc-2.30+.patch')
-rw-r--r--network/basilisk/glibc-2.30+.patch43
1 files changed, 0 insertions, 43 deletions
diff --git a/network/basilisk/glibc-2.30+.patch b/network/basilisk/glibc-2.30+.patch
deleted file mode 100644
index b67945d12a..0000000000
--- a/network/basilisk/glibc-2.30+.patch
+++ /dev/null
@@ -1,43 +0,0 @@
---- tools/profiler/tasktracer/GeckoTaskTracer.cpp 2019-08-23 01:47:27.000000000 +0200
-+++ tools/profiler/tasktracer/GeckoTaskTracer.cpp 2019-08-29 18:02:44.541959971 +0200
-@@ -25,20 +25,14 @@
- #if defined(__GLIBC__)
- #include <unistd.h>
- #include <sys/syscall.h>
--static inline pid_t gettid()
--{
-- return (pid_t) syscall(SYS_gettid);
--}
-+#define gettid() static_cast<pid_t>(syscall(SYS_gettid))
- #elif defined(XP_MACOSX)
- #include <unistd.h>
- #include <sys/syscall.h>
--static inline pid_t gettid()
--{
-- return (pid_t) syscall(SYS_thread_selfid);
--}
-+#define gettid() static_cast<pid_t>(syscall(SYS_thread_selfid))
- #elif defined(LINUX)
- #include <sys/types.h>
--pid_t gettid();
-+#pid_t gettid();
- #endif
-
- // NS_ENSURE_TRUE_VOID() without the warning on the debug build.
-
-
---- js/src/jsnativestack.cpp 2019-08-29 17:45:10.000000000 +0200
-+++ js/src/jsnativestack.cpp 2019-08-29 17:53:58.382003265 +0200
-@@ -26,11 +26,7 @@
- # include <sys/syscall.h>
- # include <sys/types.h>
- # include <unistd.h>
--static pid_t
--gettid()
--{
-- return syscall(__NR_gettid);
--}
-+# define gettid() static_cast<pid_t>(syscall(__NR_gettid))
- # endif
-
- #else