When compiling squid 3.2 with crtd enabled, I experienced link errors due to non-present libsslutil.
I've seen some similar messages, but none had the exact patch. So I made the one myself (could it be pushed to upstream ?) : --- a/src/ssl/Makefile.am 2012-03-07 06:42:55.000000000 +0400 +++ b/src/ssl/Makefile.am 2012-06-07 19:25:52.391644141 +0400 @@ -45,5 +45,5 @@ if USE_SSL_CRTD ssl_crtd_SOURCES = ssl_crtd.cc certificate_db.cc certificate_db.h -ssl_crtd_LDADD = $(SSLLIB) -lsslutil $(COMPAT_LIB) +ssl_crtd_LDADD = libsslutil.la $(SSLLIB) -lsslutil $(COMPAT_LIB) endif -- Best wishes, Alexander Komyagin
