This commit is contained in:
parent
723a3bd9de
commit
b6ba611299
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d0c1c464df90367cc6d660c08d2477d95bdd918a2a87d87b57ca7b1ef2cdf8dd
|
||||
size 1217771
|
3
libtasn1-1.8.tar.bz2
Normal file
3
libtasn1-1.8.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:3f5da560c57e08f12ebb1300a3972ad1dde6fb3a3b4b76f72c297c0bc7db607d
|
||||
size 1281141
|
@ -1,3 +1,44 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 1 18:05:12 EST 2009 - mboman@suse.de
|
||||
|
||||
- Update to version 1.8:
|
||||
+ Fix crlf self-test under Mingw+Wine.
|
||||
+ Fix build problems on platforms that lack stdint.h.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Dec 20 11:34:23 EST 2008 - mboman@suse.de
|
||||
|
||||
- Update to version 1.7:
|
||||
+ 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
|
||||
+ 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.
|
||||
+ Fixed namespace violation for libtasn1_perror and libtasn1_strerror.
|
||||
The new names are asn1_perror and asn1_strerror.
|
||||
+ Fix namespace violation for LIBASN1_VERSION.
|
||||
The new name is ASN1_VERSION.
|
||||
+ Decoder can now decode BER encoded octet strings.
|
||||
+ doc: Change license on the manual to GFDLv1.3+.
|
||||
+ doc: Sync gdoc script with GnuTLS, changes license on man-pages to GAP.
|
||||
+ doc: Improve gtk-doc manual.
|
||||
+ Assumes system has strdup and string.h.
|
||||
+ Remove libtasn1-config and libtasn1.m4,
|
||||
use standard AC_CHECK_FUNCS autoconf tests or pkg-config instead.
|
||||
+ Change detection of when to use a linker version script,
|
||||
use --enable-ld-version-script or --disable-ld-version-script to
|
||||
override auto-detection logic.
|
||||
+ API and ABI changes since last version:
|
||||
asn1_get_length_ber: New function.
|
||||
ASN1_VERSION: New symbol, replaces LIBTASN1_VERSION.
|
||||
asn1_strerror: New function, replaces libtasn1_strerror.
|
||||
asn1_perror: New function, replaces libtasn1_perror.
|
||||
libtasn1_strerror: Marked as deprecated.
|
||||
libtasn1_perror: Marked as deprecated.
|
||||
LIBTASN1_VERSION: Deprecated.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 12 07:30:10 CDT 2008 - maw@suse.de
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libtasn1 (Version 1.5)
|
||||
# spec file for package libtasn1 (Version 1.8)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -20,7 +20,7 @@
|
||||
|
||||
Name: libtasn1
|
||||
BuildRequires: info
|
||||
Version: 1.5
|
||||
Version: 1.8
|
||||
Release: 1
|
||||
Url: http://www.t2-project.org/packages/libtasn1.html
|
||||
Group: Productivity/Networking/Security
|
||||
@ -130,9 +130,43 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_includedir}/*.h
|
||||
%{_libdir}/*.so
|
||||
%{_libdir}/pkgconfig/libtasn1.pc
|
||||
%{_datadir}/aclocal/libtasn1.m4
|
||||
|
||||
%changelog
|
||||
* Sun Feb 01 2009 mboman@suse.de
|
||||
- Update to version 1.8:
|
||||
+ Fix crlf self-test under Mingw+Wine.
|
||||
+ Fix build problems on platforms that lack stdint.h.
|
||||
* Sat Dec 20 2008 mboman@suse.de
|
||||
- Update to version 1.7:
|
||||
+ 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
|
||||
+ 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.
|
||||
+ Fixed namespace violation for libtasn1_perror and libtasn1_strerror.
|
||||
The new names are asn1_perror and asn1_strerror.
|
||||
+ Fix namespace violation for LIBASN1_VERSION.
|
||||
The new name is ASN1_VERSION.
|
||||
+ Decoder can now decode BER encoded octet strings.
|
||||
+ doc: Change license on the manual to GFDLv1.3+.
|
||||
+ doc: Sync gdoc script with GnuTLS, changes license on man-pages to GAP.
|
||||
+ doc: Improve gtk-doc manual.
|
||||
+ Assumes system has strdup and string.h.
|
||||
+ Remove libtasn1-config and libtasn1.m4,
|
||||
use standard AC_CHECK_FUNCS autoconf tests or pkg-config instead.
|
||||
+ Change detection of when to use a linker version script,
|
||||
use --enable-ld-version-script or --disable-ld-version-script to
|
||||
override auto-detection logic.
|
||||
+ API and ABI changes since last version:
|
||||
asn1_get_length_ber: New function.
|
||||
ASN1_VERSION: New symbol, replaces LIBTASN1_VERSION.
|
||||
asn1_strerror: New function, replaces libtasn1_strerror.
|
||||
asn1_perror: New function, replaces libtasn1_perror.
|
||||
libtasn1_strerror: Marked as deprecated.
|
||||
libtasn1_perror: Marked as deprecated.
|
||||
LIBTASN1_VERSION: Deprecated.
|
||||
* Fri Sep 12 2008 maw@suse.de
|
||||
- Update to version 1.5:
|
||||
+ Update gnulib files
|
||||
|
Loading…
Reference in New Issue
Block a user