From 0b58dfebe6070ace895fdc3970020b2d01799269 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Wed, 8 Oct 2014 15:39:00 +0200 Subject: compilation fix lua (how did it ever work!) --- src/crawl/crawl.cpp | 2 +- src/modules/processor/robotstxt/GNUmakefile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/crawl/crawl.cpp b/src/crawl/crawl.cpp index 82cb690..14a02dd 100755 --- a/src/crawl/crawl.cpp +++ b/src/crawl/crawl.cpp @@ -90,7 +90,7 @@ int main( int /* argc */, char *argv[] ) normalizerModules.push_back( ".\\modules\\urlnormalizer\\simpleurl\\mod_urlnormalizer_simple.dll" ); normalizerModules.push_back( ".\\modules\\urlnormalizer\\googleurl\\mod_urlnormalizer_googleurl.dll" ); #endif - ModuleLoader urlNormalizers( normalizerModules ); + ModuleLoader urlNormalizers( normalizerModules, CLOSE_DEFERRED, (void *)&luaVm ); vector filterModules; #ifndef _WIN32 diff --git a/src/modules/processor/robotstxt/GNUmakefile b/src/modules/processor/robotstxt/GNUmakefile index cbfe420..c8ffd4e 100644 --- a/src/modules/processor/robotstxt/GNUmakefile +++ b/src/modules/processor/robotstxt/GNUmakefile @@ -6,6 +6,7 @@ SUBDIRS = INCLUDE_DIRS = \ -I. -I$(TOPDIR)/src \ + -I$(TOPDIR)/include \ -I$(TOPDIR)/include/logger \ -I$(TOPDIR)/include/util \ -I$(TOPDIR)/include/module \ -- cgit v1.2.3-54-g00ecf