[vlc-devel] commit: python bindings: do not link with unecessary libs ( spotted by courmisch) (Olivier Aubert )
git version control
git at videolan.org
Tue Mar 4 13:49:32 CET 2008
vlc | branch: master | Olivier Aubert <olivier.aubert at liris.cnrs.fr> | Tue Mar 4 13:48:30 2008 +0100| [93b4565847b0f951ac5cf036d14d5b0544cfe64c]
python bindings: do not link with unecessary libs (spotted by courmisch)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=93b4565847b0f951ac5cf036d14d5b0544cfe64c
---
bindings/python/setup.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/bindings/python/setup.py b/bindings/python/setup.py
index 8efd552..5589b7f 100644
--- a/bindings/python/setup.py
+++ b/bindings/python/setup.py
@@ -71,7 +71,7 @@ def get_cflags():
def get_ldflags():
vlcconfig=get_vlcconfig()
if vlcconfig is None:
- return [ '-lvlc', '-lvlc-control' ]
+ return [ '-lvlc-control' ]
else:
ldflags = []
if os.sys.platform == 'darwin':
More information about the vlc-devel
mailing list