# HG changeset patch # User Paul Eggert # Date 1356924319 28800 # Node ID 45ae6ce33a1f97e2c3b8fe600d16c939a2f1e5e1 # Parent f21c2ecfb7d112a0b3afdd57480226727f254c9b regex: remove unnecessary dependency on localcharset.h * lib/regex_internal.h [!_LIBC]: Don't include localcharset.h; hasn't been needed for years. * modules/regex (Depends-on): Remove localcharset. diff -r f21c2ecfb7d1 -r 45ae6ce33a1f ChangeLog --- a/ChangeLog Sun Dec 30 14:49:05 2012 -0800 +++ b/ChangeLog Sun Dec 30 19:25:19 2012 -0800 @@ -1,5 +1,10 @@ 2012-12-30 Paul Eggert + regex: remove unnecessary dependency on localcharset.h + * lib/regex_internal.h [!_LIBC]: Don't include localcharset.h; + hasn't been needed for years. + * modules/regex (Depends-on): Remove localcharset. + regex: revert single-byte change * lib/regexec.c (check_node_accept_bytes): Revert previous change to this function. This was alredy fixed in a different way, at diff -r f21c2ecfb7d1 -r 45ae6ce33a1f lib/regex_internal.h --- a/lib/regex_internal.h Sun Dec 30 14:49:05 2012 -0800 +++ b/lib/regex_internal.h Sun Dec 30 19:25:19 2012 -0800 @@ -27,9 +27,6 @@ #include #include -#ifndef _LIBC -# include "localcharset.h" -#endif #include #include #include diff -r f21c2ecfb7d1 -r 45ae6ce33a1f modules/regex --- a/modules/regex Sun Dec 30 14:49:05 2012 -0800 +++ b/modules/regex Sun Dec 30 19:25:19 2012 -0800 @@ -18,7 +18,6 @@ alloca-opt [test $ac_use_included_regex = yes] btowc [test $ac_use_included_regex = yes] gettext-h [test $ac_use_included_regex = yes] -localcharset [test $ac_use_included_regex = yes] malloc-gnu [test $ac_use_included_regex = yes] memcmp [test $ac_use_included_regex = yes] memmove [test $ac_use_included_regex = yes]