diff options
author | Simon Josefsson <simon@josefsson.org> | 2008-11-17 11:22:41 +0100 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2008-11-17 11:22:41 +0100 |
commit | ced62db2864d5aeee86ed46139450657f16c0777 (patch) | |
tree | 8f3dfa23d1faea97774b29891d60ffbd07f668bd | |
parent | bfd3563aa83a3ce53e3a3658d17870c351b9a569 (diff) | |
download | libtasn1-ced62db2864d5aeee86ed46139450657f16c0777.tar.gz libtasn1-ced62db2864d5aeee86ed46139450657f16c0777.tar.bz2 libtasn1-ced62db2864d5aeee86ed46139450657f16c0777.zip |
Merge in v1.7 changes.
-rw-r--r-- | NEWS | 7 | ||||
-rw-r--r-- | cfg.mk | 2 | ||||
-rw-r--r-- | tests/Test_indefinite.c | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -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. @@ -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/ diff --git a/tests/Test_indefinite.c b/tests/Test_indefinite.c index 49fa514..6ef80a7 100644 --- a/tests/Test_indefinite.c +++ b/tests/Test_indefinite.c @@ -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); |