From: Thibault Saunier Date: Tue, 9 Aug 2011 15:16:44 +0000 (+0200) Subject: pyges: link against pygst and use GstMiniObject X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0e437d4069b64d6af36f5fe47429fb6e440a7d17;p=platform%2Fupstream%2Fgst-editing-services.git pyges: link against pygst and use GstMiniObject --- diff --git a/bindings/python/ges.override b/bindings/python/ges.override index e1983ee..82eada7 100644 --- a/bindings/python/ges.override +++ b/bindings/python/ges.override @@ -3,9 +3,11 @@ headers #define NO_IMPORT_PYGOBJECT #include +#include #include #include +#include #include #include diff --git a/bindings/python/gesmodule.c b/bindings/python/gesmodule.c index 35bddd7..fee7b7d 100644 --- a/bindings/python/gesmodule.c +++ b/bindings/python/gesmodule.c @@ -5,6 +5,7 @@ #include #include #include +#include /* include any extra headers needed here */ @@ -24,7 +25,9 @@ initges (void) d = PyModule_GetDict (m); init_pygobject (); + pygst_init (); + pygst_init (); pyges_register_classes (d); /* add anything else to the module dictionary (such as constants) */