Commit 93b45658 authored by Olivier Aubert's avatar Olivier Aubert

python bindings: do not link with unecessary libs (spotted by courmisch)

parent 983312cb
...@@ -71,7 +71,7 @@ def get_cflags(): ...@@ -71,7 +71,7 @@ def get_cflags():
def get_ldflags(): def get_ldflags():
vlcconfig=get_vlcconfig() vlcconfig=get_vlcconfig()
if vlcconfig is None: if vlcconfig is None:
return [ '-lvlc', '-lvlc-control' ] return [ '-lvlc-control' ]
else: else:
ldflags = [] ldflags = []
if os.sys.platform == 'darwin': if os.sys.platform == 'darwin':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment