blob: ccc37389401bfa00ebf1502065858ffe8ac2330f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
diff --git a/configure b/configure
index c9a442b..a596bfe 100755
--- a/configure
+++ b/configure
@@ -24491,12 +24491,6 @@ else
/* end confdefs.h. */
#include <gcrypt.h>
-/* GCRY_MODULE_ID_USER was added in 1.4.4 and gc-libgcrypt.c
- will fail on startup if we don't have 1.4.4 or later, so
- test for it early. */
-#if !defined GCRY_MODULE_ID_USER
-error too old libgcrypt
-#endif
int
main ()
diff --git a/gl/m4/gc.m4 b/gl/m4/gc.m4
index b352e33..4bab9f4 100644
--- a/gl/m4/gc.m4
+++ b/gl/m4/gc.m4
@@ -12,12 +12,6 @@ AC_DEFUN([gl_GC],
if test "$libgcrypt" != no; then
AC_LIB_HAVE_LINKFLAGS([gcrypt], [gpg-error], [
#include <gcrypt.h>
-/* GCRY_MODULE_ID_USER was added in 1.4.4 and gc-libgcrypt.c
- will fail on startup if we don't have 1.4.4 or later, so
- test for it early. */
-#if !defined GCRY_MODULE_ID_USER
-error too old libgcrypt
-#endif
])
fi
])
|