From b066ad0fd880b2651cf1e5f0c2d28ef551875d5a Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 31 Dec 2010 22:18:35 +0000 Subject: [PATCH] Default enable-debug to on in CVS (can be changed for releases). --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 4d0f1b96..d5789923 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# $Id: configure.ac,v 1.1 2010-12-31 22:12:33 nicm Exp $ +# $Id: configure.ac,v 1.2 2010-12-31 22:18:35 nicm Exp $ # Miscellaneous autofoo bullshit. AC_INIT(tmux, 1.5) @@ -34,10 +34,10 @@ AC_CHECK_HEADERS([ \ ]) # Is this a debug build? +found_debug=yes AC_ARG_ENABLE(debug, AC_HELP_STRING(--enable-debug, create a debug build), - found_debug=yes, - found_debug=no) + found_debug=$enable_debug) AM_CONDITIONAL(IS_DEBUG, test "x$found_debug" = xyes) # Is this gcc?