mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-28 06:26:12 -04:00
17 lines
545 B
C
17 lines
545 B
C
$NetBSD: patch-src_mapi_u__current.h,v 1.1 2015/09/11 16:27:30 tnn Exp $
|
|
|
|
NetBSD only supports zero-initialized initial-exec tls variables in conjuction
|
|
with dlopen(3) at the moment.
|
|
|
|
--- src/mapi/u_current.h.orig 2015-09-02 17:06:23.000000000 +0000
|
|
+++ src/mapi/u_current.h
|
|
@@ -68,7 +68,7 @@ u_current_get_context_internal(void);
|
|
static inline const struct mapi_table *
|
|
u_current_get_table(void)
|
|
{
|
|
-#ifdef GLX_USE_TLS
|
|
+#if defined(GLX_USE_TLS) && !defined(__NetBSD__)
|
|
return u_current_table;
|
|
#else
|
|
return (likely(u_current_table) ?
|