Hi, it shouldn't need the development packages.
PyOpenGL uses ctypes.util.find_library, which resolves library names.
What happens if you run the following two lines of Python code:
>>> from ctypes import util
>>> util.find_library("GL")
It *should* print 'libGL.so.1'. The docs also suggest that on Linux,
find_library uses ldconfig, which should make it independent of
development symlinks.
best,
Torsten
--
.: Torsten Marek
.: http://shlomme.diotavelli.net
.: [email protected] -- GnuPG: 1024D/A244C858
signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil
_______________________________________________ Python-modules-team mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/python-modules-team

