@@ -154,6 +154,8 @@ tar:
--exclude=$(notdir $(CURDIR))/test* \
--exclude=$(notdir $(CURDIR))/tmp* \
--exclude=$(notdir $(CURDIR))/debian/ser* \
+ --exclude=$(notdir $(CURDIR))/tls* \
+ --exclude=$(notdir $(CURDIR))/ser_tls* \
--exclude=CVS* \
--exclude=*.[do] \
--exclude=*.so \
@@ -14,6 +14,9 @@
sources=$(filter-out $(auto_gen), $(wildcard *.c) $(wildcard mem/*.c) \
$(wildcard parser/*.c) $(wildcard parser/digest/*.c) \
$(wildcard parser/contact/*.c) $(wildcard db/*.c) ) $(auto_gen)
+ifneq ($(TLS),)
+ sources+= $(wildcard tls/*.c)
+endif
objs=$(sources:.c=.o)
extra_objs=
depends=$(sources:.c=.d)
@@ -99,7 +99,7 @@
#ifdef USE_TCP
#include "tcp_init.h"
#ifdef USE_TLS
-#include "tls_init.h"
+#include "tls/tls_init.h"
#endif