[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 4/4] configure: Log the libssh version detected
From: |
Philippe Mathieu-Daudé |
Subject: |
[Qemu-devel] [PATCH 4/4] configure: Log the libssh version detected |
Date: |
Wed, 14 Aug 2019 14:15:27 +0200 |
Log wether the version is 0.7 or 0.8 to better understand
user reports.
Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
---
configure | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/configure b/configure
index 040aa8eb6c..d06cee0ba0 100755
--- a/configure
+++ b/configure
@@ -3930,6 +3930,7 @@ if test "$libssh" != "no" ; then
if $pkg_config --exists libssh; then
libssh_cflags=$($pkg_config libssh --cflags)
libssh_libs=$($pkg_config libssh --libs)
+ libssh_version=$($pkg_config libssh --modversion)
libssh=yes
else
if test "$libssh" = "yes" ; then
@@ -3960,6 +3961,9 @@ int main(void) { return ssh_get_publickey(NULL, NULL); }
EOF
if compile_object "$libssh_cflags -DHAVE_LIBSSH_0_8"; then
libssh_cflags="-DHAVE_LIBSSH_0_8 $libssh_cflags"
+ else
+ # If this is not libssh 0.8, this is likely 0.7
+ libssh_version="0.7"
fi
if compile_object "$libssh_cflags -DHAVE_SSH_GET_SERVER_PUBLICKEY"; then
libssh_cflags="-DHAVE_SSH_GET_SERVER_PUBLICKEY $libssh_cflags"
@@ -6466,7 +6470,7 @@ echo "GlusterFS support $glusterfs"
echo "gcov $gcov_tool"
echo "gcov enabled $gcov"
echo "TPM support $tpm"
-echo "libssh support $libssh"
+echo "libssh support $libssh $(echo_version $libssh $libssh_version)"
echo "QOM debugging $qom_cast_debug"
echo "Live block migration $live_block_migration"
echo "lzo support $lzo"
--
2.20.1
[Qemu-devel] [PATCH 4/4] configure: Log the libssh version detected,
Philippe Mathieu-Daudé <=
[Qemu-devel] [PATCH 3/4] configure: Improve checking libssh version is 0.8, Philippe Mathieu-Daudé, 2019/08/14
Re: [Qemu-devel] [PATCH 0/4] configure: Fix libssh on Ubuntu 18.04, no-reply, 2019/08/14