From 70589711551326032ca446e97906792190a60a0f Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Wed, 19 Mar 2014 18:12:45 -0700 Subject: [PATCH] New version: 1.9.3 Wed Mar 19 2014: Version 1.9.3 - Add O_TRUNC support to nfs_open() - Add a simple but incomplete LD_PRELOAD tool - Fixes for some memory leaks and C++ compile support - Make ANDROID default uid/gid to 65534 - Allow the READDIRPLUS emulation to still work if some objects in the direcotry can not be lookedup (NFSv4 ACL denying READ-ATTRIBUTES) - Have libnfs retry any read/write operations where the server responds with a short read/write. Some servers do this when they are overloaded? --- configure.ac | 2 +- lib/Makefile.am | 6 +++--- packaging/RPM/libnfs.spec.in | 9 +++++++++ 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index d71a22a..c52a370 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.50) -AC_INIT([libnfs], [1.9.2], [ronniesahlberg@gmail.com]) +AC_INIT([libnfs], [1.9.3], [ronniesahlberg@gmail.com]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([foreign]) AC_CANONICAL_HOST diff --git a/lib/Makefile.am b/lib/Makefile.am index de664a7..aa0855f 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -18,9 +18,9 @@ libnfs_la_SOURCES = \ pdu.c \ socket.c -SOCURRENT=3 -SOREVISION=1 -SOAGE=2 +SOCURRENT=4 +SOREVISION=0 +SOAGE=0 libnfs_la_LDFLAGS = -version-info $(SOCURRENT):$(SOREVISION):$(SOAGE) libnfs_la_LIBADD = \ ../mount/libmount.la \ diff --git a/packaging/RPM/libnfs.spec.in b/packaging/RPM/libnfs.spec.in index 65d94ea..98acdbc 100644 --- a/packaging/RPM/libnfs.spec.in +++ b/packaging/RPM/libnfs.spec.in @@ -96,6 +96,15 @@ development libraries for LibNFS %{_libdir}/pkgconfig/libnfs.pc %changelog +* Wed Mar 19 2014: Version 1.9.3 + - Add O_TRUNC support to nfs_open() + - Add a simple but incomplete LD_PRELOAD tool + - Fixes for some memory leaks and C++ compile support + - Make ANDROID default uid/gid to 65534 + - Allow the READDIRPLUS emulation to still work if some objects + in the direcotry can not be lookedup (NFSv4 ACL denying READ-ATTRIBUTES) + - Have libnfs retry any read/write operations where the server responds + with a short read/write. Some servers do this when they are overloaded? * Thu Jan 30 2014 : Version 1.9.2 - Remove chdir change. This needs more testing. * Tue Jan 28 2014 : Version 1.9.1 -- 2.34.1