diff options
author | Vic Lee <llyzs@163.com> | 2011-01-21 13:03:40 +0800 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2011-01-31 17:47:44 +0100 |
commit | 030ccf673d96016733ffb3bef3feede20dba19a7 (patch) | |
tree | c1f9fbb7c509244881ff4a7b8b33f8981d7b9fe2 /configure.ac | |
parent | ffe30366d63fd318f0ee3b55dd9a60642bfb5d88 (diff) | |
download | libvncserver-030ccf673d96016733ffb3bef3feede20dba19a7.zip libvncserver-030ccf673d96016733ffb3bef3feede20dba19a7.tar.gz |
Add ARD (Apple Remote Desktop) security type support
Signed-off-by: Vic Lee <llyzs@163.com>
Signed-off-by: Christian Beier <dontmind@freeshell.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 4ad489b..bf760dd 100644 --- a/configure.ac +++ b/configure.ac @@ -689,6 +689,22 @@ if test ! -z "$MINGW"; then fi AC_SUBST(WSOCKLIB) +# Check for libgcrypt +AH_TEMPLATE(WITH_CLIENT_GCRYPT, [Enable support for libgcrypt in libvncclient]) +AC_ARG_WITH(gcrypt, +[ --without-gcrypt disable support for gcrypt],,) +AC_ARG_WITH(client-gcrypt, +[ --without-client-gcrypt disable support for gcrypt in libvncclient],,) + +if test "x$with_gcrypt" != "xno"; then + AM_PATH_LIBGCRYPT(1.4.0, , with_client_gcrypt=no) + CFLAGS="$CFLAGS $LIBGCRYPT_CFLAGS" + LIBS="$LIBS $LIBGCRYPT_LIBS" + if test "x$with_client_gcrypt" != "xno"; then + AC_DEFINE(WITH_CLIENT_GCRYPT) + fi +fi + # Checks for GnuTLS AH_TEMPLATE(WITH_CLIENT_TLS, [Enable support for gnutls in libvncclient]) AC_ARG_WITH(gnutls, |