From 78dc74984d24f8fcaf8c48c9e4eb04a5ed27d72a Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Thu, 1 Mar 2007 13:47:12 +0000 Subject: [PATCH] gst/interfacesmodule.c: initialize pygobject in the gst.interfaces modules. The absence of it causes segfaults on Sol... Original commit message from CVS: reviewed by: Edward Hervey * gst/interfacesmodule.c: (initinterfaces): initialize pygobject in the gst.interfaces modules. The absence of it causes segfaults on Solaris and MIPS machines. Fixes #343980 --- ChangeLog | 9 +++++++++ gst/interfacesmodule.c | 2 ++ 2 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index 0c11c30..395f57e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2007-03-01 Jan Schmidt + + reviewed by: Edward Hervey + + * gst/interfacesmodule.c: (initinterfaces): + initialize pygobject in the gst.interfaces modules. The absence of it + causes segfaults on Solaris and MIPS machines. + Fixes #343980 + 2007-02-27 Michael Smith * gst/base.defs: diff --git a/gst/interfacesmodule.c b/gst/interfacesmodule.c index 5defe84..42f89ff 100644 --- a/gst/interfacesmodule.c +++ b/gst/interfacesmodule.c @@ -38,6 +38,8 @@ initinterfaces (void) { PyObject *m, *d; + init_pygobject (); + m = Py_InitModule ("interfaces", pyinterfaces_functions); d = PyModule_GetDict (m); -- 2.7.4