diff options
author | hf@deer.(none) <> | 2004-03-12 18:51:03 +0400 |
---|---|---|
committer | hf@deer.(none) <> | 2004-03-12 18:51:03 +0400 |
commit | ec457a96efea6ab8eb1111e1659b60af62f12032 (patch) | |
tree | 416c45416bcc8605ff5754473476ddabbd22fe2f /sql/spatial.h | |
parent | 6aa1cc4a6387ffdba81c4959259f3249643e8fe5 (diff) | |
download | mariadb-git-ec457a96efea6ab8eb1111e1659b60af62f12032.tar.gz |
WL#1163 To make spatial code optional
myisam spatial code isolated
Diffstat (limited to 'sql/spatial.h')
-rw-r--r-- | sql/spatial.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/spatial.h b/sql/spatial.h index 5d425725437..b3018668842 100644 --- a/sql/spatial.h +++ b/sql/spatial.h @@ -17,6 +17,8 @@ #ifndef _spatial_h #define _spatial_h +#ifdef HAVE_SPATIAL + const uint SRID_SIZE= 4; const uint SIZEOF_STORED_DOUBLE= 8; const uint POINT_DATA_SIZE= SIZEOF_STORED_DOUBLE*2; @@ -460,4 +462,5 @@ struct Geometry_buffer void *arr[(geometry_buffer_size - 1)/sizeof(void *) + 1]; }; +#endif /*HAVE_SPATAIAL*/ #endif |