add libtool uninstalled lib paths - yuck

Original commit message from CVS:
add libtool uninstalled lib paths - yuck
This commit is contained in:
David I. Lehn 2002-03-24 07:57:00 +00:00
parent caa386262f
commit be74250a11
2 changed files with 24 additions and 0 deletions

View file

@ -1 +1,13 @@
import sys
import os
"libtool lib location"
devloc = os.path.join(__path__[0],'.libs')
if os.path.exists(devloc):
sys.path.append(devloc)
sys.setdlopenflags(1)
del devloc, sys, os
from _gstreamer import *

View file

@ -1 +1,13 @@
import sys
import os
"libtool lib location"
devloc = os.path.join(__path__[0],'.libs')
if os.path.exists(devloc):
sys.path.append(devloc)
sys.setdlopenflags(1)
del devloc, sys, os
from _gstreamer import *