Commit 91c01dd9 authored by unknown's avatar unknown

- Use AC_CONFIG_SUBDIRS to invoke the InnoDB and BDB configure scripts

   instead of calling them directly (WL#1521) - this also fixed a compile
   error with libtool-1.5.2 on FreeBSD (error: tag name "CXX" already 
   exists)

parent 93ca1bfa
...@@ -2704,9 +2704,7 @@ then ...@@ -2704,9 +2704,7 @@ then
/* ) rel_srcdir="$srcdir" ;; /* ) rel_srcdir="$srcdir" ;;
* ) rel_srcdir="../../$srcdir" ;; * ) rel_srcdir="../../$srcdir" ;;
esac esac
(cd $bdb/build_unix && \ AC_CONFIG_SUBDIRS($bdb/dist/configure)
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'" dnl echo "bdb = '$bdb'; inc = '$bdb_includes', lib = '$bdb_libs'"
echo "END OF BERKELEY DB CONFIGURATION" echo "END OF BERKELEY DB CONFIGURATION"
...@@ -2745,25 +2743,7 @@ EOF ...@@ -2745,25 +2743,7 @@ EOF
then then
innodb_conf_flags="" innodb_conf_flags=""
sql_server_dirs="$sql_server_dirs innobase" sql_server_dirs="$sql_server_dirs innobase"
echo "CONFIGURING FOR INNODB" AC_CONFIG_SUBDIRS(innobase)
if test ! -d "innobase"; then
# This should only happen when doing a VPATH build
echo "NOTICE: I have to make the Innobase directory: `pwd`/innobase"
mkdir "innobase" || exit 1
fi
rel_srcdir=
case "$srcdir" in
/* ) rel_srcdir="$srcdir" ;;
* ) rel_srcdir="../$srcdir" ;;
esac
if test "x$enable_dependency_tracking" == xno
then
innodb_conf_flags=--disable-dependency-tracking
fi
(cd innobase && sh $rel_srcdir/innobase/configure --host=$host $innodb_conf_flags) \
|| AC_MSG_ERROR([could not configure INNODB])
echo "END OF INNODB CONFIGURATION"
fi fi
# #
# END of configuration for optional table handlers # END of configuration for optional table handlers
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment