summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2012-09-07 12:55:19 +0200
committerAndreas Baumann <abaumann@yahoo.com>2012-09-07 12:55:19 +0200
commitdcbeb3ab19da5393877b1ef4db2ac26d8a5787c0 (patch)
tree3cd7187cd034b05ec8652c6a97c8a320b75def39 /src/modules
parent056883923550ab5455d0a4d106b3af5002689b2f (diff)
downloadcrawler-dcbeb3ab19da5393877b1ef4db2ac26d8a5787c0.tar.gz
crawler-dcbeb3ab19da5393877b1ef4db2ac26d8a5787c0.tar.bz2
fixed all tests on Windows, still issues with static libcrawl
Diffstat (limited to 'src/modules')
-rwxr-xr-xsrc/modules/processor/htmllinkextract/Makefile.W323
-rwxr-xr-xsrc/modules/urlnormalizer/simpleurl/Makefile.W324
2 files changed, 4 insertions, 3 deletions
diff --git a/src/modules/processor/htmllinkextract/Makefile.W32 b/src/modules/processor/htmllinkextract/Makefile.W32
index 1a53fec..1a34965 100755
--- a/src/modules/processor/htmllinkextract/Makefile.W32
+++ b/src/modules/processor/htmllinkextract/Makefile.W32
@@ -20,7 +20,8 @@ INCLUDE_LDFLAGS = \
INCLUDE_LIBS = \
$(TOPDIR)\streamhtmlparser\streamhtmlparser.lib \
- $(TOPDIR)\src\libcrawler\crawler.lib
+ $(TOPDIR)\src\libcrawler\crawler.lib \
+ $(TOPDIR)\src\logger\logger.lib
DYNAMIC_MODULE = \
mod_processor_htmllinkextract.dll
diff --git a/src/modules/urlnormalizer/simpleurl/Makefile.W32 b/src/modules/urlnormalizer/simpleurl/Makefile.W32
index 2a26e9c..641b656 100755
--- a/src/modules/urlnormalizer/simpleurl/Makefile.W32
+++ b/src/modules/urlnormalizer/simpleurl/Makefile.W32
@@ -23,7 +23,7 @@ DYNAMIC_MODULE = \
mod_urlnormalizer_simple.dll
STATIC_LIB = \
- simpleurlnormalizer.lib
+ simpleurlnormalizerstatic.lib
CPP_OBJS = \
SimpleURLNormalizer.obj
@@ -34,7 +34,7 @@ SHARED_CPP_OBJS = \
!INCLUDE $(TOPDIR)\makefiles\nmake\sub.mk
$(STATIC_LIB): $(CPP_OBJS)
- $(LINK) /lib /nologo /out:$@ $(STATIC_LDFLAGS) $?
+ $(LINK) /lib /nologo /out:$@ $(STATIC_LDFLAGS) $(LIBS) $?
$(DYNAMIC_MODULE): $(SHARED_CPP_OBJS)
$(LINK) /dll /nologo /out:$@ $(LDFLAGS) $(LIBS) $?