From 0e437d4069b64d6af36f5fe47429fb6e440a7d17 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Tue, 9 Aug 2011 17:16:44 +0200 Subject: [PATCH] pyges: link against pygst and use GstMiniObject --- bindings/python/ges.override | 2 ++ bindings/python/gesmodule.c | 3 +++ 2 files changed, 5 insertions(+) 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) */ -- 2.7.4