diff options
author | lenz@kallisto.local <> | 2004-03-18 22:46:41 +0100 |
---|---|---|
committer | lenz@kallisto.local <> | 2004-03-18 22:46:41 +0100 |
commit | 9ab6567bcd8caa407e31a13711f071114b52dc1f (patch) | |
tree | f4cb9368c2ffcbdf8f87abcd9d64890acbd9f600 /configure.in | |
parent | 4493a24dc7e00f9a72cb23a34607297a0e5919cf (diff) | |
download | mariadb-git-9ab6567bcd8caa407e31a13711f071114b52dc1f.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" |