From 65375289dff849f00b3429dfe4be7e66efe48444 Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Tue, 4 Sep 2007 14:57:37 +0000 Subject: [PATCH] Only check for libgcrypt if --with-gcrypt is used. --- configure.in | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/configure.in b/configure.in index 2eed95bf..670e855e 100644 --- a/configure.in +++ b/configure.in @@ -147,15 +147,14 @@ dnl These are defined in files in m4/ AC_ARG_WITH(libgcrypt, AC_HELP_STRING([--with-libgcrypt], [enable use of libgcrypt instead of OpenSSL])], []) -AM_PATH_LIBGCRYPT([], [], []) -tinc_OPENSSL tinc_ZLIB tinc_LZO if test "$with_libgcrypt" = yes; then - AC_MSG_ERROR([Libgcrypt support not fully implemented yet.]); - break; + AM_PATH_LIBGCRYPT([], [], []) + ln -sf gcrypt/crypto.c gcrypt/crypto.h gcrypt/cipher.c gcrypt/cipher.h gcrypt/digest.c gcrypt/digest.h gcrypt/rsa.c gcrypt/rsa.h src/ else + tinc_OPENSSL ln -sf openssl/crypto.c openssl/crypto.h openssl/cipher.c openssl/cipher.h openssl/digest.c openssl/digest.h openssl/rsa.c openssl/rsa.h src/ fi -- 2.20.1