diff options
author | Benjamin Otte <otte@gnome.org> | 2003-11-06 02:32:42 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2003-11-06 02:32:42 +0000 |
commit | 6be9d33380c0d8adb7ba7e235e05d7dcd9137276 (patch) | |
tree | 12057d4d8f69dababea3a51678770584902abbd5 /configure.ac | |
parent | f17329e60fff75ad6999f9493512eeadb8fc6c22 (diff) | |
download | gst-plugins-bad-6be9d33380c0d8adb7ba7e235e05d7dcd9137276.tar.gz gst-plugins-bad-6be9d33380c0d8adb7ba7e235e05d7dcd9137276.tar.bz2 gst-plugins-bad-6be9d33380c0d8adb7ba7e235e05d7dcd9137276.zip |
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
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index ccdf32da..f8fe086c 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 ############################################ |