diff options
author | unknown <lenz@kallisto.local> | 2004-03-18 22:46:41 +0100 |
---|---|---|
committer | unknown <lenz@kallisto.local> | 2004-03-18 22:46:41 +0100 |
commit | 9081ad124546120ff56c00a98303d599608900ea (patch) | |
tree | f4cb9368c2ffcbdf8f87abcd9d64890acbd9f600 /configure.in | |
parent | 91c01dd9df02e54b50f315600b91e4781be927ae (diff) | |
download | mariadb-git-9081ad124546120ff56c00a98303d599608900ea.tar.gz |
- reverted use of AC_CONFIG_SUBDIRS for BDB for now (it somehow did
not work as expected) - need to investigate (after 4.1.2 is released)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index d95562a3791..de546d9c078 100644 --- a/configure.in +++ b/configure.in @@ -2704,7 +2704,9 @@ then /* ) rel_srcdir="$srcdir" ;; * ) rel_srcdir="../../$srcdir" ;; esac - AC_CONFIG_SUBDIRS($bdb/dist/configure) + (cd $bdb/build_unix && \ + sh $rel_srcdir/$bdb/dist/configure $bdb_conf_flags) || \ + AC_MSG_ERROR([could not configure Berkeley DB]) dnl echo "bdb = '$bdb'; inc = '$bdb_includes', lib = '$bdb_libs'" echo "END OF BERKELEY DB CONFIGURATION" |