fix for glib < 2.4
authorThomas Vander Stichele <thomas@apestaart.org>
Fri, 24 Dec 2004 15:12:56 +0000 (15:12 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Fri, 24 Dec 2004 15:12:56 +0000 (15:12 +0000)
Original commit message from CVS:
fix for glib < 2.4

ChangeLog
gst/audioconvert/gstchannelmix.c

index 8618aa7..59a95f3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 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.
index 774ffff..a7563df 100644 (file)
 
 #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.
  */