]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
ssl_crtd: undefined references to squid_curtime
authorAlex Rousskov <rousskov@measurement-factory.com>
Thu, 8 Mar 2012 13:03:19 +0000 (06:03 -0700)
committerAmos Jeffries <squid3@treenet.co.nz>
Thu, 8 Mar 2012 13:03:19 +0000 (06:03 -0700)
src/ssl/Makefile.am
src/ssl/certificate_db.h

index e73e9db05902dbcc0718df2434c5d6cae767e553..f49a7a33707ab76292d55ac8948f71e395e6f142 100644 (file)
@@ -21,6 +21,7 @@ SSL_CRTD =
 SSL_CRTD_SOURCE =
 endif
 
+## SSL stuff used by main Squid but not by ssl_crtd
 libsslsquid_la_SOURCES = \
        context_storage.cc \
        context_storage.h \
@@ -31,14 +32,16 @@ libsslsquid_la_SOURCES = \
        ErrorDetailManager.cc \
        ErrorDetailManager.h \
        support.cc \
-       support.h
+       support.h \
+       \
+       $(SSL_CRTD_SOURCE)
 
+## SSL stuff used by main Squid and ssl_crtd
 libsslutil_la_SOURCES = \
        gadgets.cc \
        gadgets.h \
        crtd_message.cc \
-       crtd_message.h \
-       $(SSL_CRTD_SOURCE)
+       crtd_message.h
 
 libexec_PROGRAMS = \
        $(SSL_CRTD)
index 30352514313104e440999a20a7cf2ea1699e3582..b9832c1061b72af9edc3ce75c012b36703c6caac 100644 (file)
@@ -6,7 +6,6 @@
 #define SQUID_SSL_CERTIFICATE_DB_H
 
 #include "ssl/gadgets.h"
-#include "ssl/support.h"
 #if HAVE_STRING
 #include <string>
 #endif