From 4c3c8f6f108d324168058af3100d013497184956 Mon Sep 17 00:00:00 2001 From: Brian Cameron Date: Wed, 21 May 2003 18:16:30 +0000 Subject: 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. --- gst/mpeg1sys/buffer.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gst/mpeg1sys') diff --git a/gst/mpeg1sys/buffer.c b/gst/mpeg1sys/buffer.c index 6554f03f..677c398b 100644 --- a/gst/mpeg1sys/buffer.c +++ b/gst/mpeg1sys/buffer.c @@ -34,8 +34,16 @@ #define CLOCKS 90000.0 +#ifdef G_HAVE_ISO_VARARGS + +#define DEBUG(...) g_print (__VA_ARGS__) + +#elif defined(G_HAVE_GNUC_VARARGS) + #define DEBUG(a, b...) g_print (##b) +#endif + /* This must match decoder and encoder tables */ static double picture_rates [16] = { -- cgit v1.2.1