Problem with sources - socketmodule.c

Laurent POINTAL pointal at lure.u-psud.fr
Fri Aug 27 04:07:20 EDT 1999


Hello,

I tried to recompile Python 1.5.2 on my home Linux box.
After a ./configure --with-threads, I tried a make... which fail on
the socketmodule.c.

Looking after the error, it was a problem of the number of arguments
for gethost_by_name_r (and for gethotstbyaddr_r). 
The ./configure has correctly tested my headers, found a 5 arguments
gethost_by_name_r, and defined HAVE_GETHOSTBYNAME_R5_ARG.

But in the socketmodule.c, the source begin by undefining the
preprocessor symbols HAVE_GETHOSTBYNAME_* set by ./configure, and set
them depending on the platform... and for linux it automatically set
it to HAVE_GETHOSTBYNAME_R6_ARG. Which is false on the Slackware4
Linux.

Currently, I have put a #if !defined(linux) / #endif around the
socketmodule.c code which modify HAVE_GETHOSTBYNAME_* and all works
well.

Where can I address that so the original source be modified to NOT
undefine the ./configure symbols in the case of a linux platform (I
dont know if other Unixes platform use ./configure too).

Thanks.

A+

Laurent.

Note:
Linux 2.2.6
libc.so.5.4.46
egcs 2.91.66
gcc 2.7.2.3
netdb.h v1.4 1995/08/14

---
Laurent POINTAL - CNRS/LURE - Service Informatique Experiences
Tel/fax: 01 64 46 82 80 / 01 64 46 41 48
email  : pointal at lure.u-psud.fr  ou  lpointal at planete.net 




More information about the Python-list mailing list