Files
pkgsrc-ng/www/webkit24-gtk/patches/patch-ai
2016-01-21 23:42:40 +01:00

18 lines
539 B
Plaintext

$NetBSD: patch-ai,v 1.1 2015/07/12 00:37:47 wiz Exp $
--- Source/WTF/wtf/ThreadIdentifierDataPthreads.cpp.orig 2013-08-03 16:10:38.000000000 +0000
+++ Source/WTF/wtf/ThreadIdentifierDataPthreads.cpp
@@ -39,6 +39,12 @@
#if OS(HURD)
// PTHREAD_KEYS_MAX is not defined in bionic nor in Hurd, so explicitly define it here.
#define PTHREAD_KEYS_MAX 1024
+#elif OS(NETBSD)
+#include <limits.h>
+// PTHREAD_KEYS_MAX is not defined in 5.x
+#ifndef PTHREAD_KEYS_MAX
+#define PTHREAD_KEYS_MAX 256
+#endif
#else
#include <limits.h>
#endif