| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- Index: Makefile.in
- --- Makefile.in.orig 2008-04-14 02:49:45 +0200
- +++ Makefile.in 2008-04-17 08:24:02 +0200
- @@ -167,6 +167,24 @@
- LIBOBJ = $(OBJS$(USE_AMALGAMATION))
-
-
- +# FTS1 support
- +ifdef FTS1
- +TCC += -DSQLITE_ENABLE_FTS1
- +LIBOBJ += fts1.lo fts1_hash.lo fts1_porter.lo fts1_tokenizer1.lo
- +endif
- +
- +# FTS2 support
- +ifdef FTS2
- +TCC += -DSQLITE_ENABLE_FTS2
- +LIBOBJ += fts2.lo fts2_hash.lo fts2_porter.lo fts2_tokenizer1.lo
- +endif
- +
- +# FTS3 support
- +ifdef FTS3
- +TCC += -DSQLITE_ENABLE_FTS3
- +LIBOBJ += fts3.lo fts3_hash.lo fts3_porter.lo fts3_tokenizer1.lo
- +endif
- +
- # All of the source code files.
- #
- SRC = \
- @@ -732,3 +750,31 @@
- sqlite3.dll: $(REAL_LIBOBJ) sqlite3.def
- $(TCC) -shared -o $@ sqlite3.def \
- -Wl,"--strip-all" $(REAL_LIBOBJ)
- +
- +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
- +
- +fts3.lo: $(TOP)/ext/fts3/fts3.c $(HDR)
- + $(LTCOMPILE) -c $(TOP)/ext/fts3/fts3.c
- +fts3_hash.lo: $(TOP)/ext/fts3/fts3_hash.c $(HDR)
- + $(LTCOMPILE) -c $(TOP)/ext/fts3/fts3_hash.c
- +fts3_porter.lo: $(TOP)/ext/fts3/fts3_porter.c $(HDR)
- + $(LTCOMPILE) -c $(TOP)/ext/fts3/fts3_porter.c
- +fts3_tokenizer1.lo: $(TOP)/ext/fts3/fts3_tokenizer1.c $(HDR)
- + $(LTCOMPILE) -c $(TOP)/ext/fts3/fts3_tokenizer1.c
- +
- Index: sqlite3.pc.in
- --- sqlite3.pc.in.orig 2008-03-20 13:06:04 +0100
- +++ sqlite3.pc.in 2008-04-17 08:24:32 +0200
- @@ -8,6 +8,5 @@
- Name: SQLite
- Description: SQL database engine
- Version: @VERSION@
- -Libs: -L${libdir} -lsqlite3
- -Libs.private: @LIBS@
- +Libs: -L${libdir} -lsqlite3 @LIBS@
- Cflags: -I${includedir}
|