gst/__init__.py: Import modules in the correct order, i.e. libxml2 before

Original commit message from CVS:
Patch by: Alexander Wirt <formorer at debian dot org>
* gst/__init__.py:
Import modules in the correct order, i.e. libxml2 before
GStreamer stuff, to prevent unresolved symbols. Fixes bug #553131.
This commit is contained in:
Alexander Wirt 2008-10-05 08:14:42 +00:00 committed by Sebastian Dröge
parent 94b4bf7f41
commit 9fc25718b5
2 changed files with 10 additions and 2 deletions

View file

@ -1,3 +1,11 @@
2008-10-05 Sebastian Dröge <sebastian.droege@collabora.co.uk>
Patch by: Alexander Wirt <formorer at debian dot org>
* gst/__init__.py:
Import modules in the correct order, i.e. libxml2 before
GStreamer stuff, to prevent unresolved symbols. Fixes bug #553131.
=== release 0.10.13 ===
2008-10-03 Jan Schmidt <jan.schmidt@sun.com>

View file

@ -167,12 +167,12 @@ except:
if RTLD_GLOBAL != -1 and RTLD_LAZY != -1:
sys.setdlopenflags(RTLD_LAZY | RTLD_GLOBAL)
from _gst import *
import interfaces
try:
import libxml2
except:
pass
from _gst import *
import interfaces
version = get_gst_version