From: Ivo Timmermans Date: Wed, 15 Nov 2000 00:57:26 +0000 (+0000) Subject: Also check for rand.h and err.h. If any of these files does not X-Git-Tag: release-1.0pre4~180 X-Git-Url: https://git.librecmc.org/?p=oweals%2Ftinc.git;a=commitdiff_plain;h=8eb60d0ccde2f1de6fd917db7300e537f271783e Also check for rand.h and err.h. If any of these files does not exist, try the next alternative path. --- diff --git a/m4/openssl.m4 b/m4/openssl.m4 index c0c2cab..6e08ebe 100644 --- a/m4/openssl.m4 +++ b/m4/openssl.m4 @@ -40,15 +40,14 @@ if test "$tinc_cv_openssl_include" != "none given" ; then INCLUDES="$INCLUDES -I$tinc_cv_openssl_include" fi -osi=none -AC_CHECK_HEADERS(evp.h rsa.h, -[osi=found - break]) +osi=found +AC_CHECK_HEADERS(evp.h rsa.h rand.h err.h, +[], [osi=none; break]) if test "$osi" = "none" ; then - AC_CHECK_HEADERS(openssl/evp.h openssl/rsa.h, - [osi=found - break]) + osi=found + AC_CHECK_HEADERS(openssl/evp.h openssl/rsa.h openssl/rand.h openssl/err.h, + [], [osi=none; break]) fi