mirror of
https://git.freebsd.org/ports.git
synced 2025-06-06 13:20:32 -04:00
- fix thread-safe support (does it make sense to have an option to disable it?) - add R*Tree index OPTION - rework/simplify the port PR: ports/139276 Submitted by: ale Approved by: maintainer
11 lines
318 B
Text
11 lines
318 B
Text
--- 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 */
|