Simon Josefsson <[EMAIL PROTECTED]> wrote: > Yoann Vandoorselaere <[EMAIL PROTECTED]> writes: > >> warning: getaddrinfo is LGPL but depend on intprops which is GPL >> warning: inttostr is LGPL but depend on intprops which is GPL > > Jim, Paul, is it possible to have intprops be under LGPL? The > alternative solution I see is to revert the patch for getaddrinfo that > made it use inttostr (which needs intprops), and use sprintf instead.
Here's a work-around: remove the inclusion of intprops.h and add a simpler, slightly pessimistic definition instead: #define INT_BUFLEN_BOUND(t) ((sizeof (t) * CHAR_BIT) * 146 / 485 + 1 + 1)