Reordering header inclusion order to fix build on my machine.
authorJulien Moutte <julien@moutte.net>
Wed, 12 Oct 2005 11:21:53 +0000 (11:21 +0000)
committerJulien Moutte <julien@moutte.net>
Wed, 12 Oct 2005 11:21:53 +0000 (11:21 +0000)
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.

ChangeLog
common
gst/gst-argtypes.c
gst/pygstminiobject.c
testsuite/testhelpermodule.c

index 0c7ad32..6c9f92b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
diff --git a/common b/common
index 615cf4d..37ed26e 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit 615cf4d4506ef1ffb1f600c434fced1fa26b0f44
+Subproject commit 37ed26e33bae9a6ab256c62ebbb9d711374a0abb
index c35acc5..f84d6b7 100644 (file)
@@ -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
index e678f8c..c84b68f 100644 (file)
@@ -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;
index 265fa17..1325262 100644 (file)
@@ -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)
 {