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-libs/gst/media-info/media-info.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'gst-libs/gst/media-info/media-info.c') diff --git a/gst-libs/gst/media-info/media-info.c b/gst-libs/gst/media-info/media-info.c index e2afd51b..067286c4 100644 --- a/gst-libs/gst/media-info/media-info.c +++ b/gst-libs/gst/media-info/media-info.c @@ -22,9 +22,20 @@ #include "media-info.h" static gboolean _gst_media_info_debug = TRUE; + +#ifdef G_HAVE_ISO_VARARGS + +#define GMI_DEBUG(...) \ + { if (_gst_media_info_debug) { g_print ( __VA_ARGS__ ); }} + +#elif defined(G_HAVE_GNUC_VARARGS) + #define GMI_DEBUG(format, args...) \ { if (_gst_media_info_debug) { g_print ( format , ## args ); }} +#endif + + struct GstMediaInfoPriv { GstElement *pipeline; -- cgit v1.2.1