X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=m4%2Fopenssl.m4;h=782e7e12984e702f28e9722a26e6ff075a80cf50;hp=d933b23bb59b505c84f3c47fb6d5675ff74f5a24;hb=ef88db63120503a8c9d34d86073795c99dedc3a9;hpb=9ddb37cee0f754ef88a55f692a508010fe18c782 diff --git a/m4/openssl.m4 b/m4/openssl.m4 index d933b23b..782e7e12 100644 --- a/m4/openssl.m4 +++ b/m4/openssl.m4 @@ -33,22 +33,21 @@ AC_DEFUN(tinc_OPENSSL, ) ]) -if test "$openssl_lib" != "none given" ; then +if test "$tinc_cv_openssl_lib" != "none given" ; then LIBS="$LIBS -L$tinc_cv_openssl_lib" fi -if test "$openssl_include" != "none given" ; then - INCLUDES="$INCLUDES -I$tinc_cv_openssl_include" +if test "$tinc_cv_openssl_include" != "none given" ; then + CFLAGS="$CFLAGS -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 sha.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 openssl/sha.h, + [], [osi=none; break]) fi