From owner-freebsd-stable@FreeBSD.ORG Fri Jan 7 04:59:35 2005 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C98F616A4CE for ; Fri, 7 Jan 2005 04:59:35 +0000 (GMT) Received: from wasley.bl.mmtr.or.jp (wasley.bl.mmtr.or.jp [210.228.173.142]) by mx1.FreeBSD.org (Postfix) with SMTP id 3200B43D39 for ; Fri, 7 Jan 2005 04:59:35 +0000 (GMT) (envelope-from rushani@FreeBSD.org) Received: (qmail 14116 invoked from network); 7 Jan 2005 13:59:30 +0900 Received: from unknown (HELO localhost) (202.229.152.15) by wasley.bl.mmtr.or.jp with SMTP; 7 Jan 2005 13:59:30 +0900 Date: Fri, 07 Jan 2005 13:57:20 +0900 (JST) Message-Id: <20050107.135720.125823367.rushani@FreeBSD.org> To: ip@doom.homeunix.org From: Hideyuki KURASHINA In-Reply-To: <20050106211115.GB1068@doom.homeunix.org> References: <1dbad31505010508262fcda720@mail.gmail.com> <20050106211115.GB1068@doom.homeunix.org> X-URL: http://www.rushani.jp/ X-PGP-Public-Key: http://www.rushani.jp/rushani.asc X-PGP-Fingerprint: A052 6F98 6146 6FE3 91E2 DA6B F2FA 2088 439A DC57 X-RC5-72-Stats: http://stats.distributed.net/participant/psummary.php?project_id=8&id=432320 X-Mailer: Mew version 4.1.54 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: darrenr@freebsd.org cc: freebsd-stable@freebsd.org cc: guido@freebsd.org cc: michael.schuh@gmail.com Subject: Re: Missing Man-Pages in RELENG_4 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Jan 2005 04:59:35 -0000 Hi, >>> On Fri, 7 Jan 2005 00:11:15 +0300, Igor Pokrovsky said: > On Wed, Jan 05, 2005 at 05:26:18PM +0100, Michael Schuh wrote: > > Hi, > > > > i miss the manpages for ipf.conf ipnat.conf > > under RELENG_4 last updated 2005-01-05 > > via cvsup. > > I guess this is because there are no those man pages. That is not true. % uname -r 4.10-RELEASE-p3 % env PAGER=more apropos ipf.conf ipf(5), ipf.conf(5) - IP packet filter rule syntax % env PAGER=more apropos ipnat.conf ipnat(5), ipnat.conf(5) - IP NAT file format This is due to 1. lack of MLINKS in src/sbin/ipf/Makefile (HEAD, RELENG_5 and RELENG_4 are affected) 2. revsion 1.6 of src/sbin/ipnat/Makefile is not yet merged to RELENG_4 Darren, could you please commit following patch? Guido, also please merge those changes? Thanks, -- rushani Index: Makefile =================================================================== RCS file: /home/ncvs/src/sbin/ipf/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- Makefile 23 Feb 2004 20:13:52 -0000 1.14 +++ Makefile 7 Jan 2005 04:49:41 -0000 @@ -4,6 +4,8 @@ PROG= ipf MAN= ipf.4 ipf.5 ipf.8 +MLINKS= ipf.5 ipf.conf.5 \ + ipf.5 ipf6.conf.5 SRCS= ipf.c parse.c opt.c facpri.c common.c CFLAGS+=-DUSE_INET6 -DIPL_NAME=\"/dev/ipl\" CFLAGS+=-I${.CURDIR}/../../sys/contrib/ipfilter/netinet