2013-09-26 17:14:40 +02:00

15 lines
396 B
Plaintext

$NetBSD: patch-ac,v 1.3 2010/12/03 18:27:06 drochner Exp $
--- gst/__init__.py.in.orig 2009-01-06 22:44:44.000000000 +0100
+++ gst/__init__.py.in
@@ -179,6 +179,9 @@ except ImportError:
elif osname == 'Darwin':
RTLD_GLOBAL = 0x8
RTLD_LAZY = 0x1
+ elif osname == 'NetBSD':
+ RTLD_GLOBAL = 0x100
+ RTLD_LAZY = 0x1
del os
except:
RTLD_GLOBAL = -1