0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-29 02:02:38 +01:00

configure: Update package recommendation from libssl1.0-dev to libssl-dev. [ci skip]

This commit is contained in:
Jason Volk 2019-12-31 23:21:11 -08:00
parent ca663db129
commit 7883164bce

View file

@ -1288,7 +1288,7 @@ AC_CHECK_LIB(ssl, SSL_version,
SSL_LIBS="-lssl" SSL_LIBS="-lssl"
], [ ], [
have_ssl="no" have_ssl="no"
AC_MSG_ERROR([libssl is required but not found. Try apt-get install libssl1.0-dev]) AC_MSG_ERROR([libssl is required but not found. Try apt-get install libssl-dev])
]) ])
AM_CONDITIONAL([SSL], [test "x$have_ssl" = "xyes"]) AM_CONDITIONAL([SSL], [test "x$have_ssl" = "xyes"])