[Midnightbsd-cvs] CVS Commit: sqlite3/files: 3.4.1
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Fri Aug 10 14:19:18 EDT 2007
Log Message:
-----------
3.4.1
Added Files:
-----------
mports/databases/sqlite3/files:
fts12_patch-Makefile.in (r1.1)
fts1_patch-Makefile.in (r1.1)
fts2_patch-Makefile.in (r1.1)
patch-ext__fts1__fts1.c (r1.1)
patch-ext__fts1__fts1_porter.c (r1.1)
patch-ext__fts1__fts1_tokenizer1.c (r1.1)
patch-ext__fts2__fts2.c (r1.1)
patch-ext__fts2__fts2_porter.c (r1.1)
patch-ext__fts2__fts2_tokenizer1.c (r1.1)
-------------- next part --------------
--- /dev/null
+++ databases/sqlite3/files/patch-ext__fts1__fts1_tokenizer1.c
@@ -0,0 +1,14 @@
+--- ext/fts1/fts1_tokenizer1.c.orig Sat Sep 30 08:57:33 2006
++++ ext/fts1/fts1_tokenizer1.c Sun Dec 3 14:45:56 2006
+@@ -18,11 +18,7 @@
+
+
+ #include <assert.h>
+-#if !defined(__APPLE__)
+-#include <malloc.h>
+-#else
+ #include <stdlib.h>
+-#endif
+ #include <stdio.h>
+ #include <string.h>
+ #include <ctype.h>
--- /dev/null
+++ databases/sqlite3/files/patch-ext__fts1__fts1_porter.c
@@ -0,0 +1,14 @@
+--- ext/fts1/fts1_porter.c.orig Sun Oct 1 13:01:13 2006
++++ ext/fts1/fts1_porter.c Sun Dec 3 14:45:17 2006
+@@ -26,11 +26,7 @@
+
+
+ #include <assert.h>
+-#if !defined(__APPLE__)
+-#include <malloc.h>
+-#else
+ #include <stdlib.h>
+-#endif
+ #include <stdio.h>
+ #include <string.h>
+ #include <ctype.h>
--- /dev/null
+++ databases/sqlite3/files/patch-ext__fts2__fts2_tokenizer1.c
@@ -0,0 +1,14 @@
+--- ext/fts2/fts2_tokenizer1.c.orig Fri Jun 8 12:31:51 2007
++++ ext/fts2/fts2_tokenizer1.c Fri Jun 8 12:32:26 2007
+@@ -18,11 +18,7 @@
+
+
+ #include <assert.h>
+-#if !defined(__APPLE__)
+-#include <malloc.h>
+-#else
+ #include <stdlib.h>
+-#endif
+ #include <stdio.h>
+ #include <string.h>
+ #include <ctype.h>
--- /dev/null
+++ databases/sqlite3/files/fts2_patch-Makefile.in
@@ -0,0 +1,58 @@
+--- Makefile.in.orig 2007-06-14 17:54:38.000000000 -0300
++++ Makefile.in 2007-07-04 19:24:04.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_tokenizer1.lo
+
+ # All of the source code files.
+ #
+@@ -198,6 +199,14 @@
+ $(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.h \
++ $(TOP)/ext/fts2/fts2_tokenizer1.c
+
+ # Source code to the test files.
+ #
+@@ -261,6 +270,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 +496,18 @@
+ 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_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
+
--- /dev/null
+++ databases/sqlite3/files/patch-ext__fts1__fts1.c
@@ -0,0 +1,14 @@
+--- ext/fts1/fts1.c.orig Sun Oct 8 06:16:32 2006
++++ ext/fts1/fts1.c Sun Dec 3 14:44:46 2006
+@@ -19,11 +19,7 @@
+ #endif
+
+ #include <assert.h>
+-#if !defined(__APPLE__)
+-#include <malloc.h>
+-#else
+ #include <stdlib.h>
+-#endif
+ #include <stdio.h>
+ #include <string.h>
+ #include <ctype.h>
--- /dev/null
+++ databases/sqlite3/files/fts12_patch-Makefile.in
@@ -0,0 +1,71 @@
+--- Makefile.in.orig 2007-06-14 17:54:38.000000000 -0300
++++ Makefile.in 2007-07-04 19:23:03.000000000 -0300
+@@ -128,7 +128,9 @@
+ 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 \
++ fts2.lo fts2_hash.lo fts2_porter.lo fts2_tokenizer1.lo
+
+ # All of the source code files.
+ #
+@@ -198,6 +200,14 @@
+ $(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.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,30 @@
+ 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
++
++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_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
+
--- /dev/null
+++ databases/sqlite3/files/fts1_patch-Makefile.in
@@ -0,0 +1,31 @@
+--- 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
+
--- /dev/null
+++ databases/sqlite3/files/patch-ext__fts2__fts2_porter.c
@@ -0,0 +1,14 @@
+--- ext/fts2/fts2_porter.c.orig Fri Jun 8 12:31:44 2007
++++ ext/fts2/fts2_porter.c Fri Jun 8 12:32:21 2007
+@@ -26,11 +26,7 @@
+
+
+ #include <assert.h>
+-#if !defined(__APPLE__)
+-#include <malloc.h>
+-#else
+ #include <stdlib.h>
+-#endif
+ #include <stdio.h>
+ #include <string.h>
+ #include <ctype.h>
--- /dev/null
+++ databases/sqlite3/files/patch-ext__fts2__fts2.c
@@ -0,0 +1,12 @@
+--- ext/fts2/fts2.c.orig Fri Jun 8 12:31:37 2007
++++ ext/fts2/fts2.c Fri Jun 8 12:32:16 2007
+@@ -269,9 +269,6 @@
+ #endif
+
+ #include <assert.h>
+-#if !defined(__APPLE__)
+-#include <malloc.h>
+-#endif
+ #include <stdlib.h>
+ #include <stdio.h>
+ #include <string.h>
More information about the Midnightbsd-cvs
mailing list