summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2007-12-11 08:11:49 +0000
committerWerner Koch <wk@gnupg.org>2007-12-11 08:11:49 +0000
commitb2d55bef641a3aa31ab490eadfe8da6ddc5f09d6 (patch)
tree17fef58584545612663f6691b476e04a348a1693
parenta7ce99fa757b84d2157c25d04bd2bb97cd50b747 (diff)
downloadlibgcrypt-b2d55bef641a3aa31ab490eadfe8da6ddc5f09d6.tar.gz
Small build fixes from Tim Mooney.
-rw-r--r--ChangeLog5
-rw-r--r--NEWS5
-rw-r--r--configure.ac6
-rw-r--r--src/ChangeLog6
-rw-r--r--src/visibility.c4
5 files changed, 21 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index daac12b7..a969dc11 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-12-11 Werner Koch <wk@g10code.com>
+
+ * configure.ac: We actually require libgpg-error 1.4. Reported by
+ Tim Mooney.
+
2007-12-10 Werner Koch <wk@g10code.com>
Released 1.4.0.
diff --git a/NEWS b/NEWS
index 848aa62d..3378a060 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+Noteworthy changes in version 1.4.1
+------------------------------------------------
+
+
+
Noteworthy changes in version 1.4.0 (2007-12-10)
------------------------------------------------
diff --git a/configure.ac b/configure.ac
index c3459de6..d0a9b5a4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -27,8 +27,8 @@ min_automake_version="1.10"
# 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.4.0])
-m4_define([my_issvn], [no])
+m4_define([my_version], [1.4.1])
+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;}')]))
@@ -46,7 +46,7 @@ LIBGCRYPT_LT_REVISION=3
# If the API is changed in an incompatible way: increment the next counter.
LIBGCRYPT_CONFIG_API_VERSION=1
-NEED_GPG_ERROR_VERSION=1.0
+NEED_GPG_ERROR_VERSION=1.4
BUILD_REVISION=svn_revision
PACKAGE=$PACKAGE_NAME
diff --git a/src/ChangeLog b/src/ChangeLog
index c047ecf2..c9d56fd0 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
+2007-12-11 Werner Koch <wk@g10code.com>
+
+ * visibility.c (gcry_md_hash_buffer): Don't use return vor a void
+ function. Hey, why does gcc not complain about this?
+ (gcry_ac_io_init_va): Ditto.
+
2007-12-05 Werner Koch <wk@g10code.com>
* hwfeatures.c (detect_ia32_gnuc): Depend on ENABLE_PADLOCK_SUPPORT.
diff --git a/src/visibility.c b/src/visibility.c
index f54851e2..43f7730f 100644
--- a/src/visibility.c
+++ b/src/visibility.c
@@ -699,7 +699,7 @@ void
gcry_md_hash_buffer (int algo, void *digest,
const void *buffer, size_t length)
{
- return _gcry_md_hash_buffer (algo, digest, buffer, length);
+ _gcry_md_hash_buffer (algo, digest, buffer, length);
}
int
@@ -848,7 +848,7 @@ void
gcry_ac_io_init_va (gcry_ac_io_t *ac_io, gcry_ac_io_mode_t mode,
gcry_ac_io_type_t type, va_list ap)
{
- return _gcry_ac_io_init_va (ac_io, mode, type, ap);
+ _gcry_ac_io_init_va (ac_io, mode, type, ap);
}
gcry_error_t