From 18ecd261136a247ae1b4a19b8020a0556bf1c090 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 26 Nov 2019 21:41:52 +0000 Subject: [PATCH] configure: Actually pass detected libraries over to make Signed-off-by: Michael Tremer --- configure.ac | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure.ac b/configure.ac index e55f416..518f5b5 100644 --- a/configure.ac +++ b/configure.ac @@ -159,11 +159,13 @@ case "${host}" in ;; esac RESOLV_LIBS="${LIBS}" +AC_SUBST(RESOLV_LIBS) dnl Checking for OpenSSL LIBS= AC_CHECK_LIB(crypto, EVP_EncryptInit,, AC_MSG_ERROR([libcrypto has not been found])) OPENSSL_LIBS="${LIBS}" +AC_SUBST(OPENSSL_LIBS) AC_CONFIG_HEADERS(config.h) AC_CONFIG_FILES([ -- 2.39.2