mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-13 19:44:10 +00:00
Reordering header inclusion order to fix build on my machine.
Original commit message from CVS: 2005-10-12 Julien MOUTTE <julien@moutte.net> * gst/gst-argtypes.c: * gst/pygstminiobject.c: * testsuite/testhelpermodule.c: Reordering header inclusion order to fix build on my machine.
This commit is contained in:
parent
9357eeb14a
commit
2cfbf3f112
5 changed files with 14 additions and 6 deletions
|
@ -1,3 +1,10 @@
|
|||
2005-10-12 Julien MOUTTE <julien@moutte.net>
|
||||
|
||||
* gst/gst-argtypes.c:
|
||||
* gst/pygstminiobject.c:
|
||||
* testsuite/testhelpermodule.c: Reordering header inclusion order to
|
||||
fix build on my machine.
|
||||
|
||||
2005-10-12 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* gst/gst.defs:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 615cf4d4506ef1ffb1f600c434fced1fa26b0f44
|
||||
Subproject commit 37ed26e33bae9a6ab256c62ebbb9d711374a0abb
|
|
@ -23,8 +23,8 @@
|
|||
* before including pygobject.h */
|
||||
#define NO_IMPORT_PYGOBJECT
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include "common.h"
|
||||
#include <gst/gst.h>
|
||||
|
||||
/* This function will return a copy, unless the following is all TRUE:
|
||||
* - The given PyObject contains a GstCaps already
|
||||
|
|
|
@ -19,8 +19,9 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
||||
* USA
|
||||
*/
|
||||
#include <gst/gst.h>
|
||||
|
||||
#include "pygstminiobject.h"
|
||||
#include <gst/gst.h>
|
||||
|
||||
static const gchar *pygstminiobject_class_id = "PyGstMiniObject::class";
|
||||
static GQuark pygstminiobject_class_key = 0;
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#include <glib-object.h>
|
||||
#include <gst/gst.h>
|
||||
|
||||
#include "pygobject.h"
|
||||
#include "test-object.h"
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include <glib-object.h>
|
||||
|
||||
static PyObject *
|
||||
_wrap_get_object (PyObject * self)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue