summaryrefslogtreecommitdiff
path: root/gst/gstparse.h
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2001-06-25 20:36:02 +0000
committerWim Taymans <wim.taymans@gmail.com>2001-06-25 20:36:02 +0000
commit6f0bce54fa8f742a521022740c451a4f1d8f74e0 (patch)
treed6bbcf1df91c84022e5dca74c14f4ed44ed4f8ce /gst/gstparse.h
parent71beaf9179d5d4b2336a78f07bf9b77b14a569bd (diff)
downloadgstreamer-6f0bce54fa8f742a521022740c451a4f1d8f74e0.tar.gz
Removed the final bits of GstMeta.
Original commit message from CVS: Removed the final bits of GstMeta. Added conditional compilation of various subsystems.
Diffstat (limited to 'gst/gstparse.h')
-rw-r--r--gst/gstparse.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/gst/gstparse.h b/gst/gstparse.h
index ff77704819..9374d25f58 100644
--- a/gst/gstparse.h
+++ b/gst/gstparse.h
@@ -23,8 +23,16 @@
#ifndef __GST_PARSE_H__
#define __GST_PARSE_H__
+#ifndef GST_DISABLE_PARSE
+
#include <gst/gstbin.h>
gint gst_parse_launch (const gchar *cmdline, GstBin *parent);
+#else // GST_DISABLE_PARSE
+
+#pragma GCC poison gst_parse_launch
+
+#endif // GST_DISABLE_PARSE
+
#endif /* __GST_PARSE_H__ */