diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 64524fd20d8..56027305bdf 100644 --- a/configure.in +++ b/configure.in @@ -1833,6 +1833,7 @@ AC_MSG_RESULT([default: $default_charset; compiled in: $CHARSETS]) MYSQL_CHECK_BDB +MYSQL_CHECK_INNOBASE # If we have threads generate some library functions and test programs @@ -1898,6 +1899,16 @@ mysql-noinstall-hack:' \ AC_DEFINE(HAVE_BERKELEY_DB) fi + if test X"$have_innobase_db" = Xyes + then + sql_server_dirs="innobase $sql_server_dirs" + echo "CONFIGURING FOR INNOBASE DB" + (cd innobase && sh ./configure) \ + || AC_MSG_ERROR([could not configure Innobase DB]) + + echo "END OF INNOBASE DB CONFIGURATION" + fi + if test "$with_posix_threads" = "no" -o "$with_mit_threads" = "yes" then # MIT user level threads |