]> git.sesse.net Git - vlc/commitdiff
bindings/mediacontrol-python/setup.py: deactivate PIC support for
authorOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Wed, 19 Jul 2006 08:59:26 +0000 (08:59 +0000)
committerOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Wed, 19 Jul 2006 08:59:26 +0000 (08:59 +0000)
linux also (I do no quite know the current status, but it works for me this way at the moment).

bindings/mediacontrol-python/setup.py

index d3b4d0d6c68757d42a992809fc356bda43432922..2736569bd9298952c468e6d29814a523f52bdbee 100644 (file)
@@ -21,8 +21,10 @@ except KeyError:
 if not srcdir:
     srcdir = '.'
 
-if os.sys.platform in ('win32', 'darwin'):
+#if os.sys.platform in ('win32', 'darwin'):
     # Do not use PIC version on win32 and Mac OS X
+if True:
+    # PIC version seems to be disabled on all platforms
     vlclib=os.path.join( top_builddir, 'src', 'libvlc.a' )
     picflag=''
 else: