+2006-05-09 Edward Hervey <edward@fluendo.com>
+
+ * tests/icles/stress-xoverlay.c:
+ Fix if core was built without parsing support.
+
2006-05-09 Tim-Philipp Müller <tim at centricular dot net>
* gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
2006-05-09 Edward Hervey <edward@fluendo.com>
+ * tests/icles/stress-xoverlay.c:
* tests/examples/volume/volume.c:
- Fox if core was built without parsing support.
+ Fix if core was built without parsing support.
* tests/examples/seek/seek.c:
Disable the parse_launch example if core was built without parsing
{
GstElement *pipeline;
GstBus *bus;
+
+#ifndef GST_DISABLE_PARSE
GError *error = NULL;
+#endif
gst_init (&argc, &argv);
g_print ("Example: %s \"videotestsrc ! ximagesink\"\n", argv[0]);
return -1;
}
-
+#ifdef GST_DISABLE_PARSE
+ g_print ("GStreamer was built without pipeline parsing capabilities.\n");
+ g_print
+ ("Please rebuild GStreamer with pipeline parsing capabilities activated to use this example.\n");
+ return 1;
+#else
pipeline = gst_parse_launch (argv[1], &error);
if (error) {
g_print ("Error while parsing pipeline description: %s\n", error->message);
return -1;
}
+#endif
loop = g_main_loop_new (NULL, FALSE);