[issue9998] find_library should search LD_LIBRARY_PATH on linux

2011-06-20 Thread Brian Larsen
Brian Larsen added the comment: Hey I have this problem too. I would love to see this fixed. -- nosy: +Brian.Larsen ___ Python tracker ___ __

[issue9998] find_library should search LD_LIBRARY_PATH on linux

2011-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3 -Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list ma

[issue9998] find_library should search LD_LIBRARY_PATH on linux

2010-09-30 Thread Jonathan Niehof
New submission from Jonathan Niehof : It's come up on occasion (#2936, http://osdir.com/ml/python.ctypes/2008-05/msg00046.html) that ctypes find_library doesn't search LD_LIBRARY_PATH for libraries, which is different behaviour from the runtime linker. The attached patch adds this search. Unf