| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- Index: sqlite-2.8.17/configure
- --- sqlite-2.8.17/configure.orig 2005-04-24 00:43:23 +0200
- +++ sqlite-2.8.17/configure 2006-12-18 09:51:03 +0100
- @@ -20450,7 +20450,10 @@
- TARGET_HAVE_READLINE=0
- fi
-
- -
- +if [ "$ac_cv_lib_readline_readline" = "no" ]
- +then
- + TARGET_HAVE_READLINE=0
- +fi
-
- #########
- # Figure out whether or not we have a "usleep()" function.
- Index: sqlite-3.3.10/Makefile.in
- --- sqlite-3.3.10/Makefile.in.orig 2006-10-03 14:40:42 +0200
- +++ sqlite-3.3.10/Makefile.in 2006-12-18 09:51:03 +0100
- @@ -132,6 +132,12 @@
- vdbe.lo vdbeapi.lo vdbeaux.lo vdbefifo.lo vdbemem.lo \
- where.lo utf.lo legacy.lo vtab.lo
-
- +# FTS1 support
- +ifdef FTS1
- +TCC += -DSQLITE_ENABLE_FTS1
- +LIBOBJ += fts1.lo fts1_hash.lo fts1_porter.lo fts1_tokenizer1.lo
- +endif
- +
- # All of the source code files.
- #
- SRC = \
- @@ -481,6 +487,14 @@
- -o testfixture $(TESTSRC) $(TOP)/src/tclsqlite.c \
- libsqlite3.la $(LIBTCL)
-
- +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
-
- fulltest: testfixture$(TEXE) sqlite3$(TEXE)
- ./testfixture $(TOP)/test/all.test
- Index: sqlite-3.3.10/configure
- --- sqlite-3.3.10/configure.orig 2006-10-03 14:42:27 +0200
- +++ sqlite-3.3.10/configure 2006-12-18 09:51:03 +0100
- @@ -20472,6 +20472,10 @@
- TARGET_HAVE_READLINE=0
- fi
-
- +if [ "$ac_cv_lib_readline_readline" = "no" ]
- +then
- + TARGET_HAVE_READLINE=0
- +fi
-
-
- #########
- Index: sqlite-3.3.10/ext/fts1/fts1.c
- --- sqlite-3.3.10/ext/fts1/fts1.c.orig 2006-10-08 13:16:32 +0200
- +++ sqlite-3.3.10/ext/fts1/fts1.c 2006-12-18 09:51:03 +0100
- @@ -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>
- Index: sqlite-3.3.10/ext/fts1/fts1_porter.c
- --- sqlite-3.3.10/ext/fts1/fts1_porter.c.orig 2006-10-01 20:01:13 +0200
- +++ sqlite-3.3.10/ext/fts1/fts1_porter.c 2006-12-18 09:51:03 +0100
- @@ -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>
- Index: sqlite-3.3.10/ext/fts1/fts1_tokenizer1.c
- --- sqlite-3.3.10/ext/fts1/fts1_tokenizer1.c.orig 2006-09-30 15:57:33 +0200
- +++ sqlite-3.3.10/ext/fts1/fts1_tokenizer1.c 2006-12-18 09:51:03 +0100
- @@ -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>
- Index: sqlite-3.3.10/sqlite3.pc.in
- --- sqlite-3.3.10/sqlite3.pc.in.orig 2004-07-19 06:25:47 +0200
- +++ sqlite-3.3.10/sqlite3.pc.in 2006-12-18 09:51:03 +0100
- @@ -8,5 +8,5 @@
- Name: SQLite
- Description: SQL database engine
- Version: @VERSION@
- -Libs: -L${libdir} -lsqlite3
- +Libs: -L${libdir} -lsqlite3 @TARGET_LIBS@
- Cflags: -I${includedir}
- Index: sqliteodbc-0.70/Makefile.in
- --- sqliteodbc-0.70/Makefile.in.orig 2006-07-03 07:51:27 +0200
- +++ sqliteodbc-0.70/Makefile.in 2006-12-18 09:51:12 +0100
- @@ -6,7 +6,7 @@
- CC = @CC@
- INSTALL = @INSTALL@
- LIBTOOL = ./libtool
- -CFLAGS= @CFLAGS@ -DDRIVER_VER_INFO=\"@VER_INFO@\"
- +CFLAGS= @CFLAGS@ @CPPFLAGS@ -DDRIVER_VER_INFO=\"@VER_INFO@\"
- SQLITE_INC = @SQLITE_INC@
- SQLITE_LIB = @SQLITE_LIB@
- SQLITE_FLAGS = -DHAVE_LIBVERSION=@SQLITE_LIBVERSION@ \
|