Module Name:    src
Committed By:   joerg
Date:           Fri Apr 29 16:26:48 UTC 2016

Modified Files:
        src/include: locale.h
        src/lib/libc/locale: global_locale.c setlocale_local.h

Log Message:
Go back to just using normal visibility for the locale symbols. Without
an actual specifier like dllimport, protected visibility is unusable.


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/include/locale.h
cvs rdiff -u -r1.24 -r1.25 src/lib/libc/locale/global_locale.c
cvs rdiff -u -r1.16 -r1.17 src/lib/libc/locale/setlocale_local.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/include/locale.h
diff -u src/include/locale.h:1.27 src/include/locale.h:1.28
--- src/include/locale.h:1.27	Thu Mar 17 17:36:32 2016
+++ src/include/locale.h	Fri Apr 29 16:26:48 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: locale.h,v 1.27 2016/03/17 17:36:32 christos Exp $	*/
+/*	$NetBSD: locale.h,v 1.28 2016/04/29 16:26:48 joerg Exp $	*/
 
 /*
  * Copyright (c) 1991, 1993
@@ -106,20 +106,12 @@ void		freelocale(locale_t);
 struct lconv	*localeconv_l(locale_t);
 locale_t	newlocale(int, const char *, locale_t);
 
-#ifdef __clang__
 extern		       struct _locale	_lc_global_locale;
-#else
-extern __dso_protected struct _locale	_lc_global_locale;
-#endif
 #define LC_GLOBAL_LOCALE	(&_lc_global_locale)
 #endif /* _POSIX_SOURCE >= 200809 || _NETBSD_SOURCE */
 
 #if defined(_NETBSD_SOURCE)
-#ifdef __clang__
 extern		       const struct _locale _lc_C_locale;
-#else
-extern __dso_protected const struct _locale _lc_C_locale;
-#endif
 #define LC_C_LOCALE		((locale_t)__UNCONST(&_lc_C_locale))
 #endif
 __END_DECLS

Index: src/lib/libc/locale/global_locale.c
diff -u src/lib/libc/locale/global_locale.c:1.24 src/lib/libc/locale/global_locale.c:1.25
--- src/lib/libc/locale/global_locale.c:1.24	Thu Mar 17 17:38:14 2016
+++ src/lib/libc/locale/global_locale.c	Fri Apr 29 16:26:48 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: global_locale.c,v 1.24 2016/03/17 17:38:14 christos Exp $ */
+/* $NetBSD: global_locale.c,v 1.25 2016/04/29 16:26:48 joerg Exp $ */
 
 /*-
  * Copyright (c)2008 Citrus Project,
@@ -28,7 +28,7 @@
 
 #include <sys/cdefs.h>
 #if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: global_locale.c,v 1.24 2016/03/17 17:38:14 christos Exp $");
+__RCSID("$NetBSD: global_locale.c,v 1.25 2016/04/29 16:26:48 joerg Exp $");
 #endif /* LIBC_SCCS and not lint */
 
 #include <sys/types.h>
@@ -143,9 +143,6 @@ __dso_hidden const struct _locale_cache_
     .numeric_name = _lc_C_locale_name,
 };
 
-#ifndef __clang__
-__dso_protected
-#endif
 struct _locale _lc_global_locale = {
     .cache = &_C_cache,
     .query = { _C_LOCALE },
@@ -174,9 +171,6 @@ struct _locale _lc_global_locale = {
     },
 };
 
-#ifndef __clang__
-__dso_protected
-#endif
 const struct _locale _lc_C_locale = {
     .cache = &_C_cache,
     .query = { _C_LOCALE },

Index: src/lib/libc/locale/setlocale_local.h
diff -u src/lib/libc/locale/setlocale_local.h:1.16 src/lib/libc/locale/setlocale_local.h:1.17
--- src/lib/libc/locale/setlocale_local.h:1.16	Fri Jan 29 15:18:08 2016
+++ src/lib/libc/locale/setlocale_local.h	Fri Apr 29 16:26:48 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: setlocale_local.h,v 1.16 2016/01/29 15:18:08 christos Exp $ */
+/* $NetBSD: setlocale_local.h,v 1.17 2016/04/29 16:26:48 joerg Exp $ */
 
 /*-
  * Copyright (c)2008 Citrus Project,
@@ -85,9 +85,6 @@ int _setlocale_cache(locale_t, struct _l
 __END_DECLS
 
 #ifdef _LIBC
-#if 0
-extern __dso_protected struct _locale	_lc_global_locale;
-#endif
 extern __dso_hidden const struct _locale_cache_t _C_cache;
 
 static __inline struct _locale *

Reply via email to