freebsd-ports/deskutils/strigi/files/patch-src__streams__strigi__strigi_thread.h
Max Brazhnikov 4d55666226 Update devel/cmake to 2.6.3.
- Set INSTALL_TARGET for cmake based ports to install/strip. This solves
  problem of installing non-stripped binaries (noticed by delphij for KDE4 ports)
- Fix linking to -lpthread for cmake based ports (KDE4 ports are affected mostly)
2009-03-24 19:11:23 +00:00

11 lines
416 B
C

--- ./src/streams/strigi/strigi_thread.h.orig 2009-01-13 00:50:17.000000000 +0300
+++ ./src/streams/strigi/strigi_thread.h 2009-03-21 00:01:51.000000000 +0300
@@ -23,7 +23,7 @@
#include <config.h>
-#if defined(CMAKE_HAVE_PTHREAD_CREATE)
+#if defined(CMAKE_HAVE_PTHREAD_H)
#include <pthread.h>
#define STRIGI_MUTEX_DEFINE(x) pthread_mutex_t x
#define STRIGI_MUTEX_INIT(x) pthread_mutex_init(x, 0)