summaryrefslogtreecommitdiff
path: root/databases/sqlite3/files/pthread_equal_stub
diff options
context:
space:
mode:
Diffstat (limited to 'databases/sqlite3/files/pthread_equal_stub')
-rw-r--r--databases/sqlite3/files/pthread_equal_stub11
1 files changed, 0 insertions, 11 deletions
diff --git a/databases/sqlite3/files/pthread_equal_stub b/databases/sqlite3/files/pthread_equal_stub
deleted file mode 100644
index c59eac404a24..000000000000
--- a/databases/sqlite3/files/pthread_equal_stub
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/mutex_unix.c.orig 2009-09-18 12:39:33.000000000 +0200
-+++ src/mutex_unix.c 2009-09-18 12:39:04.000000000 +0200
-@@ -326,4 +326,8 @@
- return &sMutex;
- }
-
-+int pthread_equal() __attribute__ ((weak));
-+
-+#define pthread_equal(a,b) ((pthread_equal) ? pthread_equal(a,b) : 1)
-+
- #endif /* SQLITE_MUTEX_PTHREAD */