diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2023-08-06 20:16:48 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2023-08-06 20:16:48 (GMT) |
commit | 532ae1e0a10d00193719dcd1704744bf2966a25b (patch) | |
tree | 7680d70bf8efd00c6dacfdf7254203c60b4a8af7 | |
parent | 8ffff04fd7f9385c43f89a7a12f4423ee2d4ce19 (diff) |
Use the pkg-config file for OpenSSL as the libcrypto is required.
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 1c1e06c..e9183a2 100644 --- a/configure.ac +++ b/configure.ac @@ -453,10 +453,10 @@ AC_SUBST(LIBSQLITE_LIBS) #--- Checks for libssl -PKG_CHECK_MODULES(LIBSSL,libssl >= 1.0.1k,[libssl_found=yes],[libssl_found=no]) +PKG_CHECK_MODULES(LIBSSL,openssl >= 3.0.9,[libssl_found=yes],[libssl_found=no]) if test "$libssl_found" = "yes"; then - libssl_version=`pkg-config libssl --modversion` + libssl_version=`pkg-config openssl --modversion` else libssl_version='-' fi |