Re: [PATCH] Fix arpa_inet bugs found when installing coreutils 7.2 on Solaris 8.

2009-04-03 Thread Paul Eggert
Bruno Haible writes: > There is no point for gnulib to redefine a function that is present in libnsl > (and hopefully working). IMO the fix is therefore to add a 'Link' section to > the module description module/inet_ntop, and determine its value, say, > INET_NTOP_LIB, in the gl_INET_NTOP macro.

Re: [PATCH] Fix arpa_inet bugs found when installing coreutils 7.2 on Solaris 8.

2009-04-03 Thread Bruno Haible
Hello Paul, > I installed the following patch to gnulib, to fix the following > symptoms when trying to build coreutils 7.2 on Solaris 8: > > inet_ntop.c:73: error: conflicting types for 'inet_ntop' > /usr/include/arpa/inet.h:55: error: previous declaration of 'inet_ntop' was > here > make[4]: *

Re: [PATCH] Fix arpa_inet bugs found when installing coreutils 7.2 on Solaris 8.

2009-04-02 Thread Jim Meyering
Paul Eggert wrote: > I installed the following patch to gnulib, to fix the following > symptoms when trying to build coreutils 7.2 on Solaris 8: > ... > * lib/arpa_inet.in.h (inet_ntop): Define to rpl_inet_ntop when > we implement it, to avoid colliding with Solaris 8's incompatible > declaration o

[PATCH] Fix arpa_inet bugs found when installing coreutils 7.2 on Solaris 8.

2009-04-02 Thread Paul Eggert
I installed the following patch to gnulib, to fix the following symptoms when trying to build coreutils 7.2 on Solaris 8: inet_ntop.c:73: error: conflicting types for 'inet_ntop' /usr/include/arpa/inet.h:55: error: previous declaration of 'inet_ntop' was here make[4]: *** [inet_ntop.o] Error 1 --