]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Clean up mbed tls error message.
authorMike Brady <mikebrady@eircom.net>
Sat, 7 Apr 2018 16:56:53 +0000 (17:56 +0100)
committerMike Brady <mikebrady@eircom.net>
Sat, 7 Apr 2018 16:56:53 +0000 (17:56 +0100)
configure.ac

index 453d7003312ef1e877fa090e1caf5b59b79d6e31..5dcbf995d8de5214467530cc2a377d03e771baca 100644 (file)
@@ -159,11 +159,11 @@ AC_ARG_WITH(ssl, [ choose --with-ssl=openssl, --with-ssl=mbedtls or --with-ssl=p
     fi
   elif test "x${with_ssl}" = xmbedtls ; then
     AC_CHECK_LIB([mbedtls],[mbedtls_ssl_init],,
-               [AC_MSG_ERROR([Cannot find required libray: libmbedtls],1)])
+               [AC_MSG_ERROR([mbed tls support requires the mbedtls library -- libmbedtls-dev suggested],1)])
     AC_CHECK_LIB([mbedcrypto], [mbedtls_entropy_func],,
-                [AC_MSG_ERROR([Cannot find required library: libmbedcrypto],1)])
+                [AC_MSG_ERROR([mbed tls support requires the mbedcrypto library -- libmbedcrypto0 suggested],1)])
     AC_CHECK_LIB([mbedx509], [mbedtls_pk_init],,
-                [AC_MSG_ERROR([Cannot find required library: libmbedx509],1)])
+                [AC_MSG_ERROR([mbed tls support requires the mbedx509 library -- libmbedx509-0 suggested],1)])
   elif test "x${with_ssl}" = xpolarssl ; then
     AC_CHECK_LIB([polarssl],[ssl_init], , AC_MSG_ERROR(PolarSSL is selected but the library cannot be found and is deprecated. Consider selecting mbed TLS instead using --with-ssl=mbedtls.))
   else