]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bug 3263: ssl_crtd: undefined references to squid_curtime
authorAlex Rousskov <rousskov@measurement-factory.com>
Fri, 16 Mar 2012 06:12:44 +0000 (00:12 -0600)
committerAmos Jeffries <squid3@treenet.co.nz>
Fri, 16 Mar 2012 06:12:44 +0000 (00:12 -0600)
src/ssl/Makefile.am
src/ssl/certificate_db.h

index a87de47970e000c2b95d7687bf197343bff72d6f..4b475cae77b95be4bf4f64395f9f6a4c2c00c26b 100644 (file)
@@ -16,20 +16,23 @@ 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 \
        Config.cc \
        Config.h \
        ErrorDetail.cc \
-       ErrorDetail.h
+       ErrorDetail.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 94751c0a1a24ef76e1f3f037d425565d279bc975..d45f95fd968a01d4751e55223ea599e5f2dff6c6 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