aboutsummaryrefslogtreecommitdiff
path: root/lang/ferite/files/patch-libs::aphex::src::aphex_thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'lang/ferite/files/patch-libs::aphex::src::aphex_thread.c')
-rw-r--r--lang/ferite/files/patch-libs::aphex::src::aphex_thread.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/lang/ferite/files/patch-libs::aphex::src::aphex_thread.c b/lang/ferite/files/patch-libs::aphex::src::aphex_thread.c
deleted file mode 100644
index 48fdee8a7ace..000000000000
--- a/lang/ferite/files/patch-libs::aphex::src::aphex_thread.c
+++ /dev/null
@@ -1,14 +0,0 @@
---- libs/aphex/src/aphex_thread.c.orig Sat Nov 23 05:28:53 2002
-+++ libs/aphex/src/aphex_thread.c Tue Jan 14 08:40:17 2003
-@@ -134,7 +134,11 @@
- pthread_mutex_init( &mutex->mutex, NULL );
- #else
- pthread_mutexattr_init( &mutex->attr );
-+#if defined(__FreeBSD__)
-+ pthread_mutexattr_setkind_np( &mutex->attr, PTHREAD_MUTEX_RECURSIVE );
-+#else
- pthread_mutexattr_setkind_np( &mutex->attr, PTHREAD_MUTEX_RECURSIVE_NP );
-+#endif
- pthread_mutex_init( &mutex->mutex, &mutex->attr );
- #endif
- mutex->recursive = 1;