From 3fc6e3cf5b586640a057e3f8335605c2bf5784ec Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Thu, 9 Oct 2014 15:49:49 +0200 Subject: first running lua code with URL normalization, cleanup needed.. --- src/crawl/GNUmakefile | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/crawl/GNUmakefile') diff --git a/src/crawl/GNUmakefile b/src/crawl/GNUmakefile index f664f0d..5a9051a 100755 --- a/src/crawl/GNUmakefile +++ b/src/crawl/GNUmakefile @@ -26,13 +26,22 @@ INCLUDE_LIBS = \ # openssl ifeq ($(WITH_SSL),1) -INCLUDE_CFLAGS += \ +INCLUDE_CXXFLAGS += \ -DWITH_SSL INCLUDE_LIBS += \ $(OPENSSL_LIBS) endif +ifeq ($(WITH_LUA),1) +INCLUDE_CXXFLAGS += \ + -DWITH_LUA + +INCLUDE_DIRS += \ + -I$(TOPDIR)/src/libcrawler \ + $(TOLUA_INCLUDES) +endif + CPP_OBJS = \ CPP_BINS = \ -- cgit v1.2.3-54-g00ecf