summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-04-12 19:06:33 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-04-12 19:06:33 +0000
commit845206012ae139bbd97f63ab2ca09cc99e3e60a6 (patch)
tree804945008d5fd66394ae5bc10710219c290646c1
parentc5ca6fa23eeccbd9c95529a4306dfca703dfddba (diff)
downloadgnutls-845206012ae139bbd97f63ab2ca09cc99e3e60a6.tar.gz
fixed opencdk detection problem
-rw-r--r--acconfig.h7
-rw-r--r--configure.in3
2 files changed, 4 insertions, 6 deletions
diff --git a/acconfig.h b/acconfig.h
index 85d9065685..d343b67392 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -22,11 +22,6 @@
#undef USE_GCRYPT
#undef GNUTLS_VERSION
-#undef USE_SIGNALS
-#undef USE_VA_COPY
-#undef HAVE_VA_COPY
-#undef HAVE___VA_COPY
-
#undef LIBMCRYPT22
#undef LIBMCRYPT24
@@ -37,3 +32,5 @@
#undef ENABLE_SRP
#undef ENABLE_ANON
+
+#undef HAVE_LIBOPENCDK
diff --git a/configure.in b/configure.in
index f0d3a8f1cf..7893f087e6 100644
--- a/configure.in
+++ b/configure.in
@@ -274,7 +274,8 @@ AC_ARG_ENABLE( openpgp-authentication, [ --disable-openpgp-authentication disab
)
if test x$ac_enable_openpgp != xno; then
AC_MSG_RESULT(no)
- AM_PATH_LIBOPENCDK( 0.1.0,, AC_MSG_WARN([[
+ AM_PATH_LIBOPENCDK( 0.1.0, AC_DEFINE(HAVE_LIBOPENCDK),
+ AC_MSG_WARN([[
***
*** libopencdk was not found. You will not be able to use OpenPGP keys with gnutls.
]]))