[asterisk-commits] seanbright: trunk r209623 - in /trunk: configure configure.ac makeopts.in
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Jul 30 18:37:36 CDT 2009
Author: seanbright
Date: Thu Jul 30 18:37:31 2009
New Revision: 209623
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=209623
Log:
Allow passing 'noisy' to configure's --enable-dev-mode argument to turn on verbose builds.
(closes issue #15607)
Reported by: mvanbaak
Patches:
20090730_issue15607.patch uploaded by seanbright (license 71)
Tested by: seanbright
Modified:
trunk/configure
trunk/configure.ac
trunk/makeopts.in
Modified: trunk/configure.ac
URL: http://svn.asterisk.org/svn-view/asterisk/trunk/configure.ac?view=diff&rev=209623&r1=209622&r2=209623
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Thu Jul 30 18:37:31 2009
@@ -214,8 +214,13 @@
[case "${enableval}" in
y|ye|yes) AST_DEVMODE=yes ;;
n|no) AST_DEVMODE=no ;;
+ noisy)
+ AST_DEVMODE=yes
+ NOISY_BUILD=yes
+ ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-dev-mode) ;;
esac])
+AC_SUBST(NOISY_BUILD)
AC_SUBST(AST_DEVMODE)
# AST_EXT_LIB_SETUP is used to tell configure to handle variables for
Modified: trunk/makeopts.in
URL: http://svn.asterisk.org/svn-view/asterisk/trunk/makeopts.in?view=diff&rev=209623&r1=209622&r2=209623
==============================================================================
--- trunk/makeopts.in (original)
+++ trunk/makeopts.in Thu Jul 30 18:37:31 2009
@@ -66,6 +66,7 @@
sysconfdir = @sysconfdir@
AST_DEVMODE=@AST_DEVMODE@
+NOISY_BUILD=@NOISY_BUILD@
AST_DECLARATION_AFTER_STATEMENT=@AST_DECLARATION_AFTER_STATEMENT@
AST_NO_STRICT_OVERFLOW=@AST_NO_STRICT_OVERFLOW@
More information about the asterisk-commits
mailing list