Bruno Haible <[EMAIL PROTECTED]> writes:
> Simon Josefsson wrote:
>> I was thinking of a similar situation with
>> strdup: I thought many modules used strdup without depending on the
>> strdup module
>
> Huh? The modules canon-host, getaddrinfo, glob, hard-locale, iconvme, userspec
> all depend on
Simon Josefsson wrote:
> I was thinking of a similar situation with
> strdup: I thought many modules used strdup without depending on the
> strdup module
Huh? The modules canon-host, getaddrinfo, glob, hard-locale, iconvme, userspec
all depend on strdup. And getpass doesn't, because it uses strdup
Jim Meyering <[EMAIL PROTECTED]> writes:
> Simon Josefsson <[EMAIL PROTECTED]> wrote:
>
>> Jim Meyering <[EMAIL PROTECTED]> writes:
>>
>>> I've just discovered/fixed a build problem with the getaddrinfo module.
>>> It didn't depend on the socklen module (for the declaration of socklen_t).
>>> So I
Simon Josefsson <[EMAIL PROTECTED]> wrote:
> Jim Meyering <[EMAIL PROTECTED]> writes:
>
>> I've just discovered/fixed a build problem with the getaddrinfo module.
>> It didn't depend on the socklen module (for the declaration of socklen_t).
>> So I've merged these changes from coreutils:
>
> Hm. s
Jim Meyering <[EMAIL PROTECTED]> writes:
> I've just discovered/fixed a build problem with the getaddrinfo module.
> It didn't depend on the socklen module (for the declaration of socklen_t).
> So I've merged these changes from coreutils:
Hm. socklen_t is POSIX. Shouldn't getaddrinfo assume a PO
Paul Eggert <[EMAIL PROTECTED]> wrote:
> Bruno Haible <[EMAIL PROTECTED]> writes:
>
>> This is redundant. The module dependency from 'getaddrinfo' to 'socklen'
>> already implies that gl_SOCKLEN_T must be invoked from configure.ac,
>> directly or indirectly. No need to repeat the module dependenci
Bruno Haible <[EMAIL PROTECTED]> writes:
> This is redundant. The module dependency from 'getaddrinfo' to 'socklen'
> already implies that gl_SOCKLEN_T must be invoked from configure.ac,
> directly or indirectly. No need to repeat the module dependencies in the
> *.m4 files.
Right you are. I und
Jim Meyering wrote:
> # Prerequisites of lib/getaddrinfo.h and lib/getaddrinfo.c.
> AC_DEFUN([gl_PREREQ_GETADDRINFO], [
> + AC_REQUIRE([gl_SOCKLEN_T])
>AC_REQUIRE([gl_C_RESTRICT])
>AC_REQUIRE([gl_SOCKET_FAMILIES])
This is redundant. The module dependency from 'getaddrinfo' to 'socklen'
I've just discovered/fixed a build problem with the getaddrinfo module.
It didn't depend on the socklen module (for the declaration of socklen_t).
So I've merged these changes from coreutils:
2005-09-23 Jim Meyering <[EMAIL PROTECTED]>
* modules/getaddrinfo (Depends-on): Add socklen.
2