summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2008-09-29 12:51:19 +0200
committerSimon Josefsson <simon@josefsson.org>2008-09-29 12:51:19 +0200
commit28581254e2bd31fa3059d117626ef301473f1cdd (patch)
tree3184f5f12bb1505ecb4b235152ce2a925dd34a48
parenta61b77ca1800f69cf8be7241e9b19ef9c76b3464 (diff)
downloadgnutls-28581254e2bd31fa3059d117626ef301473f1cdd.tar.gz
Document ABI change.
-rw-r--r--NEWS5
-rw-r--r--configure.in6
2 files changed, 7 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index eb19a87135..ca43a7f49a 100644
--- a/NEWS
+++ b/NEWS
@@ -11,6 +11,9 @@ Reported by Sam Varshavchik <mrsam@courier-mta.com>.
** libgnutls: Fix buffer overrun in gnutls_x509_crt_list_import.
Report and patch by Jonathan Manktelow.
+** libgnutls: crypto.h gnutls_pk_params_st changes allocation strategy.
+The parameters are now allocated in the structure itself.
+
** doc: Texinfo HTML manual uses a stylesheet to improve readability.
** tests: Scripts now use EXEEXT properly.
@@ -20,7 +23,7 @@ to invoke certtool.exe under MinGW32+Wine.
** Uses autoconf 2.63, automake 1.10.1, libtool 2.2.6a.
** API and ABI modifications:
-No changes since last version.
+gnutls_pk_params_st: MODIFIED
* Version 2.5.8 (released 2008-09-21)
diff --git a/configure.in b/configure.in
index be15142e89..6dbbbc7b54 100644
--- a/configure.in
+++ b/configure.in
@@ -33,9 +33,9 @@ AM_CONFIG_HEADER(config.h)
# Interfaces changed/added/removed: CURRENT++ REVISION=0
# Interfaces added: AGE++
# Interfaces removed: AGE=0
-AC_SUBST(LT_CURRENT, 36)
-AC_SUBST(LT_REVISION, 1)
-AC_SUBST(LT_AGE, 10)
+AC_SUBST(LT_CURRENT, 37)
+AC_SUBST(LT_REVISION, 0)
+AC_SUBST(LT_AGE, 11)
# Used when creating the Windows libgnutls-XX.def files.
SOVERSION=`expr ${LT_CURRENT} - ${LT_AGE}`