summaryrefslogtreecommitdiffstats
path: root/gst-libs/gst/riff
diff options
context:
space:
mode:
authorBrian Cameron <brian.cameron@sun.com>2003-05-21 18:16:30 +0000
committerBrian Cameron <brian.cameron@sun.com>2003-05-21 18:16:30 +0000
commit4c3c8f6f108d324168058af3100d013497184956 (patch)
tree7c06fc306c4fd97efea17de75bbb0e4b494e5753 /gst-libs/gst/riff
parenta62ca0048edd89cff24bc4550b456cf875bc5439 (diff)
downloadgst-plugins-bad-4c3c8f6f108d324168058af3100d013497184956.tar.gz
gst-plugins-bad-4c3c8f6f108d324168058af3100d013497184956.tar.bz2
gst-plugins-bad-4c3c8f6f108d324168058af3100d013497184956.zip
Corrected the configure.ac so it actually works. Updated some c files so that they build on Solaris. This mostly in...
Original commit message from CVS: Corrected the configure.ac so it actually works. Updated some c files so that they build on Solaris. This mostly involved supporting ISO style variable-argument macros.
Diffstat (limited to 'gst-libs/gst/riff')
-rw-r--r--gst-libs/gst/riff/riffutil.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gst-libs/gst/riff/riffutil.c b/gst-libs/gst/riff/riffutil.c
index e4c134fb..f754f755 100644
--- a/gst-libs/gst/riff/riffutil.c
+++ b/gst-libs/gst/riff/riffutil.c
@@ -21,8 +21,16 @@
#include <riff.h>
/*#define debug(format,args...) g_print(format,##args) */
+
+#ifdef G_HAVE_ISO_VARARGS
+
+#define debug(format,...)
+
+#elif defined(G_HAVE_GNUC_VARARGS)
+
#define debug(format,args...)
+#endif
gulong gst_riff_fourcc_to_id(gchar *fourcc) {
g_return_val_if_fail(fourcc != NULL, 0);