summaryrefslogtreecommitdiff
path: root/dev-cpp/clucene/files/clucene-2.3.3.4-add-missing-include-pthread-h.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-cpp/clucene/files/clucene-2.3.3.4-add-missing-include-pthread-h.patch')
-rw-r--r--dev-cpp/clucene/files/clucene-2.3.3.4-add-missing-include-pthread-h.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/dev-cpp/clucene/files/clucene-2.3.3.4-add-missing-include-pthread-h.patch b/dev-cpp/clucene/files/clucene-2.3.3.4-add-missing-include-pthread-h.patch
deleted file mode 100644
index b702eec7..00000000
--- a/dev-cpp/clucene/files/clucene-2.3.3.4-add-missing-include-pthread-h.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-add missing #include <pthread.h>
-
-From: eroen <eroen@occam.eroen.eu>
-
-
----
- src/shared/CLucene/LuceneThreads.h | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/src/shared/CLucene/LuceneThreads.h b/src/shared/CLucene/LuceneThreads.h
-index 97072ee..04ceeb2 100644
---- a/src/shared/CLucene/LuceneThreads.h
-+++ b/src/shared/CLucene/LuceneThreads.h
-@@ -7,6 +7,10 @@
- #ifndef _LuceneThreads_h
- #define _LuceneThreads_h
-
-+#if defined(_CL_HAVE_PTHREAD)
-+#include <pthread.h>
-+#endif
-+
-
- CL_NS_DEF(util)
- class CLuceneThreadIdCompare;