Paolo Bonzini wrote:
> 2009-01-20 Paolo Bonzini <[email protected]>
>
> regex: do not depend on obsolete modules.
> * modules/regex: Remove memcmp and memmove.
>
> diff --git a/modules/regex b/modules/regex
> index c6a1235..86a19fb 100644
> --- a/modules/regex
> +++ b/modules/regex
> @@ -18,8 +18,6 @@ extensions
> gettext-h
> localcharset
> malloc
> -memcmp
> -memmove
> mbrtowc
> mbsinit
> stdbool
This is not needed. gnulib-tool by default ignores dependencies to obsolete
modules already.
$ ./gnulib-tool --help
...
--with-obsolete Include obsolete modules when they occur among the
dependencies. By default, dependencies to obsolete
modules are ignored.
...
Your patch causes missing dependencies when people voluntarily use the
--with-obsolete option.
Bruno