From: Howard Chu Date: Tue, 21 Aug 2012 04:07:23 +0000 (-0700) Subject: Don't error out if tls=auto and MozNSS not found X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=cb1b9e2a3e4acef4695f69494be4389a13800c64;p=openldap Don't error out if tls=auto and MozNSS not found --- diff --git a/configure.in b/configure.in index f0f8d996f3..ecffe30e52 100644 --- a/configure.in +++ b/configure.in @@ -1242,7 +1242,9 @@ if test $ol_link_tls = no ; then [define if you have MozNSS]) TLS_LIBS="-lssl3 -lsmime3 -lnss3 -lnssutil3 -lplds4 -lplc4 -lnspr4" else + if test $ol_with_tls = moznss ; then AC_MSG_ERROR([MozNSS not found - please specify the location to the NSPR and NSS header files in CPPFLAGS and the location to the NSPR and NSS libraries in LDFLAGS (if not in the system location)]) + fi fi fi fi