[svn] dirmngr - r306 - in trunk: . src tests
svn author wk
cvs at cvs.gnupg.org
Thu Jul 31 19:05:28 CEST 2008
Author: wk
Date: 2008-07-31 19:05:26 +0200 (Thu, 31 Jul 2008)
New Revision: 306
Modified:
trunk/ChangeLog
trunk/NEWS
trunk/configure.ac
trunk/src/crlcache.c
trunk/tests/Makefile.am
Log:
Minor bug fxes:
- Missing -liconv in tests/
- gcry_md_debug was used at one place.
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-07-31 13:07:38 UTC (rev 305)
+++ trunk/ChangeLog 2008-07-31 17:05:26 UTC (rev 306)
@@ -1,5 +1,7 @@
2008-07-31 Werner Koch <wk at g10code.com>
+ * tests/Makefile.am (LDADD): Add LIBINTL and LIBICONV.
+
Release 1.0.2.
* config.sub, config.guess: Update to version 2007-11-19.
Modified: trunk/NEWS
===================================================================
--- trunk/NEWS 2008-07-31 13:07:38 UTC (rev 305)
+++ trunk/NEWS 2008-07-31 17:05:26 UTC (rev 306)
@@ -1,3 +1,7 @@
+Noteworthy changes in version 1.0.3
+------------------------------------------------
+
+
Noteworthy changes in version 1.0.2 (2008-07-31)
------------------------------------------------
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2008-07-31 13:07:38 UTC (rev 305)
+++ trunk/configure.ac 2008-07-31 17:05:26 UTC (rev 306)
@@ -26,8 +26,8 @@
# Remember to change the version number immediately *after* a release.
# Set my_issvn to "yes" for non-released code. Remember to run an
# "svn up" and "autogen.sh" right before creating a distribution.
-m4_define([my_version], [1.0.2])
-m4_define([my_issvn], [no])
+m4_define([my_version], [1.0.3])
+m4_define([my_issvn], [yes])
m4_define([svn_revision], m4_esyscmd([echo -n $( (svn info 2>/dev/null \
|| echo 'Revision: 0')|sed -n '/^Revision:/ {s/[^0-9]//gp;q;}')]))
Modified: trunk/src/crlcache.c
===================================================================
--- trunk/src/crlcache.c 2008-07-31 13:07:38 UTC (rev 305)
+++ trunk/src/crlcache.c 2008-07-31 17:05:26 UTC (rev 306)
@@ -1445,7 +1445,13 @@
return err;
}
if (DBG_HASHING)
- gcry_md_debug (*md, "crl");
+ {
+#ifdef HAVE_GCRY_MD_DEBUG
+ gcry_md_debug (*md, "hash.cert");
+#else
+ gcry_md_start_debug (*md, "crl");
+#endif
+ }
ksba_crl_set_hash_function (crl, HASH_FNC, *md);
return 0;
Modified: trunk/tests/Makefile.am
===================================================================
--- trunk/tests/Makefile.am 2008-07-31 13:07:38 UTC (rev 305)
+++ trunk/tests/Makefile.am 2008-07-31 17:05:26 UTC (rev 306)
@@ -11,7 +11,8 @@
TESTS =
noinst_PROGRAMS = test-dirmngr asschk show-multi percent-escape
-LDADD = ../jnlib/libjnlib.a $(LIBASSUAN_LIBS) $(LIBGCRYPT_LIBS) $(KSBA_LIBS)
+LDADD = ../jnlib/libjnlib.a $(LIBASSUAN_LIBS) $(LIBGCRYPT_LIBS) $(KSBA_LIBS) \
+ $(LIBINTL) $(LIBICONV)
asschk_SOURCES = asschk.c
More information about the Gnupg-commits
mailing list