This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Per.Rosengren
Recipients Jeff.Blaine, Per.Rosengren, alex_lai, drdevious, eric.araujo
Date 2011-11-17.04:41:48
SpamBayes Score 2.2762935e-05
Marked as misclassified No
Message-id <1321504909.81.0.681310521069.issue12013@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2011-11-17 04:41:49Per.Rosengrensetrecipients: + Per.Rosengren, eric.araujo, alex_lai, drdevious, Jeff.Blaine
2011-11-17 04:41:49Per.Rosengrensetmessageid: <1321504909.81.0.681310521069.issue12013@psf.upfronthosting.co.za>
2011-11-17 04:41:49Per.Rosengrenlinkissue12013 messages
2011-11-17 04:41:48Per.Rosengrencreate