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
This commit is contained in:
Francisco Velazquez 2018-05-04 14:00:21 +02:00 committed by Vivia Nikolaidou
parent 98200ddd8d
commit 554f604d37

View file

@ -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)