package neon tag 308178 + moreinfo thanks Hi Bastian,
On Sun, 2005-05-08 at 18:23 +0200, Bastian Blank wrote: > Package: neon > Version: 0.24.7.dfsg-2 > Severity: serious Strange as 0.24.7.dfsg-1 compiled without problems, and the changes between -1 and -2 are text based ones (debian/control, debian/copyright, a new manpage, etc). There's only one line which is changed in source, but that put back the state in -0.2; thus I think it is also OK. > > checking for working AI_ADDRCONFIG... Terminated > > make: *** [build-stamp] Error 1 Strange, it seems something killed the process checking for a working AI_ADDRCONFIG. Do you know any limits maybe on the machine? configure should say yes or no, but terminated makes me wonder. Can you please reschedule its building in the s390 queue? Also please try to compile the attached C source, this is what the configure does. Regards, Laszlo/GCS
/* end confdefs.h. */ #include <netdb.h> int main () { struct addrinfo hints = {0}, *result; hints.ai_flags = AI_ADDRCONFIG; if (getaddrinfo("localhost", NULL, &hints, &result) != 0) return 1; ; return 0; }