From 9fc25718b50d2d0ee39ed697fd7b64c4a5c36441 Mon Sep 17 00:00:00 2001 From: Alexander Wirt Date: Sun, 5 Oct 2008 08:14:42 +0000 Subject: [PATCH] gst/__init__.py: Import modules in the correct order, i.e. libxml2 before Original commit message from CVS: Patch by: Alexander Wirt * gst/__init__.py: Import modules in the correct order, i.e. libxml2 before GStreamer stuff, to prevent unresolved symbols. Fixes bug #553131. --- ChangeLog | 8 ++++++++ gst/__init__.py | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 11a6a37..6c90737 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-10-05 Sebastian Dröge + + Patch by: Alexander Wirt + + * 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 diff --git a/gst/__init__.py b/gst/__init__.py index 3f41a21..d69e5e1 100644 --- a/gst/__init__.py +++ b/gst/__init__.py @@ -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 -- 2.7.4