aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2008-09-08 08:08:09 +0000
committerdanielk1977 <danielk1977@noemail.net>2008-09-08 08:08:09 +0000
commit1c826650400bdc59f096820924921c3d70c61d6e (patch)
tree50ff44b57aaf75c81c409f6dc9b9051c8f9c6948 /src
parentfdd8e5bab84722c09a5a1a8146e3430058c6dea8 (diff)
downloadsqlite-1c826650400bdc59f096820924921c3d70c61d6e.tar.gz
sqlite-1c826650400bdc59f096820924921c3d70c61d6e.zip
Add header file sqliteicu.h to the ICU extension. This is analogous to the rtree.h and fts3.h headers used by other extensions to declare their entry points. Fix for ticket #3361. (CVS 5680)
FossilOrigin-Name: 79364b963b348d5433da737b4e21e97952882389
Diffstat (limited to 'src')
-rw-r--r--src/main.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 9aded80b6..749d14c9a 100644
--- a/src/main.c
+++ b/src/main.c
@@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
-** $Id: main.c,v 1.499 2008/09/03 00:43:15 drh Exp $
+** $Id: main.c,v 1.500 2008/09/08 08:08:09 danielk1977 Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -25,6 +25,9 @@
#ifdef SQLITE_ENABLE_RTREE
# include "rtree.h"
#endif
+#ifdef SQLITE_ENABLE_ICU
+# include "sqliteicu.h"
+#endif
/*
** The version of the library
@@ -1588,7 +1591,6 @@ static int openDatabase(
#ifdef SQLITE_ENABLE_ICU
if( !db->mallocFailed && rc==SQLITE_OK ){
- extern int sqlite3IcuInit(sqlite3*);
rc = sqlite3IcuInit(db);
}
#endif