pkgsrc/multimedia/py-gstreamer0.10/patches/patch-ac
drochner fc8acd208b update to 0.10.14
changes:
Handle keep-refcount for GBoxed arguments
Mark gst.message* that take ownership of the gst.Structure/gst.TagList
Wrap new API in Core and Base
Various other bug fixes and improvements
2009-01-26 10:44:26 +00:00

14 lines
390 B
Text

$NetBSD: patch-ac,v 1.2 2009/01/26 10:44:26 drochner Exp $
--- gst/__init__.py.orig 2009-01-06 22:44:44.000000000 +0100
+++ gst/__init__.py
@@ -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