From 8959dd7aed09d5d171fe30f17c55d98004c0faf9 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Thu, 6 Nov 2003 02:32:42 +0000 Subject: [PATCH] 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 --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configure.ac b/configure.ac index ccdf32d..f8fe086 100644 --- a/configure.ac +++ b/configure.ac @@ -68,6 +68,12 @@ AC_ISC_POSIX 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 # Super Duper options for plug-in building # dnl ############################################ -- 2.7.4