Hi

Bug report - is there a better place to post these?

Shapely has some issues if when not running on linux with libc.so.6 because
libc.so.6 is hard-coded into shapely/geos/__init__.py and not all platforms
use v6. Solaris for example uses libc.so.1

can replace this..

free = CDLL('libc.so.6').free

with this which is more portable...

import platform
libc = platform.libc_ver()
free = CDLL(libc[0]+'.so.'+libc[1]).free


Cheers
_______________________________________________
Community mailing list
[email protected]
http://lists.gispython.org/mailman/listinfo/community

Reply via email to