diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-31 21:09:35 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-31 21:09:35 +0000 |
commit | 0ba454fccb56eb5890ad692949323af6ad64189c (patch) | |
tree | d1139cbbb56944e335c68c0f14af93fb3fc4a23e /locale | |
parent | 245cc7735d2bc9308a13d55e4270e913b0b0138b (diff) | |
download | glibc-0ba454fccb56eb5890ad692949323af6ad64189c.tar glibc-0ba454fccb56eb5890ad692949323af6ad64189c.tar.gz glibc-0ba454fccb56eb5890ad692949323af6ad64189c.tar.bz2 glibc-0ba454fccb56eb5890ad692949323af6ad64189c.zip |
* locale/categories.def (LC_TIME): No more _nl_postload_time.
* locale/setlocale.c (_nl_category_postload): Use weak refs only under
[_NL_CURRENT_INDIRECT].
Diffstat (limited to 'locale')
-rw-r--r-- | locale/setlocale.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/locale/setlocale.c b/locale/setlocale.c index a48f171c92..56a875e378 100644 --- a/locale/setlocale.c +++ b/locale/setlocale.c @@ -86,11 +86,17 @@ const size_t _nl_category_name_sizes[] = }; +#ifdef NL_CURRENT_INDIRECT +# define WEAK_POSTLOAD(postload) weak_extern (postload) +#else +# define WEAK_POSTLOAD(postload) /* Need strong refs in static linking. */ +#endif + /* Declare the postload functions used below. */ #undef NO_POSTLOAD #define NO_POSTLOAD _nl_postload_ctype /* Harmless thing known to exist. */ #define DEFINE_CATEGORY(category, category_name, items, postload) \ -extern void postload (void); weak_extern (postload) +extern void postload (void); WEAK_POSTLOAD (postload) #include "categories.def" #undef DEFINE_CATEGORY #undef NO_POSTLOAD |