[vlc-commits] commit: python: look for libvlc.so.2 instead of libvlc.so (Olivier Aubert )

git at videolan.org git at videolan.org
Tue Apr 20 17:33:02 CEST 2010


vlc/python | branch: master | Olivier Aubert <olivier.aubert at liris.cnrs.fr> | Tue Apr 20 17:32:37 2010 +0200| [9fc3d103ca74ed7633dfd38632d95a640e0c9795] | committer: Olivier Aubert 

python: look for libvlc.so.2 instead of libvlc.so

> http://git.videolan.org/gitweb.cgi/vlc/python.git/?a=commit;h=9fc3d103ca74ed7633dfd38632d95a640e0c9795
---

 header.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/header.py b/header.py
index 84f7867..cdcf1d3 100755
--- a/header.py
+++ b/header.py
@@ -43,7 +43,7 @@ build_date="This will be replaced by the build date"
 detected_plugin_path=None
 
 if sys.platform == 'linux2':
-    dll=ctypes.CDLL('libvlc.so')
+    dll=ctypes.CDLL('libvlc.so.2')
 elif sys.platform == 'win32':
     import ctypes.util
     import os



More information about the vlc-commits mailing list