summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/sqlite/files/0001-using-the-dynamic-library.patch
blob: e3bfd5f656899f34997f3db52d238d1b403c5a6b (plain)
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
[PATCH] using the dynamic library

Upstream-Status:  Inappropriate [configuration]

building statically-linked sqlite3 failed since sqlite3.o is generated in 
different dir, even if link successes, the size of sqlite3 is become larger,
so use the dynamic link, ref: http://patchwork.openembedded.org/patch/93293/

Signed-off-by: Roy Li <rongqing.li@windriver.com>
---
 Makefile.am | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile.am b/Makefile.am
index 88bc23d..fe50f20 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -7,7 +7,8 @@ libsqlite3_la_LDFLAGS = -no-undefined -version-info 8:6:8
 
 bin_PROGRAMS = sqlite3
 sqlite3_SOURCES = shell.c sqlite3.h
-sqlite3_LDADD = sqlite3.$(OBJEXT) @READLINE_LIBS@
+sqlite3_LDADD = @READLINE_LIBS@ libsqlite3.la
+
 
 include_HEADERS = sqlite3.h sqlite3ext.h
 
-- 
1.9.1