summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2003-11-11 09:04:25 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2003-11-11 09:04:25 +0000
commit879877ccdd6458f62a11583d013d59df5c8a87a2 (patch)
tree613a4ce1bd80a1fc66c24a766891f151314b193d
parent192528c2f6f17aa60ce1d1f00741724fc1450e0c (diff)
downloadgnutls-879877ccdd6458f62a11583d013d59df5c8a87a2.tar.gz
*** empty log message ***
-rw-r--r--doc/TODO3
-rw-r--r--libgcrypt.m43
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/TODO b/doc/TODO
index deacafc4b2..50ae845893 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -4,7 +4,8 @@ in order to avoid having people working on the same thing.
Current list:
* Add a callback function in certificate authentication, to receive
- the certificate and the private key.
+ the certificate and the private key. This might require a rewrite
+ of the certificate selection part.
* Add support for generating and handling DSA keys
* Convert documentation to texinfo format
* Audit the code
diff --git a/libgcrypt.m4 b/libgcrypt.m4
index fa1c60d723..0e8ab5803d 100644
--- a/libgcrypt.m4
+++ b/libgcrypt.m4
@@ -20,7 +20,6 @@ AC_DEFUN(AM_PATH_LIBGCRYPT,
[prefix where LIBGCRYPT is installed (optional)]),
libgcrypt_config_prefix="$withval", libgcrypt_config_prefix="")
if test x$libgcrypt_config_prefix != x ; then
- libgcrypt_config_args="$libgcrypt_config_args --prefix=$libgcrypt_config_prefix"
if test x${LIBGCRYPT_CONFIG+set} != xset ; then
LIBGCRYPT_CONFIG=$libgcrypt_config_prefix/bin/libgcrypt-config
fi
@@ -60,7 +59,7 @@ AC_DEFUN(AM_PATH_LIBGCRYPT,
fi
fi
fi
- if test x$ok = xyes; then
+ if test $ok = yes; then
LIBGCRYPT_CFLAGS=`$LIBGCRYPT_CONFIG $libgcrypt_config_args --cflags`
LIBGCRYPT_LIBS=`$LIBGCRYPT_CONFIG $libgcrypt_config_args --libs`
AC_MSG_RESULT(yes)