1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
Description: link against libsqlite3 rather than statically linking
against the embedded library
Author: Julien Valroff <julien@debian.org>
Last-Updated: 2011-06-02
Forwarded: not-needed
--- a/tsk3/auto/Makefile.am
+++ b/tsk3/auto/Makefile.am
@@ -3,7 +3,7 @@
noinst_LTLIBRARIES = libtskauto.la
# Note that the .h files are in the top-level Makefile
-libtskauto_la_SOURCES = auto.cpp tsk_auto_i.h auto_db.cpp sqlite3.c sqlite3.h
+libtskauto_la_SOURCES = auto.cpp tsk_auto_i.h auto_db.cpp
indent:
indent *.cpp *.h
--- a/tsk3/auto/Makefile.in
+++ b/tsk3/auto/Makefile.in
@@ -43,7 +43,7 @@
CONFIG_CLEAN_FILES =
LTLIBRARIES = $(noinst_LTLIBRARIES)
libtskauto_la_LIBADD =
-am_libtskauto_la_OBJECTS = auto.lo auto_db.lo sqlite3.lo
+am_libtskauto_la_OBJECTS = auto.lo auto_db.lo
libtskauto_la_OBJECTS = $(am_libtskauto_la_OBJECTS)
DEFAULT_INCLUDES = -I. -I$(top_builddir)/tsk3@am__isrc@
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
@@ -191,7 +191,7 @@
EXTRA_DIST = .indent.pro
noinst_LTLIBRARIES = libtskauto.la
# Note that the .h files are in the top-level Makefile
-libtskauto_la_SOURCES = auto.cpp tsk_auto_i.h auto_db.cpp sqlite3.c sqlite3.h
+libtskauto_la_SOURCES = auto.cpp tsk_auto_i.h auto_db.cpp
all: all-am
.SUFFIXES:
@@ -245,7 +245,6 @@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/auto.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/auto_db.Plo@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sqlite3.Plo@am__quote@
.c.o:
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|