diff --git a/ChangeLog b/ChangeLog index 0c11c3063d..395f57e0a6 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 5defe84f01..42f89ff712 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);