diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-01-23 14:06:40 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-01-23 15:46:21 +0100 |
commit | d8de910c29a0cb91e3bc2e63403050826b10d0a9 (patch) | |
tree | bd35fb22f362cf25a55f24738e69b851df65eba5 /sys-freebsd/freebsd-usbin/files | |
parent | sys-freebsd/freebsd-ubin: Remove 8.2 (diff) | |
download | gentoo-d8de910c29a0cb91e3bc2e63403050826b10d0a9.tar.gz gentoo-d8de910c29a0cb91e3bc2e63403050826b10d0a9.tar.bz2 gentoo-d8de910c29a0cb91e3bc2e63403050826b10d0a9.zip |
sys-freebsd/freebsd-usbin: Remove 8.2
Diffstat (limited to 'sys-freebsd/freebsd-usbin/files')
3 files changed, 0 insertions, 70 deletions
diff --git a/sys-freebsd/freebsd-usbin/files/freebsd-usbin-7.0-nowrap.patch b/sys-freebsd/freebsd-usbin/files/freebsd-usbin-7.0-nowrap.patch deleted file mode 100644 index 9b11104e8337..000000000000 --- a/sys-freebsd/freebsd-usbin/files/freebsd-usbin-7.0-nowrap.patch +++ /dev/null @@ -1,45 +0,0 @@ -diff -ur usr.sbin.orig/rpcbind/Makefile usr.sbin/rpcbind/Makefile ---- usr.sbin.orig/rpcbind/Makefile 2007-04-21 12:02:30 +0000 -+++ usr.sbin/rpcbind/Makefile 2007-04-21 12:05:32 +0000 -@@ -8,13 +8,20 @@ - SRCS= check_bound.c rpcb_stat.c rpcb_svc_4.c rpcbind.c pmap_svc.c \ - rpcb_svc.c rpcb_svc_com.c security.c warmstart.c util.c - --CFLAGS+= -DPORTMAP -DLIBWRAP -+CFLAGS+= -DPORTMAP - - .if ${MK_INET6_SUPPORT} != "no" - CFLAGS+= -DINET6 - .endif - --DPADD= ${LIBWRAP} ${LIBUTIL} --LDADD= -lwrap -lutil -+DPADD= ${LIBUTIL} -+LDADD= -lutil -+ -+.if !defined(NO_WRAP) -+CFLAGS+= -DLIBWRAP -+DPADD+= ${LIBWRAP} -+LDADD+= -lwrap -+.endif -+ - - .include <bsd.prog.mk> -diff -ur usr.sbin.orig/ypserv/Makefile usr.sbin/ypserv/Makefile ---- usr.sbin.orig/ypserv/Makefile 2007-04-21 12:02:31 +0000 -+++ usr.sbin/ypserv/Makefile 2007-04-21 12:06:53 +0000 -@@ -8,10 +8,13 @@ - SRCS= yp_svc.c yp_server.c yp_dblookup.c yp_dnslookup.c \ - ypxfr_clnt.c yp.h yp_main.c yp_error.c yp_access.c yp_svc_udp.c - --CFLAGS+= -DDB_CACHE -DTCP_WRAPPER -I. -+CFLAGS+= -DDB_CACHE -I. - -+.if !defined(NO_WRAP) -+CFLAGS+= -DTCP_WRAPPER - DPADD= ${LIBWRAP} - LDADD= -lwrap -+.endif - - CLEANFILES= yp_svc.c ypxfr_clnt.c yp.h - diff --git a/sys-freebsd/freebsd-usbin/files/freebsd-usbin-8.2-newsyslog.patch b/sys-freebsd/freebsd-usbin/files/freebsd-usbin-8.2-newsyslog.patch deleted file mode 100644 index a0983912178f..000000000000 --- a/sys-freebsd/freebsd-usbin/files/freebsd-usbin-8.2-newsyslog.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- usr.sbin/newsyslog/pathnames.h.orig 2001-07-30 18:17:17.000000000 +0300 -+++ usr.sbin/newsyslog/pathnames.h 2009-09-11 08:32:57.508226240 +0300 -@@ -24,5 +24,5 @@ - - #define _PATH_CONF "/etc/newsyslog.conf" - #define _PATH_SYSLOGPID _PATH_VARRUN "syslog.pid" --#define _PATH_BZIP2 "/usr/bin/bzip2" --#define _PATH_GZIP "/usr/bin/gzip" -+#define _PATH_BZIP2 "/bin/bzip2" -+#define _PATH_GZIP "/bin/gzip" diff --git a/sys-freebsd/freebsd-usbin/files/mountd.patch b/sys-freebsd/freebsd-usbin/files/mountd.patch deleted file mode 100644 index 3cb9f03e9d8f..000000000000 --- a/sys-freebsd/freebsd-usbin/files/mountd.patch +++ /dev/null @@ -1,15 +0,0 @@ -http://security.freebsd.org/advisories/FreeBSD-SA-11:01.mountd.asc - -Index: usr.sbin/mountd/mountd.c -=================================================================== ---- usr.sbin/mountd/mountd.c 20 Dec 2010 09:28:28 -0000 1.107 -+++ usr.sbin/mountd/mountd.c 1 Mar 2011 11:47:16 -0000 1.108 -@@ -2875,7 +2875,7 @@ makemask(struct sockaddr_storage *ssp, i - - for (i = 0; i < len; i++) { - bits = (bitlen > CHAR_BIT) ? CHAR_BIT : bitlen; -- *p++ = (1 << bits) - 1; -+ *p++ = (u_char)~0 << (CHAR_BIT - bits); - bitlen -= bits; - } - return 0; |