pyges: link against pygst and use GstMiniObject

This commit is contained in:
Thibault Saunier 2011-08-09 17:16:44 +02:00
parent fc21eb395a
commit 0e437d4069
2 changed files with 5 additions and 0 deletions

View file

@ -3,9 +3,11 @@
headers
#define NO_IMPORT_PYGOBJECT
#include <pygobject.h>
#include <pygst/pygst.h>
#include <gst/gst.h>
#include <ges/ges.h>
#include <pygst/pygst.h>
#include <glib.h>
#include <pyglib.h>

View file

@ -5,6 +5,7 @@
#include <Python.h>
#include <pygobject.h>
#include <pyglib.h>
#include <pygst/pygst.h>
/* 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) */