1
0
mirror of https://github.com/sqlite/sqlite.git synced 2026-01-06 08:01:16 +03:00

Allow the r-tree extension to be compiled as part of the amalgamation. (CVS 5424)

FossilOrigin-Name: 5c26f63e476be3e18b2acdec5dd459da3bfceefa
This commit is contained in:
drh
2008-07-16 14:43:34 +00:00
parent 118640bdad
commit 7cb53b0fdb
3 changed files with 10 additions and 8 deletions

View File

@@ -12,7 +12,7 @@
** This file contains code for implementations of the r-tree and r*-tree
** algorithms packaged as an SQLite virtual table module.
**
** $Id: rtree.c,v 1.6 2008/07/14 15:37:01 danielk1977 Exp $
** $Id: rtree.c,v 1.7 2008/07/16 14:43:35 drh Exp $
*/
#if !defined(SQLITE_CORE) || defined(SQLITE_ENABLE_RTREE)
@@ -66,9 +66,11 @@
#include <string.h>
#include <assert.h>
#ifndef SQLITE_AMALGAMATION
typedef sqlite3_int64 i64;
typedef unsigned char u8;
typedef unsigned int u32;
#endif
typedef struct Rtree Rtree;
typedef struct RtreeCursor RtreeCursor;