diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-01-10 18:34:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-01-10 18:34:56 +0300 |
commit | d0af90396388c699e1be4c20bb806e6f4423062d (patch) | |
tree | 67c8de1792c1b24e20da5ce713121ce535597167 /configure.in | |
parent | 5a3f06b2a643fe1447db9bdae5b8a60e2a597a4c (diff) | |
download | hercules-d0af90396388c699e1be4c20bb806e6f4423062d.tar.gz hercules-d0af90396388c699e1be4c20bb806e6f4423062d.tar.bz2 hercules-d0af90396388c699e1be4c20bb806e6f4423062d.tar.xz hercules-d0af90396388c699e1be4c20bb806e6f4423062d.zip |
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"] ) # |