summaryrefslogtreecommitdiff
path: root/databases/sqlite3/files
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2011-11-07 03:25:29 +0000
committerMartin Wilke <miwi@FreeBSD.org>2011-11-07 03:25:29 +0000
commit9b44799b8a59481f1cc745e8df5837fd080b47f1 (patch)
tree48f657965e277871a2c43ebc5037b0f88b449fc2 /databases/sqlite3/files
parentStandardize WWW: tags a bit more: (diff)
- Get rid FreeBSD 6.x support
Notes
Notes: svn path=/head/; revision=285199
Diffstat (limited to 'databases/sqlite3/files')
-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 */