mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
e0ce339c31
In libssh 0.9.0 functions ssh_is_server_known and ssh_write_knownhost are marked as deprecated. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1722735 Signed-off-by: Pavel Hrdina <phrdina@redhat.com> Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
52 lines
1.9 KiB
Plaintext
52 lines
1.9 KiB
Plaintext
dnl The libssh.so library
|
|
dnl
|
|
dnl Copyright (C) 2016 Red Hat, Inc.
|
|
dnl
|
|
dnl This library is free software; you can redistribute it and/or
|
|
dnl modify it under the terms of the GNU Lesser General Public
|
|
dnl License as published by the Free Software Foundation; either
|
|
dnl version 2.1 of the License, or (at your option) any later version.
|
|
dnl
|
|
dnl This library is distributed in the hope that it will be useful,
|
|
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
dnl Lesser General Public License for more details.
|
|
dnl
|
|
dnl You should have received a copy of the GNU Lesser General Public
|
|
dnl License along with this library. If not, see
|
|
dnl <http://www.gnu.org/licenses/>.
|
|
dnl
|
|
|
|
AC_DEFUN([LIBVIRT_ARG_LIBSSH],[
|
|
LIBVIRT_ARG_WITH_FEATURE([LIBSSH], [libssh], [check], [0.7])
|
|
])
|
|
|
|
AC_DEFUN([LIBVIRT_CHECK_LIBSSH],[
|
|
LIBVIRT_CHECK_PKG([LIBSSH], [libssh], [0.7])
|
|
|
|
if test "$with_libssh" = "yes" ; then
|
|
old_CFLAGS="$CFLAGS"
|
|
old_LIBS="$LIBS"
|
|
CFLAGS="$CFLAGS $LIBSSH_CFLAGS"
|
|
LIBS="$LIBS $LIBSSH_LIBS"
|
|
AC_CHECK_FUNC([ssh_get_server_publickey],
|
|
[],
|
|
[AC_DEFINE_UNQUOTED([ssh_get_server_publickey], [ssh_get_publickey],
|
|
[ssh_get_publickey is deprecated and replaced by ssh_get_server_publickey.])])
|
|
AC_CHECK_FUNC([ssh_session_is_known_server],
|
|
[],
|
|
[AC_DEFINE_UNQUOTED([ssh_session_is_known_server], [ssh_is_server_known],
|
|
[ssh_is_server_known is deprecated and replaced by ssh_session_is_known_server.])])
|
|
AC_CHECK_FUNC([ssh_session_update_known_hosts],
|
|
[],
|
|
[AC_DEFINE_UNQUOTED([ssh_session_update_known_hosts], [ssh_write_knownhost],
|
|
[ssh_write_knownhost is deprecated and replaced by ssh_session_update_known_hosts.])])
|
|
CFLAGS="$old_CFLAGS"
|
|
LIBS="$old_LIBS"
|
|
fi
|
|
])
|
|
|
|
AC_DEFUN([LIBVIRT_RESULT_LIBSSH],[
|
|
LIBVIRT_RESULT_LIB([LIBSSH])
|
|
])
|