From 554f604d37970c26fc61726eec2f81a384a691fc Mon Sep 17 00:00:00 2001 From: Francisco Velazquez Date: Fri, 4 May 2018 14:00:21 +0200 Subject: [PATCH] debugutils: Update configure option in documentation Update documentation on non existent option `gst-enable-gst-debug'. Instead, one has to make sure that the `--disable-gst-debug' option was not used when compiling GStreamer (i.e., `./configure --disable-gst-debug'). https://bugzilla.gnome.org/show_bug.cgi?id=795801 --- gst/gstdebugutils.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gst/gstdebugutils.h b/gst/gstdebugutils.h index 8017fc545b..e0d60255fc 100644 --- a/gst/gstdebugutils.h +++ b/gst/gstdebugutils.h @@ -85,9 +85,9 @@ void gst_debug_bin_to_dot_file_with_ts (GstBin *bin, GstDebugGraphDetails detail * There is also a utility called xdot which allows you to view the dot file * directly without converting it first. * - * The macro is only active if gstreamer is configured with - * "--gst-enable-gst-debug" and the environment variable - * GST_DEBUG_DUMP_DOT_DIR is set to a basepath (e.g. /tmp). + * The macro is only active if the environment variable GST_DEBUG_DUMP_DOT_DIR + * is set to a basepath (e.g. /tmp), and the GStreamer debugging subsystem is + * enabled (i.e., no use of `./configure --disable-gst-debug') */ #define GST_DEBUG_BIN_TO_DOT_FILE(bin, details, file_name) gst_debug_bin_to_dot_file (bin, details, file_name)