diff options
author | Haru <haru@dotalux.com> | 2016-01-10 18:41:19 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-01-10 18:41:19 +0100 |
commit | c01f74557fb80e8d99fa54140d4741d34a4d5019 (patch) | |
tree | 67c8de1792c1b24e20da5ce713121ce535597167 /configure.in | |
parent | 5a3f06b2a643fe1447db9bdae5b8a60e2a597a4c (diff) | |
parent | d0af90396388c699e1be4c20bb806e6f4423062d (diff) | |
download | hercules-c01f74557fb80e8d99fa54140d4741d34a4d5019.tar.gz hercules-c01f74557fb80e8d99fa54140d4741d34a4d5019.tar.bz2 hercules-c01f74557fb80e8d99fa54140d4741d34a4d5019.tar.xz hercules-c01f74557fb80e8d99fa54140d4741d34a4d5019.zip |
Merge pull request #1090 from 4144/enabledebug
Enable debug information in configure by default.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 9a8a437a4..bfcc27322 100644 --- a/configure.in +++ b/configure.in @@ -158,7 +158,7 @@ AC_ARG_ENABLE( AC_HELP_STRING( [--enable-debug@<:@=ARG@:>@], [ - Compiles extra debug code. (disabled by default) + Compiles extra debug code. (yes by default) (available options: yes, no, gdb) ] ), @@ -171,7 +171,7 @@ AC_ARG_ENABLE( *) AC_MSG_ERROR([[invalid argument --enable-debug=$enableval... stopping]]);; esac ], - [enable_debug="no"] + [enable_debug="yes"] ) # |