diff options
author | tim@threads.polyesthetic.msg <> | 2001-03-07 17:07:44 -0500 |
---|---|---|
committer | tim@threads.polyesthetic.msg <> | 2001-03-07 17:07:44 -0500 |
commit | 9907e751267468c8ee409704a86181b65f210234 (patch) | |
tree | 7d1969af00443442ba077e372d05b9f08f871e80 /acinclude.m4 | |
parent | f74ffcca0c642db87fecef404bdbffbd83a38c9a (diff) | |
download | mariadb-git-9907e751267468c8ee409704a86181b65f210234.tar.gz |
Change --with-innobase-db to --with-innobase.
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 633b2345a72..84390a75ca0 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -866,24 +866,24 @@ dnl --------------------------------------------------------------------------- dnl --------------------------------------------------------------------------- dnl Macro: MYSQL_CHECK_INNOBASE -dnl Sets HAVE_INNOBASE_DB if --with-innobase-db is used +dnl Sets HAVE_INNOBASE_DB if --with-innobase is used dnl --------------------------------------------------------------------------- AC_DEFUN([MYSQL_CHECK_INNOBASE], [ - AC_ARG_WITH([innobase-db], + AC_ARG_WITH([innobase], [\ - --with-innobase-db Use Innobase DB], + --with-innobase Use Innobase], [innobase="$withval"], [innobase=no]) - AC_MSG_CHECKING([for Innobase DB]) + AC_MSG_CHECKING([for Innobase]) have_innobase_db=no innobase_includes= innobase_libs= case "$innobase" in yes ) - AC_MSG_RESULT([Using Innobase DB]) + AC_MSG_RESULT([Using Innobase]) AC_DEFINE(HAVE_INNOBASE_DB) have_innobase_db="yes" innobase_includes="-I../innobase/include" @@ -929,7 +929,7 @@ dnl circular references. AC_CHECK_LIB(rt, aio_read, [innobase_libs="$innobase_libs -lrt"]) ;; * ) - AC_MSG_RESULT([Not using Innobase DB]) + AC_MSG_RESULT([Not using Innobase]) ;; esac |