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/fts1_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/fts1_patch-Makefile.in')
-rw-r--r-- | databases/sqlite3/files/fts1_patch-Makefile.in | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/databases/sqlite3/files/fts1_patch-Makefile.in b/databases/sqlite3/files/fts1_patch-Makefile.in deleted file mode 100644 index a84838c25fef..000000000000 --- a/databases/sqlite3/files/fts1_patch-Makefile.in +++ /dev/null @@ -1,31 +0,0 @@ ---- Makefile.in.orig 2007-06-14 17:54:38.000000000 -0300 -+++ Makefile.in 2007-07-04 19:24:47.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 \ -+ fts1.lo fts1_hash.lo fts1_porter.lo fts1_tokenizer1.lo - - # All of the source code files. - # -@@ -482,6 +483,18 @@ - where.lo: $(TOP)/src/where.c $(HDR) - $(LTCOMPILE) -c $(TOP)/src/where.c - -+fts1.lo: $(TOP)/ext/fts1/fts1.c $(HDR) -+ $(LTCOMPILE) -c $(TOP)/ext/fts1/fts1.c -+ -+fts1_hash.lo: $(TOP)/ext/fts1/fts1_hash.c $(HDR) -+ $(LTCOMPILE) -c $(TOP)/ext/fts1/fts1_hash.c -+ -+fts1_porter.lo: $(TOP)/ext/fts1/fts1_porter.c $(HDR) -+ $(LTCOMPILE) -c $(TOP)/ext/fts1/fts1_porter.c -+ -+fts1_tokenizer1.lo: $(TOP)/ext/fts1/fts1_tokenizer1.c $(HDR) -+ $(LTCOMPILE) -c $(TOP)/ext/fts1/fts1_tokenizer1.c -+ - tclsqlite-shell.lo: $(TOP)/src/tclsqlite.c $(HDR) - $(LTCOMPILE) -DTCLSH=1 -o $@ -c $(TOP)/src/tclsqlite.c - |