Resolver linux compilation issues

Do not compile SSLPlugin by default due to external dependencies
add #include <sys/resources.h>
This commit is contained in:
z3APA3A 2014-07-02 13:46:00 +04:00
parent f25c501cb4
commit 4e92e71349
2 changed files with 7 additions and 2 deletions

View File

@ -19,7 +19,9 @@ LDFLAGS = -Wall -O2 -pthread
DLFLAGS = -shared
DLSUFFICS = .ld.so
# -lpthreads may be reuqired on some platforms instead of -pthreads
LIBS = -lcrypto -lssl -ldl
#LIBS = -lcrypto -lssl -ldl
# libcrypto and libssl are required for SSLPlugin
LIBS = -ldl
LNOUT = -o
EXESUFFICS =
OBJSUFFICS = .o
@ -29,7 +31,9 @@ REMOVECOMMAND = rm -f
TYPECOMMAND = cat
COMPATLIBS =
MAKEFILE = Makefile.Linux
PLUGINS = SSLPlugin StringsPlugin TrafficPlugin PCREPlugin TransparentPlugin
#PLUGINS = SSLPlugin StringsPlugin TrafficPlugin PCREPlugin TransparentPlugin
# SSLPlugin is not built by default because of external dependencies
PLUGINS = StringsPlugin TrafficPlugin PCREPlugin TransparentPlugin
include Makefile.inc

View File

@ -9,6 +9,7 @@
#include "proxy.h"
#ifndef _WIN32
#include <sys/resource.h>
#ifndef NOPLUGINS
#include <dlfcn.h>
#endif