mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
463fa9c762
This commit adds some checks inside libssh m4 checking to verify if ssh_get_server_publickey is available. This new function scope replaces the old ssh_get_publickey() from libssh 0.7.5 and below. Assuming that some distros are not showing the right version of libssh. This is a simple way to check which function is available. Signed-off-by: Julio Faracco <jcfaracco@gmail.com> Reviewed-by: Andrea Bolognani <abologna@redhat.com>
44 lines
1.4 KiB
Plaintext
44 lines
1.4 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.])])
|
|
CFLAGS="$old_CFLAGS"
|
|
LIBS="$old_LIBS"
|
|
fi
|
|
])
|
|
|
|
AC_DEFUN([LIBVIRT_RESULT_LIBSSH],[
|
|
LIBVIRT_RESULT_LIB([LIBSSH])
|
|
])
|