mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
94dac7322d
Original commit message from CVS: should fix an error in a no-glib2 error message, an error in libxml stuff (newer versions of libxml1 can be included as libxml/parser.h), and silencing a warning in the cothreads stuff
24 lines
668 B
C
24 lines
668 B
C
/* This header interprets the various GST_* macros that are typically *
|
|
* provided by the gstreamer-config or gstreamer.pc files. */
|
|
|
|
#ifndef __GST_CONFIG_H__
|
|
#define __GST_CONFIG_H__
|
|
|
|
|
|
/***** We include config.h in case someone perhaps used a gstreamer.m4 or
|
|
something else that provides funky overrides. BEWARE! *****/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif /* HAVE_CONFIG_H */
|
|
|
|
|
|
/***** Deal with XML stuff, we have to handle both loadsave and registry *****/
|
|
|
|
#if (! (defined(GST_DISABLE_LOADSAVE) && defined(GST_DISABLE_REGISTRY)) )
|
|
# include <libxml/parser.h>
|
|
#else
|
|
# define GST_DISABLE_LOADSAVE_REGISTRY
|
|
#endif
|
|
|
|
#endif /* __GST_CONFIG_H__ */
|