From 13da385aa7f5e9a9f52288fd7735d6dc806fab73 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sun, 2 Sep 2012 13:07:14 +0200 Subject: prefer dynamic to static linking (linking a non-PIC .a library into a module is illegal, but on Linux!) --- streamhtmlparser/GNUmakefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'streamhtmlparser') diff --git a/streamhtmlparser/GNUmakefile b/streamhtmlparser/GNUmakefile index ea5380d..46f93f0 100644 --- a/streamhtmlparser/GNUmakefile +++ b/streamhtmlparser/GNUmakefile @@ -18,8 +18,10 @@ OBJS = \ jsparser.o \ htmlparser.o -STATIC_LIB = \ - libstreamhtmlparser.a +DYNAMIC_LIB = libstreamhtmlparser.so +DYNAMIC_LIB_MAJOR = 0 +DYNAMIC_LIB_MINOR = 0 +DYNAMIC_LIB_PATCH = 0 -include $(TOPDIR)/makefiles/gmake/sub.mk -- cgit v1.2.3-54-g00ecf