Commit 682f5a35 authored by Olivier Aubert's avatar Olivier Aubert

python: workaround a vlc-config issue on win32 (reported by <nicola.murino@gmail.com>)

parent 012d9633
......@@ -70,6 +70,10 @@ def get_ldflags():
'r').readline().rstrip().split())
if os.sys.platform == 'darwin':
ldflags.append('-lstdc++')
if not '-lvlc' in ldflags:
# Some broken vlc-config can exist (esp. on win32). Try to
# workaround the problem.
ldflags.append('-lvlc')
return ldflags
#source_files = [ 'vlc_module.c', 'vlc_mediacontrol.c',
......
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