From: Roland McGrath Date: Sat, 31 Aug 2002 21:09:35 +0000 (+0000) Subject: * locale/categories.def (LC_TIME): No more _nl_postload_time. X-Git-Tag: upstream/2.30~21212 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0ba454fccb56eb5890ad692949323af6ad64189c;p=external%2Fglibc.git * locale/categories.def (LC_TIME): No more _nl_postload_time. * locale/setlocale.c (_nl_category_postload): Use weak refs only under [_NL_CURRENT_INDIRECT]. --- diff --git a/ChangeLog b/ChangeLog index 8280ada..f531f07 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2002-08-31 Roland McGrath + + * locale/categories.def (LC_TIME): No more _nl_postload_time. + + * locale/setlocale.c (_nl_category_postload): Use weak refs only under + [_NL_CURRENT_INDIRECT]. + 2002-08-31 Ulrich Drepper * time/tst-ftime_l.c (main): Also test strftime with uselocale. diff --git a/locale/setlocale.c b/locale/setlocale.c index a48f171..56a875e 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