Original commit message from CVS:
fix for glib < 2.4
2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
+ * gst/audioconvert/gstchannelmix.c:
+ fix for GLIB < 2.4
+
+2004-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
+
* Makefile.am:
* configure.ac:
disable docs again until it actually passes make distcheck.
#include "gstchannelmix.h"
+/* GLib < 2.4 compatibility */
+#ifndef G_MININT32
+#define G_MININT32 ((gint32) 0x80000000)
+#endif
+
+#ifndef G_MAXINT32
+#define G_MAXINT32 ((gint32) 0x7fffffff)
+#endif
+
/*
* Channel matrix functions.
*/