diff options
author | Marcus Alves Grando <mnag@FreeBSD.org> | 2008-04-05 14:49:37 +0000 |
---|---|---|
committer | Marcus Alves Grando <mnag@FreeBSD.org> | 2008-04-05 14:49:37 +0000 |
commit | 36b99c23c6a5a99472524bb289470993bd0ced9c (patch) | |
tree | 84f97936e82eca53e1f5b27b0464d7f026bb72fe /databases/sqlite3/files/fts2_patch-Makefile.in | |
parent | - Update system-config-printer to 0.9.90 (diff) |
- Finally, update to 3.5.6
- Enable THREADS by default
PS: See UPDATING if you have problems.
Requested by: many
Notes
Notes:
svn path=/head/; revision=210580
Diffstat (limited to 'databases/sqlite3/files/fts2_patch-Makefile.in')
-rw-r--r-- | databases/sqlite3/files/fts2_patch-Makefile.in | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/databases/sqlite3/files/fts2_patch-Makefile.in b/databases/sqlite3/files/fts2_patch-Makefile.in deleted file mode 100644 index b079a8501121..000000000000 --- a/databases/sqlite3/files/fts2_patch-Makefile.in +++ /dev/null @@ -1,62 +0,0 @@ ---- Makefile.in.orig 2007-06-28 09:46:18.000000000 -0300 -+++ Makefile.in 2007-08-10 08:47:35.000000000 -0300 -@@ -128,7 +128,8 @@ - select.lo table.lo tokenize.lo trigger.lo update.lo \ - util.lo vacuum.lo \ - vdbe.lo vdbeapi.lo vdbeaux.lo vdbeblob.lo vdbefifo.lo vdbemem.lo \ -- where.lo utf.lo legacy.lo vtab.lo -+ where.lo utf.lo legacy.lo vtab.lo \ -+ fts2.lo fts2_hash.lo fts2_porter.lo fts2_tokenizer.lo fts2_tokenizer1.lo - - # All of the source code files. - # -@@ -198,6 +199,15 @@ - $(TOP)/ext/fts1/fts1_tokenizer.h \ - $(TOP)/ext/fts1/fts1_tokenizer1.c - -+SRC += \ -+ $(TOP)/ext/fts2/fts2.c \ -+ $(TOP)/ext/fts2/fts2.h \ -+ $(TOP)/ext/fts2/fts2_hash.c \ -+ $(TOP)/ext/fts2/fts2_hash.h \ -+ $(TOP)/ext/fts2/fts2_porter.c \ -+ $(TOP)/ext/fts2/fts2_tokenizer.c \ -+ $(TOP)/ext/fts2/fts2_tokenizer.h \ -+ $(TOP)/ext/fts2/fts2_tokenizer1.c - - # Source code to the test files. - # -@@ -261,6 +271,11 @@ - $(TOP)/ext/fts1/fts1_hash.h \ - $(TOP)/ext/fts1/fts1_tokenizer.h - -+HDR += \ -+ $(TOP)/ext/fts2/fts2.h \ -+ $(TOP)/ext/fts2/fts2_hash.h \ -+ $(TOP)/ext/fts2/fts2_tokenizer.h -+ - # Header files used by the VDBE submodule - # - VDBEHDR = \ -@@ -482,6 +497,21 @@ - where.lo: $(TOP)/src/where.c $(HDR) - $(LTCOMPILE) -c $(TOP)/src/where.c - -+fts2.lo: $(TOP)/ext/fts2/fts2.c $(HDR) -+ $(LTCOMPILE) -c $(TOP)/ext/fts2/fts2.c -+ -+fts2_hash.lo: $(TOP)/ext/fts2/fts2_hash.c $(HDR) -+ $(LTCOMPILE) -c $(TOP)/ext/fts2/fts2_hash.c -+ -+fts2_porter.lo: $(TOP)/ext/fts2/fts2_porter.c $(HDR) -+ $(LTCOMPILE) -c $(TOP)/ext/fts2/fts2_porter.c -+ -+fts2_tokenizer.lo: $(TOP)/ext/fts2/fts2_tokenizer.c $(HDR) -+ $(LTCOMPILE) -c $(TOP)/ext/fts2/fts2_tokenizer.c -+ -+fts2_tokenizer1.lo: $(TOP)/ext/fts2/fts2_tokenizer1.c $(HDR) -+ $(LTCOMPILE) -c $(TOP)/ext/fts2/fts2_tokenizer1.c -+ - tclsqlite-shell.lo: $(TOP)/src/tclsqlite.c $(HDR) - $(LTCOMPILE) -DTCLSH=1 -o $@ -c $(TOP)/src/tclsqlite.c - |