mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 11:27:39 +02:00
Portability fix
BUILD/compile-alpha-cxx: Don't do depend files with Compaq compiler configure.in: Don't do depend files with Compaq compiler extra/mysql_waitpid.c: Portability fixes mysql-test/mysql-test-run.sh: Better timeout for valgrind
This commit is contained in:
parent
cf2ef3c68f
commit
afbd3fc503
4 changed files with 29 additions and 7 deletions
|
|
@ -2360,6 +2360,7 @@ EOF
|
|||
|
||||
if test X"$have_innodb" = Xyes
|
||||
then
|
||||
innodb_conf_flags=""
|
||||
sql_server_dirs="$sql_server_dirs innobase"
|
||||
echo "CONFIGURING FOR INNODB"
|
||||
if test ! -d "innobase"; then
|
||||
|
|
@ -2372,7 +2373,11 @@ EOF
|
|||
/* ) rel_srcdir="$srcdir" ;;
|
||||
* ) rel_srcdir="../$srcdir" ;;
|
||||
esac
|
||||
(cd innobase && sh $rel_srcdir/innobase/configure) \
|
||||
if test "x$enable_dependency_tracking" == xno
|
||||
then
|
||||
innodb_conf_flags=--disable-dependency-tracking
|
||||
fi
|
||||
(cd innobase && sh $rel_srcdir/innobase/configure $innodb_conf_flags) \
|
||||
|| AC_MSG_ERROR([could not configure INNODB])
|
||||
|
||||
echo "END OF INNODB CONFIGURATION"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue