GUACAMOLE-1133: Add build check for headers when libvncserver includes gcrypt support.
This commit is contained in:
parent
6d526cb60f
commit
b40b7e7bf6
21
configure.ac
21
configure.ac
@ -519,6 +519,27 @@ then
|
|||||||
AC_CHECK_LIB([vncclient], [rfbInitClient], [VNC_LIBS="$VNC_LIBS -lvncclient"], [have_libvncserver=no])
|
AC_CHECK_LIB([vncclient], [rfbInitClient], [VNC_LIBS="$VNC_LIBS -lvncclient"], [have_libvncserver=no])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
#
|
||||||
|
# Underlying libvncserver usage of gcrypt
|
||||||
|
#
|
||||||
|
|
||||||
|
if test "x${have_libvncserver}" = "xyes"
|
||||||
|
then
|
||||||
|
|
||||||
|
# Whether libvncserver was built against libgcrypt
|
||||||
|
AC_CHECK_DECL([LIBVNCSERVER_WITH_CLIENT_GCRYPT],
|
||||||
|
[AC_CHECK_HEADER(gcrypt.h,,
|
||||||
|
[AC_MSG_WARN([
|
||||||
|
--------------------------------------------
|
||||||
|
libvncserver appears to be built against
|
||||||
|
libgcrypt, but the libgcrypt headers
|
||||||
|
could not be found. VNC will be disabled.
|
||||||
|
--------------------------------------------])
|
||||||
|
have_libvncserver=no])],,
|
||||||
|
[[#include <rfb/rfbconfig.h>]])
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
AM_CONDITIONAL([ENABLE_VNC], [test "x${have_libvncserver}" = "xyes"])
|
AM_CONDITIONAL([ENABLE_VNC], [test "x${have_libvncserver}" = "xyes"])
|
||||||
AC_SUBST(VNC_LIBS)
|
AC_SUBST(VNC_LIBS)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user