aboutsummaryrefslogtreecommitdiffstats
path: root/textproc
diff options
context:
space:
mode:
authorkwm <kwm@FreeBSD.org>2011-10-26 02:17:32 +0800
committerkwm <kwm@FreeBSD.org>2011-10-26 02:17:32 +0800
commit07a0a8ad0bfb3019cdfc16ea4a8240181223a988 (patch)
treec40ae2f9da85d57429caf5dbe7fa18aa0eb66c43 /textproc
parent890c244ea30003eb7276e1a6c1ce4c0495c518af (diff)
downloadfreebsd-ports-gnome-07a0a8ad0bfb3019cdfc16ea4a8240181223a988.tar.gz
freebsd-ports-gnome-07a0a8ad0bfb3019cdfc16ea4a8240181223a988.tar.zst
freebsd-ports-gnome-07a0a8ad0bfb3019cdfc16ea4a8240181223a988.zip
Remove obsolete patch, for freebsd6.
PR: ports/162011 Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
Diffstat (limited to 'textproc')
-rw-r--r--textproc/libxml2/files/patch-threads.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/textproc/libxml2/files/patch-threads.c b/textproc/libxml2/files/patch-threads.c
deleted file mode 100644
index a1ab0b3f27ec..000000000000
--- a/textproc/libxml2/files/patch-threads.c
+++ /dev/null
@@ -1,22 +0,0 @@
---- threads.c.orig 2009-11-30 12:43:34.000000000 +0100
-+++ threads.c 2009-11-30 12:44:54.000000000 +0100
-@@ -26,6 +26,7 @@
- #endif
- #ifdef HAVE_PTHREAD_H
- #include <pthread.h>
-+#include <osreldate.h>
- #elif defined HAVE_WIN32_THREADS
- #include <windows.h>
- #ifndef HAVE_COMPILER_TLS
-@@ -46,6 +47,11 @@
-
- #ifdef HAVE_PTHREAD_H
-
-+#if __FreeBSD_version < 700000
-+int pthread_equal() __attribute__ ((weak));
-+#define pthread_equal(a,b) ((pthread_equal) ? pthread_equal(a,b) : 1)
-+#endif
-+
- static int libxml_is_threaded = -1;
- #ifdef __GNUC__
- #ifdef linux