[PATCH] Fix import on GNU/Hurd

Emilio Pozuelo Monfort pochu27 at gmail.com
Mon Mar 15 09:26:25 UTC 2010


---
 gst/__init__.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/gst/__init__.py b/gst/__init__.py
index 2521dcc..2c439e3 100644
--- a/gst/__init__.py
+++ b/gst/__init__.py
@@ -166,7 +166,7 @@ except ImportError:
     RTLD_LAZY = -1
     import os
     osname = os.uname()[0]
-    if osname == 'Linux' or osname == 'SunOS' or osname == 'FreeBSD' or osname == 'GNU/kFreeBSD':
+    if osname == 'Linux' or osname == 'SunOS' or osname == 'FreeBSD' or osname == 'GNU/kFreeBSD' or osname == 'GNU':
         machinename = os.uname()[4]
         if machinename == 'mips' or machinename == 'mips64':
             RTLD_GLOBAL = 0x4
-- 
1.7.0


--------------040605090308040205090101--





More information about the Pkg-gstreamer-maintainers mailing list