new version 4.0.0

Fix the versioning in makerpms.sh
Fix some compile issues in the test programs.
NFSv3: skip commit on close if the file has not been written to.
Add nfs_umount() to NFSv3
Add nfs_statvfs64()
Fix invalid shift of pid_t when generating rpc->xid
Compile fixes for Mac OSX
Fix for dup2() on Windows
NFSv4 fix for directory handling
Improvements to configure/bulding

Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
libnfs-4.0.0-vitalif
Ronnie Sahlberg 2019-02-13 06:31:18 +10:00
parent f141b31c59
commit 030814506e
4 changed files with 26 additions and 2 deletions

View File

@ -1,3 +1,16 @@
Changes since 3.0.0
Fix the versioning in makerpms.sh
Fix some compile issues in the test programs.
NFSv3: skip commit on close if the file has not been written to.
Add nfs_umount() to NFSv3
Add nfs_statvfs64()
Fix invalid shift of pid_t when generating rpc->xid
Compile fixes for Mac OSX
Fix for dup2() on Windows
NFSv4 fix for directory handling
Improvements to configure/bulding
Changes since 2.0.0 Changes since 2.0.0
NFSv4 support. NFSv4 support.

View File

@ -1,5 +1,5 @@
AC_PREREQ(2.50) AC_PREREQ(2.50)
AC_INIT([libnfs], [3.0.0], [ronniesahlberg@gmail.com]) AC_INIT([libnfs], [4.0.0], [ronniesahlberg@gmail.com])
AC_CONFIG_HEADERS([config.h]) AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) AM_INIT_AUTOMAKE([-Wall foreign subdir-objects])
AC_CANONICAL_HOST AC_CANONICAL_HOST

View File

@ -25,7 +25,7 @@ libnfs_la_SOURCES = \
socket.c \ socket.c \
../win32/win32_compat.c ../win32/win32_compat.c
SOCURRENT=12 SOCURRENT=13
SOREVISION=0 SOREVISION=0
SOAGE=0 SOAGE=0
libnfs_la_LDFLAGS = -version-info $(SOCURRENT):$(SOREVISION):$(SOAGE) libnfs_la_LDFLAGS = -version-info $(SOCURRENT):$(SOREVISION):$(SOAGE)

View File

@ -113,6 +113,17 @@ Utility programs for LibNFS
%{_mandir}/man1/nfs-ls.1.gz %{_mandir}/man1/nfs-ls.1.gz
%changelog %changelog
* Wed Feb 13 2019 : Version 4.0.0
- Fix the versioning in makerpms.sh
- Fix some compile issues in the test programs.
- NFSv3: skip commit on close if the file has not been written to.
- Add nfs_umount() to NFSv3
- Add nfs_statvfs64()
- Fix invalid shift of pid_t when generating rpc->xid
- Compile fixes for Mac OSX
- Fix for dup2() on Windows
- NFSv4 fix for directory handling
- Improvements to configure/bulding
* Sun Jun 24 2018 : Version 3.0.0 * Sun Jun 24 2018 : Version 3.0.0
- NFSv4 support. - NFSv4 support.
- lockf() support (NFSv4 only). - lockf() support (NFSv4 only).