"James Youngman" <[EMAIL PROTECTED]> writes: > http://savannah.gnu.org/bugs/?func=detailitem&item_id=15587 > > Am I using gnulib incorrectly? I can't reproduce this problem sice my > development system only has glibc-2.3.2.
Hard to say, but how about if we simply make __re_error_msgid and __re_error_msgid_idx static instead of extern with attribute_hidden? The attribute_hidden stuff is a relic of the old regex implementation, as far as I can see. The idea would be to remove the declarations of these two variables from regex_internal.h, replace "const char __re_error_msgid[] attribute_hidden =" with "static const char __re_error_msgid[] =", and similarly for the other variable. _______________________________________________ bug-gnulib mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-gnulib
