mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
set default errorlevel to NONE. Make configure change it to ERROR (the current value) when running cvs builds. This s...
Original commit message from CVS: set default errorlevel to NONE. Make configure change it to ERROR (the current value) when running cvs builds. This should make releases not output any debugging information at all
This commit is contained in:
parent
0676d630e7
commit
94f7a8ee6d
2 changed files with 6 additions and 1 deletions
|
@ -62,6 +62,11 @@ dnl AM_DISABLE_STATIC
|
|||
|
||||
AC_HEADER_STDC([])
|
||||
|
||||
dnl define correct errorlevel for debugging messages. We want to have GST_ERROR
|
||||
dnl messages printed when running cvs builds
|
||||
if test "x$GST_CVS" = "xyes"; then
|
||||
AC_DEFINE(GST_LEVEL_DEFAULT, GST_LEVEL_ERROR, [Default errorlevel to use])
|
||||
fi
|
||||
|
||||
dnl ##############################
|
||||
dnl # Do automated configuration #
|
||||
|
|
|
@ -53,7 +53,7 @@ typedef enum {
|
|||
|
||||
/* we can now override this to be more general in maintainer builds or cvs checkouts */
|
||||
#ifndef GST_LEVEL_DEFAULT
|
||||
#define GST_LEVEL_DEFAULT GST_LEVEL_ERROR
|
||||
#define GST_LEVEL_DEFAULT GST_LEVEL_NONE
|
||||
#endif
|
||||
|
||||
/* defines for format (colors etc) - don't change them around, it uses terminal layout
|
||||
|
|
Loading…
Reference in a new issue