From d31c50870d0bee042ce660e445c9294a59a3a65b Mon Sep 17 00:00:00 2001 From: Patrick J Volkerding Date: Thu, 30 Jun 2016 20:26:57 +0000 Subject: Slackware 14.2 Thu Jun 30 20:26:57 UTC 2016 Slackware 14.2 x86_64 stable is released! The long development cycle (the Linux community has lately been living in "interesting times", as they say) is finally behind us, and we're proud to announce the release of Slackware 14.2. The new release brings many updates and modern tools, has switched from udev to eudev (no systemd), and adds well over a hundred new packages to the system. Thanks to the team, the upstream developers, the dedicated Slackware community, and everyone else who pitched in to help make this release a reality. The ISOs are off to be replicated, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. Please consider supporting the Slackware project by picking up a copy from store.slackware.com. We're taking pre-orders now, and offer a discount if you sign up for a subscription. Have fun! :-) --- ...unsupported_address_types_in_nfssvc_setfds.diff | 37 +++++++++++++++++++++ source/n/nfs-utils/nfs-utils-1.2.8.tar.sign | Bin 543 -> 0 bytes source/n/nfs-utils/nfs-utils-1.3.3.tar.sign | Bin 0 -> 543 bytes source/n/nfs-utils/nfs-utils.SlackBuild | 17 +++++----- source/n/nfs-utils/slack-desc | 2 +- 5 files changed, 47 insertions(+), 9 deletions(-) create mode 100644 source/n/nfs-utils/ignore_unsupported_address_types_in_nfssvc_setfds.diff delete mode 100644 source/n/nfs-utils/nfs-utils-1.2.8.tar.sign create mode 100644 source/n/nfs-utils/nfs-utils-1.3.3.tar.sign (limited to 'source/n/nfs-utils') diff --git a/source/n/nfs-utils/ignore_unsupported_address_types_in_nfssvc_setfds.diff b/source/n/nfs-utils/ignore_unsupported_address_types_in_nfssvc_setfds.diff new file mode 100644 index 00000000..6384888e --- /dev/null +++ b/source/n/nfs-utils/ignore_unsupported_address_types_in_nfssvc_setfds.diff @@ -0,0 +1,37 @@ +From: Christoph Hellwig +Subject: nfsd: ignore unsupported address types in nfssvc_setfds + +Just continue and try a different record returned from getaddrinfo +if the kernel does not support an address family. This fixes nfsd +startup on kernels without IPv6 support. + +Suggested-by: Chuck Lever +Signed-off-by: Christoph Hellwig + +diff --git a/utils/nfsd/nfssvc.c b/utils/nfsd/nfssvc.c +index a2b11d8..fc11d23 100644 +--- a/utils/nfsd/nfssvc.c ++++ b/utils/nfsd/nfssvc.c +@@ -174,15 +174,14 @@ nfssvc_setfds(const struct addrinfo *hints, const char *node, const char *port) + sockfd = socket(addr->ai_family, addr->ai_socktype, + addr->ai_protocol); + if (sockfd < 0) { +- if (errno == EAFNOSUPPORT) +- xlog(L_NOTICE, "address family %s not " +- "supported by protocol %s", +- family, proto); +- else ++ if (errno != EAFNOSUPPORT) { + xlog(L_ERROR, "unable to create %s %s socket: " + "errno %d (%m)", family, proto, errno); +- rc = errno; +- goto error; ++ rc = errno; ++ goto error; ++ } ++ addr = addr->ai_next; ++ continue; + } + #ifdef IPV6_SUPPORTED + if (addr->ai_family == AF_INET6 && +-- diff --git a/source/n/nfs-utils/nfs-utils-1.2.8.tar.sign b/source/n/nfs-utils/nfs-utils-1.2.8.tar.sign deleted file mode 100644 index c2cde499..00000000 Binary files a/source/n/nfs-utils/nfs-utils-1.2.8.tar.sign and /dev/null differ diff --git a/source/n/nfs-utils/nfs-utils-1.3.3.tar.sign b/source/n/nfs-utils/nfs-utils-1.3.3.tar.sign new file mode 100644 index 00000000..0fcb786f Binary files /dev/null and b/source/n/nfs-utils/nfs-utils-1.3.3.tar.sign differ diff --git a/source/n/nfs-utils/nfs-utils.SlackBuild b/source/n/nfs-utils/nfs-utils.SlackBuild index d3305c12..e8800479 100755 --- a/source/n/nfs-utils/nfs-utils.SlackBuild +++ b/source/n/nfs-utils/nfs-utils.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2008, 2009, 2010, 2011, 2013 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2008, 2009, 2010, 2011, 2013, 2016 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -21,13 +21,13 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -VERSION=1.2.8 -BUILD=${BUILD:-1} +VERSION=1.3.3 +BUILD=${BUILD:-2} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) export ARCH=i486 ;; + i?86) export ARCH=i586 ;; arm*) export ARCH=arm ;; # Unless $ARCH is already set, use uname -m for all other archs: *) export ARCH=$( uname -m ) ;; @@ -36,8 +36,8 @@ fi NUMJOBS=${NUMJOBS:-" -j7 "} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" elif [ "$ARCH" = "s390" ]; then SLKCFLAGS="-O2" elif [ "$ARCH" = "x86_64" ]; then @@ -68,6 +68,8 @@ tar xvf $CWD/nfs-utils-$VERSION.tar.xz || exit 1 cd nfs-utils-$VERSION || exit 1 zcat $CWD/nfs-utils.lwrap.needs.lnsl.diff.gz | patch -p1 --verbose || exit 1 +# Fix problems on machines without IPv6: +zcat $CWD/ignore_unsupported_address_types_in_nfssvc_setfds.diff.gz | patch -p1 -l --verbose || exit 1 chown -R root:root . find . \ @@ -83,11 +85,10 @@ CFLAGS="$SLKCFLAGS" \ --prefix=/usr \ --mandir=/usr/man \ --with-statedir=/var/lib/nfs \ - --enable-nfsv3 \ --enable-mountconfig \ --enable-nfsv4=no \ --enable-gss=no \ - --enable-tirpc=no \ + --enable-tirpc=yes \ --program-prefix= \ --program-suffix= \ --build=$ARCH-slackware-linux diff --git a/source/n/nfs-utils/slack-desc b/source/n/nfs-utils/slack-desc index 158b4a97..09eefaa4 100644 --- a/source/n/nfs-utils/slack-desc +++ b/source/n/nfs-utils/slack-desc @@ -11,7 +11,7 @@ nfs-utils: nfs-utils: The nfs-utils package contains the necessary daemons and utilities to nfs-utils: run an NFS server on Linux. nfs-utils: -nfs-utils: You'll also need the portmap package to use NFS. +nfs-utils: You'll also need the rpcbind package to use NFS. nfs-utils: nfs-utils: nfs-utils: -- cgit v1.2.3