Fall back to checking for eopenssl
This commit is contained in:
parent
e0511a8615
commit
afa461a13e
1 changed files with 6 additions and 1 deletions
|
@ -43,7 +43,12 @@ PKG_CHECK_MODULES(openssl, [openssl >= 1.0.2], [
|
|||
CPPFLAGS="$CPPFLAGS $openssl_CFLAGS"
|
||||
LIBS="$LIBS $openssl_LIBS"
|
||||
], [
|
||||
AC_MSG_ERROR(You need openssl >= 1.0.2 installed!)
|
||||
PKG_CHECK_MODULES(eopenssl, [eopenssl >= 1.0.2], [
|
||||
CPPFLAGS="$CPPFLAGS $eopenssl_CFLAGS"
|
||||
LIBS="$LIBS $eopenssl_LIBS"
|
||||
], [
|
||||
AC_MSG_ERROR(You need openssl >= 1.0.2 installed!)
|
||||
])
|
||||
])
|
||||
|
||||
AS_IF([test x"$GOBJC" = x"yes"], [
|
||||
|
|
Reference in a new issue