mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-11 06:11:27 +00:00
configure.ac: Add a configure switch to disable option parsing in gst_init.
Original commit message from CVS: 2008-04-01 Julien Moutte <julien@fluendo.com> patch by: Jason Zhao <E3423C@motorola.com> * configure.ac: Add a configure switch to disable option parsing in gst_init. Fixes #522882.
This commit is contained in:
parent
b4c170a205
commit
7aa5c128c6
2 changed files with 14 additions and 0 deletions
|
@ -1,3 +1,11 @@
|
|||
2008-04-01 Julien Moutte <julien@fluendo.com>
|
||||
|
||||
patch by: Jason Zhao <E3423C@motorola.com>
|
||||
|
||||
* configure.ac: Add a configure switch to disable option parsing
|
||||
in gst_init.
|
||||
Fixes #522882.
|
||||
|
||||
2008-03-31 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -88,6 +88,12 @@ if test "x$GST_DISABLE_PARSE" = xyes; then
|
|||
AC_DEFINE(GST_DISABLE_PARSE, 1,
|
||||
[Define if pipeline parsing code is disabled])
|
||||
fi
|
||||
AG_GST_CHECK_SUBSYSTEM_DISABLE(OPTION_PARSING,[option parsing when gst_init])
|
||||
AM_CONDITIONAL(GST_DISABLE_OPTION_PARSING, test "x$GST_DISABLE_OPTION_PARSING" = "xyes")
|
||||
if test "x$GST_DISABLE_OPTION_PARSING" = xyes; then
|
||||
AC_DEFINE(GST_DISABLE_OPTION_PARSING, 1,
|
||||
[Define if option parsing is disabled])
|
||||
fi
|
||||
AG_GST_CHECK_SUBSYSTEM_DISABLE(TRACE,[tracing subsystem])
|
||||
AM_CONDITIONAL(GST_DISABLE_TRACE, test "x$GST_DISABLE_TRACE" = "xyes")
|
||||
AG_GST_CHECK_SUBSYSTEM_DISABLE(ALLOC_TRACE,[allocation tracing])
|
||||
|
|
Loading…
Reference in a new issue