diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-12-31 22:18:35 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-12-31 22:18:35 +0000 |
commit | b066ad0fd880b2651cf1e5f0c2d28ef551875d5a (patch) | |
tree | 170e49ff8680258efca6497e89cff39651681e3b | |
parent | 620b59e843225abd3438ae2e0c26244b718dfb7f (diff) | |
download | rtmux-b066ad0fd880b2651cf1e5f0c2d28ef551875d5a.tar.gz rtmux-b066ad0fd880b2651cf1e5f0c2d28ef551875d5a.tar.bz2 rtmux-b066ad0fd880b2651cf1e5f0c2d28ef551875d5a.zip |
Default enable-debug to on in CVS (can be changed for releases).
-rw-r--r-- | configure.ac | 6 |
1 files 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? |