Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 207701 | Differences between
and this patch

Collapse All | Expand All

(-)sqlite-3.6.20-orig/Makefile.in (-1 / +31 lines)
Lines 150-155 Link Here
150
LIBTOOL = ./libtool
150
LIBTOOL = ./libtool
151
ALLOWRELEASE = @ALLOWRELEASE@
151
ALLOWRELEASE = @ALLOWRELEASE@
152
152
153
# FTS3
154
#
155
TCC += -DSQLITE_CORE
156
TCC += -DSQLITE_ENABLE_FTS3=1
157
153
# libtool compile/link/install
158
# libtool compile/link/install
154
LTCOMPILE = $(LIBTOOL) --mode=compile --tag=CC $(TCC) $(LTCOMPILE_EXTRAS)
159
LTCOMPILE = $(LIBTOOL) --mode=compile --tag=CC $(TCC) $(LTCOMPILE_EXTRAS)
155
LTLINK = $(LIBTOOL) --mode=link $(TCC) $(LTCOMPILE_EXTRAS) @LDFLAGS@ $(LTLINK_EXTRAS)
160
LTLINK = $(LIBTOOL) --mode=link $(TCC) $(LTCOMPILE_EXTRAS) @LDFLAGS@ $(LTLINK_EXTRAS)
Lines 187-193 Link Here
187
USE_AMALGAMATION = @USE_AMALGAMATION@
192
USE_AMALGAMATION = @USE_AMALGAMATION@
188
LIBOBJ = $(OBJS$(USE_AMALGAMATION))
193
LIBOBJ = $(OBJS$(USE_AMALGAMATION))
189
194
190
195
# Object files for FTS
196
#
197
LIBOBJ += \
198
	fts3.lo fts3_expr.lo fts3_hash.lo fts3_porter.lo fts3_tokenizer.lo fts3_tokenizer1.lo
199
 
191
# All of the source code files.
200
# All of the source code files.
192
#
201
#
193
SRC = \
202
SRC = \
Lines 832-834 Link Here
832
sqlite3.dll: $(REAL_LIBOBJ) sqlite3.def
841
sqlite3.dll: $(REAL_LIBOBJ) sqlite3.def
833
	$(TCC) -shared -o $@ sqlite3.def \
842
	$(TCC) -shared -o $@ sqlite3.def \
834
		-Wl,"--strip-all" $(REAL_LIBOBJ)
843
		-Wl,"--strip-all" $(REAL_LIBOBJ)
844
845
#
846
# FTS3
847
#
848
fts3.lo: $(TOP)/ext/fts3/fts3.c $(HDR)
849
	$(LTCOMPILE) -c $(TOP)/ext/fts3/fts3.c
850
 
851
fts3_expr.lo: $(TOP)/ext/fts3/fts3_expr.c $(HDR)
852
	$(LTCOMPILE) -c $(TOP)/ext/fts3/fts3_expr.c
853
 
854
fts3_hash.lo: $(TOP)/ext/fts3/fts3_hash.c $(HDR)
855
	$(LTCOMPILE) -c $(TOP)/ext/fts3/fts3_hash.c
856
 
857
fts3_porter.lo: $(TOP)/ext/fts3/fts3_porter.c $(HDR)
858
	$(LTCOMPILE) -c $(TOP)/ext/fts3/fts3_porter.c
859
 
860
fts3_tokenizer.lo: $(TOP)/ext/fts3/fts3_tokenizer.c $(HDR)
861
	$(LTCOMPILE) -c $(TOP)/ext/fts3/fts3_tokenizer.c
862
 
863
fts3_tokenizer1.lo: $(TOP)/ext/fts3/fts3_tokenizer1.c $(HDR)
864
	$(LTCOMPILE) -c $(TOP)/ext/fts3/fts3_tokenizer1.c
(-)sqlite-3.6.20-orig/src/main.c (-1 / +1 lines)
Lines 17-23 Link Here
17
#include "sqliteInt.h"
17
#include "sqliteInt.h"
18
18
19
#ifdef SQLITE_ENABLE_FTS3
19
#ifdef SQLITE_ENABLE_FTS3
20
# include "fts3.h"
20
# include "../ext/fts3/fts3.h"
21
#endif
21
#endif
22
#ifdef SQLITE_ENABLE_RTREE
22
#ifdef SQLITE_ENABLE_RTREE
23
# include "rtree.h"
23
# include "rtree.h"

Return to bug 207701