| OLD | NEW |
| 1 Index: Makefile.linux-gcc | 1 Index: Makefile.linux-gcc |
| 2 =================================================================== | 2 =================================================================== |
| 3 --- Makefile.linux-gcc 2009-09-03 13:32:06.000000000 -0700 | 3 --- Makefile.linux-gcc 2009-09-03 13:32:06.000000000 -0700 |
| 4 +++ Makefile.linux-gcc 2009-07-01 12:08:39.000000000 -0700 | 4 +++ Makefile.linux-gcc 2009-07-01 12:08:39.000000000 -0700 |
| 5 @@ -14,7 +14,7 @@ | 5 @@ -14,7 +14,7 @@ |
| 6 #### The toplevel directory of the source tree. This is the directory | 6 #### The toplevel directory of the source tree. This is the directory |
| 7 # that contains this "Makefile.in" and the "configure.in" script. | 7 # that contains this "Makefile.in" and the "configure.in" script. |
| 8 # | 8 # |
| 9 -TOP = ../sqlite | 9 -TOP = ../sqlite |
| 10 +TOP = .. | 10 +TOP = .. |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 | 118 |
| 119 sqlite3$(EXE): $(TOP)/src/shell.c libsqlite3.a sqlite3.h | 119 sqlite3$(EXE): $(TOP)/src/shell.c libsqlite3.a sqlite3.h |
| 120 $(TCCX) $(READLINE_FLAGS) -o sqlite3$(EXE) \ | 120 $(TCCX) $(READLINE_FLAGS) -o sqlite3$(EXE) \ |
| 121 - $(TOP)/src/shell.c \ | 121 - $(TOP)/src/shell.c \ |
| 122 - libsqlite3.a $(LIBREADLINE) $(TLIBS) $(THREADLIB) | 122 - libsqlite3.a $(LIBREADLINE) $(TLIBS) $(THREADLIB) |
| 123 + $(TOP)/src/shell.c $(SHELL_ICU) \ | 123 + $(TOP)/src/shell.c $(SHELL_ICU) \ |
| 124 + libsqlite3.a $(LIBREADLINE) $(TLIBS) $(THREADLIB) -ldl | 124 + libsqlite3.a $(LIBREADLINE) $(TLIBS) $(THREADLIB) -ldl |
| 125 | 125 |
| 126 objects: $(LIBOBJ_ORIG) | 126 objects: $(LIBOBJ_ORIG) |
| 127 | 127 |
| 128 @@ -484,6 +527,12 @@ | 128 @@ -484,6 +527,9 @@ |
| 129 test: testfixture$(EXE) sqlite3$(EXE) | 129 test: testfixture$(EXE) sqlite3$(EXE) |
| 130 ./testfixture$(EXE) $(TOP)/test/veryquick.test | 130 ./testfixture$(EXE) $(TOP)/test/veryquick.test |
| 131 | 131 |
| 132 +ftstest: testfixture$(EXE) sqlite3$(EXE) | |
| 133 + ./testfixture$(EXE) $(TOP)/test/fts.test | |
| 134 + | |
| 135 +fts2test: testfixture$(EXE) sqlite3$(EXE) | 132 +fts2test: testfixture$(EXE) sqlite3$(EXE) |
| 136 + ./testfixture$(EXE) $(TOP)/test/fts2.test | 133 + ./testfixture$(EXE) $(TOP)/test/fts2.test |
| 137 + | 134 + |
| 138 sqlite3_analyzer$(EXE): $(TOP)/src/tclsqlite.c sqlite3.c $(TESTSRC) \ | 135 sqlite3_analyzer$(EXE): $(TOP)/src/tclsqlite.c sqlite3.c $(TESTSRC) \ |
| 139 $(TOP)/tool/spaceanal.tcl | 136 $(TOP)/tool/spaceanal.tcl |
| 140 sed \ | 137 sed \ |
| 141 Index: src/test_autoext.c | |
| 142 =================================================================== | |
| 143 --- src/test_autoext.c 2009-09-03 13:32:06.000000000 -0700 | |
| 144 +++ src/test_autoext.c 2009-09-15 18:14:35.000000000 -0700 | |
| 145 @@ -17,7 +17,9 @@ | |
| 146 #include "sqlite3ext.h" | |
| 147 | |
| 148 #ifndef SQLITE_OMIT_LOAD_EXTENSION | |
| 149 +#ifndef SQLITE_CORE | |
| 150 static SQLITE_EXTENSION_INIT1 | |
| 151 +#endif | |
| 152 | |
| 153 /* | |
| 154 ** The sqr() SQL function returns the square of its input value. | |
| 155 Index: src/quick.test | 138 Index: src/quick.test |
| 156 =================================================================== | 139 =================================================================== |
| 157 --- test/quick.test 2009-09-04 13:37:44.000000000 -0700 | 140 --- test/quick.test 2009-09-04 13:37:44.000000000 -0700 |
| 158 +++ test/quick.test 2009-09-15 11:34:54.000000000 -0700 | 141 +++ test/quick.test 2009-09-15 11:34:54.000000000 -0700 |
| 159 @@ -58,6 +58,8 @@ | 142 @@ -58,6 +58,7 @@ |
| 160 crash7.test | 143 crash7.test |
| 161 delete3.test | 144 delete3.test |
| 162 fts3.test | 145 fts3.test |
| 163 + fts.test | |
| 164 + fts2.test | 146 + fts2.test |
| 165 fuzz.test | 147 fuzz.test |
| 166 fuzz3.test | 148 fuzz3.test |
| 167 fuzz_malloc.test | 149 fuzz_malloc.test |
| OLD | NEW |