diff options
author | unknown <hf@deer.(none)> | 2004-05-27 20:31:30 +0500 |
---|---|---|
committer | unknown <hf@deer.(none)> | 2004-05-27 20:31:30 +0500 |
commit | 7ec57e23fd036378df9eb0eeda6f6d7fe87f0aec (patch) | |
tree | ad2a009be07a0424a8eeab243ace62c8de08964a /acconfig.h | |
parent | b566dae2783b818c1e882f52e0e749b7b911852a (diff) | |
download | mariadb-git-7ec57e23fd036378df9eb0eeda6f6d7fe87f0aec.tar.gz |
WL#1163 (Make spatial code separable for other parts)
--with-geometry and
--with-embedded-privilege-control
configure switches added
acconfig.h:
necessary lines added
myisam/mi_open.c:
#include added
mysql-test/t/gis-rtree.test:
test modified to take HAVE_GEOMETRY in account
mysql-test/t/gis.test:
test modified to take HAVE_GEOMETRY in account
sql/mysql_priv.h:
option's variables added
sql/mysqld.cc:
option's handling added
sql/set_var.cc:
option's descriptions added
Diffstat (limited to 'acconfig.h')
-rw-r--r-- | acconfig.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/acconfig.h b/acconfig.h index 67e9d1759c6..9b85f47ce35 100644 --- a/acconfig.h +++ b/acconfig.h @@ -197,6 +197,15 @@ /* If we want to have query cache */ #undef HAVE_QUERY_CACHE +/* Spatial extentions */ +#undef HAVE_SPATIAL + +/* RTree keys */ +#undef HAVE_RTREE_KEYS + +/* Access checks in embedded library */ +#undef HAVE_EMBEDDED_PRIVILEGE_CONTROL + /* Solaris define gethostbyaddr_r with 7 arguments. glibc2 defines this with 8 arguments */ #undef HAVE_SOLARIS_STYLE_GETHOST |