diff options
author | unknown <hf@deer.(none)> | 2004-05-27 17:37:47 +0500 |
---|---|---|
committer | unknown <hf@deer.(none)> | 2004-05-27 17:37:47 +0500 |
commit | b566dae2783b818c1e882f52e0e749b7b911852a (patch) | |
tree | faac7d06fba2e2d566b8ca6772b17dd2f1873c1f /configure.in | |
parent | d366a2e4c97155d5ea10a7da084d188d7e42222c (diff) | |
parent | d367d8a5a1d428377c69e647ee0d43cb0ecd6f8d (diff) | |
download | mariadb-git-b566dae2783b818c1e882f52e0e749b7b911852a.tar.gz |
Merge bk@192.168.21.1:/usr/home/bk/mysql-4.1
into deer.(none):/home/hf/work/mysql-4.1.ftr
configure.in:
Auto merged
include/my_global.h:
Auto merged
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/configure.in b/configure.in index c00bbf60b60..e24965ad4d3 100644 --- a/configure.in +++ b/configure.in @@ -2133,6 +2133,31 @@ then AC_DEFINE(HAVE_QUERY_CACHE) fi +AC_ARG_WITH(geometry, + [ --without-geometry Do not build geometry-related parts.], + [with_geometry=$withval], + [with_geometry=yes] +) + +if test "$with_geometry" = "yes" +then + AC_DEFINE(HAVE_SPATIAL) + AC_DEFINE(HAVE_RTREE_KEYS) +fi + +AC_ARG_WITH(embedded_privilege_control, + [ --with-embedded-privilege-control + Build parts to check user's privileges. + Only affects embedded library.], + [with_embedded_privilege_control=$withval], + [with_embedded_privilege_control=no] +) + +if test "$with_embedded_privilege_control" = "yes" +then + AC_DEFINE(HAVE_EMBEDDED_PRIVILEGE_CONTROL) +fi + AC_ARG_WITH(extra-tools, [ --without-extra-tools Skip building utilites in the tools directory.], [with_tools=$withval], |