diff options
author | tim@threads.polyesthetic.msg <> | 2000-11-27 18:14:49 -0500 |
---|---|---|
committer | tim@threads.polyesthetic.msg <> | 2000-11-27 18:14:49 -0500 |
commit | a9c031ed5e86a20c3836c4b630325b515458515e (patch) | |
tree | 5a82ce2301298cea7af3131d25f107fee286c997 /configure.in | |
parent | 9f62130fbadc44bb83e2481375911de3d6f4aa91 (diff) | |
download | mariadb-git-a9c031ed5e86a20c3836c4b630325b515458515e.tar.gz |
Generalize handle_flush thread to also handle various management
tasks for different handlers. Add a callback from berkeley db to
delete log files that are no longer needed.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.in b/configure.in index f75f88fc408..1df599c373a 100644 --- a/configure.in +++ b/configure.in @@ -1821,7 +1821,12 @@ then sql_server_dirs="$have_berkeley_db/build_unix $sql_server_dirs" echo "CONFIGURING FOR BERKELEY DB" - (cd $bdb && cd build_unix && sh ../dist/configure) \ + bdb_conf_flags= + if test $with_debug = "yes" + then + bdb_conf_flags="$bdb_conf_flags --enable-debug --enable-diagnostic" + fi + (cd $bdb && cd build_unix && sh ../dist/configure $bdb_conf_flags) \ || AC_MSG_ERROR([could not configure Berkeley DB]) echo "Modifying Berkeley DB install target" |