diff options
author | Luca Bruno <lucab@debian.org> | 2010-01-23 12:39:46 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2010-01-23 12:39:46 +0100 |
commit | 5f22436694731782e7a91737d4b9b34de6f804dc (patch) | |
tree | 6eca897f53e794b7483fe63a5f9e676a17010ba9 /gst | |
parent | 589fa0535000d095d6fc295778079f9d7a52d035 (diff) |
Fix importing of gst module on GNU/kFreeBSD
Diffstat (limited to 'gst')
-rw-r--r-- | gst/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/__init__.py b/gst/__init__.py index f29ede2..2521dcc 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': + if osname == 'Linux' or osname == 'SunOS' or osname == 'FreeBSD' or osname == 'GNU/kFreeBSD': machinename = os.uname()[4] if machinename == 'mips' or machinename == 'mips64': RTLD_GLOBAL = 0x4 |