summaryrefslogtreecommitdiff
path: root/libre/icecat/fix-double-definition-of-gettid.patch
diff options
context:
space:
mode:
Diffstat (limited to 'libre/icecat/fix-double-definition-of-gettid.patch')
-rw-r--r--libre/icecat/fix-double-definition-of-gettid.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/libre/icecat/fix-double-definition-of-gettid.patch b/libre/icecat/fix-double-definition-of-gettid.patch
deleted file mode 100644
index 99f053837..000000000
--- a/libre/icecat/fix-double-definition-of-gettid.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -rupN icecat-60.7.0-orig/tools/profiler/core/platform.h icecat-60.7.0/tools/profiler/core/platform.h
---- icecat-60.7.0-orig/tools/profiler/core/platform.h 2019-11-18 11:29:11.638304093 +0100
-+++ icecat-60.7.0/tools/profiler/core/platform.h 2019-11-18 20:35:38.133957814 +0100
-@@ -47,7 +47,7 @@
- #if defined(__GLIBC__)
- #include <unistd.h>
- #include <sys/syscall.h>
--static inline pid_t gettid() { return (pid_t)syscall(SYS_gettid); }
-+#define gettid() ((pid_t)syscall(SYS_gettid))
- #elif defined(GP_OS_darwin)
- #include <unistd.h>
- #include <sys/syscall.h>