Merge in v1.7 changes.
authorSimon Josefsson <simon@josefsson.org>
Mon, 17 Nov 2008 10:22:41 +0000 (11:22 +0100)
committerSimon Josefsson <simon@josefsson.org>
Mon, 17 Nov 2008 10:22:41 +0000 (11:22 +0100)
NEWS
cfg.mk
tests/Test_indefinite.c

diff --git a/NEWS b/NEWS
index 064f96f..540b0d1 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -9,6 +9,13 @@ Version 2.0 (unreleased)
   MAX_ERROR_DESCRIPTION_SIZE: Removed, use
     ASN1_MAX_ERROR_DESCRIPTION_SIZE instead.
 
+Version 1.7 (released 2008-11-17)
+- Add libtasn1-config for compatibility.
+  Please stop use it as it will disappear in v2.0!
+  Use standard AC_CHECK_FUNCS autoconf tests or pkg-config instead.
+- Read PKCS#12 blob as binary file, fixes self-tests under Mingw.
+- Fix use of __attribute__ ((deprecated)) to work on non-GCC (#106548).
+
 Version 1.6 (released 2008-11-10)
 - Fixed namespace violation for MAX_NAME_SIZE and MAX_ERROR_DESCRIPTION_SIZE.
   The new names are ASN1_MAX_NAME_SIZE and ASN1_MAX_ERROR_DESCRIPTION_SIZE.
diff --git a/cfg.mk b/cfg.mk
index ed3e389..1c6deb4 100644 (file)
--- a/cfg.mk
+++ b/cfg.mk
@@ -65,7 +65,7 @@ upload:
        ssh igloo.linux.gr 'cd ~ftp/pub/gnutls/libtasn1/ && sha1sum *.tar.gz > CHECKSUMS'
        cp $(distdir).tar.gz $(distdir).tar.gz.sig ../releases/gnutls/$(PACKAGE)/
 
-webdocs:
+web:
        cd doc && ../build-aux/gendocs.sh --html "--css-include=texinfo.css" \
                -o ../$(htmldir)/manual/ $(PACKAGE) "$(PACKAGE_NAME)"
        cp -v doc/reference/html/*.html doc/reference/html/*.png doc/reference/html/*.devhelp doc/reference/html/*.css $(htmldir)/reference/
index 49fa514..6ef80a7 100644 (file)
@@ -74,7 +74,7 @@ main(int argc,char *argv[])
 
   out=stdout;
 
-  fd = fopen(indeffile, "r");
+  fd = fopen(indeffile, "rb");
   if (fd == NULL) {
     printf("Cannot read file %s\n", indeffile);
     exit(1);