|
@@ -384,8 +384,11 @@ test "${enable_dbengine}" = "yes" -a -z "${LZ4_LIBS}" && \
|
|
|
test "${enable_dbengine}" = "yes" -a -z "${JUDY_LIBS}" && \
|
|
|
AC_MSG_ERROR([libJudy required but not found. Try installing 'libjudy-dev' or 'Judy-devel'.])
|
|
|
|
|
|
-test "${enable_dbengine}" = "yes" -o "${enable_https}" = "yes" -a -z "${SSL_LIBS}" && \
|
|
|
- AC_MSG_ERROR([OpenSSL required but not found. Try installing 'libssl-dev' or 'openssl-devel'.])
|
|
|
+test "${enable_https}" = "yes" -a -z "${SSL_LIBS}" && \
|
|
|
+ AC_MSG_ERROR([OpenSSL required for HTTPS but not found. Try installing 'libssl-dev' or 'openssl-devel'.])
|
|
|
+
|
|
|
+test "${enable_dbengine}" = "yes" -a -z "${SSL_LIBS}" && \
|
|
|
+ AC_MSG_ERROR([OpenSSL required for DBENGINE but not found. Try installing 'libssl-dev' or 'openssl-devel'.])
|
|
|
|
|
|
AC_MSG_CHECKING([if netdata dbengine should be used])
|
|
|
if test "${enable_dbengine}" != "no" -a "${UV_LIBS}" -a "${LZ4_LIBS}" -a "${JUDY_LIBS}" -a "${SSL_LIBS}"; then
|