Per Rosengren <per.roseng...@gmail.com> added the comment:

On Linux:
>nm -C /lib/libc.so.6 |grep ' inet_aton'
00000000000cbce0 W inet_aton

This means that when Python is build with GCC (like on linux), inet_aton
is in system libc. 

If you build with GCC in solaris, inet_aton will be taken from the GCC lib dir. 
You need to put that GCC lib dir in your LD_LIBRARY_PATH when you run Python.

----------
nosy: +Per.Rosengren

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue12013>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to