diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2003-11-11 09:04:25 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2003-11-11 09:04:25 +0000 |
commit | 879877ccdd6458f62a11583d013d59df5c8a87a2 (patch) | |
tree | 613a4ce1bd80a1fc66c24a766891f151314b193d | |
parent | 192528c2f6f17aa60ce1d1f00741724fc1450e0c (diff) | |
download | gnutls-879877ccdd6458f62a11583d013d59df5c8a87a2.tar.gz |
*** empty log message ***
-rw-r--r-- | doc/TODO | 3 | ||||
-rw-r--r-- | libgcrypt.m4 | 3 |
2 files changed, 3 insertions, 3 deletions
@@ -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) |