From d5d2c6ab0389dbca87275034ec0ef4cbdc10556f Mon Sep 17 00:00:00 2001 From: gsherman Date: Sat, 7 Feb 2004 19:06:35 +0000 Subject: [PATCH] added info about debug messages git-svn-id: http://svn.osgeo.org/qgis/trunk@738 c8812cc2-4d05-0410-92ff-de0c093fc19c --- configure.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.in b/configure.in index f8b7b1b5a62..59ec0e22df3 100644 --- a/configure.in +++ b/configure.in @@ -151,10 +151,14 @@ dnl --------------------------------------------------------------------------- # AC_SUBST(GRASS_LIB) # AC_SUBST(GRASS_INC) +dnl Debug messages to stdout +AC_MSG_CHECKING([if debug statements should be sent to stdout/stderr]) if test x"$QGISDEBUG" = "x" ; then DEBUG_QGIS=-DNO_DEBUG + AC_MSG_RESULT([no]) else DEBUG_QGIS=-DDEBUG + AC_MSG_RESULT([yes]) fi AC_SUBST(DEBUG_QGIS)