Skip to content
This repository was archived by the owner on Dec 2, 2024. It is now read-only.

Commit afa461a

Browse files
committed
Fall back to checking for eopenssl
1 parent e0511a8 commit afa461a

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

configure.ac

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,12 @@ PKG_CHECK_MODULES(openssl, [openssl >= 1.0.2], [
4343
CPPFLAGS="$CPPFLAGS $openssl_CFLAGS"
4444
LIBS="$LIBS $openssl_LIBS"
4545
], [
46-
AC_MSG_ERROR(You need openssl >= 1.0.2 installed!)
46+
PKG_CHECK_MODULES(eopenssl, [eopenssl >= 1.0.2], [
47+
CPPFLAGS="$CPPFLAGS $eopenssl_CFLAGS"
48+
LIBS="$LIBS $eopenssl_LIBS"
49+
], [
50+
AC_MSG_ERROR(You need openssl >= 1.0.2 installed!)
51+
])
4752
])
4853

4954
AS_IF([test x"$GOBJC" = x"yes"], [

0 commit comments

Comments
 (0)