diff options
author | 2010-03-11 11:24:34 +0000 | |
---|---|---|
committer | 2010-03-11 11:24:34 +0000 | |
commit | 5426e2be7a2691d918495620f7483f717e7284db (patch) | |
tree | a2693fb116022cb2a50304ab54af29f19966ed42 /sys-freebsd/freebsd-sbin/files | |
parent | Fix usage of vm for amd64 arch. Bug #255453 (diff) | |
download | historical-5426e2be7a2691d918495620f7483f717e7284db.tar.gz historical-5426e2be7a2691d918495620f7483f717e7284db.tar.bz2 historical-5426e2be7a2691d918495620f7483f717e7284db.zip |
remove old
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'sys-freebsd/freebsd-sbin/files')
-rw-r--r-- | sys-freebsd/freebsd-sbin/files/freebsd-sbin-6.2-ipfilter.patch | 121 | ||||
-rw-r--r-- | sys-freebsd/freebsd-sbin/files/freebsd-sbin-zlib.patch | 21 |
2 files changed, 0 insertions, 142 deletions
diff --git a/sys-freebsd/freebsd-sbin/files/freebsd-sbin-6.2-ipfilter.patch b/sys-freebsd/freebsd-sbin/files/freebsd-sbin-6.2-ipfilter.patch deleted file mode 100644 index 83681b70f28f..000000000000 --- a/sys-freebsd/freebsd-sbin/files/freebsd-sbin-6.2-ipfilter.patch +++ /dev/null @@ -1,121 +0,0 @@ ---- sbin.orig/ipf/ipf/Makefile 2007-08-06 15:57:49 +0100 -+++ sbin/ipf/ipf/Makefile 2007-08-06 16:02:33 +0100 -@@ -1,15 +1,15 @@ - # $FreeBSD: src/sbin/ipf/ipf/Makefile,v 1.3.2.1 2006/08/24 07:37:10 guido Exp $ - - PROG= ipf --SRCS= ipf.c ipfcomp.c ipf_y.c ipf_l.c bpf_filter.c -+SRCS= ${GENHDRS} ipf.c ipfcomp.c ipf_y.c ipf_l.c bpf_filter.c - MAN= ipf.8 ipf.4 ipf.5 ipl.4 - MLINKS= ipl.4 ipfilter.4 ipf.5 ipf.conf.5 ipf.5 ipf6.conf.5 - CFLAGS+= -I. -DIPFILTER_BPF - --DPSRCS+= ipf_l.h ipf_y.h -+GENHDRS= ipf_l.h ipf_y.h -+DPSRCS+= ${GENHDRS} - --CLEANFILES+= ipf_y.c ipf_y.h --CLEANFILES+= ipf_l.c ipf_l.h -+CLEANFILES+= ${GENHDRS} ipf_y.c ipf_l.c - - ipf_y.c: ipf_y.y - ${YACC} -d ${.ALLSRC} ---- sbin.orig/ipf/ipftest/Makefile 2007-08-06 16:07:39 +0100 -+++ sbin/ipf/ipftest/Makefile 2007-08-06 16:13:23 +0100 -@@ -1,7 +1,7 @@ - # $FreeBSD: src/sbin/ipf/ipftest/Makefile,v 1.3 2005/04/28 16:26:34 darrenr Exp $ - - PROG= ipftest --SRCS= ipftest.c fil.c ip_frag.c ip_state.c ip_nat.c \ -+SRCS= ${GENHDRS} ipftest.c fil.c ip_frag.c ip_state.c ip_nat.c \ - ip_proxy.c ip_auth.c ip_htable.c ip_lookup.c \ - ip_pool.c ip_scan.c ip_sync.c ip_rules.c \ - ip_fil.c ip_log.c ippool_y.c ippool_l.c ipf_y.c \ -@@ -13,16 +13,15 @@ - - .PATH: ${.CURDIR}/../../../sys/contrib/ipfilter/netinet - --DPSRCS+= ipnat_l.h ipnat_y.h ippool_l.h ippool_y.h ipf_l.h ipf_y.h -+GENHDRS= ipnat_l.h ipnat_y.h ippool_l.h ippool_y.h ipf_l.h ipf_y.h -+DPSRCS+= ${GENHDRS} - --CLEANFILES+= ipf_y.c ipf_y.h --CLEANFILES+= ipf_l.c ipf_l.h -+CLEANFILES+= ${GENHDRS} -+CLEANFILES+= ipf_y.c ipf_l.c - CLEANFILES+= ipf.tab.c ipf.tab.h --CLEANFILES+= ipnat_y.c ipnat_y.h --CLEANFILES+= ipnat_l.c ipnat_l.h -+CLEANFILES+= ipnat_y.c ipnat_l.c - CLEANFILES+= ipnat.tab.c ipnat.tab.h --CLEANFILES+= ippool_y.c ippool_y.h --CLEANFILES+= ippool_l.c ippool_l.h -+CLEANFILES+= ippool_y.c ippool_l.c - CLEANFILES+= ippool.tab.c ippool.tab.h - - ipnat_y.c: ipnat_y.y ---- sbin.orig/ipf/ipmon/Makefile 2007-08-06 16:19:32 +0100 -+++ sbin/ipf/ipmon/Makefile 2007-08-06 16:21:44 +0100 -@@ -1,15 +1,15 @@ - # $FreeBSD: src/sbin/ipf/ipmon/Makefile,v 1.2 2005/04/28 16:26:34 darrenr Exp $ - - PROG= ipmon --SRCS= ipmon.c ipmon_y.c ipmon_l.c -+SRCS= ${GENHDRS} ipmon.c ipmon_y.c ipmon_l.c - MAN= ipmon.8 - - CFLAGS+= -DLOGFAC=LOG_LOCAL0 -I. - --DPSRCS+= ipmon_l.h ipmon_y.h -+GENHDRS+= ipmon_l.h ipmon_y.h -+DPSRCS+= ${GENHDRS} - --CLEANFILES+= ipmon_y.c ipmon_y.h --CLEANFILES+= ipmon_l.c ipmon_l.h -+CLEANFILES+= ${GENHDRS} ipmon_y.c ipmon_l.c - - ipmon_y.c: ipmon_y.y - ${YACC} -d ${.ALLSRC} ---- sbin.orig/ipf/ipnat/Makefile 2005-04-28 17:26:34 +0100 -+++ sbin/ipf/ipnat/Makefile 2007-08-06 16:24:42 +0100 -@@ -1,15 +1,15 @@ - # $FreeBSD: src/sbin/ipf/ipnat/Makefile,v 1.2 2005/04/28 16:26:34 darrenr Exp $ - - PROG= ipnat --SRCS= ipnat.c ipnat_y.c ipnat_l.c -+SRCS= ${GENHDRS} ipnat.c ipnat_y.c ipnat_l.c - MAN= ipnat.8 ipnat.4 ipnat.5 - MLINKS= ipnat.5 ipnat.conf.5 - CFLAGS+= -I. - --DPSRCS+= ipnat_l.h ipnat_y.h -+GENHDRS= ipnat_l.h ipnat_y.h -+DPSRCS+= ${GENHDRS} - --CLEANFILES+= ipnat_y.c ipnat_y.h --CLEANFILES+= ipnat_l.c ipnat_l.h -+CLEANFILES+= ${GENHDRS} ipnat_y.c ipnat_l.c - - ipnat_y.c: ipnat_y.y - ${YACC} -d ${.ALLSRC} ---- sbin.orig/ipf/ippool/Makefile 2005-04-28 17:26:34 +0100 -+++ sbin/ipf/ippool/Makefile 2007-08-06 16:25:20 +0100 -@@ -1,14 +1,14 @@ - # $FreeBSD: src/sbin/ipf/ippool/Makefile,v 1.2 2005/04/28 16:26:34 darrenr Exp $ - - PROG= ippool --SRCS= ippool_y.c ippool_l.c kmem.c ippool.c -+SRCS= ${GENHDRS} ippool_y.c ippool_l.c kmem.c ippool.c - MAN= ippool.5 ippool.8 - CFLAGS+= -I. - --DPSRCS+= ippool_l.h ippool_y.h -+GENHDRS= ippool_l.h ippool_y.h -+DPSRCS+= ${GENHDRS} - --CLEANFILES+= ippool_y.c ippool_y.h --CLEANFILES+= ippool_l.c ippool_l.h -+CLEANFILES+= ${GENHDRS} ippool_y.c ippool_l.c - - ippool_y.c: ippool_y.y - ${YACC} -d ${.ALLSRC} diff --git a/sys-freebsd/freebsd-sbin/files/freebsd-sbin-zlib.patch b/sys-freebsd/freebsd-sbin/files/freebsd-sbin-zlib.patch deleted file mode 100644 index b8a0437840d2..000000000000 --- a/sys-freebsd/freebsd-sbin/files/freebsd-sbin-zlib.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -ur sbin/savecore/savecore.c sbin-zlib/savecore/savecore.c ---- sbin/savecore/savecore.c 2005-02-26 01:21:50 +0000 -+++ sbin-zlib/savecore/savecore.c 2005-05-06 12:00:06 +0000 -@@ -95,7 +95,7 @@ - static int checkfor, compress, clear, force, keep, verbose; /* flags */ - static int nfound, nsaved, nerr; /* statistics */ - --extern FILE *zopen(const char *, const char *); -+extern FILE *gzopen(const char *, const char *); - - static void - printheader(FILE *f, const struct kerneldumpheader *h, const char *device, -@@ -387,7 +387,7 @@ - oumask = umask(S_IRWXG|S_IRWXO); /* Restrict access to the core file.*/ - if (compress) { - sprintf(buf, "vmcore.%d.gz", bounds); -- fp = zopen(buf, "w"); -+ fp = gzopen(buf, "w"); - } else { - sprintf(buf, "vmcore.%d", bounds); - fp = fopen(buf, "w"); |