From 3c769bb1bd1fd46b1c73283cd333020ad075619b Mon Sep 17 00:00:00 2001 From: Ronnie Sahlberg Date: Sun, 29 Jun 2014 14:57:45 -0700 Subject: [PATCH] New version 1.9.4 New version of libnfs: - IPv6 support - Support for Portmapper version 3 and an example portmap client. - Directory caching top make repeated opendir() calls faster - Readahead support - Build manpages for the utilities (==nfs-ls) - Support for O_APPEND - Rename the list macros to avoid collission on *BSD Signed-off-by: Ronnie Sahlberg --- configure.ac | 2 +- lib/Makefile.am | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 9288b1c..2cb979e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.50) -AC_INIT([libnfs], [1.9.3], [ronniesahlberg@gmail.com]) +AC_INIT([libnfs], [1.9.4], [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 aa0855f..1f9a55a 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -18,9 +18,9 @@ libnfs_la_SOURCES = \ pdu.c \ socket.c -SOCURRENT=4 +SOCURRENT=5 SOREVISION=0 -SOAGE=0 +SOAGE=1 libnfs_la_LDFLAGS = -version-info $(SOCURRENT):$(SOREVISION):$(SOAGE) libnfs_la_LIBADD = \ ../mount/libmount.la \ -- 2.34.1