71accc1a90
changes: minor fixes
22 lines
646 B
Text
22 lines
646 B
Text
$NetBSD: patch-af,v 1.8 2010/06/16 16:35:57 drochner Exp $
|
|
|
|
--- pixman/pixman-compiler.h.orig 2010-05-12 20:15:42.000000000 +0000
|
|
+++ pixman/pixman-compiler.h
|
|
@@ -70,7 +70,7 @@
|
|
#endif
|
|
|
|
/* TLS */
|
|
-#if defined(TOOLCHAIN_SUPPORTS__THREAD)
|
|
+#if defined(TOOLCHAIN_SUPPORTS__THREAD) && !defined(__NetBSD__)
|
|
|
|
# define PIXMAN_DEFINE_THREAD_LOCAL(type, name) \
|
|
static __thread type name
|
|
@@ -149,7 +149,7 @@ extern __stdcall int ReleaseMutex (void
|
|
# define PIXMAN_GET_THREAD_LOCAL(name) \
|
|
(&name)
|
|
|
|
-#elif defined(HAVE_PTHREAD_SETSPECIFIC)
|
|
+#elif defined(HAVE_PTHREAD_SETSPECIFIC) || defined(__NetBSD__)
|
|
|
|
#include <pthread.h>
|
|
|