From owner-cvs-all Sun Feb 3 1:14: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7345F37B402; Sun, 3 Feb 2002 01:13:59 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g139Dxr66997; Sun, 3 Feb 2002 01:13:59 -0800 (PST) (envelope-from bde) Message-Id: <200202030913.g139Dxr66997@freefall.freebsd.org> From: Bruce Evans Date: Sun, 3 Feb 2002 01:13:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 locore.s machdep.c src/sys/pc98/i386 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bde 2002/02/03 01:13:59 PST Modified files: sys/i386/i386 locore.s machdep.c sys/pc98/i386 machdep.c Log: Use osigreturn(2) instead of sigreturn(2) plus broken magic for returning from old signal handlers. This is simpler and faster, and fixes (new) sigreturn(2) when %eip in the new signal context happens to match the magic value (0x1d516). 0x1d516 is below the default ELF text section, so this probably never broken anything in practice. locore.s: In addition, don't build the signal trampoline for old signal handlers when it is not used. alpha: Not fixed, but seems to be even less broken in practice due to more advanced magic. A false match occurs for register #32 in mc_regs[]. Since there is no hardware register #32, a false match is only possible for direct calls to sigreturn(2) that happen to have the magic number in the spare mc_regs[32] field. Revision Changes Path 1.154 +7 -3 src/sys/i386/i386/locore.s 1.492 +0 -9 src/sys/i386/i386/machdep.c 1.257 +0 -9 src/sys/pc98/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 1:16:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E6F337B404; Sun, 3 Feb 2002 01:16:54 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g139GsO67248; Sun, 3 Feb 2002 01:16:54 -0800 (PST) (envelope-from dinoex) Message-Id: <200202030916.g139GsO67248@freefall.freebsd.org> From: Dirk Meyer Date: Sun, 3 Feb 2002 01:16:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/metakit Makefile distinfo ports/databases/metakit/files patch-Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/02/03 01:16:54 PST Modified files: databases/metakit Makefile distinfo Removed files: databases/metakit/files patch-Makefile.in Log: There is a new release of MetaKit Some details about this 2.4.3 release: - various bug fixes, see http://www.equi4.com/metakit/CHANGES - a cross-platform byte-order serialization bug has been fixed - the Python builds are for Python 2.2 (several improvements by GM) - the Tcl builds should run on any Tcl installation >= 8.1 See the home page for all further details and downloads: http://www.equi4.com/metakit/ Revision Changes Path 1.17 +3 -3 ports/databases/metakit/Makefile 1.5 +1 -1 ports/databases/metakit/distinfo 1.3 +0 -11 ports/databases/metakit/files/patch-Makefile.in (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 2: 1:53 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AAC537B404; Sun, 3 Feb 2002 02:01:49 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13A1nr72223; Sun, 3 Feb 2002 02:01:49 -0800 (PST) (envelope-from knu) Message-Id: <200202031001.g13A1nr72223@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 3 Feb 2002 02:01:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/test test.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/03 02:01:49 PST Modified files: bin/test test.c Log: Work around a buffer overflow problem on argv that has been exposed after making test(1) a sh(1) builtin; sh(1) coredumps when you run something like this: sh -c 'test ! `true 1`' The cause is that the test(1) code totally depends on the presence of two extra cells at the end of argv that are filled with NULL's. The reason why the bug hasn't been exposed would be because the C startup code kindly prepares argv with some extra zeroed cells for a program. I know this is not the best fix, but since there are argv++'s without boundary checks everywhere, I'd rather patch it up like this (preparing a copy of argv with extra NULL's) for the moment. MFC after: 3 days Revision Changes Path 1.40 +16 -6 src/bin/test/test.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 3: 4:17 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 27CD037B405; Sun, 3 Feb 2002 03:04:07 -0800 (PST) Received: (from yar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13B47883131; Sun, 3 Feb 2002 03:04:07 -0800 (PST) (envelope-from yar) Message-Id: <200202031104.g13B47883131@freefall.freebsd.org> From: Yar Tikhiy Date: Sun, 3 Feb 2002 03:04:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yar 2002/02/03 03:04:07 PST Modified files: . modules Log: mp3ck --> ports/audio/mp3ck Revision Changes Path 1.4644 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 3: 4:22 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F1B8637B402; Sun, 3 Feb 2002 03:04:04 -0800 (PST) Received: (from yar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13B44u83100; Sun, 3 Feb 2002 03:04:04 -0800 (PST) (envelope-from yar) Message-Id: <200202031104.g13B44u83100@freefall.freebsd.org> From: Yar Tikhiy Date: Sun, 3 Feb 2002 03:04:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio Makefile ports/audio/mp3ck Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yar 2002/02/03 03:04:04 PST Modified files: audio Makefile Added files: audio/mp3ck Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add a new port: mp3ck Mp3ck is a portable utility for checking the consistency of MPEG Layer 2 or 3 streams or files. The primary accent of the check is on the seamless flow of frames and tags since most MPEG defects introduced by aborted network transfers manifest theirselves in its breakage. Its ability to detect such defects is its main difference from other mp3*check utilities from our port collection. Revision Changes Path 1.282 +1 -0 ports/audio/Makefile 1.1 +18 -0 ports/audio/mp3ck/Makefile (new) 1.1 +1 -0 ports/audio/mp3ck/distinfo (new) 1.1 +1 -0 ports/audio/mp3ck/pkg-comment (new) 1.1 +10 -0 ports/audio/mp3ck/pkg-descr (new) 1.1 +1 -0 ports/audio/mp3ck/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 3:21:29 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AD44537B41A; Sun, 3 Feb 2002 03:21:22 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13BLMn88383; Sun, 3 Feb 2002 03:21:22 -0800 (PST) (envelope-from markm) Message-Id: <200202031121.g13BLMn88383@freefall.freebsd.org> From: Mark Murray Date: Sun, 3 Feb 2002 03:21:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/include sysarch.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/03 03:21:22 PST Modified files: sys/i386/include sysarch.h Log: Make the style a little bit more consistant by removing parameter names from some prototypes. (Other prototypes here already have these removed). Revision Changes Path 1.15 +3 -4 src/sys/i386/include/sysarch.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 3:37: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ADA3E37B404; Sun, 3 Feb 2002 03:36:59 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13Bax289770; Sun, 3 Feb 2002 03:36:59 -0800 (PST) (envelope-from markm) Message-Id: <200202031136.g13Bax289770@freefall.freebsd.org> From: Mark Murray Date: Sun, 3 Feb 2002 03:36:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys socket.h types.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/03 03:36:59 PST Modified files: sys/sys socket.h types.h Log: Zero functional difference; make some integer constants unsigned, as they are used in unsigned context. This shuts lint(1) up in a few significant ways with "signed/unsigned" arithmetic warnings. Revision Changes Path 1.58 +2 -2 src/sys/sys/socket.h 1.50 +3 -3 src/sys/sys/types.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 3:37:27 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E88B37B400; Sun, 3 Feb 2002 03:37:20 -0800 (PST) Received: (from nyan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13BbKq89855; Sun, 3 Feb 2002 03:37:20 -0800 (PST) (envelope-from nyan) Message-Id: <200202031137.g13BbKq89855@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 3 Feb 2002 03:37:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/pc98 Makefile src/sys/boot/pc98/kgzldr Makefile crt.s X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/02/03 03:37:20 PST Modified files: (Branch: RELENG_4) sys/boot/pc98 Makefile Added files: (Branch: RELENG_4) sys/boot/pc98/kgzldr Makefile crt.s Log: MFC: Added kgzldr for pc98. Revision Changes Path 1.2.2.2 +2 -2 src/sys/boot/pc98/Makefile 1.1.2.1 +37 -0 src/sys/boot/pc98/kgzldr/Makefile (new) 1.1.2.1 +118 -0 src/sys/boot/pc98/kgzldr/crt.s (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 3:57:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F0E737B402; Sun, 3 Feb 2002 03:57:32 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13BvWp91703; Sun, 3 Feb 2002 03:57:32 -0800 (PST) (envelope-from markm) Message-Id: <200202031157.g13BvWp91703@freefall.freebsd.org> From: Mark Murray Date: Sun, 3 Feb 2002 03:57:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet tcp_fsm.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/03 03:57:32 PST Modified files: sys/netinet tcp_fsm.h Log: WARNS=n and lint(1) silencer. Declare an array of (const) strings as const char. Revision Changes Path 1.15 +2 -2 src/sys/netinet/tcp_fsm.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 4: 0:11 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1748F37B404; Sun, 3 Feb 2002 04:00:06 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13C06b91976; Sun, 3 Feb 2002 04:00:06 -0800 (PST) (envelope-from markm) Message-Id: <200202031200.g13C06b91976@freefall.freebsd.org> From: Mark Murray Date: Sun, 3 Feb 2002 04:00:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include/protocols timed.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/03 04:00:05 PST Modified files: include/protocols timed.h Log: WARNS-n and lint(1) silencer. Declare (const) strings properly as 'const char *'. Revision Changes Path 1.7 +1 -1 src/include/protocols/timed.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 4:30:27 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 214E837B416; Sun, 3 Feb 2002 04:30:19 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13CUJC05863; Sun, 3 Feb 2002 04:30:19 -0800 (PST) (envelope-from des) Message-Id: <200202031230.g13CUJC05863@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 3 Feb 2002 04:30:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libfetch ftp.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/03 04:30:19 PST Modified files: (Branch: RELENG_4) lib/libfetch ftp.c Log: MFC 1.74: Mark uploads as O_WRONLY, not O_RDONLY. Revision Changes Path 1.16.2.26 +6 -2 src/lib/libfetch/ftp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 4:32: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 39FF737B405; Sun, 3 Feb 2002 04:32:05 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13CW5L06233; Sun, 3 Feb 2002 04:32:05 -0800 (PST) (envelope-from des) Message-Id: <200202031232.g13CW5L06233@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 3 Feb 2002 04:32:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libfetch http.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/03 04:32:05 PST Modified files: (Branch: RELENG_4) lib/libfetch http.c Log: MFC 1.49: Display full error message. MFC 1.50: Check return value when reading end of chunk. Revision Changes Path 1.13.2.18 +52 -5 src/lib/libfetch/http.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 5: 4:41 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id E820937B419; Sun, 3 Feb 2002 05:04:34 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id AAA21201; Mon, 4 Feb 2002 00:04:31 +1100 Date: Mon, 4 Feb 2002 00:06:49 +1100 (EST) From: Bruce Evans X-X-Sender: To: Mark Murray Cc: , Subject: Re: cvs commit: src/sys/sys socket.h types.h In-Reply-To: <200202031136.g13Bax289770@freefall.freebsd.org> Message-ID: <20020203230517.L19026-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 3 Feb 2002, Mark Murray wrote: > markm 2002/02/03 03:36:59 PST > > Modified files: > sys/sys socket.h types.h > Log: > Zero functional difference; make some integer constants unsigned, as > they are used in unsigned context. This shuts lint(1) up in a few > significant ways with "signed/unsigned" arithmetic warnings. > > Revision Changes Path > 1.58 +2 -2 src/sys/sys/socket.h > 1.50 +3 -3 src/sys/sys/types.h The change to howmany() is not good. It changes the functionality of howmany() on negative values. howmany() never worked right on negative values, so this is not very important. More importantly, the change causes sign mismatches and brokenness where there was none before, e.g., for const int x = 0; assert(howmany(x, 1) - 1 < 0); Also, the change usually doesn't fix the warning for const long long x = 0; const unsigned long long y = 0; assert(howmany(x, 1) == y); since 1U is usually promoted to 1LL in the changed howmany(). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 5:32: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from green.bikeshed.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2514037B402; Sun, 3 Feb 2002 05:31:57 -0800 (PST) Received: from localhost (green@localhost) by green.bikeshed.org (8.11.6/8.11.6) with ESMTP id g13DVvL65209; Sun, 3 Feb 2002 08:31:57 -0500 (EST) (envelope-from green@green.bikeshed.org) Message-Id: <200202031331.g13DVvL65209@green.bikeshed.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: obrien@FreeBSD.org Cc: "Brian F. Feldman" , Alfred Perlstein , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/editors/vim Makefile distinfo In-Reply-To: Message from "David O'Brien" of "Sat, 02 Feb 2002 23:14:09 PST." <20020202231409.A44173@dragon.nuxi.com> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 03 Feb 2002 08:31:57 -0500 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "David O'Brien" wrote: > On Sat, Feb 02, 2002 at 11:01:48PM -0500, Brian F. Feldman wrote: > > Why would we not want patches? So what if they don't apply to us if > > concatenating and bzip2ing the whole thing will result in much more space > > savings than a million separate bzip2ed patches each with their little > > dictionary to work from and not be able to compress well? > > Please go find a real problem to solve. > Want to give a real answer? -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org <> bfeldman@tislabs.com \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 6: 5:56 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DCB0837B405; Sun, 3 Feb 2002 06:05:51 -0800 (PST) Received: (from nyan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13E5pP25328; Sun, 3 Feb 2002 06:05:51 -0800 (PST) (envelope-from nyan) Message-Id: <200202031405.g13E5pP25328@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 3 Feb 2002 06:05:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/pc98 epsonio.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/02/03 06:05:51 PST Modified files: (Branch: RELENG_4) sys/pc98/pc98 epsonio.h Log: MFC: Add epson_inw function. Enable interrupts again after disabling them. Revision Changes Path 1.4.6.2 +13 -0 src/sys/pc98/pc98/epsonio.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 6: 8:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2DE9D37B400; Sun, 3 Feb 2002 06:08:47 -0800 (PST) Received: (from nyan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13E8lr25648; Sun, 3 Feb 2002 06:08:47 -0800 (PST) (envelope-from nyan) Message-Id: <200202031408.g13E8lr25648@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 3 Feb 2002 06:08:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/isa fdc.h src/sys/pc98/pc98 fd.c fdreg.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/02/03 06:08:47 PST Modified files: (Branch: RELENG_4) sys/isa fdc.h sys/pc98/pc98 fd.c fdreg.h Log: MFC: Use the bus_space stuff completely. Revision Changes Path 1.20.2.3 +18 -1 src/sys/isa/fdc.h 1.83.2.7 +80 -27 src/sys/pc98/pc98/fd.c 1.7.2.1 +11 -20 src/sys/pc98/pc98/fdreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 6:43:11 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 53A1437B404; Sun, 3 Feb 2002 06:43:08 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13Eh8M91268; Sun, 3 Feb 2002 06:43:08 -0800 (PST) (envelope-from markm) Message-Id: <200202031443.g13Eh8M91268@freefall.freebsd.org> From: Mark Murray Date: Sun, 3 Feb 2002 06:43:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/ps Makefile extern.h fmt.c keyword.c lomac.c lomac.h nlist.c print.c ps.c ps.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/03 06:43:07 PST Modified files: bin/ps Makefile extern.h fmt.c keyword.c lomac.c lomac.h nlist.c print.c ps.c ps.h Log: WARNS=4 fixes (incomplete, so set NO_WERROR), and lots of extra cleanup courtesy of automatic checking (lint). Revision Changes Path 1.17 +1 -1 src/bin/ps/Makefile 1.17 +3 -8 src/bin/ps/extern.h 1.17 +19 -14 src/bin/ps/fmt.c 1.37 +134 -116 src/bin/ps/keyword.c 1.4 +5 -2 src/bin/ps/lomac.c 1.2 +0 -1 src/bin/ps/lomac.h 1.16 +8 -4 src/bin/ps/nlist.c 1.55 +17 -34 src/bin/ps/print.c 1.48 +47 -49 src/bin/ps/ps.c 1.10 +5 -6 src/bin/ps/ps.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 6:52: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 044B537B416; Sun, 3 Feb 2002 06:52:04 -0800 (PST) Received: (from nyan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13Eq3h63693; Sun, 3 Feb 2002 06:52:03 -0800 (PST) (envelope-from nyan) Message-Id: <200202031452.g13Eq3h63693@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 3 Feb 2002 06:52:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ic esp.h i8251.h ns16550.h rsa.h src/sys/i386/isa/ic esp.h i8251.h ns16550.h rsa.h src/sys/isa sio.c src/sys/isa/ic esp.h ns16550.h src/sys/pc98/pc98 sio.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/02/03 06:52:03 PST Modified files: (Branch: RELENG_4) sys/isa sio.c sys/pc98/pc98 sio.c Added files: (Branch: RELENG_4) sys/dev/ic esp.h i8251.h ns16550.h rsa.h Removed files: (Branch: RELENG_4) sys/i386/isa/ic esp.h i8251.h ns16550.h rsa.h sys/isa/ic esp.h ns16550.h Log: MFC: Moved IC specific files into sys/dev/ic. Revision Changes Path 1.6.2.1 +77 -0 src/sys/dev/ic/esp.h (new) 1.1.2.1 +108 -0 src/sys/dev/ic/i8251.h (new) 1.8.2.1 +50 -0 src/sys/dev/ic/ns16550.h (new) 1.1.2.1 +128 -0 src/sys/dev/ic/rsa.h (new) 1.6.2.1 +0 -79 src/sys/i386/isa/ic/esp.h (dead) 1.2.2.1 +0 -109 src/sys/i386/isa/ic/i8251.h (dead) 1.8.2.1 +0 -50 src/sys/i386/isa/ic/ns16550.h (dead) 1.2.2.1 +0 -128 src/sys/i386/isa/ic/rsa.h (dead) 1.4.2.1 +0 -76 src/sys/isa/ic/esp.h (dead) 1.6.2.1 +0 -64 src/sys/isa/ic/ns16550.h (dead) 1.291.2.26 +2 -2 src/sys/isa/sio.c 1.124.2.13 +4 -4 src/sys/pc98/pc98/sio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 7:18: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 30B8637B404; Sun, 3 Feb 2002 07:17:58 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13FHwb73258; Sun, 3 Feb 2002 07:17:58 -0800 (PST) (envelope-from markm) Message-Id: <200202031517.g13FHwb73258@freefall.freebsd.org> From: Mark Murray Date: Sun, 3 Feb 2002 07:17:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_lastlog pam_lastlog.c src/lib/libpam/modules/pam_login_access login_access.c pam_login_access.c pam_login_access.h src/lib/libpam/modules/pam_securetty pam_securetty.c src/lib/libpam/modules/pam_unix pam_unix.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/03 07:17:57 PST Modified files: lib/libpam/modules/pam_lastlog pam_lastlog.c lib/libpam/modules/pam_login_access login_access.c pam_login_access.c lib/libpam/modules/pam_securetty pam_securetty.c lib/libpam/modules/pam_unix pam_unix.c Added files: lib/libpam/modules/pam_login_access pam_login_access.h Log: WARNS=n fixes (and some stylistic issues). Revision Changes Path 1.5 +1 -1 src/lib/libpam/modules/pam_lastlog/pam_lastlog.c 1.11 +21 -26 src/lib/libpam/modules/pam_login_access/login_access.c 1.5 +1 -1 src/lib/libpam/modules/pam_login_access/pam_login_access.c 1.1 +39 -0 src/lib/libpam/modules/pam_login_access/pam_login_access.h (new) 1.8 +2 -2 src/lib/libpam/modules/pam_securetty/pam_securetty.c 1.18 +27 -25 src/lib/libpam/modules/pam_unix/pam_unix.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 7:50: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CBCA37B400; Sun, 3 Feb 2002 07:50:05 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13Fo5j76680; Sun, 3 Feb 2002 07:50:05 -0800 (PST) (envelope-from markm) Message-Id: <200202031550.g13Fo5j76680@freefall.freebsd.org> From: Mark Murray Date: Sun, 3 Feb 2002 07:50:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/libpam/libpam pam_dispatch.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/03 07:50:05 PST Modified files: contrib/libpam/libpam pam_dispatch.c Log: WARNS fix. Zap an unused variable. Revision Changes Path 1.3 +1 -1 src/contrib/libpam/libpam/pam_dispatch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 7:51:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B1DD37B400; Sun, 3 Feb 2002 07:51:52 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13Fpql76999; Sun, 3 Feb 2002 07:51:52 -0800 (PST) (envelope-from markm) Message-Id: <200202031551.g13Fpql76999@freefall.freebsd.org> From: Mark Murray Date: Sun, 3 Feb 2002 07:51:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/03 07:51:52 PST Modified files: lib/libpam Makefile.inc Log: Turn on fascist warning mode. Revision Changes Path 1.4 +3 -1 src/lib/libpam/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 7:53: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AF7B837B400; Sun, 3 Feb 2002 07:53:02 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13Fr2j77175; Sun, 3 Feb 2002 07:53:02 -0800 (PST) (envelope-from imp) Message-Id: <200202031553.g13Fr2j77175@freefall.freebsd.org> From: Warner Losh Date: Sun, 3 Feb 2002 07:53:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/atrun atrun.c src/libexec/comsat comsat.c src/libexec/fingerd fingerd.c src/libexec/ftpd extern.h ftpcmd.y ftpd.c popen.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/03 07:53:02 PST Modified files: libexec/atrun atrun.c libexec/comsat comsat.c libexec/fingerd fingerd.c libexec/ftpd extern.h ftpcmd.y ftpd.c popen.c Log: o Eliminate __P o Use new-style function definitions o remove some !__STDC__ code o eliminate register Revision Changes Path 1.17 +4 -4 src/libexec/atrun/atrun.c 1.15 +19 -32 src/libexec/comsat/comsat.c 1.19 +6 -22 src/libexec/fingerd/fingerd.c 1.18 +33 -33 src/libexec/ftpd/extern.h 1.31 +21 -34 src/libexec/ftpd/ftpcmd.y 1.97 +67 -146 src/libexec/ftpd/ftpd.c 1.22 +3 -5 src/libexec/ftpd/popen.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 8:25:20 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id 8A47937B405; Sun, 3 Feb 2002 08:25:11 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g13GPAJ03795; Sun, 3 Feb 2002 16:25:10 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id 2E0CCBF; Sun, 3 Feb 2002 16:20:22 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g13G83E47024; Sun, 3 Feb 2002 16:08:07 GMT (envelope-from mark@grondar.za) Message-Id: <200202031608.g13G83E47024@greenpeace.grondar.org> To: Bruce Evans Cc: Mark Murray , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys socket.h types.h References: <20020203230517.L19026-100000@gamplex.bde.org> In-Reply-To: <20020203230517.L19026-100000@gamplex.bde.org> ; from Bruce Evans "Mon, 04 Feb 2002 00:06:49 +1100." Date: Sun, 03 Feb 2002 16:07:58 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ok, So what needs to be done? M > On Sun, 3 Feb 2002, Mark Murray wrote: > > > markm 2002/02/03 03:36:59 PST > > > > Modified files: > > sys/sys socket.h types.h > > Log: > > Zero functional difference; make some integer constants unsigned, as > > they are used in unsigned context. This shuts lint(1) up in a few > > significant ways with "signed/unsigned" arithmetic warnings. > > > > Revision Changes Path > > 1.58 +2 -2 src/sys/sys/socket.h > > 1.50 +3 -3 src/sys/sys/types.h > > The change to howmany() is not good. It changes the functionality of > howmany() on negative values. howmany() never worked right on negative > values, so this is not very important. More importantly, the change > causes sign mismatches and brokenness where there was none before, e.g., > for > > const int x = 0; > > assert(howmany(x, 1) - 1 < 0); > > Also, the change usually doesn't fix the warning for > > const long long x = 0; > const unsigned long long y = 0; > > assert(howmany(x, 1) == y); > > since 1U is usually promoted to 1LL in the changed howmany(). > > Bruce > -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 9: 3:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D25437B405; Sun, 3 Feb 2002 09:03:34 -0800 (PST) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13H3Yr88704; Sun, 3 Feb 2002 09:03:34 -0800 (PST) (envelope-from joe) Message-Id: <200202031703.g13H3Yr88704@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 3 Feb 2002 09:03:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.c uhci.c usb.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2002/02/03 09:03:34 PST Modified files: sys/dev/usb ohci.c uhci.c usb.c Log: Follow NetBSD and ANSIfy the function definitions. Remove trailing whitespaces (submitted to NetBSD). Revision Changes Path 1.62 +149 -259 src/sys/dev/usb/ohci.c 1.79 +69 -70 src/sys/dev/usb/uhci.c 1.54 +14 -14 src/sys/dev/usb/usb.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 9:12:29 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 8AA3537B404; Sun, 3 Feb 2002 09:12:24 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id EAA30327; Mon, 4 Feb 2002 04:11:17 +1100 Date: Mon, 4 Feb 2002 04:12:48 +1100 (EST) From: Bruce Evans X-X-Sender: To: Mark Murray Cc: Mark Murray , , Subject: Re: cvs commit: src/sys/sys socket.h types.h In-Reply-To: <200202031608.g13G83E47024@greenpeace.grondar.org> Message-ID: <20020204035957.Q20055-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 3 Feb 2002, Mark Murray wrote: > Ok, So what needs to be done? Back out the change to howmany(). The caller can always pass it types with the same signedness (after promotion) or cast the value. This is a bit like the caller having to do this for min(9undoc): min(1U, -1) gives a very wrong value. min(1U, 1) gives the correct value but may only escape being warned about because the args get silently converted to u_int. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 9:25:21 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id 2BF7537B404; Sun, 3 Feb 2002 09:25:14 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g13HPCK22428; Sun, 3 Feb 2002 17:25:12 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id 380D575; Sun, 3 Feb 2002 17:24:59 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g13HOwE61969; Sun, 3 Feb 2002 17:24:58 GMT (envelope-from mark@grondar.za) Message-Id: <200202031724.g13HOwE61969@greenpeace.grondar.org> To: Bruce Evans Cc: Mark Murray , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys socket.h types.h References: <20020204035957.Q20055-100000@gamplex.bde.org> In-Reply-To: <20020204035957.Q20055-100000@gamplex.bde.org> ; from Bruce Evans "Mon, 04 Feb 2002 04:12:48 +1100." Date: Sun, 03 Feb 2002 17:24:53 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Sun, 3 Feb 2002, Mark Murray wrote: > > > Ok, So what needs to be done? > > Back out the change to howmany(). The caller can always pass it types > with the same signedness (after promotion) or cast the value. This > is a bit like the caller having to do this for min(9undoc): > min(1U, -1) gives a very wrong value. min(1U, 1) gives the correct > value but may only escape being warned about because the args get > silently converted to u_int. So how does one write a (decent) macro to return a correct value for min(1u, -1)? howmany() is used so much in the kernel, and is defined in multiple places, so methinks it needs to be a function (inline?). It kicks out zillions of wanings when you try to lint it. M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 9:46:57 2002 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id C6ECE37B416; Sun, 3 Feb 2002 09:46:53 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id g13HjWJ38337; Sun, 3 Feb 2002 09:45:32 -0800 (PST) (envelope-from obrien) Date: Sun, 3 Feb 2002 09:44:07 -0800 From: "David O'Brien" To: "Brian F. Feldman" Cc: Alfred Perlstein , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/editors/vim Makefile distinfo Message-ID: <20020203094407.A38295@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200202031331.g13DVvL65209@green.bikeshed.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200202031331.g13DVvL65209@green.bikeshed.org>; from green@FreeBSD.org on Sun, Feb 03, 2002 at 08:31:57AM -0500 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 03, 2002 at 08:31:57AM -0500, Brian F. Feldman wrote: > "David O'Brien" wrote: > > On Sat, Feb 02, 2002 at 11:01:48PM -0500, Brian F. Feldman wrote: > > > Why would we not want patches? So what if they don't apply to us if > > > concatenating and bzip2ing the whole thing will result in much more space > > > savings than a million separate bzip2ed patches each with their little > > > dictionary to work from and not be able to compress well? > > > > Please go find a real problem to solve. > > > > Want to give a real answer? At this point I do not know if you guys are talking about makeing a few large patches that are the application of say patches 1-50 applied and a new patch made, or if you guys are just talking about tar'ing up the 150 patches. BUT WHO FSCKING CARES?!?!? Is the Vim port taking up *THAT* much of your disk space? I for one am thrilled that Bram is now releasing these individual bug fixes as soon as he makes them. In the past we would wait a few months for them. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 10:52:53 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 28F9537B405; Sun, 3 Feb 2002 10:52:48 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.6/8.11.5) with ESMTP id g13Iq0Q09196; Sun, 3 Feb 2002 13:52:01 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200202031852.g13Iq0Q09196@aldan.algebra.com> Date: Sun, 3 Feb 2002 13:51:57 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: ports/x11-fonts/webfonts Makefile To: pat@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, kkonstan@daemon.gr In-Reply-To: <200202020710.g127AVu26492@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 1 Feb, Patrick Li wrote: > pat 2002/02/01 23:10:31 PST > > Modified files: > x11-fonts/webfonts Makefile > Log: > Last attempt to fix the prefix problem was just a revert of fenner's > changes so fix that and just add USE_X_PREFIX before .include > Actually, there is nothing in this port, that requires XLIB (impiled by the USE_X_PREFIX). They can, for example, be used in conjunctions with gd2-port to generate images on the fly and so on, but currently require X11 :-\ IMHO, even the xfstt dependency should be optional... -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 10:56: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E30E37B417; Sun, 3 Feb 2002 10:55:57 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13Itve08368; Sun, 3 Feb 2002 10:55:57 -0800 (PST) (envelope-from lioux) Message-Id: <200202031855.g13Itve08368@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sun, 3 Feb 2002 10:55:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/hlserver-snow Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2002/02/03 10:55:57 PST Modified files: games/hlserver-snow Makefile Log: o Correctly apply a distribution patch o no PORTREVISION bump since it was not extracting before Submitted by: nik Revision Changes Path 1.4 +1 -1 ports/games/hlserver-snow/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 11: 3:42 2002 Delivered-To: cvs-all@freebsd.org Received: from green.bikeshed.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 28D1F37B416; Sun, 3 Feb 2002 11:03:36 -0800 (PST) Received: from localhost (green@localhost) by green.bikeshed.org (8.11.6/8.11.6) with ESMTP id g13J3ZS04091; Sun, 3 Feb 2002 14:03:35 -0500 (EST) (envelope-from green@green.bikeshed.org) Message-Id: <200202031903.g13J3ZS04091@green.bikeshed.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: obrien@FreeBSD.org Cc: "Brian F. Feldman" , Alfred Perlstein , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/editors/vim Makefile distinfo In-Reply-To: Your message of "Sun, 03 Feb 2002 09:44:07 PST." <20020203094407.A38295@dragon.nuxi.com> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 03 Feb 2002 14:03:30 -0500 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "David O'Brien" wrote: > On Sun, Feb 03, 2002 at 08:31:57AM -0500, Brian F. Feldman wrote: > > "David O'Brien" wrote: > > > On Sat, Feb 02, 2002 at 11:01:48PM -0500, Brian F. Feldman wrote: > > > > Why would we not want patches? So what if they don't apply to us if > > > > concatenating and bzip2ing the whole thing will result in much more space > > > > savings than a million separate bzip2ed patches each with their little > > > > dictionary to work from and not be able to compress well? > > > > > > Please go find a real problem to solve. > > > > > > > Want to give a real answer? > > At this point I do not know if you guys are talking about makeing a few > large patches that are the application of say patches 1-50 applied and a > new patch made, or if you guys are just talking about tar'ing up the 150 > patches. BUT WHO FSCKING CARES?!?!? Is the Vim port taking up *THAT* > much of your disk space? I for one am thrilled that Bram is now > releasing these individual bug fixes as soon as he makes them. In the > past we would wait a few months for them. make fetch: 566.84s real 31.28s user 111.10s system make build (including the here-horrendous makesum and patch steps): 181.18s real 103.83s user 45.31s system Come on, tell me that's not ridiculous? This is on a cable modem. Under normal conditions I would have been able to download that much data in half a minute from most mirrors. If you think there's absolutely nothing wrong with that, fine, whatever. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org <> bfeldman@tislabs.com \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 11: 6:26 2002 Delivered-To: cvs-all@freebsd.org Received: from heaven.gigo.com (gigo.com [207.173.11.186]) by hub.freebsd.org (Postfix) with ESMTP id ACBF737B431 for ; Sun, 3 Feb 2002 11:06:09 -0800 (PST) Received: from 200.193.224.196 (unknown [200.193.224.196]) by heaven.gigo.com (Postfix) with ESMTP id 304CBB913 for ; Sun, 3 Feb 2002 11:06:09 -0800 (PST) Received: (qmail 1634 invoked by uid 1001); 3 Feb 2002 18:45:27 -0000 Message-ID: <20020203184527.1633.qmail@exxodus.fedaykin.here> Date: Sun, 3 Feb 2002 16:45:05 -0200 From: Mario Sergio Fujikawa Ferreira To: Nik Clayton Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/games/utserver-asu Makefile References: <200202022334.g12NYpX66590@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200202022334.g12NYpX66590@freefall.freebsd.org>; from nik@FreeBSD.org on Sat, Feb 02, 2002 at 03:34:29PM -0800 X-Operating-System: FreeBSD 4.5-STABLE X-Disclaimer: I hope you find what you are looking for... in life :) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 02, 2002 at 03:34:29PM -0800, Nik Clayton wrote: > > Modified files: > games/utserver-asu Makefile > Log: > Remove the line > > GZIP= 9 > > which made the port refuse to build. Does anyone know if there's anything special in bento? 'Cause it worked in my home ports. :( No problem. I will avoid using this but this is weird. -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." Computer Science Undergraduate | FreeBSD Committer | CS Developer flames to beloved devnull@someotherworldbeloworabove.org feature, n: a documented bug | bug, n: an undocumented feature To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 11:10:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 47A5E37B41C; Sun, 3 Feb 2002 11:10:27 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13JARe13618; Sun, 3 Feb 2002 11:10:27 -0800 (PST) (envelope-from knu) Message-Id: <200202031910.g13JARe13618@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 3 Feb 2002 11:10:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/ruby-mail Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/03 11:10:27 PST Modified files: mail/ruby-mail Makefile distinfo pkg-plist Log: Update to 0.5. Revision Changes Path 1.3 +2 -3 ports/mail/ruby-mail/Makefile 1.3 +1 -1 ports/mail/ruby-mail/distinfo 1.3 +28 -23 ports/mail/ruby-mail/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 11:11:46 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7F70E37B41D; Sun, 3 Feb 2002 11:11:32 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13JBWH13808; Sun, 3 Feb 2002 11:11:32 -0800 (PST) (envelope-from markm) Message-Id: <200202031911.g13JBWH13808@freefall.freebsd.org> From: Mark Murray Date: Sun, 3 Feb 2002 11:11:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/ls Makefile extern.h lomac.c ls.c ls.h print.c util.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/03 11:11:32 PST Modified files: bin/ls Makefile extern.h lomac.c ls.c ls.h print.c util.c Log: WARNS=4 fixes, plus a healthy dose of fixes inspired by lint. Revision Changes Path 1.21 +0 -1 src/bin/ls/Makefile 1.18 +1 -1 src/bin/ls/extern.h 1.4 +2 -2 src/bin/ls/lomac.c 1.54 +56 -41 src/bin/ls/ls.c 1.17 +8 -8 src/bin/ls/ls.h 1.51 +12 -13 src/bin/ls/print.c 1.27 +5 -6 src/bin/ls/util.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 11:13:58 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A4FE37B404; Sun, 3 Feb 2002 11:13:53 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13JDrV14138; Sun, 3 Feb 2002 11:13:53 -0800 (PST) (envelope-from lioux) Message-Id: <200202031913.g13JDrV14138@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sun, 3 Feb 2002 11:13:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/dctc Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2002/02/03 11:13:53 PST Modified files: net/dctc Makefile distinfo Log: Update to 0.69 Revision Changes Path 1.7 +2 -2 ports/net/dctc/Makefile 1.6 +1 -1 ports/net/dctc/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 11:14:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0780B37B419; Sun, 3 Feb 2002 11:14:08 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13JE8X14176; Sun, 3 Feb 2002 11:14:08 -0800 (PST) (envelope-from lioux) Message-Id: <200202031914.g13JE8X14176@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sun, 3 Feb 2002 11:14:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/dctc-gui Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2002/02/03 11:14:07 PST Modified files: net/dctc-gui Makefile distinfo Log: Update to 0.43 Revision Changes Path 1.8 +1 -1 ports/net/dctc-gui/Makefile 1.6 +1 -1 ports/net/dctc-gui/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 11:33:45 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 41F6337B43D; Sun, 3 Feb 2002 11:33:37 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13JXbe17548; Sun, 3 Feb 2002 11:33:37 -0800 (PST) (envelope-from knu) Message-Id: <200202031933.g13JXbe17548@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 3 Feb 2002 11:33:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/ruby-gettext Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/03 11:33:37 PST Modified files: devel Makefile Added files: devel/ruby-gettext Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add ruby-gettext, a Ruby implementation of the gettext library. Revision Changes Path 1.742 +1 -0 ports/devel/Makefile 1.1 +35 -0 ports/devel/ruby-gettext/Makefile (new) 1.1 +1 -0 ports/devel/ruby-gettext/distinfo (new) 1.1 +1 -0 ports/devel/ruby-gettext/pkg-comment (new) 1.1 +6 -0 ports/devel/ruby-gettext/pkg-descr (new) 1.1 +39 -0 ports/devel/ruby-gettext/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 11:34:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED80E37B420; Sun, 3 Feb 2002 11:33:47 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13JXlt17607; Sun, 3 Feb 2002 11:33:47 -0800 (PST) (envelope-from knu) Message-Id: <200202031933.g13JXlt17607@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 3 Feb 2002 11:33:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/03 11:33:47 PST Modified files: . modules Log: ruby-gettext --> ports/devel/ruby-gettext Revision Changes Path 1.4645 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 11:35:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D96C237B405; Sun, 3 Feb 2002 11:35:41 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13JZfe18148; Sun, 3 Feb 2002 11:35:41 -0800 (PST) (envelope-from knu) Message-Id: <200202031935.g13JZfe18148@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 3 Feb 2002 11:35:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/ruby-mo Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/03 11:35:41 PST Modified files: devel Makefile Removed files: devel/ruby-mo Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Remove ruby-mo which has been superseded by ruby-gettext. Revision Changes Path 1.743 +0 -1 ports/devel/Makefile 1.3 +0 -31 ports/devel/ruby-mo/Makefile (dead) 1.3 +0 -1 ports/devel/ruby-mo/distinfo (dead) 1.2 +0 -1 ports/devel/ruby-mo/pkg-comment (dead) 1.2 +0 -4 ports/devel/ruby-mo/pkg-descr (dead) 1.2 +0 -1 ports/devel/ruby-mo/pkg-plist (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 11:36:42 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD94037B419; Sun, 3 Feb 2002 11:36:36 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13Jaad18280; Sun, 3 Feb 2002 11:36:36 -0800 (PST) (envelope-from knu) Message-Id: <200202031936.g13Jaad18280@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 3 Feb 2002 11:36:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/03 11:36:36 PST Modified files: . modules Log: Unlink ruby-mo. Revision Changes Path 1.4646 +0 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 11:44:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 81CAF37B416; Sun, 3 Feb 2002 11:44:32 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13JiWF20587; Sun, 3 Feb 2002 11:44:32 -0800 (PST) (envelope-from knu) Message-Id: <200202031944.g13JiWF20587@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 3 Feb 2002 11:44:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ruby-gettext pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/03 11:44:32 PST Modified files: devel/ruby-gettext pkg-plist Log: Oops, $PREFIX/share/locale/ja/LC_MESSAGES is not created by mtree. Revision Changes Path 1.2 +1 -0 ports/devel/ruby-gettext/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 12: 6:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 86BF437B405; Sun, 3 Feb 2002 12:06:54 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13K6sJ26487; Sun, 3 Feb 2002 12:06:54 -0800 (PST) (envelope-from lioux) Message-Id: <200202032006.g13K6sJ26487@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sun, 3 Feb 2002 12:06:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/silc-client Makefile distinfo ports/net/silc-client/files patch-Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2002/02/03 12:06:54 PST Modified files: net/silc-client Makefile distinfo net/silc-client/files patch-Makefile.in Log: o Update to 0.7.6.1 o Add ipv6 support Revision Changes Path 1.7 +6 -2 ports/net/silc-client/Makefile 1.6 +1 -1 ports/net/silc-client/distinfo 1.6 +6 -8 ports/net/silc-client/files/patch-Makefile.in To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 12: 7:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AA14737B417; Sun, 3 Feb 2002 12:07:35 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13K7Zw26620; Sun, 3 Feb 2002 12:07:35 -0800 (PST) (envelope-from lioux) Message-Id: <200202032007.g13K7Zw26620@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sun, 3 Feb 2002 12:07:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/silc-server Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2002/02/03 12:07:35 PST Modified files: net/silc-server Makefile distinfo Log: o Update to 0.7.9 o Enable ipv6 support Revision Changes Path 1.11 +6 -2 ports/net/silc-server/Makefile 1.8 +1 -1 ports/net/silc-server/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 12:25:16 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BEDCC37B41A; Sun, 3 Feb 2002 12:25:13 -0800 (PST) Received: (from gallatin@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13KPDg28657; Sun, 3 Feb 2002 12:25:13 -0800 (PST) (envelope-from gallatin) Message-Id: <200202032025.g13KPDg28657@freefall.freebsd.org> From: Andrew Gallatin Date: Sun, 3 Feb 2002 12:25:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_misc.c src/sys/alpha/linux syscalls.master X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gallatin 2002/02/03 12:25:13 PST Modified files: (Branch: RELENG_4) sys/compat/linux linux_misc.c sys/alpha/linux syscalls.master Log: MFC: Linux/alpha uses the same BSDish return mechanism we do for getpid, getuid, getgid and pipe, since they bootstrapped from OSF/1 and never cleaned up. Switch to the native syscalls on alpha so that the above functions work. Revision Changes Path 1.40.2.8 +4 -4 src/sys/alpha/linux/syscalls.master 1.85.2.8 +4 -0 src/sys/compat/linux/linux_misc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 12:26:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DC30037B400; Sun, 3 Feb 2002 12:26:29 -0800 (PST) Received: (from gallatin@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13KQTU28868; Sun, 3 Feb 2002 12:26:29 -0800 (PST) (envelope-from gallatin) Message-Id: <200202032026.g13KQTU28868@freefall.freebsd.org> From: Andrew Gallatin Date: Sun, 3 Feb 2002 12:26:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/linux linux_proto.h linux_syscall.h linux_sysent.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gallatin 2002/02/03 12:26:29 PST Modified files: (Branch: RELENG_4) sys/alpha/linux linux_proto.h linux_syscall.h linux_sysent.c Log: Regenerated file from previous commit to syscalls.master Revision Changes Path 1.9.2.4 +0 -12 src/sys/alpha/linux/linux_proto.h 1.8.2.4 +3 -3 src/sys/alpha/linux/linux_syscall.h 1.8.2.4 +3 -3 src/sys/alpha/linux/linux_sysent.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 12:33:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CFC4437B404; Sun, 3 Feb 2002 12:33:46 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13KXkc29532; Sun, 3 Feb 2002 12:33:46 -0800 (PST) (envelope-from lioux) Message-Id: <200202032033.g13KXkc29532@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sun, 3 Feb 2002 12:33:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/understand_c Makefile distinfo ports/devel/understand_ada Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2002/02/03 12:33:46 PST Modified files: devel/understand_c Makefile distinfo devel/understand_ada Makefile distinfo Log: Update to 1.4 Build 146 Revision Changes Path 1.20 +1 -1 ports/devel/understand_ada/Makefile 1.18 +1 -1 ports/devel/understand_ada/distinfo 1.39 +1 -1 ports/devel/understand_c/Makefile 1.36 +1 -1 ports/devel/understand_c/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 12:43:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BBEB37B41A; Sun, 3 Feb 2002 12:43:46 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13Khk130813; Sun, 3 Feb 2002 12:43:46 -0800 (PST) (envelope-from knu) Message-Id: <200202032043.g13Khk130813@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 3 Feb 2002 12:43:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/wyvern Makefile distinfo pkg-comment pkg-descr pkg-plist ports/www/wyvern/files patch-Makefile.in patch-configure.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/03 12:43:46 PST Modified files: www/wyvern Makefile distinfo pkg-comment pkg-descr pkg-plist www/wyvern/files patch-Makefile.in patch-configure.in Log: Update Wyvern, a simple/powerful/lightweight/secure/embed-able HTTP server to 2.0.4. Submitted by: Kouichi ABE (WALL) Revision Changes Path 1.6 +3 -3 ports/www/wyvern/Makefile 1.3 +1 -1 ports/www/wyvern/distinfo 1.3 +8 -35 ports/www/wyvern/files/patch-Makefile.in 1.3 +10 -10 ports/www/wyvern/files/patch-configure.in 1.2 +1 -1 ports/www/wyvern/pkg-comment 1.2 +15 -4 ports/www/wyvern/pkg-descr 1.3 +47 -58 ports/www/wyvern/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 12:55:59 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B82037B41E; Sun, 3 Feb 2002 12:55:55 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13Kttw32363; Sun, 3 Feb 2002 12:55:55 -0800 (PST) (envelope-from markm) Message-Id: <200202032055.g13Kttw32363@freefall.freebsd.org> From: Mark Murray Date: Sun, 3 Feb 2002 12:55:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/ls cmp.c lomac.c ls.c print.c util.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/03 12:55:55 PST Modified files: bin/ls cmp.c lomac.c ls.c print.c util.c Log: Use __FBSDID() and clean up the vendor tags. Revision Changes Path 1.11 +6 -5 src/bin/ls/cmp.c 1.5 +3 -1 src/bin/ls/lomac.c 1.55 +6 -5 src/bin/ls/ls.c 1.52 +6 -5 src/bin/ls/print.c 1.28 +6 -5 src/bin/ls/util.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 13:14:34 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4954637B41C; Sun, 3 Feb 2002 13:14:27 -0800 (PST) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13LERT38061; Sun, 3 Feb 2002 13:14:27 -0800 (PST) (envelope-from dwmalone) Message-Id: <200202032114.g13LERT38061@freefall.freebsd.org> From: David Malone Date: Sun, 3 Feb 2002 13:14:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml dwmalone.key pgpkeys.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwmalone 2002/02/03 13:14:27 PST Modified files: en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml pgpkeys.ent Added files: en_US.ISO8859-1/books/handbook/pgpkeys dwmalone.key Log: Add my pgp key. Revision Changes Path 1.146 +5 -0 doc/en_US.ISO8859-1/books/handbook/pgpkeys/chapter.sgml 1.1 +22 -0 doc/en_US.ISO8859-1/books/handbook/pgpkeys/dwmalone.key (new) 1.22 +1 -0 doc/en_US.ISO8859-1/books/handbook/pgpkeys/pgpkeys.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 13:37:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 80B4C37B41D; Sun, 3 Feb 2002 13:37:34 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13LbY640532; Sun, 3 Feb 2002 13:37:34 -0800 (PST) (envelope-from dougb) Message-Id: <200202032137.g13LbY640532@freefall.freebsd.org> From: Doug Barton Date: Sun, 3 Feb 2002 13:37:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/bind8 Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dougb 2002/02/03 13:37:34 PST Modified files: net/bind8 Makefile distinfo Log: Upgrade to 8.3.1, an urgent bugfix release. To quote from the release notes, "If you have BIND 8.3.0 you need to upgrade." See /usr/local/share/doc/bind8/CHANGES for a complete list, but the most important change is: 1324. [bug] certian bad delegations could result in a DNS storm. Revision Changes Path 1.31 +1 -1 ports/net/bind8/Makefile 1.16 +2 -2 ports/net/bind8/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 13:40:45 2002 Delivered-To: cvs-all@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id EDE3F37B420; Sun, 3 Feb 2002 13:40:42 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 1CF5B9B08; Sun, 3 Feb 2002 16:40:07 -0500 (EST) Date: Sun, 3 Feb 2002 16:40:07 -0500 From: Will Andrews To: Mario Sergio Fujikawa Ferreira Cc: Nik Clayton , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/games/utserver-asu Makefile Message-ID: <20020203214006.GE82640@squall.waterspout.com> Mail-Followup-To: Mario Sergio Fujikawa Ferreira , Nik Clayton , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200202022334.g12NYpX66590@freefall.freebsd.org> <20020203184527.1633.qmail@exxodus.fedaykin.here> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020203184527.1633.qmail@exxodus.fedaykin.here> User-Agent: Mutt/1.3.26i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 03, 2002 at 04:45:05PM -0200, Mario Sergio Fujikawa Ferreira wrote: > Does anyone know if there's anything special in bento? > 'Cause it worked in my home ports. :( > No problem. I will avoid using this but this is weird. Uh.. no. '9' is not a valid option in gzip. Look at how ${GZIP} is used in bsd.port.mk. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 13:45:24 2002 Delivered-To: cvs-all@freebsd.org Received: from ermis.cc.duth.gr (ermis.cc.duth.gr [192.108.114.10]) by hub.freebsd.org (Postfix) with ESMTP id D0C1D37B423; Sun, 3 Feb 2002 13:45:14 -0800 (PST) Received: from duth.gr (foo.duth.gr [193.92.210.14]) by ermis.cc.duth.gr (8.11.6/8.11.6) with ESMTP id g13LifF79514; Sun, 3 Feb 2002 23:44:41 +0200 (EET) (envelope-from kkonstan@duth.gr) Message-ID: <3C5DAF3E.779D585F@duth.gr> Date: Sun, 03 Feb 2002 23:44:30 +0200 From: Konstantinos Konstantinidis Organization: We've heard of it. X-Mailer: Mozilla 4.79 [en] (X11; U; Linux 2.4.2 i386) X-Accept-Language: en, el MIME-Version: 1.0 To: Mikhail Teterin Cc: pat@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, kkonstan@daemon.gr Subject: Re: cvs commit: ports/x11-fonts/webfonts Makefile References: <200202031852.g13Iq0Q09196@aldan.algebra.com> Content-Type: text/plain; charset=iso-8859-7 Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Mikhail Teterin wrote: > > On 1 Feb, Patrick Li wrote: > > pat 2002/02/01 23:10:31 PST > > > > Modified files: > > x11-fonts/webfonts Makefile > > Log: > > Last attempt to fix the prefix problem was just a revert of fenner's > > changes so fix that and just add USE_X_PREFIX before .include > > > > Actually, there is nothing in this port, that requires XLIB (impiled by > the USE_X_PREFIX). They can, for example, be used in conjunctions with > gd2-port to generate images on the fly and so on, but currently require > X11 :-\ > > IMHO, even the xfstt dependency should be optional... > > -mi I was away for a while and missed the whole prefix 'breakage' thing, if one could call it that. Oh well! I think that these fonts do belong in X11R6 for 99% of user configs out there, and the xfstt dependency was included since many people that used XFree86 3.3.6 as shipped with FreeBSD didn't figure this out by themselves apparently, judging by the feedback I got... I think however that we can have our cake and eat it too, I'll just add a WITHOUT_X11 that will build the fonts with no X11 dependencies and install them to /usr/local/share... any other suggestions/comments? --kkonstan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 13:59:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E79B737B405; Sun, 3 Feb 2002 13:59:27 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13LxRi43363; Sun, 3 Feb 2002 13:59:27 -0800 (PST) (envelope-from mbr) Message-Id: <200202032159.g13LxRi43363@freefall.freebsd.org> From: Martin Blapp Date: Sun, 3 Feb 2002 13:59:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_frontpage Makefile distinfo pkg-descr pkg-message pkg-plist ports/www/mod_frontpage/files patch-Makefile.PL patch-fpexec.c patch-mod_frontpage.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/02/03 13:59:27 PST Modified files: www/mod_frontpage Makefile distinfo pkg-descr pkg-message pkg-plist Removed files: www/mod_frontpage/files patch-Makefile.PL patch-fpexec.c patch-mod_frontpage.c Log: Upgrade to version 1.6 which I just have finished today. Reviewed by: some frontpage users Revision Changes Path 1.4 +5 -3 ports/www/mod_frontpage/Makefile 1.3 +1 -1 ports/www/mod_frontpage/distinfo 1.2 +0 -49 ports/www/mod_frontpage/files/patch-Makefile.PL (dead) 1.2 +0 -26 ports/www/mod_frontpage/files/patch-fpexec.c (dead) 1.3 +0 -21 ports/www/mod_frontpage/files/patch-mod_frontpage.c (dead) 1.4 +3 -2 ports/www/mod_frontpage/pkg-descr 1.2 +8 -7 ports/www/mod_frontpage/pkg-message 1.3 +1 -0 ports/www/mod_frontpage/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 14: 1:13 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 69DB637B404; Sun, 3 Feb 2002 14:01:05 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id C56E25341; Sun, 3 Feb 2002 23:01:03 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Mark Murray Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_lastlog pam_lastlog.c src/lib/libpam/modules/pam_login_access login_access.c pam_login_access.c pam_login_access.h src/lib/libpam/modules/pam_securetty pam_securetty.c src/lib/libpam/modules/pam_unix pam_unix.c References: <200202031517.g13FHwb73258@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 03 Feb 2002 23:01:03 +0100 In-Reply-To: <200202031517.g13FHwb73258@freefall.freebsd.org> Message-ID: Lines: 31 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Mark Murray writes: > markm 2002/02/03 07:17:57 PST > > Modified files: > lib/libpam/modules/pam_lastlog pam_lastlog.c > lib/libpam/modules/pam_login_access login_access.c > pam_login_access.c > lib/libpam/modules/pam_securetty pam_securetty.c > lib/libpam/modules/pam_unix pam_unix.c > Added files: > lib/libpam/modules/pam_login_access pam_login_access.h > Log: > WARNS=n fixes (and some stylistic issues). You've introduced memory leaks and potential segfaults in pam_unix() (you added strdup()s in several places but you don't check the return value and don't free() them later). Other stuff: - pam_securetty should use _PATH_DEV instead of TTY_PREFIX - some long lines should be split (have to ask bde about that) - commit included non-trivial changes to salt generation which should have been mentioned in log message (others would say they should have been committed separately, but I don't mind) DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 14: 7:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D0ABE37B41A; Sun, 3 Feb 2002 14:07:46 -0800 (PST) Received: (from naddy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13M7kK48149; Sun, 3 Feb 2002 14:07:46 -0800 (PST) (envelope-from naddy) Message-Id: <200202032207.g13M7kK48149@freefall.freebsd.org> From: Christian Weisgerber Date: Sun, 3 Feb 2002 14:07:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/vorbis-tools Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2002/02/03 14:07:46 PST Modified files: audio/vorbis-tools Makefile Log: * remove libogg dependency already implied by libvorbis one * add iconv dependency * simplify configure call Revision Changes Path 1.12 +6 -7 ports/audio/vorbis-tools/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 14:15:33 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6111E37B416; Sun, 3 Feb 2002 14:15:22 -0800 (PST) Received: (from naddy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13MFM349346; Sun, 3 Feb 2002 14:15:22 -0800 (PST) (envelope-from naddy) Message-Id: <200202032215.g13MFM349346@freefall.freebsd.org> From: Christian Weisgerber Date: Sun, 3 Feb 2002 14:15:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/ntl Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2002/02/03 14:15:22 PST Modified files: math/ntl Makefile pkg-plist Log: Clarify dependency and add a flag to make NTL an ISO compliant lib. Thanks to Jeff Brown for pointing this out. PR: 34556 Submitted by: Matthias Bauer Additionally respect CC/CXX/CFLAGS/CXXFLAGS and generally overhaul the Makefile. Obtained from: OpenBSD Revision Changes Path 1.5 +22 -11 ports/math/ntl/Makefile 1.5 +1 -0 ports/math/ntl/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 14:40:21 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id A5A0B37B41C; Sun, 3 Feb 2002 14:40:15 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g13Me9b24160; Sun, 3 Feb 2002 22:40:10 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id A8EF510; Sun, 3 Feb 2002 22:39:28 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g13MdRE72311; Sun, 3 Feb 2002 22:39:27 GMT (envelope-from mark@grondar.za) Message-Id: <200202032239.g13MdRE72311@greenpeace.grondar.org> To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_lastlog pam_lastlog.c src/lib/libpam/modules/pam_login_access login_access.c pam_login_access.c pam_login_access.h src/lib/libpam/modules/pam_securetty pam_securetty.c src/lib/libpam/modules/pam_unix pam_unix.c References: In-Reply-To: ; from Dag-Erling Smorgrav "03 Feb 2002 23:01:03 +0100." Date: Sun, 03 Feb 2002 22:39:22 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Mark Murray writes: > > markm 2002/02/03 07:17:57 PST > > > > Modified files: > > lib/libpam/modules/pam_lastlog pam_lastlog.c > > lib/libpam/modules/pam_login_access login_access.c > > pam_login_access.c > > lib/libpam/modules/pam_securetty pam_securetty.c > > lib/libpam/modules/pam_unix pam_unix.c > > Added files: > > lib/libpam/modules/pam_login_access pam_login_access.h > > Log: > > WARNS=n fixes (and some stylistic issues). > > You've introduced memory leaks and potential segfaults in pam_unix() > (you added strdup()s in several places but you don't check the return > value and don't free() them later). Drat. I'll fix that. > Other stuff: > > - pam_securetty should use _PATH_DEV instead of TTY_PREFIX Yes. > - some long lines should be split (have to ask bde about that) Just do it. Usual 4-space indent applies. > - commit included non-trivial changes to salt generation which should > have been mentioned in log message (others would say they should > have been committed separately, but I don't mind) Dammit. I did not mean to commit that yet. I'll force a commit anyway to mention it in the logs. M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 14:42:52 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 83A4137B41B; Sun, 3 Feb 2002 14:42:46 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13Mgkj54423; Sun, 3 Feb 2002 14:42:46 -0800 (PST) (envelope-from markm) Message-Id: <200202032242.g13Mgkj54423@freefall.freebsd.org> From: Mark Murray Date: Sun, 3 Feb 2002 14:42:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/03 14:42:46 PST Modified files: lib/libpam/modules/pam_unix pam_unix.c Log: Forced commit. Previous commit included a large improvement to the salt generation to help obfuscate information that is otherwise leaked. No real risks involved, but this feels better, and does not use srandom[dev](). Revision Changes Path 1.19 +0 -0 src/lib/libpam/modules/pam_unix/pam_unix.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 15: 1: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E53D037B416; Sun, 3 Feb 2002 15:00:56 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g13N0uU68272; Sun, 3 Feb 2002 15:00:56 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202032300.g13N0uU68272@freefall.freebsd.org> From: Jun Kuriyama Date: Sun, 3 Feb 2002 15:00:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/gnupg Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/03 15:00:56 PST Modified files: security/gnupg Makefile Log: Add (conditional) hidden dependency for iconv and gdbm. PR: ports/34543 Reported by: Ronald Kuehn Revision Changes Path 1.33 +7 -0 ports/security/gnupg/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 16:11: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8624237B41D; Sun, 3 Feb 2002 16:10:57 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g140Av983917; Sun, 3 Feb 2002 16:10:57 -0800 (PST) (envelope-from petef) Message-Id: <200202040010.g140Av983917@freefall.freebsd.org> From: Pete Fritchman Date: Sun, 3 Feb 2002 16:10:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/colorize Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/03 16:10:57 PST Modified files: sysutils/colorize Makefile Log: House distfiles at ${MASTER_SITE_LOCAL} until the main distribution site reappears. Submitted by: fenner's distfile survey Revision Changes Path 1.4 +4 -2 ports/sysutils/colorize/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 16:11: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0952537B41F; Sun, 3 Feb 2002 16:10:59 -0800 (PST) Received: (from logo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g140Aw883942; Sun, 3 Feb 2002 16:10:58 -0800 (PST) (envelope-from logo) Message-Id: <200202040010.g140Aw883942@freefall.freebsd.org> From: Valentino Vaschetto Date: Sun, 3 Feb 2002 16:10:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/hubs article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG logo 2002/02/03 16:10:58 PST Modified files: en_US.ISO8859-1/articles/hubs article.sgml Log: - Added ftp/cvsup.fz.freebsd.org to the stats list. Thanks Cejka Rudolf! Revision Changes Path 1.5 +13 -1 doc/en_US.ISO8859-1/articles/hubs/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 16:28:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA93C37B416; Sun, 3 Feb 2002 16:28:54 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g140SsC86408; Sun, 3 Feb 2002 16:28:54 -0800 (PST) (envelope-from markm) Message-Id: <200202040028.g140SsC86408@freefall.freebsd.org> From: Mark Murray Date: Sun, 3 Feb 2002 16:28:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/03 16:28:54 PST Modified files: lib/libpam/modules/pam_unix pam_unix.c Log: Add the other half of the salt-generating code. No functional difference except that the salt is slightly harder to build dictionaries against, and the code does not use srandom[dev](). Revision Changes Path 1.20 +7 -8 src/lib/libpam/modules/pam_unix/pam_unix.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 16:39:23 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DC1537B419; Sun, 3 Feb 2002 16:39:20 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g140dK489201; Sun, 3 Feb 2002 16:39:20 -0800 (PST) (envelope-from petef) Message-Id: <200202040039.g140dK489201@freefall.freebsd.org> From: Pete Fritchman Date: Sun, 3 Feb 2002 16:39:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/crawl Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/03 16:39:19 PST Modified files: www/crawl Makefile distinfo Log: Update to 0.3 Revision Changes Path 1.5 +6 -2 ports/www/crawl/Makefile 1.4 +1 -1 ports/www/crawl/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 16:49:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 15BAD37B41C; Sun, 3 Feb 2002 16:49:34 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g140nYN91779; Sun, 3 Feb 2002 16:49:34 -0800 (PST) (envelope-from petef) Message-Id: <200202040049.g140nYN91779@freefall.freebsd.org> From: Pete Fritchman Date: Sun, 3 Feb 2002 16:49:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/explosions Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/03 16:49:34 PST Modified files: misc/explosions Makefile distinfo Log: Update to 0.2001.10.29 Revision Changes Path 1.3 +2 -2 ports/misc/explosions/Makefile 1.2 +1 -1 ports/misc/explosions/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 16:54:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 10F7737B41D; Sun, 3 Feb 2002 16:54:27 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g140sRv93011; Sun, 3 Feb 2002 16:54:27 -0800 (PST) (envelope-from pat) Message-Id: <200202040054.g140sRv93011@freefall.freebsd.org> From: Patrick Li Date: Sun, 3 Feb 2002 16:54:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/xawtv Makefile distinfo pkg-plist ports/graphics/xawtv/files patch-src::xt.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/03 16:54:27 PST Modified files: graphics/xawtv Makefile distinfo pkg-plist Removed files: graphics/xawtv/files patch-src::xt.c Log: Update to 3.69 PR: 34598 Submitted by: maintainer Revision Changes Path 1.6 +1 -1 ports/graphics/xawtv/Makefile 1.4 +1 -1 ports/graphics/xawtv/distinfo 1.2 +0 -17 ports/graphics/xawtv/files/patch-src::xt.c (dead) 1.4 +1 -1 ports/graphics/xawtv/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 16:56:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D8BF37B41A; Sun, 3 Feb 2002 16:56:29 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g140uTd93519; Sun, 3 Feb 2002 16:56:29 -0800 (PST) (envelope-from petef) Message-Id: <200202040056.g140uTd93519@freefall.freebsd.org> From: Pete Fritchman Date: Sun, 3 Feb 2002 16:56:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/getmail Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/03 16:56:29 PST Modified files: mail/getmail Makefile distinfo Log: Update to 2.2.0 Revision Changes Path 1.8 +1 -2 ports/mail/getmail/Makefile 1.7 +1 -1 ports/mail/getmail/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 17: 7:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 722CB37B41A; Sun, 3 Feb 2002 17:07:07 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14177L98231; Sun, 3 Feb 2002 17:07:07 -0800 (PST) (envelope-from kris) Message-Id: <200202040107.g14177L98231@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 3 Feb 2002 17:07:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/test test.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/02/03 17:07:07 PST Modified files: bin/test test.c Log: Add a __printflike() attribute to silence warning with FORMAT_AUDIT=1 Revision Changes Path 1.41 +2 -1 src/bin/test/test.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 17:11:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BC5AA37B419; Sun, 3 Feb 2002 17:11:06 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g141B6T98880; Sun, 3 Feb 2002 17:11:06 -0800 (PST) (envelope-from petef) Message-Id: <200202040111.g141B6T98880@freefall.freebsd.org> From: Pete Fritchman Date: Sun, 3 Feb 2002 17:11:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/jlj Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/03 17:11:06 PST Modified files: deskutils/jlj Makefile distinfo pkg-plist Log: - update to 2.1 - sort pkg-plist Revision Changes Path 1.5 +2 -2 ports/deskutils/jlj/Makefile 1.4 +1 -1 ports/deskutils/jlj/distinfo 1.2 +1 -1 ports/deskutils/jlj/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 17:11:50 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A26D137B41E; Sun, 3 Feb 2002 17:11:48 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g141Bmd99041; Sun, 3 Feb 2002 17:11:48 -0800 (PST) (envelope-from kris) Message-Id: <200202040111.g141Bmd99041@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 3 Feb 2002 17:11:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/test test.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/02/03 17:11:48 PST Modified files: bin/test test.c Log: __printflike() should really be __printf0like() since verrx() can accept a NULL format string. Revision Changes Path 1.42 +1 -1 src/bin/test/test.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 17:21:50 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 3870937B416; Sun, 3 Feb 2002 17:21:38 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.6/8.11.5) with ESMTP id g141KpQ19591; Sun, 3 Feb 2002 20:20:56 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200202040120.g141KpQ19591@aldan.algebra.com> Date: Sun, 3 Feb 2002 20:20:48 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: ports/x11-fonts/webfonts Makefile To: kkonstan@duth.gr Cc: pat@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, kkonstan@daemon.gr In-Reply-To: <3C5DAF3E.779D585F@duth.gr> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=iso-8859-7 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 3 Feb, Konstantinos Konstantinidis wrote: >> > Modified files: >> > x11-fonts/webfonts Makefile >> > Log: >> > Last attempt to fix the prefix problem was just a revert of >> > fenner's changes so fix that and just add USE_X_PREFIX before >> > .include >> >> Actually, there is nothing in this port, that requires XLIB (impiled >> by the USE_X_PREFIX). They can, for example, be used in conjunctions >> with gd2-port to generate images on the fly and so on, but currently >> require X11 :-\ >> >> IMHO, even the xfstt dependency should be optional... >> >> -mi [...] > I think however that we can have our cake and eat it too, I'll > just add a WITHOUT_X11 that will build the fonts with no X11 > dependencies and install them to /usr/local/share... any other > suggestions/comments? I think, having the xfstt is a fine idea (even if by default), but why not ALWAYS install into /usr/local/share? X-server will find it there just as well. In reality, this stuff doesn't use X-prefix, and doesn't use the X-libs either :-) Nice and simple -USE_X_PREFIX= yes .include -.if ${XFREE86_VERSION} == 3 +.if !defined(WITHOUT_X11) && ${XFREE86_VERSION} == 3 RUN_DEPENDS= xfstt:${PORTSDIR}/x11-servers/Xfstt -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 17:23:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DBB7537B41F; Sun, 3 Feb 2002 17:23:44 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g141Nil01902; Sun, 3 Feb 2002 17:23:44 -0800 (PST) (envelope-from kris) Message-Id: <200202040123.g141Nil01902@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 3 Feb 2002 17:23:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/ftpd extern.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/02/03 17:23:44 PST Modified files: libexec/ftpd extern.h Log: Silence some FORMAT_AUDIT warnings (one left) Revision Changes Path 1.19 +2 -2 src/libexec/ftpd/extern.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 17:28:56 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A85C637B41B; Sun, 3 Feb 2002 17:28:45 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g141Sj302796; Sun, 3 Feb 2002 17:28:45 -0800 (PST) (envelope-from kris) Message-Id: <200202040128.g141Sj302796@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 3 Feb 2002 17:28:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/bootpd bootpd.c dovend.c getether.c report.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/02/03 17:28:45 PST Modified files: libexec/bootpd bootpd.c dovend.c getether.c report.h Log: Mark report() as printflike and fix resulting warnings, including one bug (get_errmsg -> get_errmsg()) Revision Changes Path 1.16 +2 -2 src/libexec/bootpd/bootpd.c 1.6 +1 -1 src/libexec/bootpd/dovend.c 1.12 +2 -2 src/libexec/bootpd/getether.c 1.3 +1 -1 src/libexec/bootpd/report.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 17:34:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 175C437B417; Sun, 3 Feb 2002 17:34:53 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g141YrL03999; Sun, 3 Feb 2002 17:34:53 -0800 (PST) (envelope-from kris) Message-Id: <200202040134.g141YrL03999@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 3 Feb 2002 17:34:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/pppoed pppoed.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/02/03 17:34:53 PST Modified files: libexec/pppoed pppoed.c Log: Prototype a function as __printflike() to avoid a FORMAT_AUDIT warning. MFC after: 1 week Revision Changes Path 1.18 +2 -0 src/libexec/pppoed/pppoed.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 17:38: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 38D0137B41E; Sun, 3 Feb 2002 17:38:00 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g141c0A04663; Sun, 3 Feb 2002 17:38:00 -0800 (PST) (envelope-from kris) Message-Id: <200202040138.g141c0A04663@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 3 Feb 2002 17:38:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rshd rshd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/02/03 17:38:00 PST Modified files: libexec/rshd rshd.c Log: Mark a function as __printf0like(). This exposes a warning which requires some code changes to fix but should be possible. MFC after: 1 week Revision Changes Path 1.41 +2 -2 src/libexec/rshd/rshd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 17:41:38 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F1CD37B41D; Sun, 3 Feb 2002 17:41:35 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g141fZM05459; Sun, 3 Feb 2002 17:41:35 -0800 (PST) (envelope-from kris) Message-Id: <200202040141.g141fZM05459@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 3 Feb 2002 17:41:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rtld-elf rtld.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/02/03 17:41:35 PST Modified files: libexec/rtld-elf rtld.c Log: Mark a function as __printflike() MFC after: 1 week Revision Changes Path 1.57 +1 -1 src/libexec/rtld-elf/rtld.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 18:12:56 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F5AC37B41F; Sun, 3 Feb 2002 18:12:50 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g142CoF12722; Sun, 3 Feb 2002 18:12:50 -0800 (PST) (envelope-from kris) Message-Id: <200202040212.g142CoF12722@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 3 Feb 2002 18:12:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/whois whois.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/02/03 18:12:50 PST Modified files: usr.bin/whois whois.c Log: Mark a function as __printflike() MFC after: 1 week Revision Changes Path 1.29 +1 -1 src/usr.bin/whois/whois.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 18:33:59 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 530F937B404; Sun, 3 Feb 2002 18:33:51 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g142Xpj15283; Sun, 3 Feb 2002 18:33:51 -0800 (PST) (envelope-from kris) Message-Id: <200202040233.g142Xpj15283@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 3 Feb 2002 18:33:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec Makefile.inc src/libexec/atrun Makefile src/libexec/fingerd Makefile src/libexec/ftpd Makefile src/libexec/getty Makefile src/libexec/mail.local Makefile src/libexec/named-xfer Makefile src/libexec/pppoed Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/02/03 18:33:51 PST Modified files: libexec Makefile.inc libexec/atrun Makefile libexec/fingerd Makefile libexec/ftpd Makefile libexec/getty Makefile libexec/mail.local Makefile libexec/named-xfer Makefile libexec/pppoed Makefile libexec/rbootd Makefile libexec/rexecd Makefile libexec/rshd Makefile libexec/talkd Makefile libexec/ypxfr Makefile Log: Lock down with WFORMAT?=1, with overrides in the subdirectories which are not yet warning-clean. Tested on i386 and alpha. Revision Changes Path 1.4 +2 -1 src/libexec/Makefile.inc 1.12 +2 -1 src/libexec/atrun/Makefile 1.10 +3 -1 src/libexec/fingerd/Makefile 1.48 +1 -0 src/libexec/ftpd/Makefile 1.11 +2 -3 src/libexec/getty/Makefile 1.18 +2 -1 src/libexec/mail.local/Makefile 1.13 +3 -1 src/libexec/named-xfer/Makefile 1.4 +3 -1 src/libexec/pppoed/Makefile 1.12 +3 -1 src/libexec/rbootd/Makefile 1.15 +2 -1 src/libexec/rexecd/Makefile 1.22 +2 -2 src/libexec/rshd/Makefile 1.9 +3 -2 src/libexec/talkd/Makefile 1.11 +2 -1 src/libexec/ypxfr/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 18:37:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EFD6137B41A; Sun, 3 Feb 2002 18:37:09 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g142b9915593; Sun, 3 Feb 2002 18:37:09 -0800 (PST) (envelope-from kris) Message-Id: <200202040237.g142b9915593@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 3 Feb 2002 18:37:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/tput tput.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/02/03 18:37:09 PST Modified files: usr.bin/tput tput.c Log: Silence some WFORMAT=1 warnings Revision Changes Path 1.11 +3 -3 src/usr.bin/tput/tput.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 18:49:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 33E7B37B416; Sun, 3 Feb 2002 18:49:20 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g142nK917016; Sun, 3 Feb 2002 18:49:20 -0800 (PST) (envelope-from kris) Message-Id: <200202040249.g142nK917016@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 3 Feb 2002 18:49:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin Makefile.inc src/bin/csh Makefile src/bin/date Makefile src/bin/dd Makefile src/bin/ls Makefile src/bin/pax Makefile src/bin/ps Makefile src/bin/rcp Makefile src/bin/rmail Makefile src/bin/sh Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/02/03 18:49:20 PST Modified files: bin Makefile.inc bin/csh Makefile bin/date Makefile bin/dd Makefile bin/ls Makefile bin/pax Makefile bin/ps Makefile bin/rcp Makefile bin/rmail Makefile bin/sh Makefile Log: Lock down with WFORMAT=1 except those directories with unfixed warnings. Tested on i386 and alpha. Revision Changes Path 1.14 +1 -0 src/bin/Makefile.inc 1.26 +1 -0 src/bin/csh/Makefile 1.10 +1 -0 src/bin/date/Makefile 1.10 +1 -0 src/bin/dd/Makefile 1.22 +2 -0 src/bin/ls/Makefile 1.8 +2 -0 src/bin/pax/Makefile 1.18 +2 -0 src/bin/ps/Makefile 1.18 +3 -1 src/bin/rcp/Makefile 1.15 +2 -0 src/bin/rmail/Makefile 1.35 +1 -0 src/bin/sh/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 18:54:22 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF09137B41E; Sun, 3 Feb 2002 18:54:18 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g142sIh17829; Sun, 3 Feb 2002 18:54:18 -0800 (PST) (envelope-from petef) Message-Id: <200202040254.g142sIh17829@freefall.freebsd.org> From: Pete Fritchman Date: Sun, 3 Feb 2002 18:54:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/kinkatta Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/03 18:54:18 PST Modified files: net/kinkatta Makefile distinfo Log: Update to 1.01 Revision Changes Path 1.2 +2 -1 ports/net/kinkatta/Makefile 1.2 +1 -1 ports/net/kinkatta/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 19: 3:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5FDA437B41A; Sun, 3 Feb 2002 19:03:09 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14339618869; Sun, 3 Feb 2002 19:03:09 -0800 (PST) (envelope-from petef) Message-Id: <200202040303.g14339618869@freefall.freebsd.org> From: Pete Fritchman Date: Sun, 3 Feb 2002 19:03:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/maildrop Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/03 19:03:09 PST Modified files: mail/maildrop Makefile distinfo Log: Update to 1.3.7 Revision Changes Path 1.18 +3 -2 ports/mail/maildrop/Makefile 1.10 +1 -1 ports/mail/maildrop/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 19: 6:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E491E37B417; Sun, 3 Feb 2002 19:06:51 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1436pL22818; Sun, 3 Feb 2002 19:06:51 -0800 (PST) (envelope-from kris) Message-Id: <200202040306.g1436pL22818@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 3 Feb 2002 19:06:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/ls Makefile src/bin/pax Makefile src/bin/ps Makefile src/bin/rcp Makefile src/bin/rmail Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/02/03 19:06:51 PST Modified files: bin/ls Makefile bin/pax Makefile bin/ps Makefile bin/rcp Makefile bin/rmail Makefile Log: Correct inadvertent style botches in previous commit. Revision Changes Path 1.23 +2 -2 src/bin/ls/Makefile 1.9 +1 -2 src/bin/pax/Makefile 1.19 +2 -3 src/bin/ps/Makefile 1.19 +1 -2 src/bin/rcp/Makefile 1.16 +1 -2 src/bin/rmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 19:15:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B2E0637B47F; Sun, 3 Feb 2002 19:15:27 -0800 (PST) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g143FRZ23858; Sun, 3 Feb 2002 19:15:27 -0800 (PST) (envelope-from silby) Message-Id: <200202040315.g143FRZ23858@freefall.freebsd.org> From: Mike Silbersack Date: Sun, 3 Feb 2002 19:15:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/fxp if_fxp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG silby 2002/02/03 19:15:27 PST Modified files: sys/dev/fxp if_fxp.c Log: Remove mbuf exhaustion warning messages; these are handled by the mbuf system in a rate-limited fashion now. Reviewed by: luigi MFC after: 1 week Revision Changes Path 1.128 +0 -4 src/sys/dev/fxp/if_fxp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 19:25:22 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A3C3D37B41A; Sun, 3 Feb 2002 19:25:19 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g143PJD24819; Sun, 3 Feb 2002 19:25:19 -0800 (PST) (envelope-from petef) Message-Id: <200202040325.g143PJD24819@freefall.freebsd.org> From: Pete Fritchman Date: Sun, 3 Feb 2002 19:25:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/newsgrab Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/03 19:25:19 PST Modified files: news/newsgrab Makefile distinfo Log: Update to 0.1.7 Revision Changes Path 1.6 +3 -2 ports/news/newsgrab/Makefile 1.4 +1 -1 ports/news/newsgrab/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 19:32:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3DA9437B417; Sun, 3 Feb 2002 19:32:21 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g143WLr25797; Sun, 3 Feb 2002 19:32:21 -0800 (PST) (envelope-from petef) Message-Id: <200202040332.g143WLr25797@freefall.freebsd.org> From: Pete Fritchman Date: Sun, 3 Feb 2002 19:32:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile ports/security/p5-GPG Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/03 19:32:21 PST Modified files: security Makefile Removed files: security/p5-GPG Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Remove the p5-GPG port. It is no longer being maintained by it's author, and there is a much better PGP Perl interface in security/p5-Crypt-OpenPGP. Revision Changes Path 1.267 +0 -1 ports/security/Makefile 1.2 +0 -28 ports/security/p5-GPG/Makefile (dead) 1.2 +0 -1 ports/security/p5-GPG/distinfo (dead) 1.2 +0 -1 ports/security/p5-GPG/pkg-comment (dead) 1.2 +0 -9 ports/security/p5-GPG/pkg-descr (dead) 1.2 +0 -3 ports/security/p5-GPG/pkg-plist (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 19:34:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0731037B41C; Sun, 3 Feb 2002 19:34:13 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g143YCS26068; Sun, 3 Feb 2002 19:34:12 -0800 (PST) (envelope-from petef) Message-Id: <200202040334.g143YCS26068@freefall.freebsd.org> From: Pete Fritchman Date: Sun, 3 Feb 2002 19:34:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/03 19:34:12 PST Modified files: . modules Log: Unlink p5-GPG Revision Changes Path 1.4647 +0 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 19:37:28 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E8E937B400; Sun, 3 Feb 2002 19:37:24 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g143bOA26608; Sun, 3 Feb 2002 19:37:24 -0800 (PST) (envelope-from petef) Message-Id: <200202040337.g143bOA26608@freefall.freebsd.org> From: Pete Fritchman Date: Sun, 3 Feb 2002 19:37:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/p5-HTML-Table Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/03 19:37:23 PST Modified files: www/p5-HTML-Table Makefile distinfo Log: Update to 1.13 Revision Changes Path 1.7 +1 -1 ports/www/p5-HTML-Table/Makefile 1.6 +1 -1 ports/www/p5-HTML-Table/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 19:38:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D0E1437B416; Sun, 3 Feb 2002 19:38:09 -0800 (PST) Received: (from babkin@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g143c9q26812; Sun, 3 Feb 2002 19:38:09 -0800 (PST) (envelope-from babkin) Message-Id: <200202040338.g143c9q26812@freefall.freebsd.org> From: Sergey Babkin Date: Sun, 3 Feb 2002 19:38:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/sh redir.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG babkin 2002/02/03 19:38:09 PST Modified files: (Branch: RELENG_4) bin/sh redir.c Log: MFC of the fix allowing to do ">/dev/stdout" Revision Changes Path 1.12.2.2 +5 -5 src/bin/sh/redir.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 19:47:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D756C37B419; Sun, 3 Feb 2002 19:47:27 -0800 (PST) Received: (from horikawa@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g143lRh27967; Sun, 3 Feb 2002 19:47:27 -0800 (PST) (envelope-from horikawa) Message-Id: <200202040347.g143lRh27967@freefall.freebsd.org> From: Kazuo Horikawa Date: Sun, 3 Feb 2002 19:47:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man1 ar.1 bdes.1 ci.1 cpio.1 ctm.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2002/02/03 19:47:27 PST Modified files: ja_JP.eucJP/man/man1 ar.1 bdes.1 ci.1 cpio.1 ctm.1 Log: Fix typos o add missing right parren (ar.1) o add missing leading dot before %T (bdes.1) o add missing .TP for -V and its description (ci.1) o fix description for directory permission problem; unreadable -> unwritable (cpio.1) o remove repeated phrase (ctm.1) Submitted by: Satoru Koizumi Revision Changes Path 1.9 +2 -2 doc/ja_JP.eucJP/man/man1/ar.1 1.6 +1 -1 doc/ja_JP.eucJP/man/man1/bdes.1 1.13 +2 -1 doc/ja_JP.eucJP/man/man1/ci.1 1.8 +2 -2 doc/ja_JP.eucJP/man/man1/cpio.1 1.16 +3 -3 doc/ja_JP.eucJP/man/man1/ctm.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 20:56:46 2002 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id D596337B404; Sun, 3 Feb 2002 20:56:43 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id g144u9O09581; Sun, 3 Feb 2002 20:56:09 -0800 (PST) (envelope-from obrien) Date: Sun, 3 Feb 2002 20:56:09 -0800 From: "David O'Brien" To: Mark Murray Cc: Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_lastlog pam_lastlog.c src/lib/libpam/modules/pam_login_access login_access.c pam_login_access.c pam_login_access.h src/lib/libpam/modules/pam_securetty pam_securetty.c src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020203205609.A7347@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200202032239.g13MdRE72311@greenpeace.grondar.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200202032239.g13MdRE72311@greenpeace.grondar.org>; from mark@grondar.za on Sun, Feb 03, 2002 at 10:39:22PM +0000 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 03, 2002 at 10:39:22PM +0000, Mark Murray wrote: > > - commit included non-trivial changes to salt generation which should > > have been mentioned in log message (others would say they should > > have been committed separately, but I don't mind) > > Dammit. I did not mean to commit that yet. I'll force a commit anyway > to mention it in the logs. cvs diff | cdiff before 'cvs ci' is a life saver. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 21:40:40 2002 Delivered-To: cvs-all@freebsd.org Received: from oahu.WURLDLINK.NET (oahu.WURLDLINK.NET [216.235.52.1]) by hub.freebsd.org (Postfix) with ESMTP id 4C18E37B41C; Sun, 3 Feb 2002 21:40:31 -0800 (PST) Received: from localhost (vince@localhost) by oahu.WURLDLINK.NET (8.11.3/8.11.3) with ESMTP id g145dna27934; Sun, 3 Feb 2002 19:39:50 -1000 (HST) (envelope-from vince@oahu.WURLDLINK.NET) Date: Sun, 3 Feb 2002 19:39:48 -1000 (HST) From: Vincent Poy To: Dirk Meyer Cc: cvs-committers@FreeBSD.ORG, Subject: Re: cvs commit: ports/net/freebsd-uucp Makefile distinfo ports/net/freebsd-uucp/files uucp-pam.conf In-Reply-To: <200202012315.g11NFTm34622@freefall.freebsd.org> Message-ID: <20020203193928.A37944-100000@oahu.WURLDLINK.NET> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thanks Dirk! It works fine now! Cheers, Vince - vince@WURLDLINK.NET - Vice President ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] WurldLink Corporation / / / / | / | __] ] San Francisco - Honolulu - Hong Kong / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] Almighty1@IRC - oahu.DAL.NET Hawaii's DALnet IRC Network Server Admin On Fri, 1 Feb 2002, Dirk Meyer wrote: > dinoex 2002/02/01 15:15:29 PST > > Modified files: > net/freebsd-uucp Makefile distinfo > Added files: > net/freebsd-uucp/files uucp-pam.conf > Log: > - PR #34368 > Build under 4.3-RELEASE > > - PR #34515 > Build under 4.3-RELEASE > > - PR #21128 > Extended dail.sample to handle modems with "black list". > Modem returns an error, if a number is dialed too often > in a short period of time. > > - PR #30304 > > uucpd only uses getpwnam() for authentication. This patch adds PAM auth > via facility "uucpd" in /etc/pam.conf, e.g. > > uucp auth sufficient pam_skey.so > uucp auth sufficient pam_ssh.so try_first_pass > uucp auth requisite pam_cleartext_pass_ok.so > uucp auth required pam_unix.so try_first_pass > uucp account required pam_unix.so > uucp password required pam_permit.so > uucp session required pam_permit.so > > - > Addd missing includes files > Remove conflicting prototypes > > PR: 34368,34515,21128,30304 > Submitted by: ilia@jane.cgu.chel.su,vs@foldr.org > > Revision Changes Path > 1.10 +5 -1 ports/net/freebsd-uucp/Makefile > 1.6 +1 -1 ports/net/freebsd-uucp/distinfo > 1.1 +8 -0 ports/net/freebsd-uucp/files/uucp-pam.conf (new) > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 21:54:58 2002 Delivered-To: cvs-all@freebsd.org Received: from mta06ps.bigpond.com (mta06ps.bigpond.com [144.135.25.138]) by hub.freebsd.org (Postfix) with ESMTP id 050E337B417 for ; Sun, 3 Feb 2002 21:54:54 -0800 (PST) Received: from jacobuskriek ([144.135.25.87]) by mta06ps.bigpond.com (Netscape Messaging Server 4.15) with SMTP id GQZVFG00.JXX for ; Mon, 4 Feb 2002 16:02:04 +1000 Received: from FLPP-p-144-134-13-145.prem.tmns.net.au ([144.134.13.145]) by psmam07.mailsvc.email.bigpond.com(MailRouter V3.0h 119/5498561); 04 Feb 2002 15:54:51 Message-ID: <001301c1ad40$551d99c0$910d8690@jacobuskriek> From: "jacob" To: Subject: Date: Mon, 4 Feb 2002 16:23:54 +1030 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0010_01C1AD98.56C0E180" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0010_01C1AD98.56C0E180 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable ------=_NextPart_000_0010_01C1AD98.56C0E180 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
 
------=_NextPart_000_0010_01C1AD98.56C0E180-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 23:15:18 2002 Delivered-To: cvs-all@freebsd.org Received: from patrocles.silby.com (d127.as1.nwbl0.wi.voyager.net [169.207.130.193]) by hub.freebsd.org (Postfix) with ESMTP id 3A13C37B416; Sun, 3 Feb 2002 23:15:12 -0800 (PST) Received: from localhost (silby@localhost) by patrocles.silby.com (8.11.6/8.11.6) with ESMTP id g141Iru14151; Mon, 4 Feb 2002 01:18:54 GMT (envelope-from silby@silby.com) X-Authentication-Warning: patrocles.silby.com: silby owned process doing -bs Date: Mon, 4 Feb 2002 01:18:52 +0000 (GMT) From: Mike Silbersack To: Mark Murray Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/contrib/libpam/libpam pam_dispatch.c In-Reply-To: <200202031550.g13Fo5j76680@freefall.freebsd.org> Message-ID: <20020204011733.B14061-100000@patrocles.silby.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Is there a web or manpage somewhere describing the goals and impacts of the WARNS changes? Thanks, Mike "Silby" Silbersack On Sun, 3 Feb 2002, Mark Murray wrote: > markm 2002/02/03 07:50:05 PST > > Modified files: > contrib/libpam/libpam pam_dispatch.c > Log: > WARNS fix. Zap an unused variable. > > Revision Changes Path > 1.3 +1 -1 src/contrib/libpam/libpam/pam_dispatch.c > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 23:22:22 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D04437B41B; Sun, 3 Feb 2002 23:22:01 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g147M1167610; Sun, 3 Feb 2002 23:22:01 -0800 (PST) (envelope-from dougb) Message-Id: <200202040722.g147M1167610@freefall.freebsd.org> From: Doug Barton Date: Sun, 3 Feb 2002 23:22:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/htdig Makefile distinfo pkg-descr pkg-plist ports/textproc/htdig/files patch-DB2_db.cc.new patch-ab patch-htsearch_cc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dougb 2002/02/03 23:22:01 PST Modified files: textproc/htdig Makefile distinfo pkg-descr pkg-plist Removed files: textproc/htdig/files patch-DB2_db.cc.new patch-ab patch-htsearch_cc Log: * Upgrade to version 3.1.6, which fixes numerous bugs, and one possible security problem that was present in the unpatched 3.1.5. * Update the master sites list. * Configure more precisely several important directories, partly to compensate for some of the new defaults, and partly to avoid potential future security problems regarding remote users being able to read files specified as config files. This vulnerability was patched already, and the fix is included in this version. However, a little paranoia never hurt anyone. * Remove the patches, as they have either been made obsolete by the new version, or as in the pthreads issue, I'm doing them differently in the Makefile. * Make the patching in the Makefile smarter. * Put my name in the pkg-descr.... overlooked previously. * Adjust the pkg-plist, and sort it since the bloat is the same either way. Thanks to Palle Girgensohn for the suggestion in the PR to place the conf file in its own directory. PR: ports/26058 Revision Changes Path 1.21 +22 -23 ports/textproc/htdig/Makefile 1.7 +1 -1 ports/textproc/htdig/distinfo 1.2 +0 -10 ports/textproc/htdig/files/patch-DB2_db.cc.new (dead) 1.4 +0 -22 ports/textproc/htdig/files/patch-ab (dead) 1.2 +0 -24 ports/textproc/htdig/files/patch-htsearch_cc (dead) 1.5 +1 -1 ports/textproc/htdig/pkg-descr 1.6 +48 -42 ports/textproc/htdig/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 23:26:27 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6327637B405; Sun, 3 Feb 2002 23:26:21 -0800 (PST) Received: (from mike@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g147QLu68602; Sun, 3 Feb 2002 23:26:21 -0800 (PST) (envelope-from mike) Message-Id: <200202040726.g147QLu68602@freefall.freebsd.org> From: Mike Barcroft Date: Sun, 3 Feb 2002 23:26:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/pwd pwd.1 pwd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mike 2002/02/03 23:26:21 PST Modified files: bin/pwd pwd.1 pwd.c Log: Add -L option (SUSv3) to pwd(1). Fix a bug, where realpath(1) would complain about paths starting with `-', by not calling getopt(3). Submitted by: Tim J. Robbins Obtained from: NetBSD (partially) MFC after: 1 month Revision Changes Path 1.16 +30 -8 src/bin/pwd/pwd.1 1.15 +55 -21 src/bin/pwd/pwd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 23:57:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 730EA37B41F; Sun, 3 Feb 2002 23:57:17 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g147vHW75242; Sun, 3 Feb 2002 23:57:17 -0800 (PST) (envelope-from petef) Message-Id: <200202040757.g147vHW75242@freefall.freebsd.org> From: Pete Fritchman Date: Sun, 3 Feb 2002 23:57:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/p5-SNMP_Session Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/03 23:57:17 PST Modified files: net/p5-SNMP_Session Makefile distinfo Log: Update to 0.91 Revision Changes Path 1.17 +1 -1 ports/net/p5-SNMP_Session/Makefile 1.9 +1 -1 ports/net/p5-SNMP_Session/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Feb 3 23:58:26 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EAB2237B417; Sun, 3 Feb 2002 23:58:19 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g147wJ275493; Sun, 3 Feb 2002 23:58:19 -0800 (PST) (envelope-from petef) Message-Id: <200202040758.g147wJ275493@freefall.freebsd.org> From: Pete Fritchman Date: Sun, 3 Feb 2002 23:58:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/p5-Geo-Weather Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/03 23:58:19 PST Modified files: misc/p5-Geo-Weather Makefile distinfo Log: Update to 0.09 Revision Changes Path 1.4 +2 -2 ports/misc/p5-Geo-Weather/Makefile 1.2 +1 -1 ports/misc/p5-Geo-Weather/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 0: 8:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9525437B41C; Mon, 4 Feb 2002 00:08:11 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1488B880611; Mon, 4 Feb 2002 00:08:11 -0800 (PST) (envelope-from petef) Message-Id: <200202040808.g1488B880611@freefall.freebsd.org> From: Pete Fritchman Date: Mon, 4 Feb 2002 00:08:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/reed Makefile distinfo pkg-plist ports/misc/reed/files patch-src::reed.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/04 00:08:11 PST Modified files: misc/reed Makefile distinfo pkg-plist Removed files: misc/reed/files patch-src::reed.h Log: Update to 5.1 Revision Changes Path 1.4 +10 -5 ports/misc/reed/Makefile 1.3 +1 -1 ports/misc/reed/distinfo 1.2 +0 -10 ports/misc/reed/files/patch-src::reed.h (dead) 1.2 +2 -0 ports/misc/reed/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 1:14:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3203537B41C; Mon, 4 Feb 2002 01:14:51 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g149EpD94855; Mon, 4 Feb 2002 01:14:51 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202040914.g149EpD94855@freefall.freebsd.org> From: Jun Kuriyama Date: Mon, 4 Feb 2002 01:14:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/gnupg Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/04 01:14:51 PST Modified files: security/gnupg Makefile Log: Fix typos in LIB_DEPENDS line. Submitted by: Neil Darlow Revision Changes Path 1.34 +2 -2 ports/security/gnupg/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 1:20:38 2002 Delivered-To: cvs-all@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id AE84237B405; Mon, 4 Feb 2002 01:20:22 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g149KCu32894; Mon, 4 Feb 2002 11:20:12 +0200 (EET) (envelope-from ru) Date: Mon, 4 Feb 2002 11:20:12 +0200 From: Ruslan Ermilov To: "Crist J. Clark" Cc: "Bruce A. Mah" , Giorgos Keramidas , Stefan `Sec` Zehl , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_output.c Message-ID: <20020204112012.A32064@sunbay.com> References: <200202011042.g11Ag9U93410@freefall.freebsd.org> <20020202123007.GA19270@matrix.42.org> <20020202140147.GA71238@hades.hell.gr> <20020202164938.GA5777@pst.org> <200202021654.g12GswL03156@bmah.dyndns.org> <20020202171403.GA6272@pst.org> <20020202105218.D1280@gohan.cjclark.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020202105218.D1280@gohan.cjclark.org> User-Agent: Mutt/1.3.23i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, Feb 02, 2002 at 10:52:18AM -0800, Crist J. Clark wrote: > On Sat, Feb 02, 2002 at 09:14:03AM -0800, Paul Traina wrote: > > On Sat, Feb 02, 2002 at 08:54:58AM -0800, Bruce A. Mah wrote: > > > If memory serves me right, Paul Traina wrote: > > > > Please don't hard-code this. We've seen some people actually use the > > > > loopback network as their internal (to their AS) network. Loopback > > > > means different things to different people. It's the same thing as > > > > the firewall stuff. > > > > > > It looks pretty hard-coded in RFC 1122. Are you saying FreeBSD should > > > continue to ignore this part of the Host Requirements document? > > > > Yes. I am. > > > > a) 1122 is plagued with controversy. I came along to the IETF shortly > > after it was written, shelved, re-written, and finally published as > > "well, it's better than nothing." We didn't like it then, and it > > would be a mistake to elevate it to holy scripture now. > > > > b) FreeBSD itself cannot know where the chassis boundary is. Consider > > devices that have multiple IP entities inside one skin. > > If each entity is a host, it must conform to the standards. > > > c) Many machines don't use 127.0.0.1 as their loopback address (consider > > Cisco routers), so some network providers used network 127 as a private > > OAM or backbone network. > > All of the *BSD's unconditionally drop 127/8 coming in to the host in > ip_input.c. If you cannot receive on that network, it was broken > already. > Thanks Crist, I was hoping someone would tell them the truth. :-) Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 1:30:33 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F31E37B416; Mon, 4 Feb 2002 01:30:23 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g149UNC00358; Mon, 4 Feb 2002 01:30:23 -0800 (PST) (envelope-from sobomax) Message-Id: <200202040930.g149UNC00358@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 4 Feb 2002 01:30:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gob Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/04 01:30:23 PST Modified files: x11-toolkits/gob Makefile distinfo Log: Update to 1.0.12. Revision Changes Path 1.23 +2 -1 ports/x11-toolkits/gob/Makefile 1.19 +1 -1 ports/x11-toolkits/gob/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 2:11: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 28CAE37B417; Mon, 4 Feb 2002 02:11:01 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14AB1x27177; Mon, 4 Feb 2002 02:11:01 -0800 (PST) (envelope-from sobomax) Message-Id: <200202041011.g14AB1x27177@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 4 Feb 2002 02:11:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/panel--/files patch-ltmain.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/04 02:11:01 PST Modified files: x11-toolkits/panel--/files patch-ltmain.sh Log: Make patch apply. Submitted by: many Revision Changes Path 1.3 +3 -3 ports/x11-toolkits/panel--/files/patch-ltmain.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 2:16: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C08C037B419; Mon, 4 Feb 2002 02:16:06 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14AG6M28026; Mon, 4 Feb 2002 02:16:06 -0800 (PST) (envelope-from sobomax) Message-Id: <200202041016.g14AG6M28026@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 4 Feb 2002 02:16:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/py-game Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/04 02:16:06 PST Modified files: devel/py-game Makefile Log: Recognize python2.2. Submitted by: olgeni Revision Changes Path 1.13 +1 -1 ports/devel/py-game/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 2:22:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F20AA37B400; Mon, 4 Feb 2002 02:22:47 -0800 (PST) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14AMl029044; Mon, 4 Feb 2002 02:22:47 -0800 (PST) (envelope-from yoichi) Message-Id: <200202041022.g14AMl029044@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Mon, 4 Feb 2002 02:22:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/auctex Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yoichi 2002/02/04 02:22:47 PST Modified files: print/auctex Makefile pkg-plist Log: Use Emacs21 by default. Terminate XEmacs support (ports/editors/xemacs-packages includes auctex). Arrange Makefile with bsd.emacs.mk. Approved by: maintainer Revision Changes Path 1.6 +9 -25 ports/print/auctex/Makefile 1.3 +112 -112 ports/print/auctex/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 2:23:29 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C773F37B421; Mon, 4 Feb 2002 02:23:23 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14ANNO29136; Mon, 4 Feb 2002 02:23:23 -0800 (PST) (envelope-from sobomax) Message-Id: <200202041023.g14ANNO29136@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 4 Feb 2002 02:23:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/ldd ldd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/04 02:23:23 PST Modified files: usr.bin/ldd ldd.c Log: GC meaningless assignment. MFC after: 3 days Revision Changes Path 1.24 +2 -2 src/usr.bin/ldd/ldd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 2:25:26 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id 80A2F37B42A; Mon, 4 Feb 2002 02:25:13 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g14APC548418; Mon, 4 Feb 2002 10:25:12 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id C4AF657; Mon, 4 Feb 2002 10:20:24 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g149oqE52240; Mon, 4 Feb 2002 09:50:53 GMT (envelope-from mark@grondar.za) Message-Id: <200202040950.g149oqE52240@greenpeace.grondar.org> To: obrien@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_lastlog pam_lastlog.c src/lib/libpam/modules/pam_login_access login_access.c pam_login_access.c pam_login_access.h src/lib/libpam/modules/pam_securetty pam_securetty.c src/lib/libpam/modules/pam_unix pam_unix.c References: <20020203205609.A7347@dragon.nuxi.com> In-Reply-To: <20020203205609.A7347@dragon.nuxi.com> ; from "David O'Brien" "Sun, 03 Feb 2002 20:56:09 PST." Date: Mon, 04 Feb 2002 09:50:47 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > Dammit. I did not mean to commit that yet. I'll force a commit anyway > > to mention it in the logs. > > cvs diff | cdiff > before 'cvs ci' is a life saver. I usually do that. I just did it too fast this time :-) M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 2:33:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D6A9737B400; Mon, 4 Feb 2002 02:33:48 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14AXmv31122; Mon, 4 Feb 2002 02:33:48 -0800 (PST) (envelope-from sobomax) Message-Id: <200202041033.g14AXmv31122@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 4 Feb 2002 02:33:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen dlopen.3 src/include dlfcn.h src/libexec/rtld-elf rtld.c src/usr.bin/ldd ldd.1 ldd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/04 02:33:48 PST Modified files: lib/libc/gen dlopen.3 include dlfcn.h libexec/rtld-elf rtld.c usr.bin/ldd ldd.1 ldd.c Log: Allow ldd(1) be used on shared libraries in addition to executables. Revision Changes Path 1.12 +2 -1 src/include/dlfcn.h 1.18 +8 -1 src/lib/libc/gen/dlopen.3 1.58 +35 -9 src/libexec/rtld-elf/rtld.c 1.18 +3 -2 src/usr.bin/ldd/ldd.1 1.25 +12 -2 src/usr.bin/ldd/ldd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 2:39: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by hub.freebsd.org (Postfix) with ESMTP id B243137B422; Mon, 4 Feb 2002 02:38:56 -0800 (PST) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.11.6/8.11.4) id g14Actg46944; Mon, 4 Feb 2002 11:38:55 +0100 (CET) (envelope-from stijn) Date: Mon, 4 Feb 2002 11:38:55 +0100 From: Stijn Hoop To: Maxim Sobolev Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libc/gen dlopen.3 src/include dlfcn.h src/libexec/rtld-elf rtld.c src/usr.bin/ldd ldd.1 ldd.c Message-ID: <20020204113855.H40628@pcwin002.win.tue.nl> References: <200202041033.g14AXmv31122@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="L6iaP+gRLNZHKoI4" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200202041033.g14AXmv31122@freefall.freebsd.org>; from sobomax@freebsd.org on Mon, Feb 04, 2002 at 02:33:48AM -0800 X-Bright-Idea: Let's abolish HTML mail! Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --L6iaP+gRLNZHKoI4 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Feb 04, 2002 at 02:33:48AM -0800, Maxim Sobolev wrote: > sobomax 2002/02/04 02:33:48 PST >=20 > Modified files: > lib/libc/gen dlopen.3=20 > include dlfcn.h=20 > libexec/rtld-elf rtld.c=20 > usr.bin/ldd ldd.1 ldd.c=20 > Log: > Allow ldd(1) be used on shared libraries in addition to executables. Great, thanks! No MFC planned? --Stijn --=20 This sentence contradicts itself -- no actually it doesn't. -- Hofstadter --L6iaP+gRLNZHKoI4 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8XmS/Y3r/tLQmfWcRAlOMAJ9b43xmQkTW2XolGsEnQmQljc2n7wCfUT7C bEbdTwUjvBvkeInsGIJdTKY= =9IgZ -----END PGP SIGNATURE----- --L6iaP+gRLNZHKoI4-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 2:40: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FF4737B420; Mon, 4 Feb 2002 02:39:58 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14AdwI32345; Mon, 4 Feb 2002 02:39:58 -0800 (PST) (envelope-from sobomax) Message-Id: <200202041039.g14AdwI32345@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 4 Feb 2002 02:39:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/cam/scsi scsi_da.c src/sys/dev/usb usbdevs usbdevs.h usbdevs_data.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/04 02:39:58 PST Modified files: (Branch: RELENG_4) sys/cam/scsi scsi_da.c sys/dev/usb usbdevs usbdevs.h usbdevs_data.h Log: MFC: add support for PhotoClip USB Camera. Revision Changes Path 1.42.2.21 +7 -0 src/sys/cam/scsi/scsi_da.c 1.11.2.17 +4 -0 src/sys/dev/usb/usbdevs 1.32.2.17 +4 -0 src/sys/dev/usb/usbdevs.h 1.32.2.17 +12 -0 src/sys/dev/usb/usbdevs_data.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 2:44:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4D93137B41E; Mon, 4 Feb 2002 02:44:16 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14AiGM33472; Mon, 4 Feb 2002 02:44:16 -0800 (PST) (envelope-from sobomax) Message-Id: <200202041044.g14AiGM33472@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 4 Feb 2002 02:44:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen dlopen.3 src/include dlfcn.h src/libexec/rtld-elf rtld.c src/usr.bin/ldd ldd.1 ldd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/04 02:44:16 PST Modified files: lib/libc/gen dlopen.3 include dlfcn.h libexec/rtld-elf rtld.c usr.bin/ldd ldd.1 ldd.c Log: (forced) Previous commit (ldd on shlibs) is a subject of: MFC after: 2 weeks Revision Changes Path 1.13 +0 -0 src/include/dlfcn.h 1.19 +0 -0 src/lib/libc/gen/dlopen.3 1.59 +0 -0 src/libexec/rtld-elf/rtld.c 1.19 +0 -0 src/usr.bin/ldd/ldd.1 1.26 +0 -0 src/usr.bin/ldd/ldd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 2:44:37 2002 Delivered-To: cvs-all@freebsd.org Received: from zibbi.icomtek.csir.co.za (zibbi.icomtek.csir.co.za [146.64.24.58]) by hub.freebsd.org (Postfix) with ESMTP id 0381F37B41F; Mon, 4 Feb 2002 02:44:17 -0800 (PST) Received: (from jhay@localhost) by zibbi.icomtek.csir.co.za (8.11.6/8.11.6) id g14AhlG78683; Mon, 4 Feb 2002 12:43:47 +0200 (SAT) (envelope-from jhay) From: John Hay Message-Id: <200202041043.g14AhlG78683@zibbi.icomtek.csir.co.za> Subject: Re: cvs commit: src/lib/libpam/modules/pam_lastlog pam_lastlog.c src/lib/libpam/modules/pam_login_access login_access.c pam_logi In-Reply-To: <200202040950.g149oqE52240@greenpeace.grondar.org> from Mark Murray at "Feb 4, 2002 09:50:47 am" To: mark@grondar.za (Mark Murray) Date: Mon, 4 Feb 2002 12:43:47 +0200 (SAT) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi Mark, > > > Dammit. I did not mean to commit that yet. I'll force a commit anyway > > > to mention it in the logs. My make world still breaks in libpam because warnings are now turned into errors and the ssl includes have lots of warnings. John -- John Hay -- John.Hay@icomtek.csir.co.za / jhay@FreeBSD.org cc -fpic -DPIC -nostdinc -O -pipe -march=pentiumpro -march=pentiumpro -I/usr/src /lib/libpam/modules/pam_ssh/../../../../crypto/openssh -I/usr/src/lib/libpam/mod ules/pam_ssh/../../../../contrib/libpam/libpam/include -I/usr/src/lib/libpam/mod ules/pam_ssh/../../libpam -I/usr/obj/usr/src/i386/usr/include -Werror -Wall -W - Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qua l -Wwrite-strings -Wswitch -Wshadow -Wcast-align -Wno-uninitialized -c /usr/src /lib/libpam/modules/pam_ssh/pam_ssh.c -o pam_ssh.So cc1: warnings being treated as errors In file included from /usr/obj/usr/src/i386/usr/include/openssl/evp.h:126, from /usr/src/lib/libpam/modules/pam_ssh/pam_ssh.c:63: /usr/obj/usr/src/i386/usr/include/openssl/rsa.h:218: warning: function declarati on isn't a prototype /usr/obj/usr/src/i386/usr/include/openssl/rsa.h:218: warning: function declarati on isn't a prototype /usr/obj/usr/src/i386/usr/include/openssl/rsa.h:219: warning: function declarati on isn't a prototype /usr/obj/usr/src/i386/usr/include/openssl/rsa.h:219: warning: function declarati on isn't a prototype ... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 2:51: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id 6C5A737B404; Mon, 4 Feb 2002 02:50:43 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id MAA00593; Mon, 4 Feb 2002 12:50:37 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h33.228.dialup.iptcom.net [212.9.228.33]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id MAA56676; Mon, 4 Feb 2002 12:50:35 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id g14Ao2d39243; Mon, 4 Feb 2002 12:50:02 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C5E6763.B622134A@FreeBSD.org> Date: Mon, 04 Feb 2002 12:50:11 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/gen dlopen.3 src/include dlfcn.hsrc/libexec/rtld-elf rtld.c src/usr.bin/ldd ldd.1 ldd.c References: <200202041033.g14AXmv31122@freefall.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Maxim Sobolev wrote: > > sobomax 2002/02/04 02:33:48 PST > > Modified files: > lib/libc/gen dlopen.3 > include dlfcn.h > libexec/rtld-elf rtld.c > usr.bin/ldd ldd.1 ldd.c > Log: > Allow ldd(1) be used on shared libraries in addition to executables. OOPS forgot to mention: Reviewed by: jdp Approved by: jdp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 3: 7: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED1AE37B423; Mon, 4 Feb 2002 03:06:59 -0800 (PST) Received: (from gj@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14B6xk51878; Mon, 4 Feb 2002 03:06:59 -0800 (PST) (envelope-from gj) Message-Id: <200202041106.g14B6xk51878@freefall.freebsd.org> From: Gary Jennejohn Date: Mon, 4 Feb 2002 03:06:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/vile Makefile distinfo ports/editors/xvile Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gj 2002/02/04 03:06:59 PST Modified files: editors/vile Makefile distinfo editors/xvile Makefile distinfo Log: Update to patch level w. Revision Changes Path 1.35 +3 -2 ports/editors/vile/Makefile 1.19 +1 -0 ports/editors/vile/distinfo 1.37 +3 -2 ports/editors/xvile/Makefile 1.20 +1 -0 ports/editors/xvile/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 3:52:55 2002 Delivered-To: cvs-all@freebsd.org Received: from mongrel.pacific.net.au (mongrel.pacific.net.au [61.8.0.107]) by hub.freebsd.org (Postfix) with ESMTP id 43F1D37B421; Mon, 4 Feb 2002 03:52:50 -0800 (PST) Received: from dungeon.home (ppp67.dyn248.pacific.net.au [203.143.248.67]) by mongrel.pacific.net.au (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id WAA16733; Mon, 4 Feb 2002 22:44:26 +1100 X-Authentication-Warning: mongrel.pacific.net.au: Host ppp67.dyn248.pacific.net.au [203.143.248.67] claimed to be dungeon.home Received: from dungeon.home (localhost [127.0.0.1]) by dungeon.home (8.11.3/8.11.1) with ESMTP id g14BvhC06852; Mon, 4 Feb 2002 21:57:43 +1000 (EST) (envelope-from mckay) Message-Id: <200202041157.g14BvhC06852@dungeon.home> To: Ian Dowse Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, mckay@thehub.com.au Subject: Re: cvs commit: src/usr.sbin/ctm/ctm_rmail ctm_rmail.c References: <200201222254.g0MMsqg19740@freefall.freebsd.org> In-Reply-To: <200201222254.g0MMsqg19740@freefall.freebsd.org> from Ian Dowse at "Tue, 22 Jan 2002 22:54:52 +0000" Date: Mon, 04 Feb 2002 21:57:43 +1000 From: Stephen McKay Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tuesday, 22nd January 2002, Ian Dowse wrote: >iedowse 2002/01/22 14:54:52 PST > > Modified files: > usr.sbin/ctm/ctm_rmail ctm_rmail.c > Log: > The mode of files created by ctm_rmail was always 0600, even if the > umask was less restrictive. This was caused by the use of mkstemp() > which internally passes a mode of 0600 to open(). Fix this by > explicitly chmod'ing the files to (0666 & ~umask). This is pretty silly. The right way to fix this is to revert back to using mktemp(). Probably revert the whole 1.14 delta. I'll put this on my TODO list. Stephen. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 4:22:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 651DA37B416; Mon, 4 Feb 2002 04:22:26 -0800 (PST) Received: (from nyan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14CMQh95892; Mon, 4 Feb 2002 04:22:26 -0800 (PST) (envelope-from nyan) Message-Id: <200202041222.g14CMQh95892@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Mon, 4 Feb 2002 04:22:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf Makefile.i386 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/02/04 04:22:26 PST Modified files: (Branch: RELENG_4) sys/conf Makefile.i386 Log: MFC: Added 'MACHINE=i386' to MKMODULESENV variable. Revision Changes Path 1.179.2.12 +1 -0 src/sys/conf/Makefile.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 4:34:50 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 641F537B404; Mon, 4 Feb 2002 04:34:47 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14CYlC99392; Mon, 4 Feb 2002 04:34:47 -0800 (PST) (envelope-from sobomax) Message-Id: <200202041234.g14CYlC99392@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 4 Feb 2002 04:34:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_environment.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/04 04:34:47 PST Modified files: (Branch: RELENG_4) sys/kern kern_environment.c Log: MFC: fix an inverted test case when checking return value of getenv(). Revision Changes Path 1.10.2.6 +1 -1 src/sys/kern/kern_environment.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 4:37:41 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BCCF337B41D; Mon, 4 Feb 2002 04:37:38 -0800 (PST) Received: (from nyan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14Cbcr00282; Mon, 4 Feb 2002 04:37:38 -0800 (PST) (envelope-from nyan) Message-Id: <200202041237.g14Cbcr00282@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Mon, 4 Feb 2002 04:37:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/uname uname.1 uname.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/02/04 04:37:38 PST Modified files: (Branch: RELENG_4) usr.bin/uname uname.1 uname.c Log: MFC: 'uname -p' prints the value of hw.machine_arch instead of hw.machine. Added __FBSDID(); Revision Changes Path 1.8.2.2 +2 -4 src/usr.bin/uname/uname.1 1.4.6.1 +21 -5 src/usr.bin/uname/uname.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 4:50:56 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1929D37B421; Mon, 4 Feb 2002 04:50:53 -0800 (PST) Received: (from nyan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14Cor904468; Mon, 4 Feb 2002 04:50:53 -0800 (PST) (envelope-from nyan) Message-Id: <200202041250.g14Cor904468@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Mon, 4 Feb 2002 04:50:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/02/04 04:50:52 PST Modified files: etc rc Log: Use MACHINE_ARCH instead of MACHINE to check i386 arch. MFC after: 3 days Revision Changes Path 1.294 +3 -3 src/etc/rc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 5: 8:16 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 652B837B423; Mon, 4 Feb 2002 05:08:12 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14D8CI12202; Mon, 4 Feb 2002 05:08:12 -0800 (PST) (envelope-from sobomax) Message-Id: <200202041308.g14D8CI12202@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 4 Feb 2002 05:08:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys conf.h src/sys/kern vfs_conf.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/04 05:08:12 PST Modified files: (Branch: RELENG_4) sys/sys conf.h sys/kern vfs_conf.c Log: MFC: split the logic of setrootbyname() out into getdiskbyname(). (kern/vfs_conf.c rev 1.50, sys/conf.h rev 1.105) Revision Changes Path 1.49.2.4 +49 -12 src/sys/kern/vfs_conf.c 1.103.2.5 +1 -0 src/sys/sys/conf.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 5: 9:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E274B37B41D; Mon, 4 Feb 2002 05:09:24 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14D9OB12607; Mon, 4 Feb 2002 05:09:24 -0800 (PST) (envelope-from sobomax) Message-Id: <200202041309.g14D9OB12607@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 4 Feb 2002 05:09:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dumpon dumpon.8 src/sys/boot/common loader.8 src/sys/boot/forth loader.conf src/sys/kern kern_shutdown.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/04 05:09:24 PST Modified files: (Branch: RELENG_4) sbin/dumpon dumpon.8 sys/boot/common loader.8 sys/boot/forth loader.conf sys/kern kern_shutdown.c Log: MFC: allow dump device be configured via loader(8) tunable. Revision Changes Path 1.11.2.9 +12 -6 src/sbin/dumpon/dumpon.8 1.18.2.13 +7 -0 src/sys/boot/common/loader.8 1.25.2.15 +1 -0 src/sys/boot/forth/loader.conf 1.72.2.11 +11 -0 src/sys/kern/kern_shutdown.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 5:22:41 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE78337B41D; Mon, 4 Feb 2002 05:22:38 -0800 (PST) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14DMcX15583; Mon, 4 Feb 2002 05:22:38 -0800 (PST) (envelope-from znerd) Message-Id: <200202041322.g14DMcX15583@freefall.freebsd.org> From: Ernst de Haan Date: Mon, 4 Feb 2002 05:22:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/orion Makefile pkg-deinstall pkg-descr ports/www/orion/files orionctl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG znerd 2002/02/04 05:22:37 PST Modified files: www/orion Makefile pkg-deinstall pkg-descr www/orion/files orionctl Log: A lot of small changes. It's now possible to change the Java port using the JAVA_PORT variable. Now uses the my public_distfiles instead of those of sobomax. The script installed in /etc/rc.d/ is now prefixed with the startup order, by default it is 020.orion.sh. For the rest the changes are superficial. Just improving the quality and genericity. Revision Changes Path 1.17 +54 -48 ports/www/orion/Makefile 1.6 +81 -69 ports/www/orion/files/orionctl 1.2 +1 -1 ports/www/orion/pkg-deinstall 1.4 +15 -11 ports/www/orion/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 5:31:27 2002 Delivered-To: cvs-all@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 35FD237B420; Mon, 4 Feb 2002 05:30:41 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g14DUWp70294; Mon, 4 Feb 2002 15:30:32 +0200 (EET) (envelope-from ru) Date: Mon, 4 Feb 2002 15:30:32 +0200 From: Ruslan Ermilov To: Mark Murray , current@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: pam_ssh world breakage (was: Re: cvs commit: src/lib/libpam Makefile.inc) Message-ID: <20020204153032.C58535@sunbay.com> References: <200202031551.g13Fpql76999@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202031551.g13Fpql76999@freefall.freebsd.org> User-Agent: Mutt/1.3.23i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 03, 2002 at 07:51:52AM -0800, Mark Murray wrote: > markm 2002/02/03 07:51:52 PST > > Modified files: > lib/libpam Makefile.inc > Log: > Turn on fascist warning mode. > > Revision Changes Path > 1.4 +3 -1 src/lib/libpam/Makefile.inc > This delta breaks buildworld. gcc(1) has a known bug-feature of hiding some errors in standard system headers, making them invisible without -I. During buildworld, ${WORLDTMP}/usr/include is populated with headers, and -I${WORLDTMP}/usr/include is added to CFLAGS, and compile now can't survive the WARNS=4. Try this to see the breakage: cd /usr/src/lib/libpam/modules/pam_ssh make cleandir make DESTDIR=/ Please back it out. Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 5:38:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9825937B42A; Mon, 4 Feb 2002 05:38:26 -0800 (PST) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14DcQU20365; Mon, 4 Feb 2002 05:38:26 -0800 (PST) (envelope-from znerd) Message-Id: <200202041338.g14DcQU20365@freefall.freebsd.org> From: Ernst de Haan Date: Mon, 4 Feb 2002 05:38:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/jakarta-tomcat Makefile pkg-plist ports/www/jakarta-tomcat/files patch-aa patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG znerd 2002/02/04 05:38:25 PST Modified files: www/jakarta-tomcat Makefile pkg-plist www/jakarta-tomcat/files patch-aa patch-ab Log: A lot of changes: * Bumped PORTREVISION * Now displays installation settings * Now possible to choose JDK. By default uses FreeBSD JDK 1.3.1 (instead of FreeBSD JDK 1.1.8) * Does not depend on pinstall anymore * Now possible to change TOMCAT_HOME. By default uses /jakarta-tomcat-3.2.3 (instead of /tomcat) * Now possible to change LISTEN_PORT. Default is 8080 (unchanged) * Added support for running Tomcat as a different user/group. By default a new user 'tomcat' and a new group 'tomcat' are created and used * A 'tomcatctl' script is installed in /usr/local/bin/, which uses interprocess communication to start/stop/restart Tomcat * Option is added for automatically starting Tomcat after install (AUTO_START). By default Tomcat is started right away * Appends stdout and stderr to log files * Uses a numeric prefix for the script in /etc/rc.d (now by default 020.jakarta-tomcat.sh instead of tomcat.sh) Revision Changes Path 1.12 +111 -11 ports/www/jakarta-tomcat/Makefile 1.2 +2 -2 ports/www/jakarta-tomcat/files/patch-aa 1.2 +12 -3 ports/www/jakarta-tomcat/files/patch-ab 1.6 +413 -99 ports/www/jakarta-tomcat/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 5:39:26 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3EA5E37B41A; Mon, 4 Feb 2002 05:39:20 -0800 (PST) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14DdK720681; Mon, 4 Feb 2002 05:39:20 -0800 (PST) (envelope-from znerd) Message-Id: <200202041339.g14DdK720681@freefall.freebsd.org> From: Ernst de Haan Date: Mon, 4 Feb 2002 05:39:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/jakarta-tomcat/files tomcatctl tomcatctl.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG znerd 2002/02/04 05:39:20 PST Added files: www/jakarta-tomcat/files tomcatctl tomcatctl.1 Log: A new tomcatctl control script, installed in /bin. Revision Changes Path 1.1 +99 -0 ports/www/jakarta-tomcat/files/tomcatctl (new) 1.1 +96 -0 ports/www/jakarta-tomcat/files/tomcatctl.1 (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 5:40:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E9ECD37B425; Mon, 4 Feb 2002 05:40:10 -0800 (PST) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14DeAq21052; Mon, 4 Feb 2002 05:40:10 -0800 (PST) (envelope-from znerd) Message-Id: <200202041340.g14DeAq21052@freefall.freebsd.org> From: Ernst de Haan Date: Mon, 4 Feb 2002 05:40:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/jakarta-tomcat/files tomcat.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG znerd 2002/02/04 05:40:10 PST Removed files: www/jakarta-tomcat/files tomcat.sh Log: Now using tomcatctl instead of tomcat.sh Revision Changes Path 1.3 +0 -25 ports/www/jakarta-tomcat/files/tomcat.sh (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 5:40:58 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 525B737B421; Mon, 4 Feb 2002 05:40:56 -0800 (PST) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14Deup21304; Mon, 4 Feb 2002 05:40:56 -0800 (PST) (envelope-from znerd) Message-Id: <200202041340.g14Deup21304@freefall.freebsd.org> From: Ernst de Haan Date: Mon, 4 Feb 2002 05:40:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/jakarta-tomcat pkg-deinstall X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG znerd 2002/02/04 05:40:56 PST Added files: www/jakarta-tomcat pkg-deinstall Log: Run when deinstalling Tomcat. It will stop Tomcat, if it is running. Revision Changes Path 1.1 +8 -0 ports/www/jakarta-tomcat/pkg-deinstall (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 5:42:23 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id C32B337B417; Mon, 4 Feb 2002 05:42:08 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id AAA16927; Tue, 5 Feb 2002 00:42:00 +1100 Date: Tue, 5 Feb 2002 00:44:22 +1100 (EST) From: Bruce Evans X-X-Sender: To: Mark Murray Cc: Mark Murray , , Subject: Re: cvs commit: src/sys/sys socket.h types.h In-Reply-To: <200202031724.g13HOwE61969@greenpeace.grondar.org> Message-ID: <20020205002930.K22843-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 3 Feb 2002, Mark Murray wrote: > > On Sun, 3 Feb 2002, Mark Murray wrote: > > > > > Ok, So what needs to be done? > > > > Back out the change to howmany(). The caller can always pass it types > > with the same signedness (after promotion) or cast the value. This > > is a bit like the caller having to do this for min(9undoc): > > min(1U, -1) gives a very wrong value. min(1U, 1) gives the correct > > value but may only escape being warned about because the args get > > silently converted to u_int. > > So how does one write a (decent) macro to return a correct value > for min(1u, -1)? One doesn't. One can write fairly indecent ones using Gnu C, but FreeBSD currently uses min functions instead of the MIN macro in the kernel. > howmany() is used so much in the kernel, and is defined in multiple > places, so methinks it needs to be a function (inline?). It kicks > out zillions of wanings when you try to lint it. The warnings are probably correct. They probably indicate that callers are passing mismatched arg types. Perhaps more seriously, the change to the type of NBBY exposes an old bug in ffs and causes kernel panics. See another thread. Please back it out too, and consider doing the same for all the other type changes. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 5:59:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E9D237B417; Mon, 4 Feb 2002 05:59:16 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14DxGE25552; Mon, 4 Feb 2002 05:59:16 -0800 (PST) (envelope-from phantom) Message-Id: <200202041359.g14DxGE25552@freefall.freebsd.org> From: Alexey Zelkin Date: Mon, 4 Feb 2002 05:59:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/diag/localeck Makefile docheck.sh localeck.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/04 05:59:16 PST Added files: tools/diag/localeck Makefile docheck.sh localeck.c Log: Add simple diagnostic utility to checking for invalid/incomplete locales Revision Changes Path 1.1 +11 -0 src/tools/diag/localeck/Makefile (new) 1.1 +40 -0 src/tools/diag/localeck/docheck.sh (new) 1.1 +71 -0 src/tools/diag/localeck/localeck.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 6: 0:33 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B3A3F37B41D; Mon, 4 Feb 2002 06:00:29 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14E0TX26081; Mon, 4 Feb 2002 06:00:29 -0800 (PST) (envelope-from phantom) Message-Id: <200202041400.g14E0TX26081@freefall.freebsd.org> From: Alexey Zelkin Date: Mon, 4 Feb 2002 06:00:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/diag README X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/04 06:00:29 PST Modified files: tools/diag README Log: describe localeck plus some capitalization/whitespace fixes Revision Changes Path 1.5 +4 -2 src/tools/diag/README To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 6: 1:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8C41837B430; Mon, 4 Feb 2002 06:01:27 -0800 (PST) Received: (from nyan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14E1Rk26298; Mon, 4 Feb 2002 06:01:27 -0800 (PST) (envelope-from nyan) Message-Id: <200202041401.g14E1Rk26298@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Mon, 4 Feb 2002 06:01:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/fe if_fe_cbus.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/02/04 06:01:27 PST Modified files: sys/dev/fe if_fe_cbus.c Log: Supported C-NET(98)P2 PnP mode. Submitted by: "Hirokazu WATANABE" MFC after: 3 days Revision Changes Path 1.8 +28 -16 src/sys/dev/fe/if_fe_cbus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 6: 5:38 2002 Delivered-To: cvs-all@freebsd.org Received: from eken2.eken.phys.nagoya-u.ac.jp (eken2.eken.phys.nagoya-u.ac.jp [133.6.121.2]) by hub.freebsd.org (Postfix) with ESMTP id 793E737B42A; Mon, 4 Feb 2002 06:05:33 -0800 (PST) Received: from eken3.eken.phys.nagoya-u.ac.jp (eken3 [133.6.121.3]) by eken2.eken.phys.nagoya-u.ac.jp (8.11.6+3.4W/3.7W-E) with ESMTP id g14E5WB24108; Mon, 4 Feb 2002 23:05:32 +0900 (JST) Date: Mon, 04 Feb 2002 23:05:31 +0900 Message-ID: From: Yoichi NAKAYAMA To: Ernst de Haan Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/jakarta-tomcat Makefile pkg-plist ports/www/jakarta-tomcat/files patch-aa patch-ab In-Reply-To: <200202041338.g14DcQU20365@freefall.freebsd.org> References: <200202041338.g14DcQU20365@freefall.freebsd.org> User-Agent: Wanderlust/2.9.6 (Unchained Melody) SEMI/1.14.3 (=?ISO-2022-JP?B?GyRCNW0lTkMrGyhC?=) FLIM/1.14.3 (=?ISO-2022-JP?B?GyRCQCZLNThmTk1BMBsoQg==?=) APEL/10.3 Emacs/21.1 (i686-pc-linux-gnu) MULE/5.0 (=?ISO-2022-JP?B?GyRCOC1MWhsoQg==?=) Organization: E-ken, Dept. of Physics, Nagoya University, JAPAN X-Face: wLZki+KbGjgKe0,<&3g*rA|R**vj[a8L%[v]ecJh1L(Uqm|LBx;v7Nq7n%?0d.aS]F#[~C\!{m?m,C&#U5}$_pZvBR>5VmX1Ol0`P\M-U8`sUF<5Quj'z&zzW8r|Zl9#W7Wut3duYzpKrP{n+AbarKtJ!i"Al7]P;-?[=iBZa*]r=>C':0~JECx]IH+RXq=/hUX}MB9e]oQKBxsDd/ MIME-Version: 1.0 (generated by SEMI 1.14.3 - =?ISO-2022-JP?B?IhskQjVtGyhC?= =?ISO-2022-JP?B?GyRCJU5DKxsoQiI=?=) Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Mon, 4 Feb 2002 05:38:26 -0800 (PST), Ernst de Haan wrote: > > znerd 2002/02/04 05:38:25 PST > > Modified files: > www/jakarta-tomcat Makefile pkg-plist > www/jakarta-tomcat/files patch-aa patch-ab > * Added support for running Tomcat as a different user/group. By default a new user 'tomcat' and a new group 'tomcat' are created and used "make isntall" in port directory seems to create user/group, but pkg_add doesn't create those, right? > * A 'tomcatctl' script is installed in /usr/local/bin/, which uses interprocess communication to start/stop/restart Tomcat > * Uses a numeric prefix for the script in /etc/rc.d (now by default 020.jakarta-tomcat.sh instead of tomcat.sh) pkg-plist should be fixed for these? Regards, -- Yoichi Nakayama To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 6:11:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E066637B432; Mon, 4 Feb 2002 06:11:06 -0800 (PST) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14EB6S31763; Mon, 4 Feb 2002 06:11:06 -0800 (PST) (envelope-from znerd) Message-Id: <200202041411.g14EB6S31763@freefall.freebsd.org> From: Ernst de Haan Date: Mon, 4 Feb 2002 06:11:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/jakarta-tomcat pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG znerd 2002/02/04 06:11:06 PST Modified files: www/jakarta-tomcat pkg-plist Log: Fixed control script name. It's 020.jakarta-tomcat.sh. Reported by: Yoichi NAKAYAMA Revision Changes Path 1.7 +1 -1 ports/www/jakarta-tomcat/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 6:22:17 2002 Delivered-To: cvs-all@freebsd.org Received: from zaphod.euronet.nl (zaphod.euronet.nl [194.134.128.241]) by hub.freebsd.org (Postfix) with ESMTP id 5C0CD37B41F; Mon, 4 Feb 2002 06:22:10 -0800 (PST) Received: (from ernst@localhost) by zaphod.euronet.nl (8.11.6/8.11.6) id g14EMBJ16492; Mon, 4 Feb 2002 15:22:11 +0100 (CET) (envelope-from ernst) Message-Id: <200202041422.g14EMBJ16492@zaphod.euronet.nl> Content-Type: text/plain; charset="iso-8859-1" From: Ernst de Haan To: Yoichi NAKAYAMA Subject: Re: cvs commit: ports/www/jakarta-tomcat Makefile pkg-plist ports/www/jakarta-tomcat/files patch-aa patch-ab Date: Mon, 4 Feb 2002 15:22:10 +0100 X-Mailer: KMail [version 1.3.2] Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200202041338.g14DcQU20365@freefall.freebsd.org> In-Reply-To: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Yoichi, > "make isntall" in port directory seems to create user/group, but pkg_add > doesn't create those, right? Uh, what *should* the behaviour be? I must admit that I'm not that fluent with pkg_add, the difference between doing things in pkg-(de)install or pkg-plist/Makefile, etc. Still learning and (hopefully) improving. > pkg-plist should be fixed for these? Quickly fixed this. I should use ${TMPPKGLIST} or so to make sure that the *exact* name of the RC script is used, I will look into this ASAP. For now it just assumes 020.jakarta-tomcat.sh... Ernst -- Ernst de Haan EuroNet Internet B.V. "Come to me all who are weary and burdened and I will give you rest" -- Jesus Christ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 6:25:31 2002 Delivered-To: cvs-all@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id 2F2EE37B422; Mon, 4 Feb 2002 06:25:25 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 6CAE49B08; Mon, 4 Feb 2002 09:24:48 -0500 (EST) Date: Mon, 4 Feb 2002 09:24:48 -0500 From: Will Andrews To: Ernst de Haan Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/orion Makefile pkg-deinstall pkg-descr ports/www/orion/files orionctl Message-ID: <20020204142448.GJ82640@squall.waterspout.com> Mail-Followup-To: Ernst de Haan , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200202041322.g14DMcX15583@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202041322.g14DMcX15583@freefall.freebsd.org> User-Agent: Mutt/1.3.26i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Feb 04, 2002 at 05:22:38AM -0800, Ernst de Haan wrote: > Modified files: > www/orion Makefile pkg-deinstall pkg-descr > www/orion/files orionctl > Log: > A lot of small changes. It's now possible to change the Java port using the JAVA_PORT variable. Now uses the my public_distfiles instead of those of sobomax. The script installed in /etc/rc.d/ is now prefixed with the startup order, by default it is 020.orion.sh. For the rest the changes are superficial. Just improving the quality and genericity. Please wrap your commit log lines with hard EOLs. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 6:26:37 2002 Delivered-To: cvs-all@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id AE99337B41F; Mon, 4 Feb 2002 06:26:31 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 0DBDF9B08; Mon, 4 Feb 2002 09:25:55 -0500 (EST) Date: Mon, 4 Feb 2002 09:25:54 -0500 From: Will Andrews To: Ernst de Haan Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/jakarta-tomcat/files tomcatctl tomcatctl.1 Message-ID: <20020204142554.GK82640@squall.waterspout.com> Mail-Followup-To: Ernst de Haan , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200202041339.g14DdK720681@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202041339.g14DdK720681@freefall.freebsd.org> User-Agent: Mutt/1.3.26i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Feb 04, 2002 at 05:39:20AM -0800, Ernst de Haan wrote: > Added files: > www/jakarta-tomcat/files tomcatctl tomcatctl.1 > Log: > A new tomcatctl control script, installed in /bin. You mean ${PREFIX}/bin, I hope. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 6:31:16 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E45B637B421; Mon, 4 Feb 2002 06:30:57 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14EUv337054; Mon, 4 Feb 2002 06:30:57 -0800 (PST) (envelope-from sobomax) Message-Id: <200202041430.g14EUv337054@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 4 Feb 2002 06:30:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/gnumeric Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/04 06:30:57 PST Modified files: math/gnumeric Makefile distinfo pkg-plist Log: Update to 1.0.4. PR: 34571 Submitted by: Joe Clarke Revision Changes Path 1.77 +1 -1 ports/math/gnumeric/Makefile 1.44 +1 -1 ports/math/gnumeric/distinfo 1.42 +1 -0 ports/math/gnumeric/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 6:31:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA27337B440; Mon, 4 Feb 2002 06:31:14 -0800 (PST) Received: (from darrenr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14EVEQ37115; Mon, 4 Feb 2002 06:31:14 -0800 (PST) (envelope-from darrenr) Message-Id: <200202041431.g14EVEQ37115@freefall.freebsd.org> From: Darren Reed Date: Mon, 4 Feb 2002 06:31:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/contrib/ipfilter/netinet ip_fil.c ip_nat.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG darrenr 2002/02/04 06:31:14 PST Modified files: (Branch: RELENG_4) sys/contrib/ipfilter/netinet ip_fil.c ip_nat.c Log: Pullup patch to change securelevel required for "secure" firewalling. PR: 27615 Submitted by: Andria Thomas Reviewed by: darrenr Approved by: darrenr Revision Changes Path 1.25.2.3 +2 -2 src/sys/contrib/ipfilter/netinet/ip_fil.c 1.22.2.4 +1 -1 src/sys/contrib/ipfilter/netinet/ip_nat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 6:35:11 2002 Delivered-To: cvs-all@freebsd.org Received: from eken2.eken.phys.nagoya-u.ac.jp (eken2.eken.phys.nagoya-u.ac.jp [133.6.121.2]) by hub.freebsd.org (Postfix) with ESMTP id 840CE37B422; Mon, 4 Feb 2002 06:34:57 -0800 (PST) Received: from eken3.eken.phys.nagoya-u.ac.jp (eken3 [133.6.121.3]) by eken2.eken.phys.nagoya-u.ac.jp (8.11.6+3.4W/3.7W-E) with ESMTP id g14EYsB24446; Mon, 4 Feb 2002 23:34:55 +0900 (JST) Date: Mon, 04 Feb 2002 23:34:54 +0900 Message-ID: From: Yoichi NAKAYAMA To: Ernst de Haan Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/jakarta-tomcat Makefile pkg-plist ports/www/jakarta-tomcat/files patch-aa patch-ab In-Reply-To: <200202041422.g14EMBJ16492@zaphod.euronet.nl> References: <200202041338.g14DcQU20365@freefall.freebsd.org> <200202041422.g14EMBJ16492@zaphod.euronet.nl> User-Agent: Wanderlust/2.9.6 (Unchained Melody) SEMI/1.14.3 (=?ISO-2022-JP?B?GyRCNW0lTkMrGyhC?=) FLIM/1.14.3 (=?ISO-2022-JP?B?GyRCQCZLNThmTk1BMBsoQg==?=) APEL/10.3 Emacs/21.1 (i686-pc-linux-gnu) MULE/5.0 (=?ISO-2022-JP?B?GyRCOC1MWhsoQg==?=) Organization: E-ken, Dept. of Physics, Nagoya University, JAPAN X-Face: wLZki+KbGjgKe0,<&3g*rA|R**vj[a8L%[v]ecJh1L(Uqm|LBx;v7Nq7n%?0d.aS]F#[~C\!{m?m,C&#U5}$_pZvBR>5VmX1Ol0`P\M-U8`sUF<5Quj'z&zzW8r|Zl9#W7Wut3duYzpKrP{n+AbarKtJ!i"Al7]P;-?[=iBZa*]r=>C':0~JECx]IH+RXq=/hUX}MB9e]oQKBxsDd/ X-SKK: Daredevil SKK/12.1.0 (Okamachi) MIME-Version: 1.0 (generated by SEMI 1.14.3 - =?ISO-2022-JP?B?IhskQjVtGyhC?= =?ISO-2022-JP?B?GyRCJU5DKxsoQiI=?=) Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Mon, 4 Feb 2002 15:22:10 +0100, Ernst de Haan wrote: > > pkg-plist should be fixed for these? > > Quickly fixed this. I should use ${TMPPKGLIST} or so to make sure that the > *exact* name of the RC script is used, I will look into this ASAP. For now it > just assumes 020.jakarta-tomcat.sh... Thanks for quick reply. But 020.jakaruta-tomcat.sh semms to be symlink, so I think it would be better instead using @exec ln -sf ... and @unexec rm -f ... (Use test command before removing symlink might be more better.) Also, CTL_SCRIPT itself seems to be dropped from pkg-plist. Please check plist for other missing files, since I just noticed those missing files in plist but I've not checked in detail for other. I think you should test for the port to pass the test described in "Testing the port" section in porters' handbook. It will help you to find missing files in plist. Best regards, -- Yoichi Nakayama To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 6:46:52 2002 Delivered-To: cvs-all@freebsd.org Received: from zaphod.euronet.nl (zaphod.euronet.nl [194.134.128.241]) by hub.freebsd.org (Postfix) with ESMTP id 31E6337B41B; Mon, 4 Feb 2002 06:46:47 -0800 (PST) Received: (from ernst@localhost) by zaphod.euronet.nl (8.11.6/8.11.6) id g14EkWC16534; Mon, 4 Feb 2002 15:46:32 +0100 (CET) (envelope-from ernst) Message-Id: <200202041446.g14EkWC16534@zaphod.euronet.nl> Content-Type: text/plain; charset="iso-8859-1" From: Ernst de Haan To: Will Andrews Subject: Re: cvs commit: ports/www/orion Makefile pkg-deinstall pkg-descr ports/www/orion/files orionctl Date: Mon, 4 Feb 2002 15:46:32 +0100 X-Mailer: KMail [version 1.3.2] Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200202041322.g14DMcX15583@freefall.freebsd.org> <20020204142448.GJ82640@squall.waterspout.com> In-Reply-To: <20020204142448.GJ82640@squall.waterspout.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Please wrap your commit log lines with hard EOLs. Okay. I will from now on. Thanks for the mentoring :) Ernst -- Ernst de Haan EuroNet Internet B.V. "Come to me all who are weary and burdened and I will give you rest" -- Jesus Christ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 6:47:38 2002 Delivered-To: cvs-all@freebsd.org Received: from zaphod.euronet.nl (zaphod.euronet.nl [194.134.128.241]) by hub.freebsd.org (Postfix) with ESMTP id 978EF37B41D; Mon, 4 Feb 2002 06:47:33 -0800 (PST) Received: (from ernst@localhost) by zaphod.euronet.nl (8.11.6/8.11.6) id g14ElX116537; Mon, 4 Feb 2002 15:47:33 +0100 (CET) (envelope-from ernst) Message-Id: <200202041447.g14ElX116537@zaphod.euronet.nl> Content-Type: text/plain; charset="iso-8859-1" From: Ernst de Haan Organization: EuroNet Internet B.V. To: Will Andrews , Ernst de Haan Subject: Re: cvs commit: ports/www/jakarta-tomcat/files tomcatctl tomcatctl.1 Date: Mon, 4 Feb 2002 15:47:33 +0100 X-Mailer: KMail [version 1.3.2] Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200202041339.g14DdK720681@freefall.freebsd.org> <20020204142554.GK82640@squall.waterspout.com> In-Reply-To: <20020204142554.GK82640@squall.waterspout.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > You mean ${PREFIX}/bin, I hope. I do. I used cvs commit -m ".... ${PREFIX} ....", which is ofcourse not very smart. From now on I will use vim for the editing of the comments. Ernst -- Ernst de Haan EuroNet Internet B.V. "Come to me all who are weary and burdened and I will give you rest" -- Jesus Christ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 7:12:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2599D37B419; Mon, 4 Feb 2002 07:12:07 -0800 (PST) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14FC7c85866; Mon, 4 Feb 2002 07:12:07 -0800 (PST) (envelope-from sheldonh) Message-Id: <200202041512.g14FC7c85866@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 4 Feb 2002 07:12:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc ftpusers X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sheldonh 2002/02/04 07:12:07 PST Modified files: etc ftpusers Log: Add the MTA users 'mailnull' and 'smmp'. PR: conf/34535 Submitted by: Ceri MFC after: 1 week Revision Changes Path 1.7 +3 -1 src/etc/ftpusers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 7:12:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C86AB37B416; Mon, 4 Feb 2002 07:12:52 -0800 (PST) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14FCqN86019; Mon, 4 Feb 2002 07:12:52 -0800 (PST) (envelope-from sheldonh) Message-Id: <200202041512.g14FCqN86019@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 4 Feb 2002 07:12:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc ftpusers X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sheldonh 2002/02/04 07:12:52 PST Modified files: etc ftpusers Log: (null delta) The previous delta added the 'smmsp' user, not 'smmp'. Revision Changes Path 1.8 +1 -1 src/etc/ftpusers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 7:25:39 2002 Delivered-To: cvs-all@freebsd.org Received: from bilbo.in.mat.cc (bilbo.in.mat.cc [212.43.217.121]) by hub.freebsd.org (Postfix) with ESMTP id EEB9037B438; Mon, 4 Feb 2002 07:25:34 -0800 (PST) Received: from bilbo.org (localhost [127.0.0.1]) by bilbo.in.mat.cc (Postfix) with ESMTP id 2F64C71055; Mon, 4 Feb 2002 16:25:27 +0100 (CET) Received: from club-internet.fr (sauron.in.mat.cc [212.43.217.122]) by bilbo.in.mat.cc (Postfix) with ESMTP id 3A4C171055; Mon, 4 Feb 2002 16:25:24 +0100 (CET) Message-ID: <3C5EA7E4.91037624@club-internet.fr> Date: Mon, 04 Feb 2002 16:25:24 +0100 From: Mathieu Arnold Organization: http://www.absolight.fr/ X-Mailer: Mozilla 4.76 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Ernst de Haan Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/jakarta-tomcat Makefile pkg-plistports/www/jakarta-tomcat/files patch-aa patch-ab References: <200202041338.g14DcQU20365@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ernst de Haan wrote: > > znerd 2002/02/04 05:38:25 PST > > Modified files: > www/jakarta-tomcat Makefile pkg-plist > www/jakarta-tomcat/files patch-aa patch-ab > Log: > * A 'tomcatctl' script is installed in /usr/local/bin/, which uses interprocess communication to start/stop/restart Tomcat shouldn't it go in /usr/local/sbin/ ? -- Mathieu Arnold To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 7:43: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 144F437B446; Mon, 4 Feb 2002 07:43:04 -0800 (PST) Received: (from roberto@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14Fh4W90438; Mon, 4 Feb 2002 07:43:04 -0800 (PST) (envelope-from roberto) Message-Id: <200202041543.g14Fh4W90438@freefall.freebsd.org> From: Ollivier Robert Date: Mon, 4 Feb 2002 07:43:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/mirrors chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roberto 2002/02/04 07:43:03 PST Modified files: en_US.ISO8859-1/books/handbook/mirrors chapter.sgml Log: Add cvsup3 (mirror in Paris -- ENST courtesy pb@freebsd.org) as well. Add ftp7/cvsup4.fr.freebsd.org (new mirror in Paris - t-online). Submitted by: pb, Vianney "Manowar" Martineau Revision Changes Path 1.192 +15 -0 doc/en_US.ISO8859-1/books/handbook/mirrors/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 7:53:39 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3944137B41E; Mon, 4 Feb 2002 07:53:34 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14FrYx91867; Mon, 4 Feb 2002 07:53:34 -0800 (PST) (envelope-from imp) Message-Id: <200202041553.g14FrYx91867@freefall.freebsd.org> From: Warner Losh Date: Mon, 4 Feb 2002 07:53:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccard pccard.c pccard_cis.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/04 07:53:33 PST Modified files: sys/dev/pccard pccard.c pccard_cis.c Log: Default debugging to OFF now. Revision Changes Path 1.50 +1 -1 src/sys/dev/pccard/pccard.c 1.16 +1 -1 src/sys/dev/pccard/pccard_cis.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 7:55: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 19ECA37B404; Mon, 4 Feb 2002 07:54:58 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14Fswf92113; Mon, 4 Feb 2002 07:54:58 -0800 (PST) (envelope-from imp) Message-Id: <200202041554.g14Fswf92113@freefall.freebsd.org> From: Warner Losh Date: Mon, 4 Feb 2002 07:54:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/exca exca.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/04 07:54:58 PST Modified files: sys/dev/exca exca.c Log: Default debugging to OFF now. Revision Changes Path 1.2 +0 -1 src/sys/dev/exca/exca.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 7:55:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 98B6337B400; Mon, 4 Feb 2002 07:55:21 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14FtLH92206; Mon, 4 Feb 2002 07:55:21 -0800 (PST) (envelope-from imp) Message-Id: <200202041555.g14FtLH92206@freefall.freebsd.org> From: Warner Losh Date: Mon, 4 Feb 2002 07:55:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccbb pccbb.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/04 07:55:21 PST Modified files: sys/dev/pccbb pccbb.c Log: Default debugging to OFF now. Revision Changes Path 1.37 +0 -2 src/sys/dev/pccbb/pccbb.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 8: 0:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5986137B41F; Mon, 4 Feb 2002 08:00:14 -0800 (PST) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14G0E093069; Mon, 4 Feb 2002 08:00:14 -0800 (PST) (envelope-from olgeni) Message-Id: <200202041600.g14G0E093069@freefall.freebsd.org> From: Jimmy Olgeni Date: Mon, 4 Feb 2002 08:00:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/neon Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2002/02/04 08:00:14 PST Modified files: www/neon Makefile distinfo Log: Upgrade to version 0.18.5. Submitted by: Garrett Rooney Revision Changes Path 1.9 +1 -1 ports/www/neon/Makefile 1.9 +1 -1 ports/www/neon/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 8: 9:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4FEBC37B430; Mon, 4 Feb 2002 08:09:25 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14G9Pn98094; Mon, 4 Feb 2002 08:09:25 -0800 (PST) (envelope-from markm) Message-Id: <200202041609.g14G9Pn98094@freefall.freebsd.org> From: Mark Murray Date: Mon, 4 Feb 2002 08:09:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_ssh Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/04 08:09:25 PST Modified files: lib/libpam/modules/pam_ssh Makefile Log: Protect "make buildworld" against -Werror, as this module does not build cleanly. Revision Changes Path 1.9 +1 -0 src/lib/libpam/modules/pam_ssh/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 8:17:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F1D037B427; Mon, 4 Feb 2002 08:17:19 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14GHJl99707; Mon, 4 Feb 2002 08:17:19 -0800 (PST) (envelope-from phantom) Message-Id: <200202041617.g14GHJl99707@freefall.freebsd.org> From: Alexey Zelkin Date: Mon, 4 Feb 2002 08:17:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/diag/localeck Makefile docheck.sh localeck.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/04 08:17:19 PST Modified files: tools/diag/localeck Makefile docheck.sh localeck.c Log: * fix some warnings * set WARNS * few style/whitespace fixes Submitted by: ru Revision Changes Path 1.2 +4 -3 src/tools/diag/localeck/Makefile 1.2 +6 -9 src/tools/diag/localeck/docheck.sh 1.2 +8 -7 src/tools/diag/localeck/localeck.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 8:20:20 2002 Delivered-To: cvs-all@freebsd.org Received: from muse.sanewo.dyn.to (p803c26.tokyjk17.ap.so-net.ne.jp [211.128.60.38]) by hub.freebsd.org (Postfix) with ESMTP id 3A86B37B41F; Mon, 4 Feb 2002 08:20:03 -0800 (PST) Received: from muse.sanewo.dyn.to (sanewo@localhost [127.0.0.1]) by muse.sanewo.dyn.to (8.11.6/8.11.6) with ESMTP id g14GK5R06184; Tue, 5 Feb 2002 01:20:05 +0900 (JST) (envelope-from sanewo@muse.sanewo.dyn.to) Message-Id: <200202041620.g14GK5R06184@muse.sanewo.dyn.to> To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_ssh pam_ssh.c References: <200201241726.g0OHQSN97700@freefall.freebsd.org> Cc: Takanori Saneto From: Takanori Saneto In-Reply-To: <200201241726.g0OHQSN97700@freefall.freebsd.org> (Dag-Erling Smorgrav's message of "Thu, 24 Jan 2002 09:26:28 -0800 (PST)") MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII User-Agent: T-gnus/6.15.5 (based on Oort Gnus v0.05) (revision 01) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-4?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.5 (beta3) (asparagus) (i386-unknown-freebsd5.0) Date: Tue, 05 Feb 2002 01:20:05 +0900 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In article <200201241726.g0OHQSN97700@freefall.freebsd.org>, Dag-Erling Smorgrav wrote: > PAM modules shouldn't call putenv(); pam_putenv() is sufficient. The > caller is supposed to check the PAM envlist and export the variables it > contains; if it doesn't, it's broken. This commit seems to make xdm fail to communicate with ssh-agent. In pam_ssh.so, communication socket with ssh-agent is obtained by ssh_get_authentication_connection, which requires specific information (SSH_AGENT_xxx) should be in the process's environment. Instead of using putenv(), how about using temporaly environment generated from pam's environment as in the following patch? Index: pam_ssh.c =================================================================== RCS file: /export/cvsup/cvs/src/lib/libpam/modules/pam_ssh/pam_ssh.c,v retrieving revision 1.24 diff -u -r1.24 pam_ssh.c --- pam_ssh.c 24 Jan 2002 18:37:16 -0000 1.24 +++ pam_ssh.c 2 Feb 2002 10:14:08 -0000 @@ -482,7 +482,15 @@ PAM_LOG("Environment saved"); /* connect to the agent */ + { + extern char **environ; + char **save, **evp; + environ = pam_getenvlist(pamh); ac = ssh_get_authentication_connection(); + for (evp = environ; *evp; evp++) (void)free(*evp); + (void)free(environ); + environ = save; + } if (!ac) { syslog(LOG_ERR, "%s: %s: %m", MODULE_NAME, agent_socket); PAM_RETURN(PAM_SESSION_ERR); -- sanewo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 8:27:12 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id CE1ED37B41F; Mon, 4 Feb 2002 08:27:04 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g14GR4C51643; Mon, 4 Feb 2002 16:27:04 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id 2297F37D; Mon, 4 Feb 2002 16:20:26 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g14GG7E56111; Mon, 4 Feb 2002 16:16:07 GMT (envelope-from mark@grondar.za) Message-Id: <200202041616.g14GG7E56111@greenpeace.grondar.org> To: Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys socket.h types.h References: <20020205002930.K22843-100000@gamplex.bde.org> In-Reply-To: <20020205002930.K22843-100000@gamplex.bde.org> ; from Bruce Evans "Tue, 05 Feb 2002 00:44:22 +1100." Date: Mon, 04 Feb 2002 16:16:02 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > So how does one write a (decent) macro to return a correct value > > for min(1u, -1)? > > One doesn't. One can write fairly indecent ones using Gnu C, but > FreeBSD currently uses min functions instead of the MIN macro in the > kernel. > > > howmany() is used so much in the kernel, and is defined in multiple > > places, so methinks it needs to be a function (inline?). It kicks > > out zillions of wanings when you try to lint it. > > The warnings are probably correct. They probably indicate that callers > are passing mismatched arg types. Your thoughts on turning howmany() into a function? > Perhaps more seriously, the change to the type of NBBY exposes an old > bug in ffs and causes kernel panics. See another thread. Please > back it out too, and consider doing the same for all the other type > changes. If that is a bug, then surely that is what needs fixing? M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 8:27:38 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id 6127837B43C; Mon, 4 Feb 2002 08:27:11 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g14GRAE51646; Mon, 4 Feb 2002 16:27:10 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id DD52837A; Mon, 4 Feb 2002 16:20:25 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g14GDRE56087; Mon, 4 Feb 2002 16:13:27 GMT (envelope-from mark@grondar.za) Message-Id: <200202041613.g14GDRE56087@greenpeace.grondar.org> To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: pam_ssh world breakage (was: Re: cvs commit: src/lib/libpam Makefile.inc) References: <20020204153032.C58535@sunbay.com> In-Reply-To: <20020204153032.C58535@sunbay.com> ; from Ruslan Ermilov "Mon, 04 Feb 2002 15:30:32 +0200." Date: Mon, 04 Feb 2002 16:13:22 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > This delta breaks buildworld. gcc(1) has a known bug-feature > of hiding some errors in standard system headers, making them > invisible without -I. Hmm. My last night's "make world" worked on 2 separate machines (my laptop, which is riddled with patches, and my main build box which is effectibely clean of local patch-pollutuion). > During buildworld, ${WORLDTMP}/usr/include is populated with > headers, and -I${WORLDTMP}/usr/include is added to CFLAGS, > and compile now can't survive the WARNS=4. > > Try this to see the breakage: > > cd /usr/src/lib/libpam/modules/pam_ssh > make cleandir > make DESTDIR=/ I see the error, and I'm confused about why it didn't fail during the "make world". I've committed a fix. Thanks for reporting this. > Please back it out. No. I _want_ the warnings. M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 8:30:56 2002 Delivered-To: cvs-all@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 1C50537B42B; Mon, 4 Feb 2002 08:30:18 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g14GTaT97467; Mon, 4 Feb 2002 18:29:36 +0200 (EET) (envelope-from ru) Date: Mon, 4 Feb 2002 18:29:36 +0200 From: Ruslan Ermilov To: Mark Murray Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: pam_ssh world breakage (was: Re: cvs commit: src/lib/libpam Makefile.inc) Message-ID: <20020204182936.B94159@sunbay.com> References: <20020204153032.C58535@sunbay.com> <200202041613.g14GDRE56087@greenpeace.grondar.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202041613.g14GDRE56087@greenpeace.grondar.org> User-Agent: Mutt/1.3.23i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Feb 04, 2002 at 04:13:22PM +0000, Mark Murray wrote: > > This delta breaks buildworld. gcc(1) has a known bug-feature > > of hiding some errors in standard system headers, making them > > invisible without -I. > > Hmm. My last night's "make world" worked on 2 separate machines > (my laptop, which is riddled with patches, and my main build box > which is effectibely clean of local patch-pollutuion). > > > During buildworld, ${WORLDTMP}/usr/include is populated with > > headers, and -I${WORLDTMP}/usr/include is added to CFLAGS, > > and compile now can't survive the WARNS=4. > > > > Try this to see the breakage: > > > > cd /usr/src/lib/libpam/modules/pam_ssh > > make cleandir > > make DESTDIR=/ > > I see the error, and I'm confused about why it didn't fail during > the "make world". I've committed a fix. Thanks for reporting this. > > > Please back it out. > > No. I _want_ the warnings. > OK, I saw you committed the right fix, thanks. Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 8:31:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BE9E37B432; Mon, 4 Feb 2002 08:31:39 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14GVdX02156; Mon, 4 Feb 2002 08:31:39 -0800 (PST) (envelope-from bmah) Message-Id: <200202041631.g14GVdX02156@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 4 Feb 2002 08:31:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/04 08:31:38 PST Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release note: Linux emulation needs SYSVSEM. Submitted by: archie Revision Changes Path 1.273 +4 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 8:35: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from muse.sanewo.dyn.to (p803d50.tokyjk17.ap.so-net.ne.jp [211.128.61.80]) by hub.freebsd.org (Postfix) with ESMTP id C602C37B41A; Mon, 4 Feb 2002 08:34:55 -0800 (PST) Received: from muse.sanewo.dyn.to (sanewo@localhost [127.0.0.1]) by muse.sanewo.dyn.to (8.11.6/8.11.6) with ESMTP id g14GSti07166; Tue, 5 Feb 2002 01:28:55 +0900 (JST) (envelope-from sanewo@muse.sanewo.dyn.to) Message-Id: <200202041628.g14GSti07166@muse.sanewo.dyn.to> To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_ssh pam_ssh.c References: <200201241726.g0OHQSN97700@freefall.freebsd.org> <200202041620.g14GK5R06184@muse.sanewo.dyn.to> Cc: Takanori Saneto From: Takanori Saneto In-Reply-To: <200202041620.g14GK5R06184@muse.sanewo.dyn.to> (Takanori Saneto's message of "Tue, 05 Feb 2002 01:20:05 +0900") MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII User-Agent: T-gnus/6.15.5 (based on Oort Gnus v0.05) (revision 01) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-4?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.5 (beta3) (asparagus) (i386-unknown-freebsd5.0) Date: Tue, 05 Feb 2002 01:28:55 +0900 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Oops, my previous patch was not correct. (the line saving the value of current environment was missing) Here's the correct one: >Instead of using putenv(), how about using temporaly environment >generated from pam's environment as in the following patch? Index: pam_ssh.c =================================================================== RCS file: /export/cvsup/cvs/src/lib/libpam/modules/pam_ssh/pam_ssh.c,v retrieving revision 1.24 diff -u -r1.24 pam_ssh.c --- pam_ssh.c 24 Jan 2002 18:37:16 -0000 1.24 +++ pam_ssh.c 4 Feb 2002 16:24:46 -0000 @@ -482,7 +482,16 @@ PAM_LOG("Environment saved"); /* connect to the agent */ + { + extern char **environ; + char **save, **evp; + save = environ; + environ = pam_getenvlist(pamh); ac = ssh_get_authentication_connection(); + for (evp = environ; *evp; evp++) (void)free(*evp); + (void)free(environ); + environ = save; + } if (!ac) { syslog(LOG_ERR, "%s: %s: %m", MODULE_NAME, agent_socket); PAM_RETURN(PAM_SESSION_ERR); -- sanewo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 8:40:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D24F37B425; Mon, 4 Feb 2002 08:40:20 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14GeKa03970; Mon, 4 Feb 2002 08:40:20 -0800 (PST) (envelope-from bmah) Message-Id: <200202041640.g14GeKa03970@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 4 Feb 2002 08:40:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/04 08:40:20 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml Log: New errata item: Linux emulation needs SYSVSEM. Submitted by: archie Revision Changes Path 1.1.2.47 +5 -1 src/release/doc/en_US.ISO8859-1/errata/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 8:41:39 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 5F96037B416; Mon, 4 Feb 2002 08:41:29 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id ECB885343; Mon, 4 Feb 2002 17:41:27 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Takanori Saneto Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_ssh pam_ssh.c References: <200201241726.g0OHQSN97700@freefall.freebsd.org> <200202041620.g14GK5R06184@muse.sanewo.dyn.to> From: Dag-Erling Smorgrav Date: 04 Feb 2002 17:41:27 +0100 In-Reply-To: <200202041620.g14GK5R06184@muse.sanewo.dyn.to> Message-ID: Lines: 15 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Takanori Saneto writes: > This commit seems to make xdm fail to communicate with ssh-agent. > > In pam_ssh.so, communication socket with ssh-agent is obtained by > ssh_get_authentication_connection, which requires specific information > (SSH_AGENT_xxx) should be in the process's environment. Ah, that's why that putenv() was there. I'd say libssh is broken; there should be a way to pass ssh-agent parameters explicitly to ssh_get_authentication_connection(), rather than through the environment. Your patch is a hack, but a good one. Thank you. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 8:42: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 82D6737B430; Mon, 4 Feb 2002 08:41:59 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14Gfxo04349; Mon, 4 Feb 2002 08:41:59 -0800 (PST) (envelope-from rwatson) Message-Id: <200202041641.g14Gfxo04349@freefall.freebsd.org> From: Robert Watson Date: Mon, 4 Feb 2002 08:41:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_acl.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/02/04 08:41:59 PST Modified files: sys/kern kern_acl.c Log: Note that Kirk apparently missed adding vn_start_write() and friends to kern_acl.c when he added snapshotting. This will need to be added at some point. Revision Changes Path 1.22 +3 -0 src/sys/kern/kern_acl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 8:42:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6DF8F37B41D; Mon, 4 Feb 2002 08:42:38 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14Ggcv04511; Mon, 4 Feb 2002 08:42:38 -0800 (PST) (envelope-from bmah) Message-Id: <200202041642.g14Ggcv04511@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 4 Feb 2002 08:42:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/4.5R errata.html X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/04 08:42:38 PST Modified files: en/releases/4.5R errata.html Log: Regen from errata/article.sgml rev. 1.1.2.47. Revision Changes Path 1.3 +5 -1 www/en/releases/4.5R/errata.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 8:43:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B6E8F37B431; Mon, 4 Feb 2002 08:42:44 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14Ggis04545; Mon, 4 Feb 2002 08:42:44 -0800 (PST) (envelope-from markm) Message-Id: <200202041642.g14Ggis04545@freefall.freebsd.org> From: Mark Murray Date: Mon, 4 Feb 2002 08:42:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys types.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/04 08:42:44 PST Modified files: sys/sys types.h Log: Back out the "upgrading" of NBBY to unsigned, as it exposes bugs elsewhere, and also is well understood as a signed quantity. Revision Changes Path 1.51 +1 -1 src/sys/sys/types.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 8:56:32 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id DB70E37B405; Mon, 4 Feb 2002 08:56:11 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id DAA25685; Tue, 5 Feb 2002 03:55:04 +1100 Date: Tue, 5 Feb 2002 03:57:27 +1100 (EST) From: Bruce Evans X-X-Sender: To: Mark Murray Cc: , Subject: Re: cvs commit: src/sys/sys socket.h types.h In-Reply-To: <200202041616.g14GG7E56111@greenpeace.grondar.org> Message-ID: <20020205034456.K23699-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 4 Feb 2002, Mark Murray wrote: > > > So how does one write a (decent) macro to return a correct value > > > for min(1u, -1)? > > The warnings are probably correct. They probably indicate that callers > > are passing mismatched arg types. > > Your thoughts on turning howmany() into a function? Negative. I gave the examples of the min() functions vs the MIN() macro to show why the macro is better. > > Perhaps more seriously, the change to the type of NBBY exposes an old > > bug in ffs and causes kernel panics. See another thread. Please > > back it out too, and consider doing the same for all the other type > > changes. > > If that is a bug, then surely that is what needs fixing? That and millions of other lines out there that may depend on the old behaviour. Anyway, I now think it is just wrong for NBBY to have an unsigned type. It is usually wrong for small counters to have an unsigned type just because they are nonnegative and represent counts. Unsigned types tend to cause sign extension problems and they always inhibit detection of overflow. NBBY is an old spelling of the standard CHAR_BIT. The type of CHAR_BIT is not specified in the standard, and is normally plain int. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 9: 6:42 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E6E237B435; Mon, 4 Feb 2002 09:06:31 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14H6VE11686; Mon, 4 Feb 2002 09:06:31 -0800 (PST) (envelope-from obrien) Message-Id: <200202041706.g14H6VE11686@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 4 Feb 2002 09:06:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/libbfd Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/04 09:06:30 PST Modified files: gnu/usr.bin/binutils/libbfd Makefile Log: I missed adding a file that was needed on the Alpha (and will be needed on x86_64 also. Submitted by: ru Revision Changes Path 1.17 +1 -1 src/gnu/usr.bin/binutils/libbfd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 9:15:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A58A37B428; Mon, 4 Feb 2002 09:15:44 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14HFib12755; Mon, 4 Feb 2002 09:15:44 -0800 (PST) (envelope-from des) Message-Id: <200202041715.g14HFib12755@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 4 Feb 2002 09:15:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_ssh pam_ssh.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/04 09:15:44 PST Modified files: lib/libpam/modules/pam_ssh pam_ssh.c Log: ssh_get_authentication_connection() gets its parameters from environment variables, so temporarily switch to the PAM environment before calling it. Submitted by: Takanori Saneto Revision Changes Path 1.25 +24 -2 src/lib/libpam/modules/pam_ssh/pam_ssh.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 9:17:23 2002 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 2217137B41D; Mon, 4 Feb 2002 09:17:18 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id g14HHH116203; Mon, 4 Feb 2002 09:17:17 -0800 (PST) (envelope-from obrien) Date: Mon, 4 Feb 2002 09:17:17 -0800 From: "David O'Brien" To: Ruslan Ermilov Cc: Mark Murray , current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: pam_ssh world breakage (was: Re: cvs commit: src/lib/libpam Makefile.inc) Message-ID: <20020204091717.A16149@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200202031551.g13Fpql76999@freefall.freebsd.org> <20020204153032.C58535@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020204153032.C58535@sunbay.com>; from ru@FreeBSD.org on Mon, Feb 04, 2002 at 03:30:32PM +0200 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Feb 04, 2002 at 03:30:32PM +0200, Ruslan Ermilov wrote: > This delta breaks buildworld. gcc(1) has a known bug-feature > of hiding some errors in standard system headers, making them > invisible without -I. ... > and compile now can't survive the WARNS=4. Not to mention there is ZERO way this code will pass WARNS=4 for GCC 3. Please Committers, do not try to WARNS code right now -- there just is no use. It will only get in the way later. Well, of course feel free to make the code changes, but PLEASE do not commit any stronger WARNS levels to Makefiles. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 9:29:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B885337B429; Mon, 4 Feb 2002 09:29:14 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14HTEY14628; Mon, 4 Feb 2002 09:29:14 -0800 (PST) (envelope-from wollman) Message-Id: <200202041729.g14HTEY14628@freefall.freebsd.org> From: Garrett Wollman Date: Mon, 4 Feb 2002 09:29:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/misc iso3166 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wollman 2002/02/04 09:29:14 PST Modified files: share/misc iso3166 Log: Update alpha-3 code for Romania. PR: 34608 Submitted by: Laurent Wacrenier Obtained from: ISO 3166/MA Newsletter V-3 MFC after: 1 day Revision Changes Path 1.8 +6 -3 src/share/misc/iso3166 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 9:35:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F6EC37B431; Mon, 4 Feb 2002 09:35:33 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14HZX015622; Mon, 4 Feb 2002 09:35:33 -0800 (PST) (envelope-from wollman) Message-Id: <200202041735.g14HZX015622@freefall.freebsd.org> From: Garrett Wollman Date: Mon, 4 Feb 2002 09:35:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/misc iso639 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wollman 2002/02/04 09:35:33 PST Modified files: share/misc iso639 Log: Two updates from ISO 639-2/RA Change Notice, dated 2001-08-13 and 2001-09-24. Obtained from: ISO 639-2/RA, MFC after: 1 day Revision Changes Path 1.4 +2 -1 src/share/misc/iso639 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 9:37:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 136BB37B420; Mon, 4 Feb 2002 09:37:07 -0800 (PST) Received: (from ume@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14Hb7815919; Mon, 4 Feb 2002 09:37:07 -0800 (PST) (envelope-from ume) Message-Id: <200202041737.g14Hb7815919@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Mon, 4 Feb 2002 09:37:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet tcp_subr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ume 2002/02/04 09:37:07 PST Modified files: sys/netinet tcp_subr.c Log: In tcp_respond(), correctly reset returned IPv6 header. This is essential when the original packet contains an IPv6 extension header. Obtained from: KAME MFC after: 1 week Revision Changes Path 1.119 +3 -0 src/sys/netinet/tcp_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 9:40:42 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A117D37B431; Mon, 4 Feb 2002 09:40:36 -0800 (PST) Received: (from ume@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14Heam16485; Mon, 4 Feb 2002 09:40:36 -0800 (PST) (envelope-from ume) Message-Id: <200202041740.g14Heam16485@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Mon, 4 Feb 2002 09:40:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet6 udp6_usrreq.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ume 2002/02/04 09:40:36 PST Modified files: sys/netinet6 udp6_usrreq.c Log: Corrected an argument to in6_pcbnotify(). Obtained from: KAME MFC after: 1 week Revision Changes Path 1.20 +3 -2 src/sys/netinet6/udp6_usrreq.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 9:47:38 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DFFA437B434; Mon, 4 Feb 2002 09:47:31 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14HlVl17301; Mon, 4 Feb 2002 09:47:31 -0800 (PST) (envelope-from knu) Message-Id: <200202041747.g14HlVl17301@freefall.freebsd.org> From: Akinori MUSHA Date: Mon, 4 Feb 2002 09:47:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/portupgrade Makefile distinfo pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/04 09:47:31 PST Modified files: sysutils/portupgrade Makefile distinfo pkg-descr pkg-plist Log: o Update to 20020205. The best release ever, I hope. :) pkg_deinstall(1), portupgrade(1): - Properly print the legend. pkg_glob(1), portsdb(1): - Do not print an empty line when the result list is empty. pkgdb(1): - Greatly improve the origin fixing procedure. Do the origin duplicateness check before checking dependencies and avoid redoing the origin check. - Show the user CVS history on the spot via the CVSweb. portcvsweb(1): - Allow specifying a no longer existent port file/directory. "portcvsweb net/ruby-uri" now works. - Change the default BROWSER value from 'lynx' to 'w3m:lynx:links:mozilla:netscape'. portupgrade(1): - Fix a bug where portupgrade tried to use a package with a different origin when the package name is identical to that of what it wants except for the version part. pkgdb(3): - Abolish the [You have no permission to update the pkgdb -- using a slow method] message. Instead, run 'pkgdb -u' via sudo(8) when under portupgrade -s, or stop the process immediately with a message that the user must run the command as root. pkgtools.conf(5): - Allow specifying unofficial ports' origin globs in HOLD_PKGS as well as package globs. overall/miscellaneous: - Change --no-config to --noconfig in order to get the -q option really working. Since --no-config was regarded a negative form of --config, it didn't work as expected. - Fix some bugs in the zsh compdefs and add missing descriptions for some options. o Use bzip2 instead of gzip for the distribution tarball to save 20KB. As the portupgrade user base is growing significantly, I'll get more serious about the download size issue from now on. The next few releases will be distributed in patches against this version. Revision Changes Path 1.116 +2 -3 ports/sysutils/portupgrade/Makefile 1.106 +1 -1 ports/sysutils/portupgrade/distinfo 1.18 +3 -3 ports/sysutils/portupgrade/pkg-descr 1.26 +1 -10 ports/sysutils/portupgrade/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 9:50: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CF2C537B428; Mon, 4 Feb 2002 09:50:01 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14Ho1v17877; Mon, 4 Feb 2002 09:50:01 -0800 (PST) (envelope-from bmah) Message-Id: <200202041750.g14Ho1v17877@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 4 Feb 2002 09:50:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/04 09:50:01 PST Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release notes: ngctl(8) write, ps(1) -W deorbit burn. MFCs noted: dumpdev loader tunable. Revision Changes Path 1.274 +9 -2 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 9:58: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D35E437B422; Mon, 4 Feb 2002 09:57:59 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14HvxD18947; Mon, 4 Feb 2002 09:57:59 -0800 (PST) (envelope-from bmah) Message-Id: <200202041757.g14HvxD18947@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 4 Feb 2002 09:57:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/04 09:57:59 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: dumpdev loader tunable, ngctl(8) write, ps(1) -W deorbit burn. Revision Changes Path 1.22.2.194 +13 -2 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 9:58:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BA2337B43D; Mon, 4 Feb 2002 09:58:15 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14HwFq18988; Mon, 4 Feb 2002 09:58:15 -0800 (PST) (envelope-from rwatson) Message-Id: <200202041758.g14HwFq18988@freefall.freebsd.org> From: Robert Watson Date: Mon, 4 Feb 2002 09:58:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_acl.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/02/04 09:58:15 PST Modified files: sys/kern kern_acl.c Log: o Scatter vn_start_write() and vn_finished_write() through ACL code so that it interacts properly with snapshotting. Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs Revision Changes Path 1.23 +10 -3 src/sys/kern/kern_acl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 9:59:29 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B1CD37B434; Mon, 4 Feb 2002 09:59:25 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14HxPU19172; Mon, 4 Feb 2002 09:59:25 -0800 (PST) (envelope-from markm) Message-Id: <200202041759.g14HxPU19172@freefall.freebsd.org> From: Mark Murray Date: Mon, 4 Feb 2002 09:59:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/libpam pam_get_pass.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/04 09:59:25 PST Modified files: lib/libpam/libpam pam_get_pass.c Log: Explicitly declare (gcc internal) functions. Submitted by: ru Revision Changes Path 1.4 +1 -0 src/lib/libpam/libpam/pam_get_pass.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 10: 2: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A5F137B426; Mon, 4 Feb 2002 10:02:04 -0800 (PST) Received: (from ume@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14I24K19682; Mon, 4 Feb 2002 10:02:04 -0800 (PST) (envelope-from ume) Message-Id: <200202041802.g14I24K19682@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Mon, 4 Feb 2002 10:02:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/ftpd extern.h ftpd.c logwtmp.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ume 2002/02/04 10:02:04 PST Modified files: (Branch: RELENG_4) libexec/ftpd extern.h ftpd.c logwtmp.c Log: MFC: Log wtmp according to an address family properly. libexec/ftpd/extern.h: 1.17 libexec/ftpd/ftpd.c: 1.95 libexec/ftpd/logwtmp.c: 1.10 Revision Changes Path 1.14.2.1 +5 -2 src/libexec/ftpd/extern.h 1.62.2.16 +3 -3 src/libexec/ftpd/ftpd.c 1.9.2.1 +10 -22 src/libexec/ftpd/logwtmp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 10: 9:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0376637B422; Mon, 4 Feb 2002 10:09:30 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14I9Tn24171; Mon, 4 Feb 2002 10:09:29 -0800 (PST) (envelope-from rwatson) Message-Id: <200202041809.g14I9Tn24171@freefall.freebsd.org> From: Robert Watson Date: Mon, 4 Feb 2002 10:09:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/pseudofs pseudofs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/02/04 10:09:29 PST Modified files: sys/fs/pseudofs pseudofs_vnops.c Log: Return EPERM instead of 0 in the un-implemented pseudofs_setattr(). Conceivably, it should even return EOPNOTSUPP. Revision Changes Path 1.22 +1 -2 src/sys/fs/pseudofs/pseudofs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 10:17: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id 1702E37B428; Mon, 4 Feb 2002 10:16:57 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id UAA15449; Mon, 4 Feb 2002 20:16:52 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from h47.227.dialup.iptcom.net (h47.227.dialup.iptcom.net [212.9.227.47]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id UAA67648; Mon, 4 Feb 2002 20:16:48 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Subject: Re: cvs commit: ports/www/jakarta-tomcat Makefile pkg-plist ports/www/jakarta-tomcat/files patch-aa patch-ab From: Maxim Sobolev To: Yoichi NAKAYAMA Cc: Ernst de Haan , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: References: <200202041338.g14DcQU20365@freefall.freebsd.org> <200202041422.g14EMBJ16492@zaphod.euronet.nl> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-cqUvbSKA0dw2n1/oQduY" Message-Id: <1012844704.253.1.camel@notebook> Mime-Version: 1.0 X-Mailer: Evolution/1.0.1 Date: 04 Feb 2002 20:16:58 +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-cqUvbSKA0dw2n1/oQduY Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2002-02-04 at 16:34, Yoichi NAKAYAMA wrote: > At Mon, 4 Feb 2002 15:22:10 +0100, > Ernst de Haan wrote: > > > pkg-plist should be fixed for these? > >=20 > > Quickly fixed this. I should use ${TMPPKGLIST} or so to make sure that = the=20 > > *exact* name of the RC script is used, I will look into this ASAP. For = now it=20 > > just assumes 020.jakarta-tomcat.sh... >=20 > Thanks for quick reply. But 020.jakaruta-tomcat.sh semms to be symlink, > so I think it would be better instead using @exec ln -sf ... and @unexec = rm -f ... > (Use test command before removing symlink might be more better.) For a several months now pkg_* tools correctly handle symlinks, both to a file and a directory, so that I think that there is no real need to @exec magick. -Maxim > Also, CTL_SCRIPT itself seems to be dropped from pkg-plist. > Please check plist for other missing files, since I just noticed those mi= ssing files > in plist but I've not checked in detail for other. >=20 > I think you should test for the port to pass the test described in "Testi= ng the port" > section in porters' handbook. It will help you to find missing files in p= list. >=20 > Best regards, > --=20 > Yoichi Nakayama >=20 >=20 --=-cqUvbSKA0dw2n1/oQduY Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQA8XsigoNu5t4iCBa8RAkffAJ9+kh/zed9ukYd9KGu8sKeq1G15bgCeNb0c GfAt2AbLFfohlDx0YHNThs8= =3EFK -----END PGP SIGNATURE----- --=-cqUvbSKA0dw2n1/oQduY-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 10:19:46 2002 Delivered-To: cvs-all@freebsd.org Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by hub.freebsd.org (Postfix) with ESMTP id B0BB337B42A; Mon, 4 Feb 2002 10:19:32 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 6863610DDF7; Mon, 4 Feb 2002 10:19:32 -0800 (PST) Date: Mon, 4 Feb 2002 10:19:32 -0800 From: Alfred Perlstein To: Robert Watson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/fs/pseudofs pseudofs_vnops.c Message-ID: <20020204101932.B12744@elvis.mu.org> References: <200202041809.g14I9Tn24171@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200202041809.g14I9Tn24171@freefall.freebsd.org>; from rwatson@FreeBSD.org on Mon, Feb 04, 2002 at 10:09:29AM -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Robert Watson [020204 10:09] wrote: > rwatson 2002/02/04 10:09:29 PST > > Modified files: > sys/fs/pseudofs pseudofs_vnops.c > Log: > Return EPERM instead of 0 in the un-implemented pseudofs_setattr(). > Conceivably, it should even return EOPNOTSUPP. The latter would be better. -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' Tax deductable donations for FreeBSD: http://www.freebsdfoundation.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 10:22:45 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2AE5D37B400; Mon, 4 Feb 2002 10:21:59 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14ILxw26011; Mon, 4 Feb 2002 10:21:59 -0800 (PST) (envelope-from rwatson) Message-Id: <200202041821.g14ILxw26011@freefall.freebsd.org> From: Robert Watson Date: Mon, 4 Feb 2002 10:21:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/pseudofs pseudofs_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/02/04 10:21:59 PST Modified files: sys/fs/pseudofs pseudofs_vnops.c Log: Change EPERM to EOPNOTSUPP when failing pseudofs_setattr() arbitrarily. Quoth the alfred: The latter would be better. Revision Changes Path 1.23 +2 -4 src/sys/fs/pseudofs/pseudofs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 10:24:59 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0DFC337B41F; Mon, 4 Feb 2002 10:24:21 -0800 (PST) Received: (from ume@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14IOLl26310; Mon, 4 Feb 2002 10:24:21 -0800 (PST) (envelope-from ume) Message-Id: <200202041824.g14IOLl26310@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Mon, 4 Feb 2002 10:24:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/namedb PROTO.localhost-v6.rev make-localhost named.conf X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ume 2002/02/04 10:24:21 PST Modified files: (Branch: RELENG_4) etc/namedb make-localhost named.conf Added files: (Branch: RELENG_4) etc/namedb PROTO.localhost-v6.rev Log: MFC: Do not taint ::/124 for localhost reverse table. etc/namedb/PROTO.localhost-v6.rev: 1.1 etc/namedb/make-localhost: 1.6 etc/namedb/named.conf: 1.12 Revision Changes Path 1.1.2.1 +17 -0 src/etc/namedb/PROTO.localhost-v6.rev (new) 1.4.2.2 +8 -1 src/etc/namedb/make-localhost 1.6.2.5 +3 -3 src/etc/namedb/named.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 10:30:59 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9244937B429; Mon, 4 Feb 2002 10:30:55 -0800 (PST) Received: (from ume@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14IUtt27315; Mon, 4 Feb 2002 10:30:55 -0800 (PST) (envelope-from ume) Message-Id: <200202041830.g14IUtt27315@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Mon, 4 Feb 2002 10:30:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net res_init.c res_send.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ume 2002/02/04 10:30:55 PST Modified files: (Branch: RELENG_4) lib/libc/net res_init.c res_send.c Log: MFC: - Make it possible to turn on RES_INSECURE[12] with /etc/resolv.conf. - Don't connect datagram socket if RES_INSECURE1. - Needed to implement IPv6 anycast UDP DNS queries as documented in . lib/libc/net/res_init.c: 1.26 lib/libc/net/res_send.c: 1.42 Revision Changes Path 1.19.2.7 +4 -0 src/lib/libc/net/res_init.c 1.31.2.8 +10 -2 src/lib/libc/net/res_send.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 10:31:51 2002 Delivered-To: cvs-all@freebsd.org Received: from espresso.q9media.com (espresso.q9media.com [216.254.138.122]) by hub.freebsd.org (Postfix) with ESMTP id 1BCAB37B425; Mon, 4 Feb 2002 10:31:43 -0800 (PST) Received: (from mike@localhost) by espresso.q9media.com (8.11.6/8.11.6) id g14IS0P58761; Mon, 4 Feb 2002 13:28:00 -0500 (EST) (envelope-from mike) Date: Mon, 4 Feb 2002 13:28:00 -0500 From: Mike Barcroft To: "David O'Brien" Cc: Ruslan Ermilov , Mark Murray , current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: pam_ssh world breakage (was: Re: cvs commit: src/lib/libpam Makefile.inc) Message-ID: <20020204132800.G6496@espresso.q9media.com> References: <200202031551.g13Fpql76999@freefall.freebsd.org> <20020204153032.C58535@sunbay.com> <20020204091717.A16149@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020204091717.A16149@dragon.nuxi.com>; from obrien@FreeBSD.org on Mon, Feb 04, 2002 at 09:17:17AM -0800 Organization: The FreeBSD Project Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG David O'Brien writes: > Not to mention there is ZERO way this code will pass WARNS=4 for GCC 3. > Please Committers, do not try to WARNS code right now -- there just is no > use. It will only get in the way later. > > Well, of course feel free to make the code changes, but PLEASE do not > commit any stronger WARNS levels to Makefiles. Alternatively, developers working on WARNS could use a newer GCC from the ports collection. Best regards, Mike Barcroft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 10:55:44 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id 5ACA737B428; Mon, 4 Feb 2002 10:55:19 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g14ItHJ53592; Mon, 4 Feb 2002 18:55:17 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id 3D5F3382; Mon, 4 Feb 2002 18:50:26 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g14HK9E56882; Mon, 4 Feb 2002 17:20:09 GMT (envelope-from mark@grondar.za) Message-Id: <200202041720.g14HK9E56882@greenpeace.grondar.org> To: Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys socket.h types.h References: <20020205034456.K23699-100000@gamplex.bde.org> In-Reply-To: <20020205034456.K23699-100000@gamplex.bde.org> ; from Bruce Evans "Tue, 05 Feb 2002 03:57:27 +1100." Date: Mon, 04 Feb 2002 17:20:04 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Mon, 4 Feb 2002, Mark Murray wrote: > > > > > So how does one write a (decent) macro to return a correct value > > > > for min(1u, -1)? > > > The warnings are probably correct. They probably indicate that callers > > > are passing mismatched arg types. > > > > Your thoughts on turning howmany() into a function? > > Negative. I gave the examples of the min() functions vs the MIN() macro > to show why the macro is better. Hehehe! I read that as a reason why the function is better, as it (seemed to?) allowed more sane type-correct handling. > > > Perhaps more seriously, the change to the type of NBBY exposes an old > > > bug in ffs and causes kernel panics. See another thread. Please > > > back it out too, and consider doing the same for all the other type > > > changes. > > > > If that is a bug, then surely that is what needs fixing? > > That and millions of other lines out there that may depend on the old > behaviour. A quick grep shows that that may just be a bit pessimistic :-). The kernel currently has 19 files containing NBBY. 7 of them are headers, and looking at them shows that fixing NBBY use in macros is close to trivial. > Anyway, I now think it is just wrong for NBBY to have an unsigned type. > It is usually wrong for small counters to have an unsigned type just > because they are nonnegative and represent counts. Unsigned types > tend to cause sign extension problems and they always inhibit detection > of overflow. NBBY is an old spelling of the standard CHAR_BIT. The > type of CHAR_BIT is not specified in the standard, and is normally > plain int. OK. NBBY is now back to signed. I'll look for other fixes for the lint whinings :-). M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 11:14:28 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E056937B405; Mon, 4 Feb 2002 11:12:53 -0800 (PST) Received: (from nectar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14JCrO38216; Mon, 4 Feb 2002 11:12:53 -0800 (PST) (envelope-from nectar) Message-Id: <200202041912.g14JCrO38216@freefall.freebsd.org> From: Jacques Vidrine Date: Mon, 4 Feb 2002 11:12:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/bind - Imported sources X-FreeBSD-CVS-Branch: ISC Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2002/02/04 11:12:53 PST src/contrib/bind - Imported sources Update of /home/ncvs/src/contrib/bind In directory freefall.freebsd.org:/d/home/nectar/bind-8.3.1 Log Message: Import of ISC BIND 8.3.1-REL. Status: Vendor Tag: ISC Release Tags: v8_3_1 N src/contrib/bind/.cvsignore U src/contrib/bind/CHANGES U src/contrib/bind/DNSSEC U src/contrib/bind/INSTALL U src/contrib/bind/LICENSE N src/contrib/bind/LICENSE_RSA U src/contrib/bind/Makefile U src/contrib/bind/README U src/contrib/bind/SUPPORT U src/contrib/bind/TODO U src/contrib/bind/Version N src/contrib/bind/OLD/BSD/Makefile N src/contrib/bind/OLD/BSD/Makefile.inc N src/contrib/bind/OLD/BSD/Makefile.maninc N src/contrib/bind/OLD/BSD/README N src/contrib/bind/OLD/BSD/Diffs/lib-libc-net N src/contrib/bind/OLD/BSD/dig/Makefile N src/contrib/bind/OLD/BSD/named/Makefile N src/contrib/bind/OLD/BSD/named-xfer/Makefile N src/contrib/bind/OLD/BSD/named.reload/Makefile N src/contrib/bind/OLD/BSD/named.restart/Makefile N src/contrib/bind/OLD/BSD/ndc/Makefile N src/contrib/bind/OLD/BSD/nslookup/Makefile N src/contrib/bind/OLD/bin/bsdinstall.sh N src/contrib/bind/OLD/bin/manroff N src/contrib/bind/OLD/bin/mkdep U src/contrib/bind/bin/Makefile N src/contrib/bind/bin/addr/.cvsignore U src/contrib/bind/bin/addr/Makefile U src/contrib/bind/bin/addr/addr.c N src/contrib/bind/bin/dig/.cvsignore U src/contrib/bind/bin/dig/Makefile U src/contrib/bind/bin/dig/dig.c N src/contrib/bind/bin/dnskeygen/.cvsignore U src/contrib/bind/bin/dnskeygen/Makefile U src/contrib/bind/bin/dnskeygen/dnskeygen.c N src/contrib/bind/bin/dnsquery/.cvsignore U src/contrib/bind/bin/dnsquery/Makefile U src/contrib/bind/bin/dnsquery/dnsquery.c N src/contrib/bind/bin/host/.cvsignore U src/contrib/bind/bin/host/Makefile U src/contrib/bind/bin/host/host.c N src/contrib/bind/bin/irpd/.cvsignore U src/contrib/bind/bin/irpd/Makefile U src/contrib/bind/bin/irpd/irpd.c U src/contrib/bind/bin/irpd/irs-irpd.conf U src/contrib/bind/bin/irpd/version.c I src/contrib/bind/bin/mkservdb/.cvsignore U src/contrib/bind/bin/mkservdb/Makefile U src/contrib/bind/bin/mkservdb/mkservdb.c N src/contrib/bind/bin/named/.cvsignore U src/contrib/bind/bin/named/Makefile U src/contrib/bind/bin/named/db_defs.h U src/contrib/bind/bin/named/db_dump.c U src/contrib/bind/bin/named/db_func.h U src/contrib/bind/bin/named/db_glob.h U src/contrib/bind/bin/named/db_glue.c U src/contrib/bind/bin/named/db_ixfr.c U src/contrib/bind/bin/named/db_load.c U src/contrib/bind/bin/named/db_lookup.c U src/contrib/bind/bin/named/db_save.c U src/contrib/bind/bin/named/db_sec.c U src/contrib/bind/bin/named/db_tsig.c U src/contrib/bind/bin/named/db_update.c U src/contrib/bind/bin/named/named.conf U src/contrib/bind/bin/named/named.h U src/contrib/bind/bin/named/ns_config.c U src/contrib/bind/bin/named/ns_ctl.c U src/contrib/bind/bin/named/ns_defs.h U src/contrib/bind/bin/named/ns_forw.c U src/contrib/bind/bin/named/ns_func.h U src/contrib/bind/bin/named/ns_glob.h U src/contrib/bind/bin/named/ns_glue.c U src/contrib/bind/bin/named/ns_init.c U src/contrib/bind/bin/named/ns_ixfr.c U src/contrib/bind/bin/named/ns_lexer.c U src/contrib/bind/bin/named/ns_lexer.h U src/contrib/bind/bin/named/ns_main.c U src/contrib/bind/bin/named/ns_maint.c U src/contrib/bind/bin/named/ns_ncache.c U src/contrib/bind/bin/named/ns_notify.c U src/contrib/bind/bin/named/ns_parser.y U src/contrib/bind/bin/named/ns_parseutil.c U src/contrib/bind/bin/named/ns_parseutil.h U src/contrib/bind/bin/named/ns_req.c U src/contrib/bind/bin/named/ns_resp.c U src/contrib/bind/bin/named/ns_signal.c U src/contrib/bind/bin/named/ns_sort.c U src/contrib/bind/bin/named/ns_stats.c U src/contrib/bind/bin/named/ns_udp.c U src/contrib/bind/bin/named/ns_update.c U src/contrib/bind/bin/named/ns_xfr.c U src/contrib/bind/bin/named/pathtemplate.h U src/contrib/bind/bin/named/version.c I src/contrib/bind/bin/named/ns_parser.c I src/contrib/bind/bin/named/ns_parser.h U src/contrib/bind/bin/named/test/127.0.0.zone U src/contrib/bind/bin/named/test/localhost.zone U src/contrib/bind/bin/named/test/named.conf U src/contrib/bind/bin/named/test/root.hint N src/contrib/bind/bin/named-bootconf/.cvsignore U src/contrib/bind/bin/named-bootconf/Makefile U src/contrib/bind/bin/named-bootconf/named-bootconf.sh N src/contrib/bind/bin/named-bootconf/test.boot U src/contrib/bind/bin/named-bootconf/Grot/named-bootconf.pl N src/contrib/bind/bin/named-xfer/.cvsignore U src/contrib/bind/bin/named-xfer/Makefile C src/contrib/bind/bin/named-xfer/named-xfer.c N src/contrib/bind/bin/ndc/.cvsignore U src/contrib/bind/bin/ndc/Makefile U src/contrib/bind/bin/ndc/ndc.c I src/contrib/bind/bin/nslookup/commands.c N src/contrib/bind/bin/nslookup/.cvsignore U src/contrib/bind/bin/nslookup/Makefile U src/contrib/bind/bin/nslookup/commands.l C src/contrib/bind/bin/nslookup/debug.c C src/contrib/bind/bin/nslookup/getinfo.c U src/contrib/bind/bin/nslookup/list.c C src/contrib/bind/bin/nslookup/main.c U src/contrib/bind/bin/nslookup/nslookup.help U src/contrib/bind/bin/nslookup/pathnames.h U src/contrib/bind/bin/nslookup/res.h U src/contrib/bind/bin/nslookup/send.c U src/contrib/bind/bin/nslookup/skip.c U src/contrib/bind/bin/nslookup/subr.c N src/contrib/bind/bin/nsupdate/.cvsignore U src/contrib/bind/bin/nsupdate/Makefile U src/contrib/bind/bin/nsupdate/nsupdate.c N src/contrib/bind/conf/README N src/contrib/bind/conf/recursive/keep-running N src/contrib/bind/conf/recursive/named-res1.conf N src/contrib/bind/conf/recursive/named.conf.rfc1918-stubs N src/contrib/bind/conf/recursive/root.cache N src/contrib/bind/conf/recursive/pri/127.0.0 N src/contrib/bind/conf/recursive/pri/localhost N src/contrib/bind/conf/workstation/named.conf N src/contrib/bind/conf/workstation/root.cache N src/contrib/bind/conf/workstation/pri/127.0.0 N src/contrib/bind/conf/workstation/pri/localhost N src/contrib/bind/conf/workstation/stub/README U src/contrib/bind/include/Makefile U src/contrib/bind/include/fd_setsize.h U src/contrib/bind/include/hesiod.h U src/contrib/bind/include/irp.h U src/contrib/bind/include/irs.h U src/contrib/bind/include/netdb.h N src/contrib/bind/include/netgroup.h U src/contrib/bind/include/res_update.h U src/contrib/bind/include/resolv.h U src/contrib/bind/include/arpa/Makefile U src/contrib/bind/include/arpa/inet.h U src/contrib/bind/include/arpa/nameser.h U src/contrib/bind/include/arpa/nameser_compat.h U src/contrib/bind/include/isc/Makefile U src/contrib/bind/include/isc/assertions.h U src/contrib/bind/include/isc/ctl.h U src/contrib/bind/include/isc/dst.h U src/contrib/bind/include/isc/eventlib.h U src/contrib/bind/include/isc/heap.h U src/contrib/bind/include/isc/irpmarshall.h U src/contrib/bind/include/isc/list.h U src/contrib/bind/include/isc/logging.h U src/contrib/bind/include/isc/memcluster.h U src/contrib/bind/include/isc/misc.h U src/contrib/bind/include/isc/tree.h N src/contrib/bind/lib/.cvsignore U src/contrib/bind/lib/Makefile N src/contrib/bind/lib/bsd/.cvsignore N src/contrib/bind/lib/bsd/Makefile N src/contrib/bind/lib/bsd/daemon.c N src/contrib/bind/lib/bsd/ftruncate.c N src/contrib/bind/lib/bsd/gettimeofday.c N src/contrib/bind/lib/bsd/mktemp.c N src/contrib/bind/lib/bsd/putenv.c N src/contrib/bind/lib/bsd/readv.c N src/contrib/bind/lib/bsd/setenv.c N src/contrib/bind/lib/bsd/setitimer.c N src/contrib/bind/lib/bsd/strcasecmp.c N src/contrib/bind/lib/bsd/strdup.c N src/contrib/bind/lib/bsd/strerror.c N src/contrib/bind/lib/bsd/strpbrk.c N src/contrib/bind/lib/bsd/strsep.c N src/contrib/bind/lib/bsd/strtoul.c N src/contrib/bind/lib/bsd/utimes.c N src/contrib/bind/lib/bsd/writev.c N src/contrib/bind/lib/dst/.cvsignore U src/contrib/bind/lib/dst/Makefile U src/contrib/bind/lib/dst/README U src/contrib/bind/lib/dst/bsafe_link.c U src/contrib/bind/lib/dst/cylink_link.c U src/contrib/bind/lib/dst/dst_api.c U src/contrib/bind/lib/dst/dst_internal.h U src/contrib/bind/lib/dst/eay_dss_link.c U src/contrib/bind/lib/dst/hmac_link.c U src/contrib/bind/lib/dst/md5.h U src/contrib/bind/lib/dst/md5_dgst.c U src/contrib/bind/lib/dst/md5_locl.h U src/contrib/bind/lib/dst/prandom.c U src/contrib/bind/lib/dst/rsaref_link.c U src/contrib/bind/lib/dst/support.c N src/contrib/bind/lib/cylink/.cvsignore N src/contrib/bind/lib/cylink/Makefile N src/contrib/bind/lib/cylink/bits.c N src/contrib/bind/lib/cylink/bn.c N src/contrib/bind/lib/cylink/bn.h N src/contrib/bind/lib/cylink/bn00.c N src/contrib/bind/lib/cylink/bn16.c N src/contrib/bind/lib/cylink/bn16.h N src/contrib/bind/lib/cylink/bn32.c N src/contrib/bind/lib/cylink/bn32.h N src/contrib/bind/lib/cylink/bn68000.c N src/contrib/bind/lib/cylink/bn8086.c N src/contrib/bind/lib/cylink/bninit16.c N src/contrib/bind/lib/cylink/bninit32.c N src/contrib/bind/lib/cylink/bnsize00.h N src/contrib/bind/lib/cylink/c_asm.h N src/contrib/bind/lib/cylink/cencrint.h N src/contrib/bind/lib/cylink/ctk_endian.h N src/contrib/bind/lib/cylink/ctk_prime.c N src/contrib/bind/lib/cylink/cylink.h N src/contrib/bind/lib/cylink/dss.c N src/contrib/bind/lib/cylink/dssnum.h N src/contrib/bind/lib/cylink/kludge.h N src/contrib/bind/lib/cylink/lbn.h N src/contrib/bind/lib/cylink/lbn00.c N src/contrib/bind/lib/cylink/lbn16.c N src/contrib/bind/lib/cylink/lbn16.h N src/contrib/bind/lib/cylink/lbn32.c N src/contrib/bind/lib/cylink/lbn32.h N src/contrib/bind/lib/cylink/lbn68000.c N src/contrib/bind/lib/cylink/lbn68000.h N src/contrib/bind/lib/cylink/lbn68020.c N src/contrib/bind/lib/cylink/lbn68020.h N src/contrib/bind/lib/cylink/lbn80386.h N src/contrib/bind/lib/cylink/lbn8086.h N src/contrib/bind/lib/cylink/lbnmem.c N src/contrib/bind/lib/cylink/lbnmem.h N src/contrib/bind/lib/cylink/lbnppc.c N src/contrib/bind/lib/cylink/lbnppc.h N src/contrib/bind/lib/cylink/legal.c N src/contrib/bind/lib/cylink/legal.h N src/contrib/bind/lib/cylink/math.c N src/contrib/bind/lib/cylink/ppcasm.h N src/contrib/bind/lib/cylink/rand.c N src/contrib/bind/lib/cylink/sha.c N src/contrib/bind/lib/cylink/sha.h N src/contrib/bind/lib/cylink/sizetest.c N src/contrib/bind/lib/cylink/swap.c N src/contrib/bind/lib/cylink/toolkit.h N src/contrib/bind/lib/dnssafe/.cvsignore N src/contrib/bind/lib/dnssafe/Makefile N src/contrib/bind/lib/dnssafe/ahcbcpad.c N src/contrib/bind/lib/dnssafe/ahcbcpad.h N src/contrib/bind/lib/dnssafe/ahchdig.c N src/contrib/bind/lib/dnssafe/ahchdig.h N src/contrib/bind/lib/dnssafe/ahchencr.c N src/contrib/bind/lib/dnssafe/ahchencr.h N src/contrib/bind/lib/dnssafe/ahchgen.c N src/contrib/bind/lib/dnssafe/ahchgen.h N src/contrib/bind/lib/dnssafe/ahchrand.c N src/contrib/bind/lib/dnssafe/ahchrand.h N src/contrib/bind/lib/dnssafe/ahdigest.c N src/contrib/bind/lib/dnssafe/ahdigest.h N src/contrib/bind/lib/dnssafe/ahencryp.c N src/contrib/bind/lib/dnssafe/ahencryp.h N src/contrib/bind/lib/dnssafe/ahgen.c N src/contrib/bind/lib/dnssafe/ahgen.h N src/contrib/bind/lib/dnssafe/ahrandom.c N src/contrib/bind/lib/dnssafe/ahrandom.h N src/contrib/bind/lib/dnssafe/ahrsaenc.c N src/contrib/bind/lib/dnssafe/ahrsaenc.h N src/contrib/bind/lib/dnssafe/ahrsaepr.c N src/contrib/bind/lib/dnssafe/ahrsaepr.h N src/contrib/bind/lib/dnssafe/aimd5.c N src/contrib/bind/lib/dnssafe/ahrsaepu.c N src/contrib/bind/lib/dnssafe/ahrsaepu.h N src/contrib/bind/lib/dnssafe/aichdig.c N src/contrib/bind/lib/dnssafe/aichdig.h N src/contrib/bind/lib/dnssafe/aichenc8.c N src/contrib/bind/lib/dnssafe/aichenc8.h N src/contrib/bind/lib/dnssafe/aichencn.c N src/contrib/bind/lib/dnssafe/aichencn.h N src/contrib/bind/lib/dnssafe/aichencr.c N src/contrib/bind/lib/dnssafe/aichencr.h N src/contrib/bind/lib/dnssafe/aichgen.c N src/contrib/bind/lib/dnssafe/aichgen.h N src/contrib/bind/lib/dnssafe/aichrand.c N src/contrib/bind/lib/dnssafe/aichrand.h N src/contrib/bind/lib/dnssafe/aimd5ran.c N src/contrib/bind/lib/dnssafe/ainfotyp.c N src/contrib/bind/lib/dnssafe/ainfotyp.h N src/contrib/bind/lib/dnssafe/ainull.c N src/contrib/bind/lib/dnssafe/ainull.h N src/contrib/bind/lib/dnssafe/airsaepr.c N src/contrib/bind/lib/dnssafe/airsaepu.c N src/contrib/bind/lib/dnssafe/airsakgn.c N src/contrib/bind/lib/dnssafe/airsaprv.c N src/contrib/bind/lib/dnssafe/algae.h N src/contrib/bind/lib/dnssafe/airsapub.c N src/contrib/bind/lib/dnssafe/amgen.h N src/contrib/bind/lib/dnssafe/algchoic.c N src/contrib/bind/lib/dnssafe/algchoic.h N src/contrib/bind/lib/dnssafe/algobj.c N src/contrib/bind/lib/dnssafe/algobj.h N src/contrib/bind/lib/dnssafe/amcrte.c N src/contrib/bind/lib/dnssafe/amdigest.h N src/contrib/bind/lib/dnssafe/amencdec.h N src/contrib/bind/lib/dnssafe/ammd5.c N src/contrib/bind/lib/dnssafe/ammd5r.c N src/contrib/bind/lib/dnssafe/amrandom.h N src/contrib/bind/lib/dnssafe/amrkg.c N src/contrib/bind/lib/dnssafe/amrsae.c N src/contrib/bind/lib/dnssafe/atypes.h N src/contrib/bind/lib/dnssafe/balg.c N src/contrib/bind/lib/dnssafe/balg.h N src/contrib/bind/lib/dnssafe/balgmeth.h N src/contrib/bind/lib/dnssafe/bgclrbit.c N src/contrib/bind/lib/dnssafe/bgmdmpyx.c N src/contrib/bind/lib/dnssafe/bgmdsqx.c N src/contrib/bind/lib/dnssafe/bgmodexp.c N src/contrib/bind/lib/dnssafe/bgpegcd.c N src/contrib/bind/lib/dnssafe/big2exp.c N src/contrib/bind/lib/dnssafe/bigabs.c N src/contrib/bind/lib/dnssafe/bigacc.c N src/contrib/bind/lib/dnssafe/bigarith.c N src/contrib/bind/lib/dnssafe/bigcmp.c N src/contrib/bind/lib/dnssafe/bigconst.c N src/contrib/bind/lib/dnssafe/biginv.c N src/contrib/bind/lib/dnssafe/biglen.c N src/contrib/bind/lib/dnssafe/bigmath.h N src/contrib/bind/lib/dnssafe/bigmaxes.h N src/contrib/bind/lib/dnssafe/bigmodx.c N src/contrib/bind/lib/dnssafe/bigmpy.c N src/contrib/bind/lib/dnssafe/bigpdiv.c N src/contrib/bind/lib/dnssafe/bigpmpy.c N src/contrib/bind/lib/dnssafe/bigpmpyh.c N src/contrib/bind/lib/dnssafe/bigpmpyl.c N src/contrib/bind/lib/dnssafe/bigpsq.c N src/contrib/bind/lib/dnssafe/bigqrx.c N src/contrib/bind/lib/dnssafe/bigsmod.c N src/contrib/bind/lib/dnssafe/bigtocan.c N src/contrib/bind/lib/dnssafe/bigu.c N src/contrib/bind/lib/dnssafe/bigunexp.c N src/contrib/bind/lib/dnssafe/binfocsh.c N src/contrib/bind/lib/dnssafe/binfocsh.h N src/contrib/bind/lib/dnssafe/bkey.c N src/contrib/bind/lib/dnssafe/bkey.h N src/contrib/bind/lib/dnssafe/bmempool.c N src/contrib/bind/lib/dnssafe/bmempool.h N src/contrib/bind/lib/dnssafe/bsafe2.h N src/contrib/bind/lib/dnssafe/btypechk.h N src/contrib/bind/lib/dnssafe/cantobig.c N src/contrib/bind/lib/dnssafe/crt2.c N src/contrib/bind/lib/dnssafe/crt2.h N src/contrib/bind/lib/dnssafe/digest.c N src/contrib/bind/lib/dnssafe/digrand.c N src/contrib/bind/lib/dnssafe/digrand.h N src/contrib/bind/lib/dnssafe/encrypt.c N src/contrib/bind/lib/dnssafe/generate.c N src/contrib/bind/lib/dnssafe/global.h N src/contrib/bind/lib/dnssafe/intbits.c N src/contrib/bind/lib/dnssafe/intitem.c N src/contrib/bind/lib/dnssafe/intitem.h N src/contrib/bind/lib/dnssafe/keyobj.c N src/contrib/bind/lib/dnssafe/keyobj.h N src/contrib/bind/lib/dnssafe/ki8byte.c N src/contrib/bind/lib/dnssafe/ki8byte.h N src/contrib/bind/lib/dnssafe/kifulprv.c N src/contrib/bind/lib/dnssafe/kifulprv.h N src/contrib/bind/lib/dnssafe/kiitem.c N src/contrib/bind/lib/dnssafe/kiitem.h N src/contrib/bind/lib/dnssafe/kinfotyp.c N src/contrib/bind/lib/dnssafe/kinfotyp.h N src/contrib/bind/lib/dnssafe/kipkcrpr.c N src/contrib/bind/lib/dnssafe/kipkcrpr.h N src/contrib/bind/lib/dnssafe/kirsacrt.c N src/contrib/bind/lib/dnssafe/kirsapub.c N src/contrib/bind/lib/dnssafe/kirsapub.h N src/contrib/bind/lib/dnssafe/md5.c N src/contrib/bind/lib/dnssafe/md5.h N src/contrib/bind/lib/dnssafe/md5rand.c N src/contrib/bind/lib/dnssafe/md5rand.h N src/contrib/bind/lib/dnssafe/prime.c N src/contrib/bind/lib/dnssafe/prime.h N src/contrib/bind/lib/dnssafe/random.c N src/contrib/bind/lib/dnssafe/rsa.c N src/contrib/bind/lib/dnssafe/rsa.h N src/contrib/bind/lib/dnssafe/rsakeygn.c N src/contrib/bind/lib/dnssafe/rsakeygn.h N src/contrib/bind/lib/dnssafe/seccbcd.c N src/contrib/bind/lib/dnssafe/seccbce.c N src/contrib/bind/lib/dnssafe/secrcbc.h N src/contrib/bind/lib/dnssafe/surrendr.c N src/contrib/bind/lib/dnssafe/surrendr.h N src/contrib/bind/lib/inet/.cvsignore U src/contrib/bind/lib/inet/Makefile U src/contrib/bind/lib/inet/inet_addr.c U src/contrib/bind/lib/inet/inet_cidr_ntop.c U src/contrib/bind/lib/inet/inet_cidr_pton.c N src/contrib/bind/lib/inet/inet_data.c U src/contrib/bind/lib/inet/inet_lnaof.c U src/contrib/bind/lib/inet/inet_makeaddr.c U src/contrib/bind/lib/inet/inet_net_ntop.c U src/contrib/bind/lib/inet/inet_net_pton.c U src/contrib/bind/lib/inet/inet_neta.c U src/contrib/bind/lib/inet/inet_netof.c U src/contrib/bind/lib/inet/inet_network.c U src/contrib/bind/lib/inet/inet_ntoa.c U src/contrib/bind/lib/inet/inet_ntop.c U src/contrib/bind/lib/inet/inet_pton.c U src/contrib/bind/lib/inet/nsap_addr.c N src/contrib/bind/lib/irs/.cvsignore U src/contrib/bind/lib/irs/Makefile U src/contrib/bind/lib/irs/Makefile.BSD U src/contrib/bind/lib/irs/README U src/contrib/bind/lib/irs/dns.c U src/contrib/bind/lib/irs/dns_gr.c U src/contrib/bind/lib/irs/dns_ho.c U src/contrib/bind/lib/irs/dns_nw.c U src/contrib/bind/lib/irs/dns_p.h U src/contrib/bind/lib/irs/dns_pr.c U src/contrib/bind/lib/irs/dns_pw.c U src/contrib/bind/lib/irs/dns_sv.c U src/contrib/bind/lib/irs/gai_strerror.c U src/contrib/bind/lib/irs/gen.c U src/contrib/bind/lib/irs/gen_gr.c U src/contrib/bind/lib/irs/gen_ho.c U src/contrib/bind/lib/irs/gen_ng.c U src/contrib/bind/lib/irs/gen_nw.c U src/contrib/bind/lib/irs/gen_p.h U src/contrib/bind/lib/irs/gen_pr.c U src/contrib/bind/lib/irs/gen_pw.c U src/contrib/bind/lib/irs/gen_sv.c U src/contrib/bind/lib/irs/getaddrinfo.c U src/contrib/bind/lib/irs/getgrent.c U src/contrib/bind/lib/irs/irp.c U src/contrib/bind/lib/irs/getgrent_r.c U src/contrib/bind/lib/irs/gethostent.c U src/contrib/bind/lib/irs/gethostent_r.c U src/contrib/bind/lib/irs/getnameinfo.c U src/contrib/bind/lib/irs/getnetent.c U src/contrib/bind/lib/irs/getnetent_r.c U src/contrib/bind/lib/irs/getnetgrent.c U src/contrib/bind/lib/irs/getnetgrent_r.c U src/contrib/bind/lib/irs/getprotoent.c U src/contrib/bind/lib/irs/getprotoent_r.c U src/contrib/bind/lib/irs/getpwent.c U src/contrib/bind/lib/irs/getpwent_r.c U src/contrib/bind/lib/irs/getservent.c U src/contrib/bind/lib/irs/getservent_r.c U src/contrib/bind/lib/irs/hesiod.c U src/contrib/bind/lib/irs/hesiod_p.h U src/contrib/bind/lib/irs/irp_gr.c U src/contrib/bind/lib/irs/irp_ho.c U src/contrib/bind/lib/irs/irp_ng.c U src/contrib/bind/lib/irs/irp_nw.c U src/contrib/bind/lib/irs/irp_p.h U src/contrib/bind/lib/irs/irp_pr.c U src/contrib/bind/lib/irs/irp_pw.c U src/contrib/bind/lib/irs/irp_sv.c U src/contrib/bind/lib/irs/irpmarshall.c U src/contrib/bind/lib/irs/irs_data.c U src/contrib/bind/lib/irs/irs_data.h U src/contrib/bind/lib/irs/irs_p.h U src/contrib/bind/lib/irs/lcl.c U src/contrib/bind/lib/irs/lcl_gr.c U src/contrib/bind/lib/irs/lcl_ho.c U src/contrib/bind/lib/irs/lcl_ng.c U src/contrib/bind/lib/irs/lcl_nw.c U src/contrib/bind/lib/irs/lcl_p.h U src/contrib/bind/lib/irs/lcl_pr.c U src/contrib/bind/lib/irs/lcl_pw.c U src/contrib/bind/lib/irs/lcl_sv.c U src/contrib/bind/lib/irs/nis.c U src/contrib/bind/lib/irs/nis_gr.c U src/contrib/bind/lib/irs/nis_ho.c U src/contrib/bind/lib/irs/nis_ng.c U src/contrib/bind/lib/irs/nis_nw.c U src/contrib/bind/lib/irs/nis_p.h U src/contrib/bind/lib/irs/nis_pr.c U src/contrib/bind/lib/irs/nis_pw.c U src/contrib/bind/lib/irs/nis_sv.c U src/contrib/bind/lib/irs/nul_ng.c U src/contrib/bind/lib/irs/pathnames.h U src/contrib/bind/lib/irs/util.c N src/contrib/bind/lib/isc/.cvsignore U src/contrib/bind/lib/isc/Makefile U src/contrib/bind/lib/isc/assertions.c U src/contrib/bind/lib/isc/assertions.mdoc U src/contrib/bind/lib/isc/base64.c U src/contrib/bind/lib/isc/bitncmp.c U src/contrib/bind/lib/isc/bitncmp.mdoc U src/contrib/bind/lib/isc/ctl_clnt.c U src/contrib/bind/lib/isc/ctl_p.c U src/contrib/bind/lib/isc/ctl_p.h U src/contrib/bind/lib/isc/ctl_srvr.c U src/contrib/bind/lib/isc/ev_connects.c U src/contrib/bind/lib/isc/ev_files.c U src/contrib/bind/lib/isc/ev_streams.c U src/contrib/bind/lib/isc/ev_timers.c U src/contrib/bind/lib/isc/ev_waits.c U src/contrib/bind/lib/isc/eventlib.c U src/contrib/bind/lib/isc/eventlib.mdoc U src/contrib/bind/lib/isc/eventlib_p.h U src/contrib/bind/lib/isc/heap.c U src/contrib/bind/lib/isc/heap.mdoc N src/contrib/bind/lib/isc/hex.c U src/contrib/bind/lib/isc/logging.c U src/contrib/bind/lib/isc/tree.c U src/contrib/bind/lib/isc/logging.mdoc U src/contrib/bind/lib/isc/logging_p.h U src/contrib/bind/lib/isc/memcluster.c U src/contrib/bind/lib/isc/memcluster.mdoc U src/contrib/bind/lib/isc/movefile.c U src/contrib/bind/lib/isc/tree.mdoc N src/contrib/bind/lib/nameser/.cvsignore U src/contrib/bind/lib/nameser/Makefile U src/contrib/bind/lib/nameser/ns_date.c U src/contrib/bind/lib/nameser/ns_name.c U src/contrib/bind/lib/nameser/ns_netint.c U src/contrib/bind/lib/nameser/ns_parse.c U src/contrib/bind/lib/nameser/ns_print.c U src/contrib/bind/lib/nameser/ns_samedomain.c U src/contrib/bind/lib/nameser/ns_sign.c U src/contrib/bind/lib/nameser/ns_ttl.c U src/contrib/bind/lib/nameser/ns_verify.c N src/contrib/bind/lib/resolv/.cvsignore U src/contrib/bind/lib/resolv/Makefile U src/contrib/bind/lib/resolv/herror.c U src/contrib/bind/lib/resolv/res_comp.c U src/contrib/bind/lib/resolv/res_data.c U src/contrib/bind/lib/resolv/res_debug.c U src/contrib/bind/lib/resolv/res_debug.h U src/contrib/bind/lib/resolv/res_findzonecut.c U src/contrib/bind/lib/resolv/res_init.c U src/contrib/bind/lib/resolv/res_mkquery.c U src/contrib/bind/lib/resolv/res_mkupdate.c U src/contrib/bind/lib/resolv/res_mkupdate.h N src/contrib/bind/lib/resolv/res_private.h U src/contrib/bind/lib/resolv/res_query.c U src/contrib/bind/lib/resolv/res_send.c U src/contrib/bind/lib/resolv/res_sendsigned.c U src/contrib/bind/lib/resolv/res_update.c U src/contrib/bind/port/Makefile U src/contrib/bind/port/README U src/contrib/bind/port/settings U src/contrib/bind/port/systype N src/contrib/bind/port/aix32/Makefile N src/contrib/bind/port/aix32/Makefile.set N src/contrib/bind/port/aix32/README N src/contrib/bind/port/aix32/noop.c N src/contrib/bind/port/aix32/probe N src/contrib/bind/port/aix32/bin/mkdep N src/contrib/bind/port/aix32/include/Makefile N src/contrib/bind/port/aix32/include/paths.h N src/contrib/bind/port/aix32/include/port_after.h N src/contrib/bind/port/aix32/include/port_before.h N src/contrib/bind/port/aix32/include/prand_conf.h N src/contrib/bind/port/aix32/include/sys/Makefile N src/contrib/bind/port/aix32/include/sys/bitypes.h N src/contrib/bind/port/aix32/include/sys/cdefs.h N src/contrib/bind/port/aix4/Makefile N src/contrib/bind/port/aix4/Makefile.set N src/contrib/bind/port/aix4/Makefile.set.aix N src/contrib/bind/port/aix4/Makefile.set.gcc N src/contrib/bind/port/aix4/noop.c N src/contrib/bind/port/aix4/probe N src/contrib/bind/port/aix4/bin/make_os_version N src/contrib/bind/port/aix4/bin/mkdep N src/contrib/bind/port/aix4/include/Makefile N src/contrib/bind/port/aix4/include/paths.h N src/contrib/bind/port/aix4/include/port_after.h N src/contrib/bind/port/aix4/include/port_before.h N src/contrib/bind/port/aix4/include/prand_conf.h N src/contrib/bind/port/aix4/include/sys/Makefile N src/contrib/bind/port/aix4/include/sys/bitypes.h N src/contrib/bind/port/aix4/include/sys/cdefs.h N src/contrib/bind/port/aux3/Makefile N src/contrib/bind/port/aux3/Makefile.set N src/contrib/bind/port/aux3/noop.c N src/contrib/bind/port/aux3/probe N src/contrib/bind/port/aux3/bin/mkdep N src/contrib/bind/port/aux3/include/Makefile N src/contrib/bind/port/aux3/include/paths.h N src/contrib/bind/port/aux3/include/port_after.h N src/contrib/bind/port/aux3/include/port_before.h N src/contrib/bind/port/aux3/include/prand_conf.h N src/contrib/bind/port/aux3/include/sys/Makefile N src/contrib/bind/port/aux3/include/sys/bitypes.h N src/contrib/bind/port/aux3/include/sys/cdefs.h N src/contrib/bind/port/bsdos/.cvsignore N src/contrib/bind/port/bsdos/Makefile N src/contrib/bind/port/bsdos/Makefile.set N src/contrib/bind/port/bsdos/Makefile.set.bcc N src/contrib/bind/port/bsdos/Makefile.set.gcc N src/contrib/bind/port/bsdos/maybe_fix_includes N src/contrib/bind/port/bsdos/noop.c N src/contrib/bind/port/bsdos/probe N src/contrib/bind/port/bsdos/include/Makefile N src/contrib/bind/port/bsdos/include/port_after.h N src/contrib/bind/port/bsdos/include/port_before.h N src/contrib/bind/port/bsdos/include/prand_conf.h N src/contrib/bind/port/bsdos/include/sys/.cvsignore N src/contrib/bind/port/bsdos/include/sys/Makefile N src/contrib/bind/port/bsdos/include/sys/bitypes.h N src/contrib/bind/port/bsdos2/.cvsignore N src/contrib/bind/port/bsdos2/Makefile N src/contrib/bind/port/bsdos2/Makefile.set N src/contrib/bind/port/bsdos2/maybe_fix_includes N src/contrib/bind/port/bsdos2/noop.c N src/contrib/bind/port/bsdos2/probe N src/contrib/bind/port/bsdos2/include/Makefile N src/contrib/bind/port/bsdos2/include/port_after.h N src/contrib/bind/port/bsdos2/include/port_before.h N src/contrib/bind/port/bsdos2/include/prand_conf.h N src/contrib/bind/port/bsdos2/include/sys/.cvsignore N src/contrib/bind/port/bsdos2/include/sys/Makefile N src/contrib/bind/port/bsdos2/include/sys/bitypes.h N src/contrib/bind/port/cygwin/Makefile N src/contrib/bind/port/cygwin/Makefile.set N src/contrib/bind/port/cygwin/README N src/contrib/bind/port/cygwin/probe N src/contrib/bind/port/cygwin/bin/mkdep N src/contrib/bind/port/cygwin/include/Makefile N src/contrib/bind/port/cygwin/include/ansi_realloc.h N src/contrib/bind/port/cygwin/include/assert.h N src/contrib/bind/port/cygwin/include/nlist.h N src/contrib/bind/port/cygwin/include/paths.h N src/contrib/bind/port/cygwin/include/port_after.h N src/contrib/bind/port/cygwin/include/port_before.h N src/contrib/bind/port/cygwin/include/prand_conf.h N src/contrib/bind/port/cygwin/include/asm/socket.h N src/contrib/bind/port/cygwin/include/net/route.h N src/contrib/bind/port/cygwin/include/sys/Makefile N src/contrib/bind/port/cygwin/include/sys/bitypes.h N src/contrib/bind/port/cygwin/include/sys/cdefs.h N src/contrib/bind/port/cygwin/include/sys/mbuf.h N src/contrib/bind/port/cygwin/include/sys/socket.h N src/contrib/bind/port/cygwin/include/sys/un.h N src/contrib/bind/port/cygwin/include/sys/wait.h N src/contrib/bind/port/darwin/Makefile N src/contrib/bind/port/darwin/Makefile.set N src/contrib/bind/port/darwin/README N src/contrib/bind/port/darwin/noop.c N src/contrib/bind/port/darwin/probe N src/contrib/bind/port/darwin/include/Makefile N src/contrib/bind/port/darwin/include/port_after.h N src/contrib/bind/port/darwin/include/port_before.h N src/contrib/bind/port/darwin/include/prand_conf.h N src/contrib/bind/port/darwin/include/sys/Makefile N src/contrib/bind/port/darwin/include/sys/bitypes.h N src/contrib/bind/port/decunix/.cvsignore N src/contrib/bind/port/decunix/Makefile N src/contrib/bind/port/decunix/Makefile.set N src/contrib/bind/port/decunix/noop.c N src/contrib/bind/port/decunix/probe N src/contrib/bind/port/decunix/bin/probe_ipv6 N src/contrib/bind/port/decunix/include/Makefile N src/contrib/bind/port/decunix/include/port_after.h N src/contrib/bind/port/decunix/include/port_before.h N src/contrib/bind/port/decunix/include/prand_conf.h N src/contrib/bind/port/decunix/include/sys/Makefile N src/contrib/bind/port/decunix/include/sys/bitypes.h N src/contrib/bind/port/decunix/include/sys/cdefs.h U src/contrib/bind/port/freebsd/Makefile U src/contrib/bind/port/freebsd/Makefile.set U src/contrib/bind/port/freebsd/noop.c U src/contrib/bind/port/freebsd/probe U src/contrib/bind/port/freebsd/bin/probe_ipv6 U src/contrib/bind/port/freebsd/include/Makefile C src/contrib/bind/port/freebsd/include/port_after.h U src/contrib/bind/port/freebsd/include/port_before.h U src/contrib/bind/port/freebsd/include/prand_conf.h U src/contrib/bind/port/freebsd/include/sys/Makefile U src/contrib/bind/port/freebsd/include/sys/bitypes.h N src/contrib/bind/port/hpux/Makefile N src/contrib/bind/port/hpux/Makefile.set N src/contrib/bind/port/hpux/Makefile.set.gcc N src/contrib/bind/port/hpux/Makefile.set.hp N src/contrib/bind/port/hpux/noop.c N src/contrib/bind/port/hpux/probe N src/contrib/bind/port/hpux/bin/install N src/contrib/bind/port/hpux/bin/mkdep N src/contrib/bind/port/hpux/bin/probe_ipv6 N src/contrib/bind/port/hpux/include/Makefile N src/contrib/bind/port/hpux/include/paths.h N src/contrib/bind/port/hpux/include/port_after.h N src/contrib/bind/port/hpux/include/port_before.h N src/contrib/bind/port/hpux/include/prand_conf.h N src/contrib/bind/port/hpux/include/sys/Makefile N src/contrib/bind/port/hpux/include/sys/bitypes.h N src/contrib/bind/port/hpux/include/sys/cdefs.h N src/contrib/bind/port/hpux10/Makefile N src/contrib/bind/port/hpux10/Makefile.set N src/contrib/bind/port/hpux10/Makefile.set.gcc N src/contrib/bind/port/hpux10/Makefile.set.hp N src/contrib/bind/port/hpux10/noop.c N src/contrib/bind/port/hpux10/probe N src/contrib/bind/port/hpux10/bin/install N src/contrib/bind/port/hpux10/bin/mkdep N src/contrib/bind/port/hpux10/include/Makefile N src/contrib/bind/port/hpux10/include/paths.h N src/contrib/bind/port/hpux10/include/port_after.h N src/contrib/bind/port/hpux10/include/port_before.h N src/contrib/bind/port/hpux10/include/prand_conf.h N src/contrib/bind/port/hpux10/include/sys/Makefile N src/contrib/bind/port/hpux10/include/sys/bitypes.h N src/contrib/bind/port/hpux10/include/sys/cdefs.h N src/contrib/bind/port/hpux9/Makefile N src/contrib/bind/port/hpux9/Makefile.set N src/contrib/bind/port/hpux9/README N src/contrib/bind/port/hpux9/noop.c N src/contrib/bind/port/hpux9/probe N src/contrib/bind/port/hpux9/bin/install N src/contrib/bind/port/hpux9/bin/mkdep N src/contrib/bind/port/hpux9/include/Makefile N src/contrib/bind/port/hpux9/include/paths.h N src/contrib/bind/port/hpux9/include/port_after.h N src/contrib/bind/port/hpux9/include/port_before.h N src/contrib/bind/port/hpux9/include/prand_conf.h N src/contrib/bind/port/hpux9/include/sys/Makefile N src/contrib/bind/port/hpux9/include/sys/bitypes.h N src/contrib/bind/port/hpux9/include/sys/cdefs.h N src/contrib/bind/port/irix/Makefile N src/contrib/bind/port/irix/Makefile.set N src/contrib/bind/port/irix/README N src/contrib/bind/port/irix/irix_patch N src/contrib/bind/port/irix/noop.c N src/contrib/bind/port/irix/probe N src/contrib/bind/port/irix/bin/probe_ipv6 N src/contrib/bind/port/irix/bin/mkdep N src/contrib/bind/port/irix/include/Makefile N src/contrib/bind/port/irix/include/paths.h N src/contrib/bind/port/irix/include/port_after.h N src/contrib/bind/port/irix/include/port_before.h N src/contrib/bind/port/irix/include/prand_conf.h N src/contrib/bind/port/irix/include/sys/Makefile N src/contrib/bind/port/irix/include/sys/bitypes.h N src/contrib/bind/port/irix/include/sys/cdefs.h N src/contrib/bind/port/linux/Makefile N src/contrib/bind/port/linux/Makefile.set N src/contrib/bind/port/linux/noop.c N src/contrib/bind/port/linux/probe N src/contrib/bind/port/linux/bin/probe_ipv6 N src/contrib/bind/port/linux/bin/mkdep N src/contrib/bind/port/linux/include/.cvsignore N src/contrib/bind/port/linux/include/Makefile N src/contrib/bind/port/linux/include/nlist.h N src/contrib/bind/port/linux/include/port_after.h N src/contrib/bind/port/linux/include/port_before.h N src/contrib/bind/port/linux/include/prand_conf.h N src/contrib/bind/port/linux/include/net/Makefile N src/contrib/bind/port/linux/include/net/route.h N src/contrib/bind/port/linux/include/sys/Makefile N src/contrib/bind/port/linux/include/sys/mbuf.h N src/contrib/bind/port/lynxos/Makefile N src/contrib/bind/port/lynxos/Makefile.set N src/contrib/bind/port/lynxos/README N src/contrib/bind/port/lynxos/ansi_realloc.c N src/contrib/bind/port/lynxos/probe N src/contrib/bind/port/lynxos/bin/probe_ipv6 N src/contrib/bind/port/lynxos/bin/mkdep N src/contrib/bind/port/lynxos/include/Makefile N src/contrib/bind/port/lynxos/include/ansi_realloc.h N src/contrib/bind/port/lynxos/include/paths.h N src/contrib/bind/port/lynxos/include/port_after.h N src/contrib/bind/port/lynxos/include/port_before.h N src/contrib/bind/port/lynxos/include/sys/Makefile N src/contrib/bind/port/lynxos/include/sys/bitypes.h N src/contrib/bind/port/lynxos/include/sys/cdefs.h N src/contrib/bind/port/mpe/Makefile N src/contrib/bind/port/mpe/Makefile.set N src/contrib/bind/port/mpe/README N src/contrib/bind/port/mpe/bind.c N src/contrib/bind/port/mpe/endgrent.c N src/contrib/bind/port/mpe/endpwent.c N src/contrib/bind/port/mpe/fchown.c N src/contrib/bind/port/mpe/fcntl.c N src/contrib/bind/port/mpe/fsync.c N src/contrib/bind/port/mpe/ftruncate.c N src/contrib/bind/port/mpe/getline.c N src/contrib/bind/port/mpe/getpass.c N src/contrib/bind/port/mpe/initgroups.c N src/contrib/bind/port/mpe/longpointer.c N src/contrib/bind/port/mpe/longpointer.h N src/contrib/bind/port/mpe/nice.c N src/contrib/bind/port/mpe/probe N src/contrib/bind/port/mpe/recvfrom.c N src/contrib/bind/port/mpe/setgid.c N src/contrib/bind/port/mpe/setuid.c N src/contrib/bind/port/mpe/bin/install N src/contrib/bind/port/mpe/bin/copy N src/contrib/bind/port/mpe/bin/probe_ipv6 N src/contrib/bind/port/mpe/bin/mkdep N src/contrib/bind/port/mpe/include/Makefile N src/contrib/bind/port/mpe/include/nlist.h N src/contrib/bind/port/mpe/include/paths.h N src/contrib/bind/port/mpe/include/port_after.h N src/contrib/bind/port/mpe/include/port_before.h N src/contrib/bind/port/mpe/include/prand_conf.h N src/contrib/bind/port/mpe/include/syslog.h N src/contrib/bind/port/mpe/include/utmp.h N src/contrib/bind/port/mpe/include/net/route.h N src/contrib/bind/port/mpe/include/sys/Makefile N src/contrib/bind/port/mpe/include/sys/bitypes.h N src/contrib/bind/port/mpe/include/sys/cdefs.h N src/contrib/bind/port/mpe/include/sys/file.h N src/contrib/bind/port/mpe/include/sys/mbuf.h N src/contrib/bind/port/mpe/include/sys/param.h N src/contrib/bind/port/mpe/include/sys/time.h N src/contrib/bind/port/netbsd/Makefile N src/contrib/bind/port/netbsd/Makefile.set N src/contrib/bind/port/netbsd/noop.c N src/contrib/bind/port/netbsd/probe N src/contrib/bind/port/netbsd/bin/probe_ipv6 N src/contrib/bind/port/netbsd/include/Makefile N src/contrib/bind/port/netbsd/include/port_after.h N src/contrib/bind/port/netbsd/include/port_before.h N src/contrib/bind/port/netbsd/include/prand_conf.h N src/contrib/bind/port/netbsd/include/sys/Makefile N src/contrib/bind/port/netbsd/include/sys/bitypes.h N src/contrib/bind/port/next/Makefile N src/contrib/bind/port/next/Makefile.set N src/contrib/bind/port/next/README.FIRST N src/contrib/bind/port/next/dirname N src/contrib/bind/port/next/maybe_fix_includes N src/contrib/bind/port/next/posix-compat.c N src/contrib/bind/port/next/probe N src/contrib/bind/port/next/bin/mkdep N src/contrib/bind/port/next/include/Makefile N src/contrib/bind/port/next/include/paths.h N src/contrib/bind/port/next/include/port_after.h N src/contrib/bind/port/next/include/port_before.h N src/contrib/bind/port/next/include/prand_conf.h N src/contrib/bind/port/next/include/sys/Makefile N src/contrib/bind/port/next/include/sys/bitypes.h N src/contrib/bind/port/next/include/sys/cdefs.h N src/contrib/bind/port/openbsd/Makefile N src/contrib/bind/port/openbsd/Makefile.set N src/contrib/bind/port/openbsd/noop.c N src/contrib/bind/port/openbsd/probe N src/contrib/bind/port/openbsd/bin/probe_ipv6 N src/contrib/bind/port/openbsd/include/Makefile N src/contrib/bind/port/openbsd/include/port_after.h N src/contrib/bind/port/openbsd/include/port_before.h N src/contrib/bind/port/openbsd/include/prand_conf.h N src/contrib/bind/port/openbsd/include/sys/Makefile N src/contrib/bind/port/openbsd/include/sys/bitypes.h U src/contrib/bind/port/prand_conf/Makefile U src/contrib/bind/port/prand_conf/README U src/contrib/bind/port/prand_conf/prand_conf.c N src/contrib/bind/port/qnx/Makefile N src/contrib/bind/port/qnx/Makefile.set N src/contrib/bind/port/qnx/README N src/contrib/bind/port/qnx/noop.c N src/contrib/bind/port/qnx/probe N src/contrib/bind/port/qnx/bin/probe_ipv6 N src/contrib/bind/port/qnx/include/Makefile N src/contrib/bind/port/qnx/include/db.h N src/contrib/bind/port/qnx/include/nlist.h N src/contrib/bind/port/qnx/include/paths.h N src/contrib/bind/port/qnx/include/port_after.h N src/contrib/bind/port/qnx/include/port_before.h N src/contrib/bind/port/qnx/include/sys/Makefile N src/contrib/bind/port/qnx/include/sys/bitypes.h N src/contrib/bind/port/qnx/include/sys/cdefs.h N src/contrib/bind/port/qnx/include/sys/ioctl.h N src/contrib/bind/port/qnx/include/sys/mbuf.h N src/contrib/bind/port/qnx/include/sys/resource.h N src/contrib/bind/port/rhapsody/Makefile N src/contrib/bind/port/rhapsody/Makefile.set N src/contrib/bind/port/rhapsody/README N src/contrib/bind/port/rhapsody/noop.c N src/contrib/bind/port/rhapsody/probe N src/contrib/bind/port/rhapsody/bin/probe_ipv6 N src/contrib/bind/port/rhapsody/bin/mkdep N src/contrib/bind/port/rhapsody/include/Makefile N src/contrib/bind/port/rhapsody/include/port_after.h N src/contrib/bind/port/rhapsody/include/port_before.h N src/contrib/bind/port/rhapsody/include/prand_conf.h N src/contrib/bind/port/rhapsody/include/sys/Makefile N src/contrib/bind/port/rhapsody/include/sys/bitypes.h N src/contrib/bind/port/sco42/INSTALL N src/contrib/bind/port/sco42/Makefile N src/contrib/bind/port/sco42/Makefile.set N src/contrib/bind/port/sco42/README N src/contrib/bind/port/sco42/ansi_realloc.c N src/contrib/bind/port/sco42/probe N src/contrib/bind/port/sco42/sco_gettime.c N src/contrib/bind/port/sco42/bin/mkdep N src/contrib/bind/port/sco42/include/Makefile N src/contrib/bind/port/sco42/include/ansi_realloc.h N src/contrib/bind/port/sco42/include/paths.h N src/contrib/bind/port/sco42/include/port_after.h N src/contrib/bind/port/sco42/include/port_before.h N src/contrib/bind/port/sco42/include/sco_gettime.h N src/contrib/bind/port/sco42/include/sys/Makefile N src/contrib/bind/port/sco42/include/sys/bitypes.h N src/contrib/bind/port/sco42/include/sys/cdefs.h N src/contrib/bind/port/sco42/include/sys/mbuf.h N src/contrib/bind/port/sco42/include/sys/un.h N src/contrib/bind/port/sco42/tools/files-to-backup N src/contrib/bind/port/sco42/tools/fixincludes.sh N src/contrib/bind/port/sco42/tools/libsocket8.sh N src/contrib/bind/port/sco42/tools/percentp.sh N src/contrib/bind/port/sco50/Makefile N src/contrib/bind/port/sco50/Makefile.set N src/contrib/bind/port/sco50/Makefile.set.gcc N src/contrib/bind/port/sco50/Makefile.set.sco N src/contrib/bind/port/sco50/README N src/contrib/bind/port/sco50/files-to-backup N src/contrib/bind/port/sco50/getrusage.c N src/contrib/bind/port/sco50/probe N src/contrib/bind/port/sco50/bin/install N src/contrib/bind/port/sco50/bin/mkdep N src/contrib/bind/port/sco50/bin/probe_ipv6 N src/contrib/bind/port/sco50/include/Makefile N src/contrib/bind/port/sco50/include/paths.h N src/contrib/bind/port/sco50/include/port_after.h N src/contrib/bind/port/sco50/include/port_before.h N src/contrib/bind/port/sco50/include/prand_conf.h N src/contrib/bind/port/sco50/include/resolv.h.diffs N src/contrib/bind/port/sco50/include/sys/Makefile N src/contrib/bind/port/sco50/include/sys/mbuf.h N src/contrib/bind/port/sco50/tools/libbind.sh N src/contrib/bind/port/sco50/tools/libsocket8.sh N src/contrib/bind/port/solaris/Makefile N src/contrib/bind/port/solaris/Makefile.set N src/contrib/bind/port/solaris/Makefile.set.gcc N src/contrib/bind/port/solaris/Makefile.set.sun N src/contrib/bind/port/solaris/noop.c N src/contrib/bind/port/solaris/probe N src/contrib/bind/port/solaris/bin/choose_bitypes N src/contrib/bind/port/solaris/bin/make_os_version N src/contrib/bind/port/solaris/bin/mkdep N src/contrib/bind/port/solaris/bin/probe_ipv6 N src/contrib/bind/port/solaris/include/.cvsignore N src/contrib/bind/port/solaris/include/Makefile N src/contrib/bind/port/solaris/include/paths.h N src/contrib/bind/port/solaris/include/port_after.h N src/contrib/bind/port/solaris/include/port_before.h N src/contrib/bind/port/solaris/include/prand_conf.h N src/contrib/bind/port/solaris/include/sys/Makefile N src/contrib/bind/port/solaris/include/sys/cdefs.h N src/contrib/bind/port/solaris/include/sys/intNt_bitypes.h N src/contrib/bind/port/solaris/include/sys/no_intNt_bitypes.h N src/contrib/bind/port/sunos/Makefile N src/contrib/bind/port/sunos/Makefile.set N src/contrib/bind/port/sunos/ansi_realloc.c N src/contrib/bind/port/sunos/memmove.c N src/contrib/bind/port/sunos/probe N src/contrib/bind/port/sunos/bin/mkdep N src/contrib/bind/port/sunos/include/Makefile N src/contrib/bind/port/sunos/include/ansi_realloc.h N src/contrib/bind/port/sunos/include/assert.h N src/contrib/bind/port/sunos/include/paths.h N src/contrib/bind/port/sunos/include/port_after.h N src/contrib/bind/port/sunos/include/port_before.h N src/contrib/bind/port/sunos/include/prand_conf.h N src/contrib/bind/port/sunos/include/sys/Makefile N src/contrib/bind/port/sunos/include/sys/bitypes.h N src/contrib/bind/port/sunos/include/sys/cdefs.h N src/contrib/bind/port/sunos/include/sys/wait.h N src/contrib/bind/port/ultrix/Makefile N src/contrib/bind/port/ultrix/Makefile.set N src/contrib/bind/port/ultrix/isc_sprintf.c N src/contrib/bind/port/ultrix/maybe_fix_includes N src/contrib/bind/port/ultrix/probe N src/contrib/bind/port/ultrix/bin/mkdep N src/contrib/bind/port/ultrix/include/Makefile N src/contrib/bind/port/ultrix/include/paths.h N src/contrib/bind/port/ultrix/include/port_after.h N src/contrib/bind/port/ultrix/include/port_before.h N src/contrib/bind/port/ultrix/include/prand_conf.h N src/contrib/bind/port/ultrix/include/rpc/Makefile N src/contrib/bind/port/ultrix/include/rpc/xdr.h N src/contrib/bind/port/ultrix/include/sys/Makefile N src/contrib/bind/port/ultrix/include/sys/bitypes.h N src/contrib/bind/port/ultrix/include/sys/cdefs.h N src/contrib/bind/port/ultrix/include/sys/socket.h N src/contrib/bind/port/ultrix/include/sys/syslog.h N src/contrib/bind/port/unixware20/Makefile N src/contrib/bind/port/unixware20/Makefile.set N src/contrib/bind/port/unixware20/README N src/contrib/bind/port/unixware20/noop.c N src/contrib/bind/port/unixware20/probe N src/contrib/bind/port/unixware20/bin/mkdep N src/contrib/bind/port/unixware20/include/Makefile N src/contrib/bind/port/unixware20/include/paths.h N src/contrib/bind/port/unixware20/include/port_after.h N src/contrib/bind/port/unixware20/include/port_before.h N src/contrib/bind/port/unixware20/include/sys/Makefile N src/contrib/bind/port/unixware20/include/sys/bitypes.h N src/contrib/bind/port/unixware20/include/sys/cdefs.h N src/contrib/bind/port/unixware212/Makefile N src/contrib/bind/port/unixware212/Makefile.set N src/contrib/bind/port/unixware212/README N src/contrib/bind/port/unixware212/noop.c N src/contrib/bind/port/unixware212/probe N src/contrib/bind/port/unixware212/bin/mkdep N src/contrib/bind/port/unixware212/include/Makefile N src/contrib/bind/port/unixware212/include/paths.h N src/contrib/bind/port/unixware212/include/port_after.h N src/contrib/bind/port/unixware212/include/port_before.h N src/contrib/bind/port/unixware212/include/sys/Makefile N src/contrib/bind/port/unixware212/include/sys/bitypes.h N src/contrib/bind/port/unixware212/include/sys/cdefs.h N src/contrib/bind/port/unixware7/Makefile N src/contrib/bind/port/unixware7/Makefile.set N src/contrib/bind/port/unixware7/noop.c N src/contrib/bind/port/unixware7/probe N src/contrib/bind/port/unixware7/bin/mkdep N src/contrib/bind/port/unixware7/include/Makefile N src/contrib/bind/port/unixware7/include/paths.h N src/contrib/bind/port/unixware7/include/port_after.h N src/contrib/bind/port/unixware7/include/port_before.h N src/contrib/bind/port/unixware7/include/prand_conf.h N src/contrib/bind/port/winnt/.cvsignore N src/contrib/bind/port/winnt/BIND8NT-src-changes.txt N src/contrib/bind/port/winnt/BINDBuild.dsw N src/contrib/bind/port/winnt/BINDTools.dsw N src/contrib/bind/port/winnt/README.TXT N src/contrib/bind/port/winnt/makeversion.pl N src/contrib/bind/port/winnt/named-bootconf.txt N src/contrib/bind/port/winnt/named.mak N src/contrib/bind/port/winnt/readme1st.txt N src/contrib/bind/port/winnt/readme1sttools.txt N src/contrib/bind/port/winnt/BINDCmd/BINDCmd.cpp N src/contrib/bind/port/winnt/BINDCmd/BINDCmd.dsp N src/contrib/bind/port/winnt/BINDCmd/BINDCmd.dsw N src/contrib/bind/port/winnt/BINDCmd/BINDCmd.h N src/contrib/bind/port/winnt/BINDCmd/BINDCmd.mak N src/contrib/bind/port/winnt/BINDCtrl/.cvsignore N src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.aps N src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.clw N src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.cpp N src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.dep N src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.dsp N src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.dsw N src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.h N src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.mak N src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.rc N src/contrib/bind/port/winnt/BINDCtrl/BINDCtrlDlg.cpp N src/contrib/bind/port/winnt/BINDCtrl/BINDCtrlDlg.h N src/contrib/bind/port/winnt/BINDCtrl/StdAfx.cpp N src/contrib/bind/port/winnt/BINDCtrl/StdAfx.h N src/contrib/bind/port/winnt/BINDCtrl/resource.h N src/contrib/bind/port/winnt/BINDCtrl/res/BINDCtrl.ico N src/contrib/bind/port/winnt/BINDCtrl/res/BINDCtrl.rc2 N src/contrib/bind/port/winnt/BINDCtrl/res/trffc10a.ico N src/contrib/bind/port/winnt/BINDCtrl/res/trffc10b.ico N src/contrib/bind/port/winnt/BINDCtrl/res/trffc10c.ico N src/contrib/bind/port/winnt/BINDCtrl/res/trffc13.ico N src/contrib/bind/port/winnt/BINDInstall/.cvsignore N src/contrib/bind/port/winnt/BINDInstall/BINDInstall.aps N src/contrib/bind/port/winnt/BINDInstall/BINDInstall.clw N src/contrib/bind/port/winnt/BINDInstall/BINDInstall.cpp N src/contrib/bind/port/winnt/BINDInstall/BINDInstall.dep N src/contrib/bind/port/winnt/BINDInstall/BINDInstall.dsp N src/contrib/bind/port/winnt/BINDInstall/BINDInstall.h N src/contrib/bind/port/winnt/BINDInstall/BINDInstall.mak N src/contrib/bind/port/winnt/BINDInstall/BINDInstall.rc N src/contrib/bind/port/winnt/BINDInstall/BINDInstallDlg.cpp N src/contrib/bind/port/winnt/BINDInstall/BINDInstallDlg.h N src/contrib/bind/port/winnt/BINDInstall/DirBrowse.cpp N src/contrib/bind/port/winnt/BINDInstall/DirBrowse.h N src/contrib/bind/port/winnt/BINDInstall/StdAfx.cpp N src/contrib/bind/port/winnt/BINDInstall/StdAfx.h N src/contrib/bind/port/winnt/BINDInstall/VersionInfo.cpp N src/contrib/bind/port/winnt/BINDInstall/VersionInfo.h N src/contrib/bind/port/winnt/BINDInstall/resource.h N src/contrib/bind/port/winnt/BINDInstall/res/BINDInstall.ico N src/contrib/bind/port/winnt/BINDInstall/res/BINDInstall.rc2 N src/contrib/bind/port/winnt/bindevt/.cvsignore N src/contrib/bind/port/winnt/bindevt/MSG00409.bin N src/contrib/bind/port/winnt/bindevt/bindevt.aps N src/contrib/bind/port/winnt/bindevt/bindevt.c N src/contrib/bind/port/winnt/bindevt/bindevt.dep N src/contrib/bind/port/winnt/bindevt/bindevt.dsp N src/contrib/bind/port/winnt/bindevt/bindevt.mak N src/contrib/bind/port/winnt/bindevt/bindevt.mc N src/contrib/bind/port/winnt/bindevt/bindevt.rc N src/contrib/bind/port/winnt/dig/dig.dsp N src/contrib/bind/port/winnt/dig/dig.dsw N src/contrib/bind/port/winnt/dig/dig.mak N src/contrib/bind/port/winnt/dnskeygen/dnskeygen.dsp N src/contrib/bind/port/winnt/dnskeygen/dnskeygen.dsw N src/contrib/bind/port/winnt/host/host.dsp N src/contrib/bind/port/winnt/host/host.dsw N src/contrib/bind/port/winnt/host/host.mak N src/contrib/bind/port/winnt/include/.cvsignore N src/contrib/bind/port/winnt/include/BINDCmd.h N src/contrib/bind/port/winnt/include/bind_registry.h N src/contrib/bind/port/winnt/include/bind_service.h N src/contrib/bind/port/winnt/include/bindevt.h N src/contrib/bind/port/winnt/include/bindwsock.h N src/contrib/bind/port/winnt/include/bsafe_link.h N src/contrib/bind/port/winnt/include/config.h N src/contrib/bind/port/winnt/include/diff N src/contrib/bind/port/winnt/include/dirent.h N src/contrib/bind/port/winnt/include/externs.h N src/contrib/bind/port/winnt/include/fnpointer.h N src/contrib/bind/port/winnt/include/grp.h N src/contrib/bind/port/winnt/include/libc.h N src/contrib/bind/port/winnt/include/mapdefs.h N src/contrib/bind/port/winnt/include/nlist.h N src/contrib/bind/port/winnt/include/nt_fcntl.h N src/contrib/bind/port/winnt/include/nt_signal.h N src/contrib/bind/port/winnt/include/oids.h N src/contrib/bind/port/winnt/include/pathnames.h N src/contrib/bind/port/winnt/include/paths.h N src/contrib/bind/port/winnt/include/port_after.h N src/contrib/bind/port/winnt/include/port_before.h N src/contrib/bind/port/winnt/include/prand_conf.h N src/contrib/bind/port/winnt/include/pwd.h N src/contrib/bind/port/winnt/include/sgtty.h N src/contrib/bind/port/winnt/include/syslog.h N src/contrib/bind/port/winnt/include/unistd.h N src/contrib/bind/port/winnt/include/utime.h N src/contrib/bind/port/winnt/include/utmp.h N src/contrib/bind/port/winnt/include/net/route.h N src/contrib/bind/port/winnt/include/net/if.h N src/contrib/bind/port/winnt/include/sys/Makefile N src/contrib/bind/port/winnt/include/sys/bitypes.h N src/contrib/bind/port/winnt/include/sys/cdefs.h N src/contrib/bind/port/winnt/include/sys/file.h N src/contrib/bind/port/winnt/include/sys/ioctl.h N src/contrib/bind/port/winnt/include/sys/mbuf.h N src/contrib/bind/port/winnt/include/sys/param.h N src/contrib/bind/port/winnt/include/sys/socket.h N src/contrib/bind/port/winnt/include/sys/sockio.h N src/contrib/bind/port/winnt/include/sys/time.h N src/contrib/bind/port/winnt/include/sys/uio.h N src/contrib/bind/port/winnt/include/sys/un.h N src/contrib/bind/port/winnt/include/sys/wait.h N src/contrib/bind/port/winnt/include/netinet/in.h N src/contrib/bind/port/winnt/libbind/.cvsignore N src/contrib/bind/port/winnt/libbind/DLLMain.c N src/contrib/bind/port/winnt/libbind/dirent.c N src/contrib/bind/port/winnt/libbind/files.c N src/contrib/bind/port/winnt/libbind/getopt.c N src/contrib/bind/port/winnt/libbind/interface.c N src/contrib/bind/port/winnt/libbind/ioctl_if.c N src/contrib/bind/port/winnt/libbind/libbind.def N src/contrib/bind/port/winnt/libbind/libbind.dep N src/contrib/bind/port/winnt/libbind/libbind.dsp N src/contrib/bind/port/winnt/libbind/libbind.mak N src/contrib/bind/port/winnt/libbind/libbind.rc N src/contrib/bind/port/winnt/libbind/libbind.rct N src/contrib/bind/port/winnt/libbind/nameserver.c N src/contrib/bind/port/winnt/libbind/resource.h N src/contrib/bind/port/winnt/libbind/signal.c N src/contrib/bind/port/winnt/libbind/socket.c N src/contrib/bind/port/winnt/libbind/syslog.c N src/contrib/bind/port/winnt/libbind/unistd.c N src/contrib/bind/port/winnt/named/.cvsignore N src/contrib/bind/port/winnt/named/named.dep N src/contrib/bind/port/winnt/named/named.dsp N src/contrib/bind/port/winnt/named/named.dsw N src/contrib/bind/port/winnt/named/named.mak N src/contrib/bind/port/winnt/named/named.opt N src/contrib/bind/port/winnt/named/named.rc N src/contrib/bind/port/winnt/named/ns_ntmisc.c N src/contrib/bind/port/winnt/named/ns_ntservice.c N src/contrib/bind/port/winnt/named/ns_ntsignal.c N src/contrib/bind/port/winnt/named/ns_ntxfer.c N src/contrib/bind/port/winnt/named/resource.h N src/contrib/bind/port/winnt/nslookup/nslookup.dsp N src/contrib/bind/port/winnt/nslookup/nslookup.dsw N src/contrib/bind/port/winnt/nsupdate/.cvsignore N src/contrib/bind/port/winnt/nsupdate/nsupdate.dep N src/contrib/bind/port/winnt/nsupdate/nsupdate.dsp N src/contrib/bind/port/winnt/nsupdate/nsupdate.dsw N src/contrib/bind/port/winnt/nsupdate/nsupdate.mak N src/contrib/bind/port/winnt/nsupdate/nsupdate.opt N src/contrib/bind/port/winnt/nsupdate/nsupdate.rc N src/contrib/bind/port/winnt/nsupdate/resource.h N src/contrib/bind/port/winnt/xfer/.cvsignore N src/contrib/bind/port/winnt/xfer/named-xfer.rc N src/contrib/bind/port/winnt/xfer/resource.h N src/contrib/bind/port/winnt/xfer/xfer.dep N src/contrib/bind/port/winnt/xfer/xfer.dsp N src/contrib/bind/port/winnt/xfer/xfer.mak U src/contrib/bind/tests/irs_testclient.c U src/contrib/bind/tests/irs_testirpd.c U src/contrib/bind/tests/irs_testserver.c U src/contrib/bind/tests/test_cidr.c U src/contrib/bind/tests/test_getaddr.c 5 conflicts created by this import. Use the following command to help the merge: cvs checkout -jISC:yesterday -jISC src/contrib/bind To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 11:16:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9EA4D37B425; Mon, 4 Feb 2002 11:15:34 -0800 (PST) Received: (from nectar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14JFYV38662; Mon, 4 Feb 2002 11:15:34 -0800 (PST) (envelope-from nectar) Message-Id: <200202041915.g14JFYV38662@freefall.freebsd.org> From: Jacques Vidrine Date: Mon, 4 Feb 2002 11:15:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/bind/bin/named-xfer named-xfer.c src/contrib/bind/bin/nslookup debug.c getinfo.c main.c src/contrib/bind/port/freebsd/include port_after.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2002/02/04 11:15:34 PST Modified files: contrib/bind/bin/named-xfer named-xfer.c contrib/bind/bin/nslookup debug.c getinfo.c main.c contrib/bind/port/freebsd/include port_after.h Log: Resolve conflicts after import of ISC BIND 8.3.1-REL. Revision Changes Path 1.8 +522 -642 src/contrib/bind/bin/named-xfer/named-xfer.c 1.6 +21 -21 src/contrib/bind/bin/nslookup/debug.c 1.7 +17 -18 src/contrib/bind/bin/nslookup/getinfo.c 1.6 +16 -15 src/contrib/bind/bin/nslookup/main.c 1.12 +93 -1 src/contrib/bind/port/freebsd/include/port_after.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 11:18:29 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D03937B426; Mon, 4 Feb 2002 11:18:23 -0800 (PST) Received: (from nectar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14JINl39235; Mon, 4 Feb 2002 11:18:23 -0800 (PST) (envelope-from nectar) Message-Id: <200202041918.g14JINl39235@freefall.freebsd.org> From: Jacques Vidrine Date: Mon, 4 Feb 2002 11:18:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libisc Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2002/02/04 11:18:23 PST Modified files: lib/libisc Makefile Log: hex.c is new in libisc with 8.3.1-REL. Revision Changes Path 1.5 +2 -2 src/lib/libisc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 11:19:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B58C37B431; Mon, 4 Feb 2002 11:19:35 -0800 (PST) Received: (from nectar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14JJZC39566; Mon, 4 Feb 2002 11:19:35 -0800 (PST) (envelope-from nectar) Message-Id: <200202041919.g14JJZC39566@freefall.freebsd.org> From: Jacques Vidrine Date: Mon, 4 Feb 2002 11:19:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/bind/port/freebsd/include port_before.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2002/02/04 11:19:35 PST Modified files: contrib/bind/port/freebsd/include port_before.h Log: getgrouplist now takes `gid_t' instead of `int'. Revision Changes Path 1.2 +107 -0 src/contrib/bind/port/freebsd/include/port_before.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 11:23: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 61E0F37B432; Mon, 4 Feb 2002 11:23:03 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14JN3p40138; Mon, 4 Feb 2002 11:23:03 -0800 (PST) (envelope-from obrien) Message-Id: <200202041923.g14JN3p40138@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 4 Feb 2002 11:23:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/vim Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/04 11:23:03 PST Modified files: editors/vim Makefile distinfo Log: Update to Vim 6.0 patchlevel 169 Revision Changes Path 1.171 +2 -2 ports/editors/vim/Makefile 1.105 +5 -0 ports/editors/vim/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 11:24: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 626F437B41B; Mon, 4 Feb 2002 11:23:44 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14JNiS40372; Mon, 4 Feb 2002 11:23:44 -0800 (PST) (envelope-from sos) Message-Id: <200202041923.g14JNiS40372@freefall.freebsd.org> From: Søren Schmidt Date: Mon, 4 Feb 2002 11:23:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-disk.c ata-disk.h ata-dma.c ata-isa.c ata-pci.c ata-raid.c ata-raid.h atapi-all.c atapi-all.h atapi-cd.c atapi-cd.h atapi-fd.c atapi-fd.h atapi-tape.c atapi-tape.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2002/02/04 11:23:43 PST Modified files: sys/dev/ata ata-all.c ata-all.h ata-card.c ata-disk.c ata-disk.h ata-dma.c ata-isa.c ata-pci.c ata-raid.c ata-raid.h atapi-all.c atapi-all.h atapi-cd.c atapi-cd.h atapi-fd.c atapi-fd.h atapi-tape.c atapi-tape.h Log: Major update of the ATA RAID code, part 1: Overhaul of the attach/detach code and structures, there were some nasty bugs in the old implementation. This made it possible to collapse the ATA/ATAPI device control structures into one generic structure. A note here, the kernel is NOT ready for detach of active devices, it fails all over in random places, but for inactive devices it works. However for ATA RAID this works, since the RAID abstration layer insulates the buggy^H^H^H^H^H^Hfragile device subsystem from the physical disks. Proberly detect the RAID's from the BIOS, and mark critical RAID1 arrays as such, but continue if there is enough of the mirror left to do so. Properly fail arrays on a live system. For RAID0 that means return EIO, and for RAID1 it means continue on the still working part of the mirror if possible, else return EIO. If the state changes, log this to the console. Allow for Promise & Highpoint controllers/arrays to coexist on the same machine. It is not possible to distribute arrays over different makes of controllers though. If Promise SuperSwap enclosures are used, signal disk state on the status LED on the front. Misc fixes that I had lying around for various minor bugs. Sponsored by: Advanis Inc. Revision Changes Path 1.127 +560 -519 src/sys/dev/ata/ata-all.c 1.50 +58 -35 src/sys/dev/ata/ata-all.h 1.4 +6 -6 src/sys/dev/ata/ata-card.c 1.118 +233 -257 src/sys/dev/ata/ata-disk.c 1.37 +12 -14 src/sys/dev/ata/ata-disk.h 1.82 +322 -326 src/sys/dev/ata/ata-dma.c 1.4 +13 -13 src/sys/dev/ata/ata-isa.c 1.27 +74 -71 src/sys/dev/ata/ata-pci.c 1.22 +480 -272 src/sys/dev/ata/ata-raid.c 1.7 +118 -82 src/sys/dev/ata/ata-raid.h 1.82 +151 -171 src/sys/dev/ata/atapi-all.c 1.41 +21 -32 src/sys/dev/ata/atapi-all.h 1.107 +117 -141 src/sys/dev/ata/atapi-cd.c 1.29 +4 -4 src/sys/dev/ata/atapi-cd.h 1.68 +45 -52 src/sys/dev/ata/atapi-fd.c 1.16 +3 -3 src/sys/dev/ata/atapi-fd.h 1.62 +57 -66 src/sys/dev/ata/atapi-tape.c 1.17 +7 -7 src/sys/dev/ata/atapi-tape.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 11:24:45 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 493DA37B41B; Mon, 4 Feb 2002 11:24:43 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14JOhm40564; Mon, 4 Feb 2002 11:24:43 -0800 (PST) (envelope-from sos) Message-Id: <200202041924.g14JOhm40564@freefall.freebsd.org> From: Søren Schmidt Date: Mon, 4 Feb 2002 11:24:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/atacontrol atacontrol.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2002/02/04 11:24:43 PST Modified files: sbin/atacontrol atacontrol.c Log: Match the requirements of the new kernel structures. Revision Changes Path 1.8 +104 -1 src/sbin/atacontrol/atacontrol.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 11:35:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BAAC937B41C; Mon, 4 Feb 2002 11:35:31 -0800 (PST) Received: (from jim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14JZV344037; Mon, 4 Feb 2002 11:35:31 -0800 (PST) (envelope-from jim) Message-Id: <200202041935.g14JZV344037@freefall.freebsd.org> From: Jim Mock Date: Mon, 4 Feb 2002 11:35:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/mirrors chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jim 2002/02/04 11:35:31 PST Modified files: en_US.ISO8859-1/books/handbook/mirrors chapter.sgml Log: Fix the handbook build. Submitted by: Szilveszter Adam on -doc Revision Changes Path 1.193 +1 -1 doc/en_US.ISO8859-1/books/handbook/mirrors/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 12: 2:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AB2AC37B405; Mon, 4 Feb 2002 12:02:07 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14K27V57471; Mon, 4 Feb 2002 12:02:07 -0800 (PST) (envelope-from bmah) Message-Id: <200202042002.g14K27V57471@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 4 Feb 2002 12:02:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/04 12:02:07 PST Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release note: ldd(1) can be used on shared libraries. Updated release note: BIND 8.3.1-REL. Revision Changes Path 1.275 +5 -2 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 12:16:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E533C37B433; Mon, 4 Feb 2002 12:16:50 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14KGok73826; Mon, 4 Feb 2002 12:16:50 -0800 (PST) (envelope-from des) Message-Id: <200202042016.g14KGok73826@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 4 Feb 2002 12:16:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules Makefile src/sys/modules/fs Makefile src/sys/modules/fs/linprocfs Makefile src/sys/modules/fs/procfs Makefile src/sys/modules/fs/pseudofs Makefile src/sys/modules/linprocfs Makefile src/sys/modules/procfs Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/04 12:16:50 PST Modified files: sys/modules Makefile Added files: sys/modules/linprocfs Makefile sys/modules/procfs Makefile sys/modules/pseudofs Makefile Removed files: sys/modules/fs Makefile sys/modules/fs/linprocfs Makefile sys/modules/fs/procfs Makefile sys/modules/fs/pseudofs Makefile Log: Move the pseudofs, procfs and linprocfs modules out from the fs directory. Keeping them there seemed like a good idea at the time, but it annoys bde and confuses people who do not understand how MODULES_OVERRIDE works. Revision Changes Path 1.230 +3 -1 src/sys/modules/Makefile 1.5 +0 -8 src/sys/modules/fs/Makefile (dead) 1.3 +0 -10 src/sys/modules/fs/linprocfs/Makefile (dead) 1.2 +0 -20 src/sys/modules/fs/procfs/Makefile (dead) 1.4 +0 -25 src/sys/modules/fs/pseudofs/Makefile (dead) 1.9 +10 -0 src/sys/modules/linprocfs/Makefile (new) 1.25 +29 -0 src/sys/modules/procfs/Makefile (new) 1.1 +25 -0 src/sys/modules/pseudofs/Makefile (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 12:19:10 2002 Delivered-To: cvs-all@freebsd.org Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by hub.freebsd.org (Postfix) with ESMTP id 5462537B417; Mon, 4 Feb 2002 12:19:03 -0800 (PST) Received: from madman.nectar.cc (madman.nectar.cc [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id 7B0CEECC; Mon, 4 Feb 2002 14:19:00 -0600 (CST) Received: (from nectar@localhost) by madman.nectar.cc (8.11.6/8.11.6) id g14KIxT44517; Mon, 4 Feb 2002 14:18:59 -0600 (CST) (envelope-from nectar) Date: Mon, 4 Feb 2002 14:18:59 -0600 From: "Jacques A. Vidrine" To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/bind - Imported sources Message-ID: <20020204201858.GA44508@madman.nectar.cc> Mail-Followup-To: "Jacques A. Vidrine" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200202041912.g14JCrO38216@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202041912.g14JCrO38216@freefall.freebsd.org> User-Agent: Mutt/1.3.27i X-Url: http://www.nectar.cc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Feb 04, 2002 at 11:12:53AM -0800, Jacques Vidrine wrote: > nectar 2002/02/04 11:12:53 PST > > src/contrib/bind - Imported sources > Update of /home/ncvs/src/contrib/bind > In directory freefall.freebsd.org:/d/home/nectar/bind-8.3.1 Just FYI, There are several bits [1] which I shouldn't have imported. I will ask the CVS Meisters to remove those bits after I run through another build. Cheers, -- Jacques A. Vidrine http://www.nectar.cc/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se [1] .cvsignore files; crypto code; other-than-FreeBSD port/ directories. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 12:23:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 921FE37B432; Mon, 4 Feb 2002 12:23:02 -0800 (PST) Received: (from bsd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14KN2c79024; Mon, 4 Feb 2002 12:23:02 -0800 (PST) (envelope-from bsd) Message-Id: <200202042023.g14KN2c79024@freefall.freebsd.org> From: "Brian S. Dean" Date: Mon, 4 Feb 2002 12:23:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms/comserv Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bsd 2002/02/04 12:23:02 PST Modified files: comms/comserv Makefile distinfo Log: Update to version 1.3.4. Revision Changes Path 1.9 +1 -1 ports/comms/comserv/Makefile 1.8 +1 -1 ports/comms/comserv/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 13: 4:53 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E7AD237B41F; Mon, 4 Feb 2002 13:04:42 -0800 (PST) Received: (from mjacob@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14L4gI89179; Mon, 4 Feb 2002 13:04:42 -0800 (PST) (envelope-from mjacob) Message-Id: <200202042104.g14L4gI89179@freefall.freebsd.org> From: Matt Jacob Date: Mon, 4 Feb 2002 13:04:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/isp isp.c isp_freebsd.h isp_inline.h isp_ioctl.h isp_pci.c isp_target.c isp_target.h ispmbox.h ispreg.h ispvar.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mjacob 2002/02/04 13:04:42 PST Modified files: sys/dev/isp isp.c isp_freebsd.h isp_inline.h isp_ioctl.h isp_pci.c isp_target.c isp_target.h ispmbox.h ispreg.h ispvar.h Log: + A variety of 23XX changes: disable MWI on 2300 based on function code, set an 'isp_port' for the 2312- it's a separate instance, but the NVRAM is shared, and the second port's NVRAM is at offset 256. + Enable RIO operation for LVD SCSI cards. This makes a *big* difference as even under reasonable load we get batched completions of about 30 commands at a time on, say, an ISP1080. + Do 'continuation' mailbox commands- this allows us to specify a work area within the softc and 'continue' repeated mailbox commands. This is more or less on an ad hoc basis and is currently only used for firmware loading (which f/w now loads substantially faster becuase the calling thread is only woken when all the f/w words are loaded- not for each one of the 40000 f/w words that gets loaded). + If we're about to return from isp_intr with a 'bogus interrupt' indication, and we're not a 23XX card, check to see whether the semaphore register is currently *2* (not *1* as it should be) and whether there's an async completion sitting in outgoing mailbox0. This seems to capture cases of lost fast posting and RIO interrupts that the 12160 && 1080 have been known to pump out under extreme load (extreme, as in > 250 active commands). + FC_SCRATCH_ACQUIRE/FC_SCRATCH_RELEASE macros. + Endian correct swizzle/unswizzle of an ATIO2 that has a WWPN in it. MFC after: 1 week Revision Changes Path 1.85 +153 -34 src/sys/dev/isp/isp.c 1.58 +8 -3 src/sys/dev/isp/isp_freebsd.h 1.21 +11 -5 src/sys/dev/isp/isp_inline.h 1.3 +6 -6 src/sys/dev/isp/isp_ioctl.h 1.76 +19 -2 src/sys/dev/isp/isp_pci.c 1.20 +5 -0 src/sys/dev/isp/isp_target.c 1.18 +3 -2 src/sys/dev/isp/isp_target.h 1.38 +3 -1 src/sys/dev/isp/ispmbox.h 1.21 +3 -2 src/sys/dev/isp/ispreg.h 1.53 +9 -2 src/sys/dev/isp/ispvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 13: 6:19 2002 Delivered-To: cvs-all@freebsd.org Received: from heaven.gigo.com (gigo.com [207.173.11.186]) by hub.freebsd.org (Postfix) with ESMTP id 2C98A37B427 for ; Mon, 4 Feb 2002 13:06:05 -0800 (PST) Received: from 200.163.6.93 (ppp093-bsace7023.telebrasilia.net.br [200.163.6.93]) by heaven.gigo.com (Postfix) with ESMTP id 76B3EB947 for ; Mon, 4 Feb 2002 13:05:59 -0800 (PST) Received: (qmail 1865 invoked by uid 1001); 4 Feb 2002 20:22:30 -0000 Message-ID: <20020204202230.1864.qmail@exxodus.fedaykin.here> Date: Mon, 4 Feb 2002 18:22:08 -0200 From: Mario Sergio Fujikawa Ferreira To: Nik Clayton , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/games/utserver-asu Makefile References: <200202022334.g12NYpX66590@freefall.freebsd.org> <20020203184527.1633.qmail@exxodus.fedaykin.here> <20020203214006.GE82640@squall.waterspout.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020203214006.GE82640@squall.waterspout.com>; from will@csociety.org on Sun, Feb 03, 2002 at 04:39:45PM -0500 X-Operating-System: FreeBSD 4.5-STABLE X-Disclaimer: I hope you find what you are looking for... in life :) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 03, 2002 at 04:39:45PM -0500, Will Andrews wrote: > > Does anyone know if there's anything special in bento? > > 'Cause it worked in my home ports. :( > > No problem. I will avoid using this but this is weird. > > Uh.. no. '9' is not a valid option in gzip. Look at how ${GZIP} > is used in bsd.port.mk. My typo, I meant GZIP= -9 This should go back even though we have that in bsd.port.mk. Just to make sure we are doing the strongest compression. -- Mario S F Ferreira - DF - Brazil - "I guess this is a signature." Computer Science Undergraduate | FreeBSD Committer | CS Developer flames to beloved devnull@someotherworldbeloworabove.org feature, n: a documented bug | bug, n: an undocumented feature To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 13:28:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F0E037B400; Mon, 4 Feb 2002 13:28:45 -0800 (PST) Received: (from nectar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14LSjq96253; Mon, 4 Feb 2002 13:28:45 -0800 (PST) (envelope-from nectar) Message-Id: <200202042128.g14LSjq96253@freefall.freebsd.org> From: Jacques Vidrine Date: Mon, 4 Feb 2002 13:28:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/bind FREEBSD-Xlist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2002/02/04 13:28:45 PST Added files: contrib/bind FREEBSD-Xlist Log: Give the next BIND-importing schmuck some assistance. Revision Changes Path 1.1 +37 -0 src/contrib/bind/FREEBSD-Xlist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 14:29:27 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AEF1837B41D; Mon, 4 Feb 2002 14:29:22 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14MTMX08809; Mon, 4 Feb 2002 14:29:22 -0800 (PST) (envelope-from cjc) Message-Id: <200202042229.g14MTMX08809@freefall.freebsd.org> From: "Crist J. Clark" Date: Mon, 4 Feb 2002 14:29:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc.network src/etc/defaults rc.conf src/share/man/man5 rc.conf.5 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjc 2002/02/04 14:29:22 PST Modified files: (Branch: RELENG_4) etc rc.network etc/defaults rc.conf share/man/man5 rc.conf.5 Log: MFC: Make the rc.conf(5) 'log_in_vain' knob an integer. PR: bin/32953 Revision Changes Path 1.53.2.47 +2 -2 src/etc/defaults/rc.conf 1.74.2.29 +13 -4 src/etc/rc.network 1.64.2.39 +15 -6 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 14:31:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AAB6D37B41A; Mon, 4 Feb 2002 14:31:49 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14MVnI09272; Mon, 4 Feb 2002 14:31:49 -0800 (PST) (envelope-from pat) Message-Id: <200202042231.g14MVnI09272@freefall.freebsd.org> From: Patrick Li Date: Mon, 4 Feb 2002 14:31:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/db3/files patch-dist::configure X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/04 14:31:49 PST Modified files: databases/db3/files patch-dist::configure Log: Make port LOCALBASE safe PR: 34513 Submitted by: Kazutoshi Kubota Approved by: maintainer Revision Changes Path 1.2 +2 -2 ports/databases/db3/files/patch-dist::configure To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 14:49: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 75AE237B430; Mon, 4 Feb 2002 14:49:07 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14Mn7n11897; Mon, 4 Feb 2002 14:49:07 -0800 (PST) (envelope-from pat) Message-Id: <200202042249.g14Mn7n11897@freefall.freebsd.org> From: Patrick Li Date: Mon, 4 Feb 2002 14:49:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/integrit Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/04 14:49:07 PST Modified files: security/integrit Makefile distinfo pkg-plist Log: Update to 3.00.05 PR: 34602 Submitted by: maintainer Revision Changes Path 1.7 +4 -9 ports/security/integrit/Makefile 1.5 +1 -1 ports/security/integrit/distinfo 1.4 +2 -2 ports/security/integrit/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 15:14:39 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E3E1E37B41A; Mon, 4 Feb 2002 15:14:31 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14NEVQ19542; Mon, 4 Feb 2002 15:14:31 -0800 (PST) (envelope-from pat) Message-Id: <200202042314.g14NEVQ19542@freefall.freebsd.org> From: Patrick Li Date: Mon, 4 Feb 2002 15:14:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/pam_ldap Makefile distinfo ports/security/pam_ldap/files patch-aa patch-ab patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/04 15:14:31 PST Modified files: security/pam_ldap Makefile distinfo security/pam_ldap/files patch-aa Removed files: security/pam_ldap/files patch-ab patch-ac Log: Update to 1.3.7 PR: 34592 Submitted by: maintainer Revision Changes Path 1.10 +5 -4 ports/security/pam_ldap/Makefile 1.8 +1 -1 ports/security/pam_ldap/distinfo 1.2 +4 -6 ports/security/pam_ldap/files/patch-aa 1.3 +0 -11 ports/security/pam_ldap/files/patch-ab (dead) 1.4 +0 -31 ports/security/pam_ldap/files/patch-ac (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 15:23:39 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 40B0137B47C; Mon, 4 Feb 2002 15:23:32 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14NNWf20783; Mon, 4 Feb 2002 15:23:32 -0800 (PST) (envelope-from bmah) Message-Id: <200202042323.g14NNWf20783@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 4 Feb 2002 15:23:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/releng article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/04 15:23:32 PST Modified files: en_US.ISO8859-1/articles/releng article.sgml Log: Fix typo: s/arw/are/ PR: 34606 Submitted by: Frans Haarman Revision Changes Path 1.9 +4 -4 doc/en_US.ISO8859-1/articles/releng/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 15:40:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DF99137B42B; Mon, 4 Feb 2002 15:40:01 -0800 (PST) Received: (from billf@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g14Ne1422751; Mon, 4 Feb 2002 15:40:01 -0800 (PST) (envelope-from billf) Message-Id: <200202042340.g14Ne1422751@freefall.freebsd.org> From: Bill Fumerola Date: Mon, 4 Feb 2002 15:40:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/mtr Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG billf 2002/02/04 15:40:01 PST Modified files: net/mtr Makefile distinfo Log: upgrade to 0.45, disable IPv6 until a new patch is generated by KAME. Revision Changes Path 1.31 +3 -2 ports/net/mtr/Makefile 1.14 +1 -2 ports/net/mtr/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 16:42:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 62C9637B405; Mon, 4 Feb 2002 16:42:07 -0800 (PST) Received: (from billf@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g150g7d33843; Mon, 4 Feb 2002 16:42:07 -0800 (PST) (envelope-from billf) Message-Id: <200202050042.g150g7d33843@freefall.freebsd.org> From: Bill Fumerola Date: Mon, 4 Feb 2002 16:42:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/tethereal Makefile ports/net/ethereal Makefile pkg-plist CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG billf 2002/02/04 16:42:05 PST Modified files: net Makefile net/ethereal Makefile pkg-plist . modules Added files: net/tethereal Makefile Log: ethereal: add hooks for only building tethereal, which doesn't require X build with SNMP dissection (requires ucd-snmp) by default add tethereal as a slave port to ethereal Revision Changes Path 1.4648 +1 -0 CVSROOT/modules 1.705 +1 -0 ports/net/Makefile 1.43 +18 -6 ports/net/ethereal/Makefile 1.11 +1 -1 ports/net/ethereal/pkg-plist 1.1 +18 -0 ports/net/tethereal/Makefile (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 17:20: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from gull.prod.itd.earthlink.net (gull.mail.pas.earthlink.net [207.217.120.84]) by hub.freebsd.org (Postfix) with ESMTP id 2718937B41D; Mon, 4 Feb 2002 17:19:54 -0800 (PST) Received: from user-2ivfogc.dialup.mindspring.com ([165.247.226.12] helo=gohan.cjclark.org) by gull.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16XuGx-0005D5-00; Mon, 04 Feb 2002 17:19:48 -0800 Received: (from cjc@localhost) by gohan.cjclark.org (8.11.6/8.11.6) id g150VVY04697; Mon, 4 Feb 2002 16:31:31 -0800 (PST) (envelope-from cjc) Date: Mon, 4 Feb 2002 16:31:31 -0800 From: "Crist J. Clark" To: Darren Reed Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/contrib/ipfilter/netinet ip_fil.c ip_nat.c Message-ID: <20020204163131.D3722@gohan.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <200202041431.g14EVEQ37115@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200202041431.g14EVEQ37115@freefall.freebsd.org>; from darrenr@FreeBSD.org on Mon, Feb 04, 2002 at 06:31:14AM -0800 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Feb 04, 2002 at 06:31:14AM -0800, Darren Reed wrote: > darrenr 2002/02/04 06:31:14 PST ^^^^^^^ > > Modified files: (Branch: RELENG_4) > sys/contrib/ipfilter/netinet ip_fil.c ip_nat.c > Log: > Pullup patch to change securelevel required for "secure" firewalling. > > PR: 27615 > Submitted by: Andria Thomas > Reviewed by: darrenr ^^^^^^^ > Approved by: darrenr ^^^^^^^ > > Revision Changes Path > 1.25.2.3 +2 -2 src/sys/contrib/ipfilter/netinet/ip_fil.c > 1.22.2.4 +1 -1 src/sys/contrib/ipfilter/netinet/ip_nat.c Are the "Reviewed by" and "Approved by" perhaps a bit redundant? :) (But it is nice to see some committers do review their own changes.) -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 17:27:58 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E92AA37B42A; Mon, 4 Feb 2002 17:27:53 -0800 (PST) Received: (from billf@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g151Rr644870; Mon, 4 Feb 2002 17:27:53 -0800 (PST) (envelope-from billf) Message-Id: <200202050127.g151Rr644870@freefall.freebsd.org> From: Bill Fumerola Date: Mon, 4 Feb 2002 17:27:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ethereal Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG billf 2002/02/04 17:27:53 PST Modified files: net/ethereal Makefile distinfo Log: update to 0.9.1 Revision Changes Path 1.44 +1 -1 ports/net/ethereal/Makefile 1.31 +1 -1 ports/net/ethereal/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 17:43:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 95D0337B422; Mon, 4 Feb 2002 17:43:06 -0800 (PST) Received: (from jeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g151h6v48148; Mon, 4 Feb 2002 17:43:06 -0800 (PST) (envelope-from jeh) Message-Id: <200202050143.g151h6v48148@freefall.freebsd.org> From: "James E. Housley" Date: Mon, 4 Feb 2002 17:43:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/healthd Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeh 2002/02/04 17:43:06 PST Modified files: sysutils/healthd Makefile distinfo Log: A small patch to allow the command line to override the ENV in healthdc. NOTE: I still have a lot of other patches that I am working on, they haven't been forgotten. Submitted by: David McNett Revision Changes Path 1.24 +2 -2 ports/sysutils/healthd/Makefile 1.18 +1 -1 ports/sysutils/healthd/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 17:58:28 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A2B2137B427; Mon, 4 Feb 2002 17:58:25 -0800 (PST) Received: (from mi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g151wPn50922; Mon, 4 Feb 2002 17:58:25 -0800 (PST) (envelope-from mi) Message-Id: <200202050158.g151wPn50922@freefall.freebsd.org> From: Mikhail Teterin Date: Mon, 4 Feb 2002 17:58:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/pam-pgsql Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2002/02/04 17:58:25 PST Modified files: security/pam-pgsql Makefile distinfo Log: Fix bugs in my MASTER_SITES mechanismo (too bad, the MASTER_SITE_DEBIAN idea is not catching up), and upgrade the port to port-revision 2, which uses the newer patch from the authors 0.5.2-2. Revision Changes Path 1.10 +6 -5 ports/security/pam-pgsql/Makefile 1.4 +1 -1 ports/security/pam-pgsql/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 18: 1: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AFAB37B41A; Mon, 4 Feb 2002 18:00:57 -0800 (PST) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1520vp51494; Mon, 4 Feb 2002 18:00:57 -0800 (PST) (envelope-from dillon) Message-Id: <200202050200.g1520vp51494@freefall.freebsd.org> From: Matt Dillon Date: Mon, 4 Feb 2002 18:00:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/cnw if_cnw.c src/sys/dev/lnc if_lnc.c src/sys/dev/vx if_vx.c src/sys/kern uipc_mbuf.c uipc_socket.c uipc_socket2.c src/sys/net if_ppp.c if_sl.c if_tap.c if_tun.c ppp_tty.c src/sys/netgraph ng_async.c ng_tty.c src/sys/sys mbuf.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2002/02/04 18:00:57 PST Modified files: sys/dev/cnw if_cnw.c sys/dev/lnc if_lnc.c sys/dev/vx if_vx.c sys/kern uipc_mbuf.c uipc_socket.c uipc_socket2.c sys/net if_ppp.c if_sl.c if_tap.c if_tun.c ppp_tty.c sys/netgraph ng_async.c ng_tty.c sys/sys mbuf.h Log: Get rid of the twisted MFREE() macro entirely. Reviewed by: dg, bmilekic MFC after: 3 days Revision Changes Path 1.4 +5 -7 src/sys/dev/cnw/if_cnw.c 1.90 +8 -6 src/sys/dev/lnc/if_lnc.c 1.35 +13 -15 src/sys/dev/vx/if_vx.c 1.90 +3 -8 src/sys/kern/uipc_mbuf.c 1.109 +2 -2 src/sys/kern/uipc_socket.c 1.83 +5 -8 src/sys/kern/uipc_socket2.c 1.74 +3 -2 src/sys/net/if_ppp.c 1.98 +1 -3 src/sys/net/if_sl.c 1.13 +11 -12 src/sys/net/if_tap.c 1.101 +11 -12 src/sys/net/if_tun.c 1.48 +2 -4 src/sys/net/ppp_tty.c 1.18 +2 -6 src/sys/netgraph/ng_async.c 1.22 +1 -3 src/sys/netgraph/ng_tty.c 1.89 +0 -4 src/sys/sys/mbuf.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 18:10:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B0F4B37B41D; Mon, 4 Feb 2002 18:10:07 -0800 (PST) Received: (from mi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g152A7F57351; Mon, 4 Feb 2002 18:10:07 -0800 (PST) (envelope-from mi) Message-Id: <200202050210.g152A7F57351@freefall.freebsd.org> From: Mikhail Teterin Date: Mon, 4 Feb 2002 18:10:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/pam-pgsql/files Makefile.bsd patch-md5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2002/02/04 18:10:07 PST Modified files: security/pam-pgsql/files Makefile.bsd patch-md5 Log: Fix the patch (a header and an empty line) and remove last mentions of the shortlived pqescape.c. Revision Changes Path 1.7 +1 -2 ports/security/pam-pgsql/files/Makefile.bsd 1.2 +3 -3 ports/security/pam-pgsql/files/patch-md5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 18:14:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6505F37B419; Mon, 4 Feb 2002 18:14:31 -0800 (PST) Received: (from mi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g152EVa61019; Mon, 4 Feb 2002 18:14:31 -0800 (PST) (envelope-from mi) Message-Id: <200202050214.g152EVa61019@freefall.freebsd.org> From: Mikhail Teterin Date: Mon, 4 Feb 2002 18:14:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/tcllib Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2002/02/04 18:14:31 PST Modified files: devel/tcllib Makefile Log: BUILD_DEPEND on tclsh. Any tclsh will do, but if none is present -- build the tcl83... Revision Changes Path 1.5 +1 -0 ports/devel/tcllib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 18:23:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA1BA37B42F; Mon, 4 Feb 2002 18:23:14 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g152NEu62388; Mon, 4 Feb 2002 18:23:14 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202050223.g152NEu62388@freefall.freebsd.org> From: Jun Kuriyama Date: Mon, 4 Feb 2002 18:23:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/ja_JP.eucJP/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/04 18:23:14 PST Modified files: release/doc/ja_JP.eucJP/relnotes/common new.sgml Log: MFen (1.272 --> 1.275). Revision Changes Path 1.41 +18 -6 src/release/doc/ja_JP.eucJP/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 18:28:34 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 43F0437B421; Mon, 4 Feb 2002 18:28:30 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.6/8.11.5) with ESMTP id g152S0Q40686; Mon, 4 Feb 2002 21:28:02 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200202050228.g152S0Q40686@aldan.algebra.com> Date: Mon, 4 Feb 2002 21:27:57 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: ports/devel/tcllib Makefile To: mi@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200202050214.g152EVa61019@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Sorry, I forgot. Both of this were prompted by fenner's errorlogs. -mi On 4 Feb, Mikhail Teterin wrote: > mi 2002/02/04 18:14:31 PST > Modified files: > devel/tcllib Makefile > Log: > BUILD_DEPEND on tclsh. Any tclsh will do, but if none is present -- > build the tcl83... > mi 2002/02/04 17:58:25 PST > Modified files: > security/pam-pgsql Makefile distinfo > Log: > Fix bugs in my MASTER_SITES mechanismo (too bad, the > MASTER_SITE_DEBIAN idea is not catching up), and upgrade the port to > port-revision 2, which uses the newer patch from the authors > 0.5.2-2. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 18:32: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 65F4D37B428; Mon, 4 Feb 2002 18:31:53 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.6/8.11.5) with ESMTP id g152VOQ40725; Mon, 4 Feb 2002 21:31:26 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200202050231.g152VOQ40725@aldan.algebra.com> Date: Mon, 4 Feb 2002 21:31:21 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: ports/sysutils/healthd Makefile distinfo To: jeh@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200202050143.g151h6v48148@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 4 Feb, James E. Housley wrote: > jeh 2002/02/04 17:43:06 PST > > Modified files: > sysutils/healthd Makefile distinfo > Log: > A small patch to allow the command line to override the ENV in healthdc. This deserves a PORTREVISION dump, does not it? > NOTE: I still have a lot of other patches that I am working on, they > haven't been forgotten. > > Submitted by: David McNett -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 18:54:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AF61637B432; Mon, 4 Feb 2002 18:54:52 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g152sqD66861; Mon, 4 Feb 2002 18:54:52 -0800 (PST) (envelope-from obrien) Message-Id: <200202050254.g152sqD66861@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 4 Feb 2002 18:54:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gcc-devel Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/04 18:54:52 PST Modified files: lang/gcc-devel Makefile Log: This allows the port to build, but it still has install problems. Revision Changes Path 1.108 +5 -2 ports/lang/gcc-devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 19: 0: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 40A7737B427; Mon, 4 Feb 2002 19:00:03 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15303b67787; Mon, 4 Feb 2002 19:00:03 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202050300.g15303b67787@freefall.freebsd.org> From: Jun Kuriyama Date: Mon, 4 Feb 2002 19:00:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/gnupg Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/04 19:00:03 PST Modified files: security/gnupg Makefile Log: Link with shared libintl rather than static included gettext. Suggested by: ache Revision Changes Path 1.35 +3 -2 ports/security/gnupg/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 19: 4:37 2002 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-47.dsl.lsan03.pacbell.net [64.165.226.47]) by hub.freebsd.org (Postfix) with ESMTP id 000C437B420; Mon, 4 Feb 2002 19:04:31 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 6B85366D8B; Mon, 4 Feb 2002 19:04:31 -0800 (PST) Date: Mon, 4 Feb 2002 19:04:31 -0800 From: Kris Kennaway To: Stephen McKay Cc: Ian Dowse , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/ctm/ctm_rmail ctm_rmail.c Message-ID: <20020204190431.A36742@xor.obsecurity.org> References: <200201222254.g0MMsqg19740@freefall.freebsd.org> <200202041157.g14BvhC06852@dungeon.home> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="XsQoSWH+UP9D9v3l" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200202041157.g14BvhC06852@dungeon.home>; from mckay@thehub.com.au on Mon, Feb 04, 2002 at 09:57:43PM +1000 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Feb 04, 2002 at 09:57:43PM +1000, Stephen McKay wrote: > On Tuesday, 22nd January 2002, Ian Dowse wrote: >=20 > >iedowse 2002/01/22 14:54:52 PST > > > > Modified files: > > usr.sbin/ctm/ctm_rmail ctm_rmail.c=20 > > Log: > > The mode of files created by ctm_rmail was always 0600, even if the > > umask was less restrictive. This was caused by the use of mkstemp() > > which internally passes a mode of 0600 to open(). Fix this by > > explicitly chmod'ing the files to (0666 & ~umask). >=20 > This is pretty silly. The right way to fix this is to revert back to > using mktemp(). Probably revert the whole 1.14 delta. I'll put this > on my TODO list. As I recall, the former use of mktemp() was insecure, which was the reason it was changed to use the secure mkstemp(). It should not be regressed. Kris --XsQoSWH+UP9D9v3l Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8X0u+Wry0BWjoQKURApkLAKCpFJN0zA4OL54favcTWhTCNIhoXACgz1Ih C7DCQBaz3SM148uP9C+0WRE= =y1c9 -----END PGP SIGNATURE----- --XsQoSWH+UP9D9v3l-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 19: 7: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-47.dsl.lsan03.pacbell.net [64.165.226.47]) by hub.freebsd.org (Postfix) with ESMTP id E80B337B427; Mon, 4 Feb 2002 19:06:54 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 40A3266EF3; Mon, 4 Feb 2002 19:06:54 -0800 (PST) Date: Mon, 4 Feb 2002 19:06:54 -0800 From: Kris Kennaway To: David O'Brien Cc: Ruslan Ermilov , Mark Murray , current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: pam_ssh world breakage (was: Re: cvs commit: src/lib/libpam Makefile.inc) Message-ID: <20020204190654.B36742@xor.obsecurity.org> References: <200202031551.g13Fpql76999@freefall.freebsd.org> <20020204153032.C58535@sunbay.com> <20020204091717.A16149@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="NMuMz9nt05w80d4+" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020204091717.A16149@dragon.nuxi.com>; from obrien@FreeBSD.org on Mon, Feb 04, 2002 at 09:17:17AM -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --NMuMz9nt05w80d4+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Feb 04, 2002 at 09:17:17AM -0800, David O'Brien wrote: > On Mon, Feb 04, 2002 at 03:30:32PM +0200, Ruslan Ermilov wrote: > > This delta breaks buildworld. gcc(1) has a known bug-feature > > of hiding some errors in standard system headers, making them > > invisible without -I. > ... > > and compile now can't survive the WARNS=3D4. >=20 > Not to mention there is ZERO way this code will pass WARNS=3D4 for GCC 3. > Please Committers, do not try to WARNS code right now -- there just is no > use. It will only get in the way later. If a new compiler generates more warnings then we should temporarily disable the warnings when the compiler is imported by setting WARNS=3D0 in . All of the Makefile.inc's which set a default WARNS value for a subdirectory use WARNS?=3D for this reason (so they can be globally overridden until someone goes through and fixes the new ones). If you use the argument that one shouldn't set WARNS because a new compiler will cause the tree to break, then there's no point having it at all since that condition will always be true. Kris --NMuMz9nt05w80d4+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8X0xNWry0BWjoQKURAlc8AKDGpW9H6S7aoQLIVX9bEFRSShoW+ACfeaBP RhZX3q1QY+ZmJ0BeOlak2HY= =sxPF -----END PGP SIGNATURE----- --NMuMz9nt05w80d4+-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 19:50:55 2002 Delivered-To: cvs-all@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id B643637B429; Mon, 4 Feb 2002 19:50:43 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 9CF5A9B08; Mon, 4 Feb 2002 22:50:05 -0500 (EST) Date: Mon, 4 Feb 2002 22:50:05 -0500 From: Will Andrews To: Mikhail Teterin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/devel/tcllib Makefile Message-ID: <20020205035005.GC82640@squall.waterspout.com> Mail-Followup-To: Mikhail Teterin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200202050214.g152EVa61019@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202050214.g152EVa61019@freefall.freebsd.org> User-Agent: Mutt/1.3.26i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Feb 04, 2002 at 06:14:31PM -0800, Mikhail Teterin wrote: > Log: > BUILD_DEPEND on tclsh. Any tclsh will do, but if none is present -- > build the tcl83... This breaks dependencies. If one has another tcl installed this will record a dependency on a (not installed) tcl83. Regards, -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 20:43:14 2002 Delivered-To: cvs-all@freebsd.org Received: from mail11.speakeasy.net (mail11.speakeasy.net [216.254.0.211]) by hub.freebsd.org (Postfix) with ESMTP id E6EFF37B42B for ; Mon, 4 Feb 2002 20:42:31 -0800 (PST) Received: (qmail 9693 invoked from network); 5 Feb 2002 04:42:31 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([65.91.155.36]) (envelope-sender ) by mail11.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 5 Feb 2002 04:42:31 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200201180921.g0I9LFn30513@freefall.freebsd.org> Date: Mon, 04 Feb 2002 23:42:29 -0500 (EST) From: John Baldwin To: Seigo Tanimura Subject: RE: cvs commit: src/sys/kern kern_sx.c Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 18-Jan-02 Seigo Tanimura wrote: > tanimura 2002/01/18 01:21:15 PST > > Modified files: > sys/kern kern_sx.c > Log: > Invert the test of sx_xholder for SX_LOCKED. We need to warn if a > thread other than the curthread holds an sx. > > While I am here, break a line at the end of warning. Good catch, the default case also needs the newline. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 21: 1:39 2002 Delivered-To: cvs-all@freebsd.org Received: from mail5.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by hub.freebsd.org (Postfix) with ESMTP id F113337B42B for ; Mon, 4 Feb 2002 21:01:35 -0800 (PST) Received: (qmail 26623 invoked from network); 5 Feb 2002 05:01:34 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([65.91.155.8]) (envelope-sender ) by mail5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 5 Feb 2002 05:01:34 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200201301823.g0UINW839097@freefall.freebsd.org> Date: Tue, 05 Feb 2002 00:01:32 -0500 (EST) From: John Baldwin To: Bruce Evans Subject: RE: cvs commit: src/sys/i386/i386 db_interface.c Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 30-Jan-02 Bruce Evans wrote: > bde 2002/01/30 10:23:32 PST > > Modified files: > sys/i386/i386 db_interface.c > Log: > Backed out the last vestiges of rev.1.51. Don't enter a critical > region in Debugger(), since rev.1.468 of machdep.c does this better. > Other cosmetic backouts. Err, have you tested this? In my tests locally this still doesn't work properly which is why I haven't committed it. :( -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 21:27: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BBB137B428; Mon, 4 Feb 2002 21:26:54 -0800 (PST) Received: (from horikawa@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g155QsW99913; Mon, 4 Feb 2002 21:26:54 -0800 (PST) (envelope-from horikawa) Message-Id: <200202050526.g155QsW99913@freefall.freebsd.org> From: Kazuo Horikawa Date: Mon, 4 Feb 2002 21:26:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man1 eqn.1 fdformat.1 fetch.1 file.1 groff.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2002/02/04 21:26:54 PST Modified files: ja_JP.eucJP/man/man1 eqn.1 fdformat.1 fetch.1 file.1 groff.1 Log: o fix punctutaion and workding (eqn.1) o device -> device node (fdformat.1) o remove repeated word (fetch.1) o name_file -> namefile, Pagicdir -> Magdir (file.1) o add missing .Tp for lbp Submitted by: Satoru Koizumi Revision Changes Path 1.10 +3 -3 doc/ja_JP.eucJP/man/man1/eqn.1 1.18 +1 -1 doc/ja_JP.eucJP/man/man1/fdformat.1 1.26 +1 -1 doc/ja_JP.eucJP/man/man1/fetch.1 1.21 +3 -3 doc/ja_JP.eucJP/man/man1/file.1 1.14 +2 -1 doc/ja_JP.eucJP/man/man1/groff.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 21:31: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A26A37B404; Mon, 4 Feb 2002 21:31:01 -0800 (PST) Received: (from horikawa@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g155V1C02542; Mon, 4 Feb 2002 21:31:01 -0800 (PST) (envelope-from horikawa) Message-Id: <200202050531.g155V1C02542@freefall.freebsd.org> From: Kazuo Horikawa Date: Mon, 4 Feb 2002 21:31:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man1 host.1 indxbib.1 login.1 make.1 objcopy.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2002/02/04 21:31:01 PST Modified files: ja_JP.eucJP/man/man1 host.1 indxbib.1 login.1 make.1 objcopy.1 Log: o fix wording (host.1) o BR should be .BR (host.1) o remove remained English phrase (login.1) o trailing word after ".Fl n" should be on the next line (make.1) o add new line before ".TP" (objcopy.1) o remove leading "+" (objcopy.1) Submitted by: Satoru Koizumi Revision Changes Path 1.11 +2 -2 doc/ja_JP.eucJP/man/man1/host.1 1.8 +2 -2 doc/ja_JP.eucJP/man/man1/indxbib.1 1.15 +1 -2 doc/ja_JP.eucJP/man/man1/login.1 1.28 +2 -1 doc/ja_JP.eucJP/man/man1/make.1 1.8 +5 -4 doc/ja_JP.eucJP/man/man1/objcopy.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 22: 8:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 03DCF37B41D; Mon, 4 Feb 2002 22:08:27 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1568QR29449; Mon, 4 Feb 2002 22:08:26 -0800 (PST) (envelope-from des) Message-Id: <200202050608.g1568QR29449@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 4 Feb 2002 22:08:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_deny pam_deny.c src/lib/libpam/modules/pam_ftp pam_ftp.c src/lib/libpam/modules/pam_kerberosIV pam_kerberosIV.c src/lib/libpam/modules/pam_krb5 pam_krb5.c src/lib/libpam/modules/pam_lastlog pam_lastlog.c src/lib/libpam/modules/pam_login_access pam_login_access.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/04 22:08:26 PST Modified files: lib/libpam/modules/pam_deny pam_deny.c lib/libpam/modules/pam_ftp pam_ftp.c lib/libpam/modules/pam_kerberosIV pam_kerberosIV.c lib/libpam/modules/pam_krb5 pam_krb5.c lib/libpam/modules/pam_lastlog pam_lastlog.c lib/libpam/modules/pam_login_access pam_login_access.c lib/libpam/modules/pam_nologin pam_nologin.c lib/libpam/modules/pam_opie pam_opie.c lib/libpam/modules/pam_opieaccess pam_opieaccess.c lib/libpam/modules/pam_permit pam_permit.c lib/libpam/modules/pam_radius pam_radius.c lib/libpam/modules/pam_rootok pam_rootok.c lib/libpam/modules/pam_securetty pam_securetty.c lib/libpam/modules/pam_self pam_self.c lib/libpam/modules/pam_ssh pam_ssh.c lib/libpam/modules/pam_tacplus pam_tacplus.c lib/libpam/modules/pam_unix pam_unix.c lib/libpam/modules/pam_wheel pam_wheel.c Log: #include cleanup. Sponsored by: DARPA, NAI Labs Revision Changes Path 1.5 +2 -1 src/lib/libpam/modules/pam_deny/pam_deny.c 1.8 +3 -1 src/lib/libpam/modules/pam_ftp/pam_ftp.c 1.9 +2 -2 src/lib/libpam/modules/pam_kerberosIV/pam_kerberosIV.c 1.5 +1 -2 src/lib/libpam/modules/pam_krb5/pam_krb5.c 1.6 +2 -1 src/lib/libpam/modules/pam_lastlog/pam_lastlog.c 1.6 +2 -1 src/lib/libpam/modules/pam_login_access/pam_login_access.c 1.7 +2 -2 src/lib/libpam/modules/pam_nologin/pam_nologin.c 1.18 +2 -1 src/lib/libpam/modules/pam_opie/pam_opie.c 1.6 +2 -1 src/lib/libpam/modules/pam_opieaccess/pam_opieaccess.c 1.4 +2 -2 src/lib/libpam/modules/pam_permit/pam_permit.c 1.8 +2 -2 src/lib/libpam/modules/pam_radius/pam_radius.c 1.6 +2 -1 src/lib/libpam/modules/pam_rootok/pam_rootok.c 1.9 +2 -1 src/lib/libpam/modules/pam_securetty/pam_securetty.c 1.5 +2 -1 src/lib/libpam/modules/pam_self/pam_self.c 1.26 +1 -0 src/lib/libpam/modules/pam_ssh/pam_ssh.c 1.8 +2 -2 src/lib/libpam/modules/pam_tacplus/pam_tacplus.c 1.21 +2 -2 src/lib/libpam/modules/pam_unix/pam_unix.c 1.9 +2 -1 src/lib/libpam/modules/pam_wheel/pam_wheel.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 22:20:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 478DB37B405; Mon, 4 Feb 2002 22:20:27 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g156KRq30755; Mon, 4 Feb 2002 22:20:27 -0800 (PST) (envelope-from des) Message-Id: <200202050620.g156KRq30755@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 4 Feb 2002 22:20:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_deny pam_deny.c src/lib/libpam/modules/pam_permit pam_permit.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/04 22:20:27 PST Modified files: lib/libpam/modules/pam_deny pam_deny.c lib/libpam/modules/pam_permit pam_permit.c Log: #include for NULL (hidden by Linux-PAM header pollution) Sponsored by: DARPA, NAI Labs Revision Changes Path 1.6 +2 -0 src/lib/libpam/modules/pam_deny/pam_deny.c 1.5 +2 -0 src/lib/libpam/modules/pam_permit/pam_permit.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 22:21:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A81F237B422; Mon, 4 Feb 2002 22:21:34 -0800 (PST) Received: (from bbraun@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g156LYr30879; Mon, 4 Feb 2002 22:21:34 -0800 (PST) (envelope-from bbraun) Message-Id: <200202050621.g156LYr30879@freefall.freebsd.org> From: Rob Braun Date: Mon, 4 Feb 2002 22:21:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include ctype.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bbraun 2002/02/04 22:21:34 PST Modified files: include ctype.h Log: Makes __istype() an inline (and a non inlined) function to avoid C++ compile issues. std::isspace(' ') was expanding to std::(!!_maskrune...) which would cause a C++ compile error. Making __istype() an inline causes the expansion to be std::__istype() instead, which is valid. Reviewed by: jkh Revision Changes Path 1.17 +8 -3 src/include/ctype.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 22:32: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 16D5437B426; Mon, 4 Feb 2002 22:31:59 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g156VxZ32057; Mon, 4 Feb 2002 22:31:59 -0800 (PST) (envelope-from des) Message-Id: <200202050631.g156VxZ32057@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 4 Feb 2002 22:31:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include/rpc svc.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/04 22:31:59 PST Modified files: include/rpc svc.h Log: Move arguments in prototype out of application namespace. Sponsored by: DARPA, NAI Labs Revision Changes Path 1.20 +2 -2 src/include/rpc/svc.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 22:43:29 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id B730E37B41C; Mon, 4 Feb 2002 22:43:22 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.6/8.11.5) with ESMTP id g156goQ70051; Tue, 5 Feb 2002 01:42:53 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200202050642.g156goQ70051@aldan.algebra.com> Date: Tue, 5 Feb 2002 01:42:47 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: ports/devel/tcllib Makefile To: will@csociety.org Cc: mi@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20020205035005.GC82640@squall.waterspout.com> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 4 Feb, Will Andrews wrote: > On Mon, Feb 04, 2002 at 06:14:31PM -0800, Mikhail Teterin wrote: >> Log: >> BUILD_DEPEND on tclsh. Any tclsh will do, but if none is present -- >> build the tcl83... > > This breaks dependencies. If one has another tcl installed this > will record a dependency on a (not installed) tcl83. Correct. However, this is a lesser evil, than building tcl8N when the person already has tcl8N+1 or tcl8N-1 and wants to use tcl83 with it. The same breakage can be observed with various LIB_DEPENDS cases. For example, something lib_depending on libgd will be recorded as depending on graphics/gd, while the library it compiled against may well have been installed by ukrainian/gd. Or some libX, that I have -- installed by portX-N.K_J. But the latest revision of portX is J+1 -- so my new port will be recorded as depending on portX-N.K_J+1, even though it was built against portX-N.K_J. The dependencies are quite broken for ports-building. And, as we all know, will remain that way, until we stop using the second part of the dependency tuple to figure out the dependency and start using the information in /var/db/pkg/*/+CONTENTS. Fortunately, they only really matter for Bento itself and for people installing packages. I promised some action on that front and intend to follow up... Heck, I send-pr-ed the very first step today (bin/34628). But for now -- this IS the (much) lesser evil. -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 22:49:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D559437B419; Mon, 4 Feb 2002 22:49:11 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g156nBO34201; Mon, 4 Feb 2002 22:49:11 -0800 (PST) (envelope-from des) Message-Id: <200202050649.g156nBO34201@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 4 Feb 2002 22:49:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/vipw Makefile pw_util.c pw_util.h vipw.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/04 22:49:11 PST Modified files: usr.sbin/vipw Makefile pw_util.c pw_util.h vipw.c Log: ANSIfy and constify. Sponsored by: DARPA, NAI Labs Revision Changes Path 1.6 +2 -1 src/usr.sbin/vipw/Makefile 1.21 +16 -18 src/usr.sbin/vipw/pw_util.c 1.3 +9 -7 src/usr.sbin/vipw/pw_util.h 1.12 +7 -10 src/usr.sbin/vipw/vipw.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 22:53: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C148037B426; Mon, 4 Feb 2002 22:52:56 -0800 (PST) Received: (from tanimura@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g156quc34820; Mon, 4 Feb 2002 22:52:56 -0800 (PST) (envelope-from tanimura) Message-Id: <200202050652.g156quc34820@freefall.freebsd.org> From: Seigo Tanimura Date: Mon, 4 Feb 2002 22:52:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/isa emu8000.c src/sys/isa pnp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tanimura 2002/02/04 22:52:56 PST Modified files: sys/dev/sound/isa emu8000.c sys/isa pnp.c Log: - Do not hang if the resource allocation fails. - Add another quirk entry of SB AWE64. PR: kern/32530 Submitted by: Magnus Backstrom Revision Changes Path 1.9 +28 -19 src/sys/dev/sound/isa/emu8000.c 1.12 +3 -1 src/sys/isa/pnp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 23: 1:58 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7EA2A37B425; Mon, 4 Feb 2002 23:01:55 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1571tF36244; Mon, 4 Feb 2002 23:01:55 -0800 (PST) (envelope-from ijliao) Message-Id: <200202050701.g1571tF36244@freefall.freebsd.org> From: Ying-Chieh Liao Date: Mon, 4 Feb 2002 23:01:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/dotconf Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/04 23:01:55 PST Modified files: devel/dotconf Makefile distinfo pkg-plist Log: upgrade to 1.0.9 Revision Changes Path 1.10 +1 -1 ports/devel/dotconf/Makefile 1.8 +1 -1 ports/devel/dotconf/distinfo 1.7 +22 -8 ports/devel/dotconf/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 23: 7: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 09F3637B42A; Mon, 4 Feb 2002 23:07:01 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15770940634; Mon, 4 Feb 2002 23:07:00 -0800 (PST) (envelope-from ijliao) Message-Id: <200202050707.g15770940634@freefall.freebsd.org> From: Ying-Chieh Liao Date: Mon, 4 Feb 2002 23:07:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/freecell-solver Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/04 23:07:00 PST Modified files: games/freecell-solver Makefile distinfo Log: upgrade to 2.0.2 Revision Changes Path 1.10 +1 -1 ports/games/freecell-solver/Makefile 1.10 +1 -1 ports/games/freecell-solver/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 23:44: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B95DE37B432; Mon, 4 Feb 2002 23:44:06 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g157i6048111; Mon, 4 Feb 2002 23:44:06 -0800 (PST) (envelope-from sobomax) Message-Id: <200202050744.g157i6048111@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 4 Feb 2002 23:44:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/evolution Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/04 23:44:06 PST Modified files: mail/evolution Makefile Log: Catch up changed MASTER_SITE_SUBDIR. Revision Changes Path 1.51 +1 -1 ports/mail/evolution/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 23:49: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B0F0537B405; Mon, 4 Feb 2002 23:49:01 -0800 (PST) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g157n1458534; Mon, 4 Feb 2002 23:49:01 -0800 (PST) (envelope-from dillon) Message-Id: <200202050749.g157n1458534@freefall.freebsd.org> From: Matt Dillon Date: Mon, 4 Feb 2002 23:49:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ffs ffs_softdep.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2002/02/04 23:49:01 PST Modified files: (Branch: RELENG_4) sys/ufs/ffs ffs_softdep.c Log: MFC 1.103. drain_output() must be called prior to checking for dirty buffers or we may get an incorrect indication, resulting in a later panic. Revision Changes Path 1.57.2.10 +11 -9 src/sys/ufs/ffs/ffs_softdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Feb 4 23:53: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C1C7E37B41D; Mon, 4 Feb 2002 23:53:00 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g157r0Q59374; Mon, 4 Feb 2002 23:53:00 -0800 (PST) (envelope-from des) Message-Id: <200202050753.g157r0Q59374@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 4 Feb 2002 23:53:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_deny pam_deny.c src/lib/libpam/modules/pam_permit pam_permit.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/04 23:53:00 PST Modified files: lib/libpam/modules/pam_deny pam_deny.c lib/libpam/modules/pam_permit pam_permit.c Log: Oops, the correct header to include for NULL is . Revision Changes Path 1.7 +1 -1 src/lib/libpam/modules/pam_deny/pam_deny.c 1.6 +1 -1 src/lib/libpam/modules/pam_permit/pam_permit.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 0: 1:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A22B37B420; Tue, 5 Feb 2002 00:01:32 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1581Wj60795; Tue, 5 Feb 2002 00:01:32 -0800 (PST) (envelope-from des) Message-Id: <200202050801.g1581Wj60795@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 5 Feb 2002 00:01:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_deny pam_deny.c src/lib/libpam/modules/pam_permit pam_permit.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/05 00:01:32 PST Modified files: lib/libpam/modules/pam_deny pam_deny.c lib/libpam/modules/pam_permit pam_permit.c Log: Three times lucky: , not Revision Changes Path 1.8 +1 -1 src/lib/libpam/modules/pam_deny/pam_deny.c 1.7 +1 -1 src/lib/libpam/modules/pam_permit/pam_permit.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 0:30:27 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AEDA37B405; Tue, 5 Feb 2002 00:30:24 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g158UOL68724; Tue, 5 Feb 2002 00:30:24 -0800 (PST) (envelope-from petef) Message-Id: <200202050830.g158UOL68724@freefall.freebsd.org> From: Pete Fritchman Date: Tue, 5 Feb 2002 00:30:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/xscorch Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/05 00:30:24 PST Modified files: games/xscorch Makefile distinfo Log: Update to 0.1.14 Revision Changes Path 1.9 +7 -3 ports/games/xscorch/Makefile 1.6 +1 -1 ports/games/xscorch/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 1: 5:36 2002 Delivered-To: cvs-all@freebsd.org Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by hub.freebsd.org (Postfix) with ESMTP id 62D2E37B422; Tue, 5 Feb 2002 01:05:24 -0800 (PST) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 16Y1aa-000DQK-00; Tue, 05 Feb 2002 11:08:32 +0200 From: Sheldon Hearn To: "Crist J. Clark" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc.network src/etc/defaults rc.conf src/share/man/man5 rc.conf.5 In-reply-to: Your message of "Mon, 04 Feb 2002 14:29:22 PST." <200202042229.g14MTMX08809@freefall.freebsd.org> Date: Tue, 05 Feb 2002 11:08:32 +0200 Message-ID: <51603.1012900112@axl.seasidesoftware.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 04 Feb 2002 14:29:22 PST, "Crist J. Clark" wrote: > Modified files: (Branch: RELENG_4) > etc rc.network > etc/defaults rc.conf > share/man/man5 rc.conf.5 > Log: > MFC: Make the rc.conf(5) 'log_in_vain' knob an integer. Do you have any ideas on migrating sysctls to sysctl.conf? I'm thinking we probably don't want to do it for RELENG_4, but could probably afford to for 5.0-RELEASE. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 1:17:26 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 36F7237B41A; Tue, 5 Feb 2002 01:17:24 -0800 (PST) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g159HOW78673; Tue, 5 Feb 2002 01:17:24 -0800 (PST) (envelope-from sheldonh) Message-Id: <200202050917.g159HOW78673@freefall.freebsd.org> From: Sheldon Hearn Date: Tue, 5 Feb 2002 01:17:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/bc/bc load.c X-FreeBSD-CVS-Branch: BC Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sheldonh 2002/02/05 01:17:24 PST Modified files: (Branch: BC) contrib/bc/bc load.c Log: Fix obscure bug in code loading support that could cause parsing of functions in multi-line files to fail, depending on the state of the stack. The fix is sanctioned by the vendor and will appear in bc-1.07. PR: bin/34601 Reported by: mi Obtained from: Phil Nelson Revision Changes Path 1.1.1.3 +1 -1 src/contrib/bc/bc/load.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 1:22:52 2002 Delivered-To: cvs-all@freebsd.org Received: from diogenis.ceid.upatras.gr (diogenis.ceid.upatras.gr [150.140.141.181]) by hub.freebsd.org (Postfix) with SMTP id D7FAA37B428 for ; Tue, 5 Feb 2002 01:22:41 -0800 (PST) Received: (qmail 28377 invoked by uid 1465); 5 Feb 2002 09:21:05 -0000 Message-ID: <20020205092105.28376.qmail@diogenis.ceid.upatras.gr> From: "Giorgos Keramidas" Date: Tue, 5 Feb 2002 11:21:04 +0200 (EET) To: Sheldon Hearn Cc: "Crist J. Clark" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc.network src/etc/defaults rc.conf src/share/man/man5 rc.conf.5 In-Reply-To: <51603.1012900112@axl.seasidesoftware.co.za> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 5 Feb 2002, Sheldon Hearn wrote: > On Mon, 04 Feb 2002 14:29:22 PST, "Crist J. Clark" wrote: > > > Modified files: (Branch: RELENG_4) > > etc rc.network > > etc/defaults rc.conf > > share/man/man5 rc.conf.5 > > Log: > > MFC: Make the rc.conf(5) 'log_in_vain' knob an integer. > > Do you have any ideas on migrating sysctls to sysctl.conf? > > I'm thinking we probably don't want to do it for RELENG_4, but could > probably afford to for 5.0-RELEASE. Indeed. In fact I vaguely remembered rwatson hinting that this should be done for more variables too. I found Robert's message at: http://groups.google.com/groups?q=g:thl1095087332d&hl=en&selm=200112071703.fB7H3Ew37049_freefall.freebsd.org%40ns.sol.net A reply from Peter Wemm, said that this is probably OK for 5.x releases. This one is available at: http://groups.google.com/groups?q=g:thl1095087332d&hl=en&selm=20011208203423.4EA573808_overcee.netplex.com.au%40ns.sol.net So this means that (including me) we have four people who agree on this already. Magnificent :) - Giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 1:33:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3ADD337B416; Tue, 5 Feb 2002 01:33:07 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g159X7Q80815; Tue, 5 Feb 2002 01:33:07 -0800 (PST) (envelope-from roam) Message-Id: <200202050933.g159X7Q80815@freefall.freebsd.org> From: Peter Pentchev Date: Tue, 5 Feb 2002 01:33:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/newsyslog newsyslog.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2002/02/05 01:33:07 PST Modified files: usr.sbin/newsyslog newsyslog.c Log: Fix -F with logfiles rotated on time only. Approved by: silence on -audit MFC after: 1 month Revision Changes Path 1.39 +1 -1 src/usr.sbin/newsyslog/newsyslog.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 1:33:32 2002 Delivered-To: cvs-all@freebsd.org Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by hub.freebsd.org (Postfix) with ESMTP id 7735737B49B; Tue, 5 Feb 2002 01:33:17 -0800 (PST) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 16Y21Y-000Ddf-00; Tue, 05 Feb 2002 11:36:24 +0200 From: Sheldon Hearn To: cvs-committers@FreeBSD.org Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/bc/bc load.c In-reply-to: Your message of "Tue, 05 Feb 2002 01:17:24 PST." <200202050917.g159HOW78673@freefall.freebsd.org> Date: Tue, 05 Feb 2002 11:36:24 +0200 Message-ID: <52430.1012901784@axl.seasidesoftware.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 05 Feb 2002 01:17:24 PST, Sheldon Hearn wrote: > Modified files: (Branch: BC) > contrib/bc/bc load.c > Log: > Fix obscure bug in code loading support that could cause parsing of > functions in multi-line files to fail, depending on the state of the > stack. The fix is sanctioned by the vendor and will appear in bc-1.07. I plan to MFC this in a month, but don't think the reminder is worth a forced commit on the vendor branch. I've got the PR to remind me. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 2:51:22 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6B87D37B41B; Tue, 5 Feb 2002 02:51:19 -0800 (PST) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15ApJF95430; Tue, 5 Feb 2002 02:51:19 -0800 (PST) (envelope-from wjv) Message-Id: <200202051051.g15ApJF95430@freefall.freebsd.org> From: Johann Visagie Date: Tue, 5 Feb 2002 02:51:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/zodb Makefile distinfo pkg-comment pkg-descr pkg-plist pkg-req ports/databases/zodb/files patch-ZODB-Timestamp.c patch-ZODB-cPersistence.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2002/02/05 02:51:19 PST Modified files: databases/zodb Makefile distinfo pkg-comment pkg-descr pkg-plist Added files: databases/zodb pkg-req Removed files: databases/zodb/files patch-ZODB-Timestamp.c patch-ZODB-cPersistence.h Log: - Migrated port from the unofficial 3rd party standalone distribution of ZODB to the newly merged official StandaloneZODB from Zope Corp. Revision Changes Path 1.3 +11 -20 ports/databases/zodb/Makefile 1.3 +1 -1 ports/databases/zodb/distinfo 1.2 +0 -11 ports/databases/zodb/files/patch-ZODB-Timestamp.c (dead) 1.2 +0 -11 ports/databases/zodb/files/patch-ZODB-cPersistence.h (dead) 1.2 +1 -1 ports/databases/zodb/pkg-comment 1.2 +16 -14 ports/databases/zodb/pkg-descr 1.2 +263 -39 ports/databases/zodb/pkg-plist 1.1 +17 -0 ports/databases/zodb/pkg-req (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 3:27: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6DFD437B41E; Tue, 5 Feb 2002 03:26:54 -0800 (PST) Received: (from jeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15BQsA04592; Tue, 5 Feb 2002 03:26:54 -0800 (PST) (envelope-from jeh) Message-Id: <200202051126.g15BQsA04592@freefall.freebsd.org> From: "James E. Housley" Date: Tue, 5 Feb 2002 03:26:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/healthd Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeh 2002/02/05 03:26:54 PST Modified files: sysutils/healthd Makefile Log: FORCED COMMIT: Update version to 0.6.6 Revision Changes Path 1.25 +0 -0 ports/sysutils/healthd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 3:32:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E585E37B419; Tue, 5 Feb 2002 03:32:33 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15BWXb05802; Tue, 5 Feb 2002 03:32:33 -0800 (PST) (envelope-from ijliao) Message-Id: <200202051132.g15BWXb05802@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 5 Feb 2002 03:32:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp Makefile ports/ftp/libfxp Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/05 03:32:33 PST Modified files: ftp Makefile Added files: ftp/libfxp Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add libfxp 0.1.4 An ftp client library Revision Changes Path 1.44 +1 -0 ports/ftp/Makefile 1.1 +29 -0 ports/ftp/libfxp/Makefile (new) 1.1 +1 -0 ports/ftp/libfxp/distinfo (new) 1.1 +1 -0 ports/ftp/libfxp/pkg-comment (new) 1.1 +3 -0 ports/ftp/libfxp/pkg-descr (new) 1.1 +7 -0 ports/ftp/libfxp/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 3:32:39 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D555437B428; Tue, 5 Feb 2002 03:32:35 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15BWZb05837; Tue, 5 Feb 2002 03:32:35 -0800 (PST) (envelope-from ijliao) Message-Id: <200202051132.g15BWZb05837@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 5 Feb 2002 03:32:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/05 03:32:35 PST Modified files: . modules Log: libfxp --> ports/ftp/libfxp Revision Changes Path 1.4649 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 4: 9:26 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 988D037B421; Tue, 5 Feb 2002 04:09:23 -0800 (PST) Received: (from tg@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15C9NA21025; Tue, 5 Feb 2002 04:09:23 -0800 (PST) (envelope-from tg) Message-Id: <200202051209.g15C9NA21025@freefall.freebsd.org> From: Thomas Gellekum Date: Tue, 5 Feb 2002 04:09:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/isa mss.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tg 2002/02/05 04:09:23 PST Modified files: sys/dev/sound/isa mss.c Log: Add support for the Aztech 2320 chip. Reviewed by: cg Obtained from: NetBSD (partly) Revision Changes Path 1.77 +45 -0 src/sys/dev/sound/isa/mss.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 4:17:56 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8ECA337B426; Tue, 5 Feb 2002 04:17:49 -0800 (PST) Received: (from tg@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15CHnD22185; Tue, 5 Feb 2002 04:17:49 -0800 (PST) (envelope-from tg) Message-Id: <200202051217.g15CHnD22185@freefall.freebsd.org> From: Thomas Gellekum Date: Tue, 5 Feb 2002 04:17:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gnustep-gui Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tg 2002/02/05 04:17:49 PST Modified files: x11-toolkits/gnustep-gui Makefile distinfo pkg-plist Log: Upgrade to 0.7.5. Revision Changes Path 1.24 +1 -1 ports/x11-toolkits/gnustep-gui/Makefile 1.7 +1 -1 ports/x11-toolkits/gnustep-gui/distinfo 1.10 +59 -3 ports/x11-toolkits/gnustep-gui/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 4:18:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 41AAC37B405; Tue, 5 Feb 2002 04:18:06 -0800 (PST) Received: (from tg@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15CI6X22244; Tue, 5 Feb 2002 04:18:06 -0800 (PST) (envelope-from tg) Message-Id: <200202051218.g15CI6X22244@freefall.freebsd.org> From: Thomas Gellekum Date: Tue, 5 Feb 2002 04:18:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gnustep-xgps Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tg 2002/02/05 04:18:06 PST Modified files: x11-toolkits/gnustep-xgps Makefile distinfo pkg-plist Log: Upgrade to 0.7.5. Revision Changes Path 1.21 +2 -2 ports/x11-toolkits/gnustep-xgps/Makefile 1.7 +1 -1 ports/x11-toolkits/gnustep-xgps/distinfo 1.9 +7 -3 ports/x11-toolkits/gnustep-xgps/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 4:20:56 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id DD44D37B416; Tue, 5 Feb 2002 04:20:46 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g15CKjG03270; Tue, 5 Feb 2002 15:20:45 +0300 (MSK) (envelope-from ache) Date: Tue, 5 Feb 2002 15:20:44 +0300 From: "Andrey A. Chernov" To: Mark Murray , des@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205122043.GA3192@nagual.pp.ru> References: <200202040028.g140SsC86408@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202040028.g140SsC86408@freefall.freebsd.org> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 03, 2002 at 16:28:54 -0800, Mark Murray wrote: > markm 2002/02/03 16:28:54 PST > > Modified files: > lib/libpam/modules/pam_unix pam_unix.c > Log: > Add the other half of the salt-generating code. No functional > difference except that the salt is slightly harder to build > dictionaries against, and the code does not use srandom[dev](). It is not sufficient to not use srandom*(). random() can't be used in the libraries too! 1) You break applications which expect the same sequence from random() (when initializing srandom() to some fixed value) since insert random() calls in the middle of application ones. 2) Since you not use srandom(), the code producing the same sequence from random() in case application do use random(). What is wrong with my arc4random() patch? arc4random() is not slower then random() incorrectly used now. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 5:28:41 2002 Delivered-To: cvs-all@freebsd.org Received: from mongrel.pacific.net.au (mongrel.pacific.net.au [61.8.0.107]) by hub.freebsd.org (Postfix) with ESMTP id 060C437B421; Tue, 5 Feb 2002 05:28:36 -0800 (PST) Received: from dungeon.home (ppp133.dyn248.pacific.net.au [203.143.248.133]) by mongrel.pacific.net.au (8.9.3/8.9.3/Debian 8.9.3-21) with ESMTP id AAA19003; Wed, 6 Feb 2002 00:20:23 +1100 X-Authentication-Warning: mongrel.pacific.net.au: Host ppp133.dyn248.pacific.net.au [203.143.248.133] claimed to be dungeon.home Received: from dungeon.home (localhost [127.0.0.1]) by dungeon.home (8.11.3/8.11.1) with ESMTP id g15DY3c18696; Tue, 5 Feb 2002 23:34:03 +1000 (EST) (envelope-from mckay) Message-Id: <200202051334.g15DY3c18696@dungeon.home> To: Kris Kennaway Cc: Ian Dowse , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, mckay@thehub.com.au Subject: Re: cvs commit: src/usr.sbin/ctm/ctm_rmail ctm_rmail.c References: <200201222254.g0MMsqg19740@freefall.freebsd.org> <200202041157.g14BvhC06852@dungeon.home> <20020204190431.A36742@xor.obsecurity.org> In-Reply-To: <20020204190431.A36742@xor.obsecurity.org> from Kris Kennaway at "Mon, 04 Feb 2002 19:04:31 -0800" Date: Tue, 05 Feb 2002 23:34:03 +1000 From: Stephen McKay Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Monday, 4th February 2002, Kris Kennaway wrote: >On Mon, Feb 04, 2002 at 09:57:43PM +1000, Stephen McKay wrote: >> This is pretty silly. The right way to fix this is to revert back to >> using mktemp(). Probably revert the whole 1.14 delta. I'll put this >> on my TODO list. > >As I recall, the former use of mktemp() was insecure, which was the >reason it was changed to use the secure mkstemp(). It should not be >regressed. Have a closer look. It's misplaced paranoia. Which other program attempts to guard against malicious file name manipulation in directories that are *not* world writable? All mkstemp() does in this case is leave the files with the wrong permissions. So it's still on my TODO list. By the way, I intend to examine the ctm suite to see what will happen when sequence numbers overflow 4 digits (which should be about a year from now, I think). Probably a few bugs there. Oh, and I'm happy to field ctm related bugs (since I still use it), except for those to do with actually generating deltas (I don't have any control over CTM delta generation). I just never get around to searching the bugs list for things I should care about. Stephen. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 6: 0:34 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5742B37B42A; Tue, 5 Feb 2002 06:00:28 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15E0SI46048; Tue, 5 Feb 2002 06:00:28 -0800 (PST) (envelope-from kevlo) Message-Id: <200202051400.g15E0SI46048@freefall.freebsd.org> From: Kevin Lo Date: Tue, 5 Feb 2002 06:00:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/vicq Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/05 06:00:28 PST Modified files: net/vicq Makefile distinfo pkg-plist Log: Update to version 0.4 Revision Changes Path 1.3 +9 -3 ports/net/vicq/Makefile 1.3 +1 -1 ports/net/vicq/distinfo 1.2 +5 -0 ports/net/vicq/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 6:12:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E89437B404; Tue, 5 Feb 2002 06:12:45 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15ECj956551; Tue, 5 Feb 2002 06:12:45 -0800 (PST) (envelope-from trevor) Message-Id: <200202051412.g15ECj956551@freefall.freebsd.org> From: Trevor Johnson Date: Tue, 5 Feb 2002 06:12:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/linux-mozilla Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2002/02/05 06:12:45 PST Modified files: www/linux-mozilla Makefile distinfo Log: Update to 0.9.8. Revision Changes Path 1.6 +1 -2 ports/www/linux-mozilla/Makefile 1.2 +11 -11 ports/www/linux-mozilla/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 6:20:42 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8340037B430; Tue, 5 Feb 2002 06:20:36 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15EKa360010; Tue, 5 Feb 2002 06:20:36 -0800 (PST) (envelope-from mbr) Message-Id: <200202051420.g15EKa360010@freefall.freebsd.org> From: Martin Blapp Date: Tue, 5 Feb 2002 06:20:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_frontpage Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/02/05 06:20:36 PST Modified files: www/mod_frontpage Makefile Log: Mark this port FORBIDDEN, since every previous version of it has been exploitable including this one :-( Requested by: nectar Revision Changes Path 1.5 +2 -0 ports/www/mod_frontpage/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 6:27:17 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 37BFE37B416; Tue, 5 Feb 2002 06:27:13 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15ERDu61291; Tue, 5 Feb 2002 06:27:13 -0800 (PST) (envelope-from petef) Message-Id: <200202051427.g15ERDu61291@freefall.freebsd.org> From: Pete Fritchman Date: Tue, 5 Feb 2002 06:27:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ipcalc Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/05 06:27:13 PST Modified files: net/ipcalc Makefile distinfo Log: The author made minor fixes without bumping the version number, so update the checksum and increase PORTREVISION. PR: 34542 Submitted by: Anders Andersson Don't use DISTFILES for a single distfile (portlint). Revision Changes Path 1.6 +3 -1 ports/net/ipcalc/Makefile 1.4 +1 -1 ports/net/ipcalc/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 6:39:52 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BD2E737B431; Tue, 5 Feb 2002 06:39:48 -0800 (PST) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15Edmp81078; Tue, 5 Feb 2002 06:39:48 -0800 (PST) (envelope-from yoichi) Message-Id: <200202051439.g15Edmp81078@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Tue, 5 Feb 2002 06:39:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/shinonome Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yoichi 2002/02/05 06:39:48 PST Modified files: japanese/shinonome Makefile distinfo pkg-plist Log: Update to 0.9.7. * Add 18 dots iso8859-1 and jisx0201.1976-0 fonts. * Add LICENSE. Revision Changes Path 1.6 +22 -16 ports/japanese/shinonome/Makefile 1.6 +1 -1 ports/japanese/shinonome/distinfo 1.2 +9 -0 ports/japanese/shinonome/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 7:20:11 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E856E37B405; Tue, 5 Feb 2002 07:20:02 -0800 (PST) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15FK2p12729; Tue, 5 Feb 2002 07:20:02 -0800 (PST) (envelope-from sheldonh) Message-Id: <200202051520.g15FK2p12729@freefall.freebsd.org> From: Sheldon Hearn Date: Tue, 5 Feb 2002 07:20:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/telnet/telnetd sys_term.c src/libexec/telnetd sys_term.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sheldonh 2002/02/05 07:20:02 PST Modified files: crypto/telnet/telnetd sys_term.c libexec/telnetd sys_term.c Log: Don't use non-signal-safe functions (exit(3) in this case) in signal handlers. In this case, use _exit(2) instead, following the call to shutdown(2). This fixes rare telnetd hangs. PR: misc/33672 Submitted by: Umesh Krishnaswamy MFC after: 1 month Revision Changes Path 1.16 +1 -1 src/crypto/telnet/telnetd/sys_term.c 1.37 +1 -1 src/libexec/telnetd/sys_term.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 7:21:12 2002 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id D824A37B41E; Tue, 5 Feb 2002 07:21:07 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id g15FKkN74170; Tue, 5 Feb 2002 07:20:46 -0800 (PST) (envelope-from obrien) Date: Tue, 5 Feb 2002 07:20:46 -0800 From: "David O'Brien" To: Kris Kennaway Cc: Ruslan Ermilov , Mark Murray , current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: pam_ssh world breakage (was: Re: cvs commit: src/lib/libpam Makefile.inc) Message-ID: <20020205072046.A73751@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200202031551.g13Fpql76999@freefall.freebsd.org> <20020204153032.C58535@sunbay.com> <20020204091717.A16149@dragon.nuxi.com> <20020204190654.B36742@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020204190654.B36742@xor.obsecurity.org>; from kris@obsecurity.org on Mon, Feb 04, 2002 at 07:06:54PM -0800 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Feb 04, 2002 at 07:06:54PM -0800, Kris Kennaway wrote: > If you use the argument that one shouldn't set WARNS because a new > compiler will cause the tree to break, then there's no point having it > at all since that condition will always be true. The difference is _impending_. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 7:24:41 2002 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 225DE37B41E; Tue, 5 Feb 2002 07:24:36 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id g15FOLn74270; Tue, 5 Feb 2002 07:24:21 -0800 (PST) (envelope-from obrien) Date: Tue, 5 Feb 2002 07:24:21 -0800 From: "David O'Brien" To: Giorgos Keramidas Cc: Sheldon Hearn , "Crist J. Clark" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc.network src/etc/defaults rc.conf src/share/man/man5 rc.conf.5 Message-ID: <20020205072421.A74179@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <51603.1012900112@axl.seasidesoftware.co.za> <20020205092105.28376.qmail@diogenis.ceid.upatras.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020205092105.28376.qmail@diogenis.ceid.upatras.gr>; from keramida@ceid.upatras.gr on Tue, Feb 05, 2002 at 11:21:04AM +0200 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 11:21:04AM +0200, Giorgos Keramidas wrote: > > Do you have any ideas on migrating sysctls to sysctl.conf? > > > > I'm thinking we probably don't want to do it for RELENG_4, but could > > probably afford to for 5.0-RELEASE. We can do it for 5.0, but we need to also keep the rc.conf knob. For 6.0 we could remove the rc.conf support. Depreciate for one release [branch], remove in the 2nd or later. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 7:26:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2DD8937B431; Tue, 5 Feb 2002 07:26:29 -0800 (PST) Received: (from green@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15FQTK14036; Tue, 5 Feb 2002 07:26:29 -0800 (PST) (envelope-from green) Message-Id: <200202051526.g15FQTK14036@freefall.freebsd.org> From: Brian Feldman Date: Tue, 5 Feb 2002 07:26:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 VOP_ATTRIB.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG green 2002/02/05 07:26:29 PST Modified files: share/man/man9 VOP_ATTRIB.9 Log: Document that VOP_GETATTR(9) does not actually expect to hold an exclusive lock on entry. Sponsored by: DARPA, NAI Labs Revision Changes Path 1.14 +3 -3 src/share/man/man9/VOP_ATTRIB.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 7:46:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C9E737B400; Tue, 5 Feb 2002 07:46:19 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15FkJa20078; Tue, 5 Feb 2002 07:46:19 -0800 (PST) (envelope-from knu) Message-Id: <200202051546.g15FkJa20078@freefall.freebsd.org> From: Akinori MUSHA Date: Tue, 5 Feb 2002 07:46:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/wyvern Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/05 07:46:19 PST Modified files: www/wyvern Makefile distinfo Log: Update to 2.0.5, a bugfix release. Hand the maintainership over to the author. Submitted by: Kouichi ABE Revision Changes Path 1.7 +2 -2 ports/www/wyvern/Makefile 1.4 +1 -1 ports/www/wyvern/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 8: 0:11 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 83B8837B426; Tue, 5 Feb 2002 08:00:00 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15G00T24056; Tue, 5 Feb 2002 08:00:00 -0800 (PST) (envelope-from obrien) Message-Id: <200202051600.g15G00T24056@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 08:00:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/vim Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 07:59:59 PST Modified files: editors/vim Makefile distinfo Log: Update to Vim 6.0 patchlevel 185 Revision Changes Path 1.172 +2 -2 ports/editors/vim/Makefile 1.106 +15 -0 ports/editors/vim/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 8: 2:42 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0749C37B42A; Tue, 5 Feb 2002 08:02:33 -0800 (PST) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15G2WE25289; Tue, 5 Feb 2002 08:02:32 -0800 (PST) (envelope-from silby) Message-Id: <200202051602.g15G2WE25289@freefall.freebsd.org> From: Mike Silbersack Date: Tue, 5 Feb 2002 08:02:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf LINT X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG silby 2002/02/05 08:02:32 PST Modified files: (Branch: RELENG_4) sys/i386/conf LINT Log: Change comments so that they do not indicate that setting nmbclusters/nbuf to 0 will provide autoscaling. Instead, simply suggest not specifying the option. Submitted by: Daniel Lang Revision Changes Path 1.749.2.98 +2 -2 src/sys/i386/conf/LINT To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 8: 9: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA84437B43B; Tue, 5 Feb 2002 08:08:49 -0800 (PST) Received: (from green@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15G8nt30372; Tue, 5 Feb 2002 08:08:49 -0800 (PST) (envelope-from green) Message-Id: <200202051608.g15G8nt30372@freefall.freebsd.org> From: Brian Feldman Date: Tue, 5 Feb 2002 08:08:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 Makefile VOP_REVOKE.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG green 2002/02/05 08:08:49 PST Modified files: share/man/man9 Makefile Added files: share/man/man9 VOP_REVOKE.9 Log: Add a manpage for VOP_REVOKE(9). Sponsored by: DARPA, NAI Labs Revision Changes Path 1.149 +1 -1 src/share/man/man9/Makefile 1.1 +62 -0 src/share/man/man9/VOP_REVOKE.9 (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 8:10:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8782037B478; Tue, 5 Feb 2002 08:10:11 -0800 (PST) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15GABx32279; Tue, 5 Feb 2002 08:10:11 -0800 (PST) (envelope-from yoichi) Message-Id: <200202051610.g15GABx32279@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Tue, 5 Feb 2002 08:10:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/tramp Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yoichi 2002/02/05 08:10:11 PST Modified files: net/tramp Makefile distinfo Log: Update to new distfile (20020130). Require gmake. Revision Changes Path 1.4 +5 -4 ports/net/tramp/Makefile 1.4 +1 -1 ports/net/tramp/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 8:18:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5616F37B426; Tue, 5 Feb 2002 08:18:43 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15GIhm37153; Tue, 5 Feb 2002 08:18:43 -0800 (PST) (envelope-from mbr) Message-Id: <200202051618.g15GIhm37153@freefall.freebsd.org> From: Martin Blapp Date: Tue, 5 Feb 2002 08:18:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_frontpage Makefile distinfo pkg-message X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/02/05 08:18:43 PST Modified files: www/mod_frontpage Makefile distinfo pkg-message Log: Sigh. Commit the update. I hope I will not find more security issues. Revision Changes Path 1.6 +20 -3 ports/www/mod_frontpage/Makefile 1.4 +1 -1 ports/www/mod_frontpage/distinfo 1.3 +3 -4 ports/www/mod_frontpage/pkg-message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 8:23:22 2002 Delivered-To: cvs-all@freebsd.org Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by hub.freebsd.org (Postfix) with ESMTP id C7F9637B42A; Tue, 5 Feb 2002 08:22:56 -0800 (PST) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 16Y8PY-0000N1-00; Tue, 05 Feb 2002 18:25:36 +0200 From: Sheldon Hearn To: cvs-committers@FreeBSD.org Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/bc/bc load.c In-reply-to: Your message of "Tue, 05 Feb 2002 01:17:24 PST." <200202050917.g159HOW78673@freefall.freebsd.org> Date: Tue, 05 Feb 2002 18:25:36 +0200 Message-ID: <1426.1012926336@axl.seasidesoftware.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 05 Feb 2002 01:17:24 PST, Sheldon Hearn wrote: > Modified files: (Branch: BC) > contrib/bc/bc load.c > Log: > Fix obscure bug in code loading support that could cause parsing of > functions in multi-line files to fail, depending on the state of the > stack. The fix is sanctioned by the vendor and will appear in bc-1.07. > > PR: bin/34601 > Reported by: mi > Obtained from: Phil Nelson Oops, the patch was actually subjected by , who doesn't have src commit approval yet. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 8:37:58 2002 Delivered-To: cvs-all@freebsd.org Received: from rina.r.dl.itc.u-tokyo.ac.jp (rina.r.dl.itc.u-tokyo.ac.jp [133.11.199.247]) by hub.freebsd.org (Postfix) with ESMTP id 8CCA437B404; Tue, 5 Feb 2002 08:37:52 -0800 (PST) Received: from sohgo.carrots.uucp.r.dl.itc.u-tokyo.ac.jp (sohgo.carrots.uucp.r.dl.itc.u-tokyo.ac.jp [IPv6:3ffe:b80:5b0:3:200:e8ff:fe14:9f8a]) by rina.r.dl.itc.u-tokyo.ac.jp (8.12.2/3.7W-rina.r-Nankai-Koya) with ESMTP id g15GbIT5050365 ; Wed, 6 Feb 2002 01:37:20 +0900 (JST) Received: from sohgo.carrots.uucp.r.dl.itc.u-tokyo.ac.jp (localhost [IPv6:::1]) by sohgo.carrots.uucp.r.dl.itc.u-tokyo.ac.jp (8.12.2/3.7W-carrots-Tokyu-Meguro) with ESMTP id g15GbBhE018727 ; Wed, 6 Feb 2002 01:37:12 +0900 (JST) Received: (from root@localhost) by sohgo.carrots.uucp.r.dl.itc.u-tokyo.ac.jp (8.12.2/3.7W-submit-carrots-Tokyu-Meguro) with UUCP id g15GasWa018692 ; Wed, 6 Feb 2002 01:36:54 +0900 (JST) Received: from bunko.carrots.uucp.r.dl.itc.u-tokyo.ac.jp (localhost [127.0.0.1]) by bunko.carrots.uucp.r.dl.itc.u-tokyo.ac.jp (8.12.2/3.7W-nkth.carrots-Saitama-Misono) with ESMTP id g15EZPAu035551 ; Tue, 5 Feb 2002 23:35:26 +0900 (JST) Message-Id: <200202051435.g15EZPAu035551@bunko.carrots.uucp.r.dl.itc.u-tokyo.ac.jp> Date: Tue, 05 Feb 2002 23:35:25 +0900 From: Seigo Tanimura To: John Baldwin Cc: Seigo Tanimura , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_sx.c In-Reply-To: References: <200201180921.g0I9LFn30513@freefall.freebsd.org> User-Agent: Wanderlust/2.8.1 (Something) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-1?Q?Unebigory=F2mae?=) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Digital Library Research Division, Information Techinology Centre, The University of Tokyo MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 04 Feb 2002 23:42:29 -0500 (EST), John Baldwin said: >> tanimura 2002/01/18 01:21:15 PST >> >> Modified files: >> sys/kern kern_sx.c >> Log: >> Invert the test of sx_xholder for SX_LOCKED. We need to warn if a >> thread other than the curthread holds an sx. >> >> While I am here, break a line at the end of warning. jhb> Good catch, the default case also needs the newline. panic() breaks a line on its own, so we do not need the newline. -- Seigo Tanimura To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 8:58: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 2887337B42B; Tue, 5 Feb 2002 08:57:58 -0800 (PST) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.6/8.11.5) with SMTP id g15GvuD60203; Tue, 5 Feb 2002 11:57:57 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Tue, 5 Feb 2002 11:57:56 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Brian Feldman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man9 VOP_ATTRIB.9 In-Reply-To: <200202051526.g15FQTK14036@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Is this really true? While it wasn't formally true at one point, in practice I think many filesystems rely on the vnode lock to maintain the consistency of the attributes and protect them from modification. Something we should probably stick on the BSDCon summit schedule is VFS locking... Robert N M Watson FreeBSD Core Team, TrustedBSD Project robert@fledge.watson.org NAI Labs, Safeport Network Services On Tue, 5 Feb 2002, Brian Feldman wrote: > green 2002/02/05 07:26:29 PST > > Modified files: > share/man/man9 VOP_ATTRIB.9 > Log: > Document that VOP_GETATTR(9) does not actually expect to hold an > exclusive lock on entry. > > Sponsored by: DARPA, NAI Labs > > Revision Changes Path > 1.14 +3 -3 src/share/man/man9/VOP_ATTRIB.9 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 9:18:30 2002 Delivered-To: cvs-all@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 96C4C37B41E; Tue, 5 Feb 2002 09:18:13 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g15HI7p68447; Tue, 5 Feb 2002 19:18:07 +0200 (EET) (envelope-from ru) Date: Tue, 5 Feb 2002 19:18:07 +0200 From: Ruslan Ermilov To: Dag-Erling Smorgrav , John Baldwin , Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile src/sys/modules/fs Makefile src/sys/modules/fs/linprocfs Makefile src/sys/modules/fs/procfs Makefile src/sys/modules/fs/pseudofs Makefile src/sys/modules/linprocfs Makefile src/sys/modules/procfs Makefile ... Message-ID: <20020205191807.A65351@sunbay.com> References: <200202042016.g14KGok73826@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202042016.g14KGok73826@freefall.freebsd.org> User-Agent: Mutt/1.3.23i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Is this something that should be reflected in http://people.FreeBSD.org/~jhb/docs/sysorg.txt ? On Mon, Feb 04, 2002 at 12:16:50PM -0800, Dag-Erling Smorgrav wrote: > des 2002/02/04 12:16:50 PST > > Modified files: > sys/modules Makefile > Added files: > sys/modules/linprocfs Makefile > sys/modules/procfs Makefile > sys/modules/pseudofs Makefile > Removed files: > sys/modules/fs Makefile > sys/modules/fs/linprocfs Makefile > sys/modules/fs/procfs Makefile > sys/modules/fs/pseudofs Makefile > Log: > Move the pseudofs, procfs and linprocfs modules out from the fs directory. > Keeping them there seemed like a good idea at the time, but it annoys bde > and confuses people who do not understand how MODULES_OVERRIDE works. > > Revision Changes Path > 1.230 +3 -1 src/sys/modules/Makefile > 1.5 +0 -8 src/sys/modules/fs/Makefile (dead) > 1.3 +0 -10 src/sys/modules/fs/linprocfs/Makefile (dead) > 1.2 +0 -20 src/sys/modules/fs/procfs/Makefile (dead) > 1.4 +0 -25 src/sys/modules/fs/pseudofs/Makefile (dead) > 1.9 +10 -0 src/sys/modules/linprocfs/Makefile (new) > 1.25 +29 -0 src/sys/modules/procfs/Makefile (new) > 1.1 +25 -0 src/sys/modules/pseudofs/Makefile (new) -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 9:24:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 205CA37B43F; Tue, 5 Feb 2002 09:24:01 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15HO1e51539; Tue, 5 Feb 2002 09:24:01 -0800 (PST) (envelope-from sobomax) Message-Id: <200202051724.g15HO1e51539@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 5 Feb 2002 09:24:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mozilla Makefile distinfo pkg-plist ports/www/mozilla/files patch-ak patch-aq patch-intl::uconv::src::unixcharset.properties patch-xpcom::ds::plvector.c ports/www/mozilla-embedded Makefile pkg-plist ports/www/mozilla-headers pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/05 09:24:01 PST Modified files: www/mozilla Makefile distinfo pkg-plist www/mozilla/files patch-ak patch-intl::uconv::src::unixcharset.properties www/mozilla-embedded Makefile pkg-plist www/mozilla-headers pkg-plist Removed files: www/mozilla/files patch-aq patch-xpcom::ds::plvector.c Log: Update to 0.9.8. Revision Changes Path 1.13 +1 -2 ports/www/mozilla-embedded/Makefile 1.21 +3 -1 ports/www/mozilla-embedded/pkg-plist 1.16 +39 -17 ports/www/mozilla-headers/pkg-plist 1.79 +1 -2 ports/www/mozilla/Makefile 1.45 +2 -2 ports/www/mozilla/distinfo 1.2 +9 -15 ports/www/mozilla/files/patch-ak 1.4 +0 -23 ports/www/mozilla/files/patch-aq (dead) 1.5 +6 -67 ports/www/mozilla/files/patch-intl::uconv::src::unixcharset.properties 1.2 +0 -19 ports/www/mozilla/files/patch-xpcom::ds::plvector.c (dead) 1.48 +10 -4 ports/www/mozilla/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 9:25:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DE92237B41B; Tue, 5 Feb 2002 09:25:08 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15HP8f51826; Tue, 5 Feb 2002 09:25:08 -0800 (PST) (envelope-from mbr) Message-Id: <200202051725.g15HP8f51826@freefall.freebsd.org> From: Martin Blapp Date: Tue, 5 Feb 2002 09:25:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_frontpage/files patch-Makefile.PL patch-Makefile.in patch-mod_frontpage.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/02/05 09:25:08 PST Added files: www/mod_frontpage/files patch-Makefile.PL patch-Makefile.in patch-mod_frontpage.c Log: Only let the apache user execute the fpexe stub. Remove a bogus check in mod_frontpage.c Requested by: nectar Revision Changes Path 1.3 +12 -0 ports/www/mod_frontpage/files/patch-Makefile.PL (new) 1.1 +29 -0 ports/www/mod_frontpage/files/patch-Makefile.in (new) 1.4 +13 -0 ports/www/mod_frontpage/files/patch-mod_frontpage.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 9:33:58 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3067737B41B; Tue, 5 Feb 2002 09:33:56 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15HXuc53209; Tue, 5 Feb 2002 09:33:56 -0800 (PST) (envelope-from mbr) Message-Id: <200202051733.g15HXuc53209@freefall.freebsd.org> From: Martin Blapp Date: Tue, 5 Feb 2002 09:33:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_frontpage Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/02/05 09:33:56 PST Modified files: www/mod_frontpage Makefile Log: Fix the echo message Revision Changes Path 1.7 +2 -2 ports/www/mod_frontpage/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 9:49:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 59E2037B41E; Tue, 5 Feb 2002 09:49:36 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15Hna755505; Tue, 5 Feb 2002 09:49:36 -0800 (PST) (envelope-from obrien) Message-Id: <200202051749.g15Hna755505@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 09:49:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/vim Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 09:49:36 PST Modified files: editors/vim Makefile Log: Add the ability to select any of the interpreters and the GNOME GUI. This adds the knobs WITH_PYTHON, WITH_PERL, WITH_TCL, WITH_RUBY, and WITH_GNOME :-( Submitted by: Matthew Hawkins (reworked by me) Revision Changes Path 1.173 +34 -12 ports/editors/vim/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 10: 4:22 2002 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-47.dsl.lsan03.pacbell.net [64.165.226.47]) by hub.freebsd.org (Postfix) with ESMTP id 514DA37B429; Tue, 5 Feb 2002 10:04:15 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id C170366C76; Tue, 5 Feb 2002 10:04:14 -0800 (PST) Date: Tue, 5 Feb 2002 10:04:14 -0800 From: Kris Kennaway To: David O'Brien Cc: Kris Kennaway , Ruslan Ermilov , Mark Murray , current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: pam_ssh world breakage (was: Re: cvs commit: src/lib/libpam Makefile.inc) Message-ID: <20020205100414.A44541@xor.obsecurity.org> References: <200202031551.g13Fpql76999@freefall.freebsd.org> <20020204153032.C58535@sunbay.com> <20020204091717.A16149@dragon.nuxi.com> <20020204190654.B36742@xor.obsecurity.org> <20020205072046.A73751@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="WIyZ46R2i8wDzkSu" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020205072046.A73751@dragon.nuxi.com>; from obrien@FreeBSD.org on Tue, Feb 05, 2002 at 07:20:46AM -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --WIyZ46R2i8wDzkSu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Feb 05, 2002 at 07:20:46AM -0800, David O'Brien wrote: > On Mon, Feb 04, 2002 at 07:06:54PM -0800, Kris Kennaway wrote: > > If you use the argument that one shouldn't set WARNS because a new > > compiler will cause the tree to break, then there's no point having it > > at all since that condition will always be true. >=20 > The difference is _impending_. EPARSE. Kris --WIyZ46R2i8wDzkSu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8YB6cWry0BWjoQKURAsmpAKCZeOC7sGAO7N8Bi6GFEv4L9nkM+gCgqcwX NEeLarZyDrhzJoXOuI+LILE= =cMmj -----END PGP SIGNATURE----- --WIyZ46R2i8wDzkSu-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 10:26: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D3D137B41C; Tue, 5 Feb 2002 10:26:01 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15IQ1A63962; Tue, 5 Feb 2002 10:26:01 -0800 (PST) (envelope-from alfred) Message-Id: <200202051826.g15IQ1A63962@freefall.freebsd.org> From: Alfred Perlstein Date: Tue, 5 Feb 2002 10:26:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/rpc.yppasswdd pw_util.c yppasswdd_extern.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/02/05 10:26:00 PST Modified files: usr.sbin/rpc.yppasswdd pw_util.c yppasswdd_extern.h Log: Constify things to unbreak world. Submitted by: David Wolfskill Revision Changes Path 1.6 +3 -3 src/usr.sbin/rpc.yppasswdd/pw_util.c 1.10 +1 -1 src/usr.sbin/rpc.yppasswdd/yppasswdd_extern.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 10:27:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 34AB337B429; Tue, 5 Feb 2002 10:27:06 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15IR6p64188; Tue, 5 Feb 2002 10:27:06 -0800 (PST) (envelope-from alfred) Message-Id: <200202051827.g15IR6p64188@freefall.freebsd.org> From: Alfred Perlstein Date: Tue, 5 Feb 2002 10:27:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/rpc.yppasswdd pw_util.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/02/05 10:27:06 PST Modified files: usr.sbin/rpc.yppasswdd pw_util.c Log: tab in pw_mkdb's arg for style. Revision Changes Path 1.7 +1 -1 src/usr.sbin/rpc.yppasswdd/pw_util.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 10:27:34 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D4C4637B405; Tue, 5 Feb 2002 10:27:30 -0800 (PST) Received: (from archie@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15IRUK64306; Tue, 5 Feb 2002 10:27:30 -0800 (PST) (envelope-from archie) Message-Id: <200202051827.g15IRUK64306@freefall.freebsd.org> From: Archie Cobbs Date: Tue, 5 Feb 2002 10:27:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_ether.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG archie 2002/02/05 10:27:30 PST Modified files: sys/netgraph ng_ether.c Log: The hardware checksum code makes the assumption that a packet routed out a particular Ethernet interface will actually be delivered by (only) that device driver. This is not necessarily true when ng_ether(4) is used. To word around this, while a ng_ether(4)'s "upper" hook is connected, turn off all hardware checksum, fragmentation, etc., features for that interface. PR: kern/31586 MFC after: 1 week Revision Changes Path 1.22 +9 -2 src/sys/netgraph/ng_ether.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 10:27:28 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2316C37B428; Tue, 5 Feb 2002 10:27:16 -0800 (PST) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15IRGO64262; Tue, 5 Feb 2002 10:27:16 -0800 (PST) (envelope-from dillon) Message-Id: <200202051827.g15IRGO64262@freefall.freebsd.org> From: Matt Dillon Date: Tue, 5 Feb 2002 10:27:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_subr.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2002/02/05 10:27:16 PST Modified files: (Branch: RELENG_4) sys/kern vfs_subr.c Log: MFC 1.340. Call VOP_INACTIVE before placing the vnode on the freelist. Approved by: mckusick Revision Changes Path 1.249.2.25 +16 -17 src/sys/kern/vfs_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 10:32:23 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id 1495537B42A; Tue, 5 Feb 2002 10:31:55 -0800 (PST) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.11.1/8.11.1) with ESMTP id g15IVrt62306; Tue, 5 Feb 2002 19:31:54 +0100 (CET) (envelope-from Martin.Blapp@imp.ch) Date: Tue, 5 Feb 2002 19:32:16 +0100 (CET) From: Martin Blapp To: Alfred Perlstein Cc: , Subject: Re: cvs commit: src/usr.sbin/rpc.yppasswdd pw_util.c In-Reply-To: <200202051827.g15IR6p64188@freefall.freebsd.org> Message-ID: <20020205192851.L19464-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi Alfred, Sigh, and I have still uncomitted patches since 8 month to fix rpc.yppasswd: http://people.freebsd.org/~mbr/patches/ Martin Martin Blapp, ------------------------------------------------------------------ Improware AG, UNIX solution and service provider Zurlindenstrasse 29, 4133 Pratteln, Switzerland Phone: +41 061 826 93 00: +41 61 826 93 01 PGP Fingerprint: B434 53FC C87C FE7B 0A18 B84C 8686 EF22 D300 551E ------------------------------------------------------------------ On Tue, 5 Feb 2002, Alfred Perlstein wrote: > alfred 2002/02/05 10:27:06 PST > > Modified files: > usr.sbin/rpc.yppasswdd pw_util.c > Log: > tab in pw_mkdb's arg for style. > > Revision Changes Path > 1.7 +1 -1 src/usr.sbin/rpc.yppasswdd/pw_util.c > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 10:33:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5FEBA37B419; Tue, 5 Feb 2002 10:33:25 -0800 (PST) Received: (from gioria@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15IXPH65069; Tue, 5 Feb 2002 10:33:25 -0800 (PST) (envelope-from gioria) Message-Id: <200202051833.g15IXPH65069@freefall.freebsd.org> From: Sebastien Gioria Date: Tue, 5 Feb 2002 10:33:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en support.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gioria 2002/02/05 10:33:25 PST Modified files: en support.sgml Log: Adding French Web site as a web ressource Revision Changes Path 1.250 +3 -1 www/en/support.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 10:35:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7886237B422; Tue, 5 Feb 2002 10:35:04 -0800 (PST) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15IZ4T65464; Tue, 5 Feb 2002 10:35:04 -0800 (PST) (envelope-from dillon) Message-Id: <200202051835.g15IZ4T65464@freefall.freebsd.org> From: Matt Dillon Date: Tue, 5 Feb 2002 10:35:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_subr.c src/sys/ufs/ffs ffs_inode.c ffs_vfsops.c src/sys/ufs/ufs ufs_inode.c ufs_vnops.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2002/02/05 10:35:04 PST Modified files: (Branch: RELENG_4) sys/kern vfs_subr.c sys/ufs/ffs ffs_inode.c ffs_vfsops.c sys/ufs/ufs ufs_inode.c ufs_vnops.c Log: MFC vfs_subr 1.338 and friends. When downgrading a filesystem to read-only, operatings involving file removal and file update were not always being fully comitted to disk, resulting in corruption. Approved by: mckusick Revision Changes Path 1.249.2.26 +7 -2 src/sys/kern/vfs_subr.c 1.56.2.5 +4 -2 src/sys/ufs/ffs/ffs_inode.c 1.117.2.8 +8 -0 src/sys/ufs/ffs/ffs_vfsops.c 1.25.2.2 +2 -2 src/sys/ufs/ufs/ufs_inode.c 1.131.2.7 +4 -5 src/sys/ufs/ufs/ufs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 10:37:35 2002 Delivered-To: cvs-all@freebsd.org Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by hub.freebsd.org (Postfix) with ESMTP id 4E17E37B41F; Tue, 5 Feb 2002 10:37:29 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 0BB8F10DDF8; Tue, 5 Feb 2002 10:37:29 -0800 (PST) Date: Tue, 5 Feb 2002 10:37:29 -0800 From: Alfred Perlstein To: Martin Blapp Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/rpc.yppasswdd pw_util.c Message-ID: <20020205103729.H59017@elvis.mu.org> References: <200202051827.g15IR6p64188@freefall.freebsd.org> <20020205192851.L19464-100000@levais.imp.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020205192851.L19464-100000@levais.imp.ch>; from mb@imp.ch on Tue, Feb 05, 2002 at 07:32:16PM +0100 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Martin Blapp [020205 10:32] wrote: > > Hi Alfred, > > Sigh, and I have still uncomitted patches since 8 month to fix rpc.yppasswd: > > http://people.freebsd.org/~mbr/patches/ This looks good. Let me know when you have more like this. > > Martin > > Martin Blapp, > ------------------------------------------------------------------ > Improware AG, UNIX solution and service provider > Zurlindenstrasse 29, 4133 Pratteln, Switzerland > Phone: +41 061 826 93 00: +41 61 826 93 01 > PGP Fingerprint: B434 53FC C87C FE7B 0A18 B84C 8686 EF22 D300 551E > ------------------------------------------------------------------ > > On Tue, 5 Feb 2002, Alfred Perlstein wrote: > > > alfred 2002/02/05 10:27:06 PST > > > > Modified files: > > usr.sbin/rpc.yppasswdd pw_util.c > > Log: > > tab in pw_mkdb's arg for style. > > > > Revision Changes Path > > 1.7 +1 -1 src/usr.sbin/rpc.yppasswdd/pw_util.c > > -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' Tax deductable donations for FreeBSD: http://www.freebsdfoundation.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 10:41:14 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 7F95F37B42A; Tue, 5 Feb 2002 10:41:05 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g15If0b06831; Tue, 5 Feb 2002 21:41:00 +0300 (MSK) (envelope-from ache) Date: Tue, 5 Feb 2002 21:40:59 +0300 From: "Andrey A. Chernov" To: Mark Murray , des@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205184059.GA6785@nagual.pp.ru> References: <200202040028.g140SsC86408@freefall.freebsd.org> <20020205122043.GA3192@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020205122043.GA3192@nagual.pp.ru> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 15:20:44 +0300, Andrey A. Chernov wrote: > > 1) You break applications which expect the same sequence from random() > (when initializing srandom() to some fixed value) since insert random() > calls in the middle of application ones. In case my description is unclear, here is example: App: srandom(33); random(); random(); call PAM library PAM calls random(); PAM calls random() return; random(); <--- expected sequence is broken here. > 2) Since you not use srandom(), the code producing the same sequence from > random() in case application do use random(). I see you try to compensate it by "* time", but why you even need random() in that case? Use some fixed numbers array. > What is wrong with my arc4random() patch? arc4random() is not slower then > random() incorrectly used now. BTW, arc4random() is not something "cryptographical", it is just RNG for libraries and it is already commonly used in many places in many libraries. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 10:43: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5242D37B41D; Tue, 5 Feb 2002 10:42:58 -0800 (PST) Received: (from archie@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15IgwT66920; Tue, 5 Feb 2002 10:42:58 -0800 (PST) (envelope-from archie) Message-Id: <200202051842.g15IgwT66920@freefall.freebsd.org> From: Archie Cobbs Date: Tue, 5 Feb 2002 10:42:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/mpd-netgraph Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG archie 2002/02/05 10:42:58 PST Modified files: net/mpd-netgraph Makefile distinfo Log: Update to version 3.7. Fixes a bug causing incorrect MPPE key generation when MS-CHAP is used to authenticate in both directions. Revision Changes Path 1.20 +1 -1 ports/net/mpd-netgraph/Makefile 1.16 +1 -1 ports/net/mpd-netgraph/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 10:47: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DAF8637B428; Tue, 5 Feb 2002 10:46:53 -0800 (PST) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15IkrB67571; Tue, 5 Feb 2002 10:46:53 -0800 (PST) (envelope-from dillon) Message-Id: <200202051846.g15IkrB67571@freefall.freebsd.org> From: Matt Dillon Date: Tue, 5 Feb 2002 10:46:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ffs ffs_softdep.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2002/02/05 10:46:53 PST Modified files: (Branch: RELENG_4) sys/ufs/ffs ffs_softdep.c Log: MFC 1.104 - fix bug where spl saved in softupdates lock could get stomped by another process. Approved by: mckusick Revision Changes Path 1.57.2.11 +76 -38 src/sys/ufs/ffs/ffs_softdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 10:50:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D21D937B405; Tue, 5 Feb 2002 10:50:07 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15Io7S68205; Tue, 5 Feb 2002 10:50:07 -0800 (PST) (envelope-from phk) Message-Id: <200202051850.g15Io7S68205@freefall.freebsd.org> From: Poul-Henning Kamp Date: Tue, 5 Feb 2002 10:50:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_clock.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/02/05 10:50:07 PST Modified files: (Branch: RELENG_4) sys/kern kern_clock.c Log: MFC: make timecounters more rubust for large deltas from hardware. Revision Changes Path 1.105.2.7 +3 -3 src/sys/kern/kern_clock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 10:51:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6433037B41F; Tue, 5 Feb 2002 10:51:13 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15IpDk68401; Tue, 5 Feb 2002 10:51:13 -0800 (PST) (envelope-from alfred) Message-Id: <200202051851.g15IpDk68401@freefall.freebsd.org> From: Alfred Perlstein Date: Tue, 5 Feb 2002 10:51:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/rpc.yppasswdd yppasswdd_main.c yppasswdd_server.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/02/05 10:51:13 PST Modified files: usr.sbin/rpc.yppasswdd yppasswdd_main.c yppasswdd_server.c Log: Fix the breakage in rpc.yppasswd. Readded the svc_create() and the registering of the "unix" transport, now it is fixed. Everywhere, rq_cred is taken to look what authentification we have. We can not be sure that transp>xp_verf.oa_flavor is also filled in. This seems to be the same for all sun source. they take the flavor of rq_cred, instead of transp. Submitted by: mbr Revision Changes Path 1.18 +40 -58 src/usr.sbin/rpc.yppasswdd/yppasswdd_main.c 1.21 +13 -22 src/usr.sbin/rpc.yppasswdd/yppasswdd_server.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 10:59:29 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BDCA937B400; Tue, 5 Feb 2002 10:59:23 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15IxNC69428; Tue, 5 Feb 2002 10:59:23 -0800 (PST) (envelope-from bmah) Message-Id: <200202051859.g15IxNC69428@freefall.freebsd.org> From: "Bruce A. Mah" Date: Tue, 5 Feb 2002 10:59:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/05 10:59:23 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml Log: Add PuTTY to the list of clients for which the SSH S/Key workaround applies. Submitted by: "Peter C. Verhage" Revision Changes Path 1.1.2.48 +5 -4 src/release/doc/en_US.ISO8859-1/errata/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 11: 3:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 863DA37B434; Tue, 5 Feb 2002 11:03:18 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15J3IR70122; Tue, 5 Feb 2002 11:03:18 -0800 (PST) (envelope-from bmah) Message-Id: <200202051903.g15J3IR70122@freefall.freebsd.org> From: "Bruce A. Mah" Date: Tue, 5 Feb 2002 11:03:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/4.5R errata.html X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/05 11:03:18 PST Modified files: en/releases/4.5R errata.html Log: Regen from errata/article.sgml 1.1.2.48. Revision Changes Path 1.4 +7 -8 www/en/releases/4.5R/errata.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 11: 4:19 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 3F31837B41E; Tue, 5 Feb 2002 11:04:13 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id GAA30542; Wed, 6 Feb 2002 06:04:10 +1100 Date: Wed, 6 Feb 2002 06:06:37 +1100 (EST) From: Bruce Evans X-X-Sender: To: John Baldwin Cc: Bruce Evans , , Subject: RE: cvs commit: src/sys/i386/i386 db_interface.c In-Reply-To: Message-ID: <20020206055919.B27605-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 5 Feb 2002, John Baldwin wrote: > On 30-Jan-02 Bruce Evans wrote: > > bde 2002/01/30 10:23:32 PST > > > > Modified files: > > sys/i386/i386 db_interface.c > > Log: > > Backed out the last vestiges of rev.1.51. Don't enter a critical > > region in Debugger(), since rev.1.468 of machdep.c does this better. > > Other cosmetic backouts. > > Err, have you tested this? In my tests locally this still doesn't work > properly which is why I haven't committed it. :( Only a little for SMP, but a lot for !SMP, and critical_enter() only does much for !SMP. I never used rev.1.151 so my change has been tested since at least when 1.151 was committed. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 11: 9:44 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 348B437B404; Tue, 5 Feb 2002 11:09:31 -0800 (PST) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15J9VP74475; Tue, 5 Feb 2002 11:09:31 -0800 (PST) (envelope-from dillon) Message-Id: <200202051909.g15J9VP74475@freefall.freebsd.org> From: Matt Dillon Date: Tue, 5 Feb 2002 11:09:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfs nfs_serv.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2002/02/05 11:09:31 PST Modified files: (Branch: RELENG_4) sys/nfs nfs_serv.c Log: MFC 1.113. Do not allow an invalid file mode to propogate to the underlying fs (requiring a manual fsck to fix), and fix masking for S_IFMT bits supplied by a V2 client. Revision Changes Path 1.93.2.4 +9 -3 src/sys/nfs/nfs_serv.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 11:26: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4017737B426; Tue, 5 Feb 2002 11:26:05 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15JQ5w76919; Tue, 5 Feb 2002 11:26:05 -0800 (PST) (envelope-from alfred) Message-Id: <200202051926.g15JQ5w76919@freefall.freebsd.org> From: Alfred Perlstein Date: Tue, 5 Feb 2002 11:26:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/rpc crypt_client.c src/usr.bin/chpass pw_yp.c src/usr.bin/passwd yp_passwd.c src/usr.bin/rpcinfo rpcinfo.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/02/05 11:26:04 PST Modified files: lib/libc/rpc crypt_client.c usr.bin/chpass pw_yp.c usr.bin/passwd yp_passwd.c usr.bin/rpcinfo rpcinfo.c Log: The clnt_create(KEYSERVSOCK, CRYPT_PROG, CRYPT_VERS, "unix") hacks were removed and replaced them with clnt_tp_create, now the af_local support is fixed. I also removed the hack how rpcinfo contacted rpcbind, now we can relay on clnt_tp_create create the client-handle for us. Only rpcbind itself needs a hardcoded socket-path. Submitted by: mbr Also add $FreeBSD Revision Changes Path 1.6 +18 -7 src/lib/libc/rpc/crypt_client.c 1.17 +20 -6 src/usr.bin/chpass/pw_yp.c 1.16 +19 -3 src/usr.bin/passwd/yp_passwd.c 1.12 +16 -14 src/usr.bin/rpcinfo/rpcinfo.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 11:27:30 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 0299C37B425; Tue, 5 Feb 2002 11:27:25 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id GAA31632; Wed, 6 Feb 2002 06:27:22 +1100 Date: Wed, 6 Feb 2002 06:29:49 +1100 (EST) From: Bruce Evans X-X-Sender: To: John Baldwin Cc: Bruce Evans , , Subject: RE: cvs commit: src/sys/i386/i386 db_interface.c In-Reply-To: Message-ID: <20020206061908.G260-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 5 Feb 2002, John Baldwin wrote: > On 30-Jan-02 Bruce Evans wrote: > > bde 2002/01/30 10:23:32 PST > > > > Modified files: > > sys/i386/i386 db_interface.c > > Log: > > Backed out the last vestiges of rev.1.51. Don't enter a critical > > region in Debugger(), since rev.1.468 of machdep.c does this better. > > Other cosmetic backouts. > > Err, have you tested this? In my tests locally this still doesn't work > properly which is why I haven't committed it. :( PS: perhaps you are thinking of the flag in Debugger(). That is fundamentally broken too. It just protects against multiple entries to the debugger when the first entry is via the console debugger key. Try the following: - enter ddb using the key - hit the key again. No problem since the flag is set. - single step until the flag is unset - hit the key again. This causes a fine mess. The same thing mess happens when you enter ddb via a breakpoint and hit the key, except the console driver is not reentered then (unless the breakpoint is in the console driver). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 11:29:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E0FC37B423; Tue, 5 Feb 2002 11:29:51 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15JTpq77683; Tue, 5 Feb 2002 11:29:51 -0800 (PST) (envelope-from dinoex) Message-Id: <200202051929.g15JTpq77683@freefall.freebsd.org> From: Dirk Meyer Date: Tue, 5 Feb 2002 11:29:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gcvs Makefile distinfo ports/devel/gcvs/files patch-configure patch-make_configure X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/02/05 11:29:51 PST Modified files: devel/gcvs Makefile distinfo Added files: devel/gcvs/files patch-make_configure Removed files: devel/gcvs/files patch-configure Log: - Update to 1.0b2 - Fix build with automake14 and autoconf217 - This version needs glade to build too. Revision Changes Path 1.5 +7 -1 ports/devel/gcvs/Makefile 1.2 +1 -1 ports/devel/gcvs/distinfo 1.3 +0 -24 ports/devel/gcvs/files/patch-configure (dead) 1.1 +21 -0 ports/devel/gcvs/files/patch-make_configure (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 11:30:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 84A0237B404; Tue, 5 Feb 2002 11:30:26 -0800 (PST) Received: (from sumikawa@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15JUQL77892; Tue, 5 Feb 2002 11:30:26 -0800 (PST) (envelope-from sumikawa) Message-Id: <200202051930.g15JUQL77892@freefall.freebsd.org> From: Munechika SUMIKAWA Date: Tue, 5 Feb 2002 11:30:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mozilla+ipv6 Makefile distinfo pkg-plist ports/www/mozilla+ipv6/files patch-ak patch-aq patch-intl::uconv::src::unixcharset.properties patch-mi patch-xpcom::ds::plvector.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sumikawa 2002/02/05 11:30:24 PST Modified files: www/mozilla+ipv6 Makefile distinfo pkg-plist www/mozilla+ipv6/files patch-ak patch-intl::uconv::src::unixcharset.properties patch-mi Removed files: www/mozilla+ipv6/files patch-aq patch-xpcom::ds::plvector.c Log: Upgrade to 0.9.8. This version support dynamic IPv6 stack detection and IPv6->IPv4 fallback when IPv6 connection fails. I'll try merge into www/mozilla after checking these features. Revision Changes Path 1.74 +1 -2 ports/www/mozilla+ipv6/Makefile 1.43 +2 -2 ports/www/mozilla+ipv6/distinfo 1.5 +11 -19 ports/www/mozilla+ipv6/files/patch-ak 1.4 +0 -23 ports/www/mozilla+ipv6/files/patch-aq (dead) 1.3 +7 -68 ports/www/mozilla+ipv6/files/patch-intl::uconv::src::unixcharset.properties 1.8 +1 -12 ports/www/mozilla+ipv6/files/patch-mi 1.2 +0 -19 ports/www/mozilla+ipv6/files/patch-xpcom::ds::plvector.c (dead) 1.45 +10 -4 ports/www/mozilla+ipv6/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 11:31:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3397C37B42B; Tue, 5 Feb 2002 11:31:18 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15JVGd78132; Tue, 5 Feb 2002 11:31:16 -0800 (PST) (envelope-from alfred) Message-Id: <200202051931.g15JVGd78132@freefall.freebsd.org> From: Alfred Perlstein Date: Tue, 5 Feb 2002 11:31:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/rpc svc_vc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/02/05 11:31:16 PST Modified files: lib/libc/rpc svc_vc.c Log: style: return(x) -> return (x) Submitted by: mbr Revision Changes Path 1.8 +2 -2 src/lib/libc/rpc/svc_vc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 11:40:54 2002 Delivered-To: cvs-all@freebsd.org Received: from avocet.prod.itd.earthlink.net (avocet.mail.pas.earthlink.net [207.217.120.50]) by hub.freebsd.org (Postfix) with ESMTP id 3F1B237B489; Tue, 5 Feb 2002 11:40:27 -0800 (PST) Received: from user-2ivfo5m.dialup.mindspring.com ([165.247.224.182] helo=gohan.cjclark.org) by avocet.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16YBRu-00035K-00; Tue, 05 Feb 2002 11:40:16 -0800 Received: (from cjc@localhost) by gohan.cjclark.org (8.11.6/8.11.6) id g15JdgA01396; Tue, 5 Feb 2002 11:39:43 -0800 (PST) (envelope-from cjc) Date: Tue, 5 Feb 2002 11:39:40 -0800 From: "Crist J. Clark" To: Sheldon Hearn Cc: "Crist J. Clark" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc.network src/etc/defaults rc.conf src/share/man/man5 rc.conf.5 Message-ID: <20020205113940.A368@gohan.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <200202042229.g14MTMX08809@freefall.freebsd.org> <51603.1012900112@axl.seasidesoftware.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <51603.1012900112@axl.seasidesoftware.co.za>; from sheldonh@starjuice.net on Tue, Feb 05, 2002 at 11:08:32AM +0200 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 11:08:32AM +0200, Sheldon Hearn wrote: > > > On Mon, 04 Feb 2002 14:29:22 PST, "Crist J. Clark" wrote: > > > Modified files: (Branch: RELENG_4) > > etc rc.network > > etc/defaults rc.conf > > share/man/man5 rc.conf.5 > > Log: > > MFC: Make the rc.conf(5) 'log_in_vain' knob an integer. > > Do you have any ideas on migrating sysctls to sysctl.conf? > > I'm thinking we probably don't want to do it for RELENG_4, but could > probably afford to for 5.0-RELEASE. I tried to start a thread on this in -arch. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 11:41:43 2002 Delivered-To: cvs-all@freebsd.org Received: from leviathan.inethouston.net (leviathan.inethouston.net [66.64.12.249]) by hub.freebsd.org (Postfix) with ESMTP id DE3F337B41E; Tue, 5 Feb 2002 11:41:36 -0800 (PST) Received: by leviathan.inethouston.net (Postfix, from userid 1001) id 12B7D319BD6; Tue, 5 Feb 2002 13:41:35 -0600 (CST) Date: Tue, 5 Feb 2002 13:41:35 -0600 From: "David W. Chapman Jr." To: Munechika SUMIKAWA Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/mozilla+ipv6 Makefile distinfo pkg-plist ports/www/mozilla+ipv6/files patch-ak patch-aq patch-intl::uconv::src::unixcharset.properties patch-mi patch-xpcom::ds::plvector.c Message-ID: <20020205194134.GA66637@leviathan.inethouston.net> Reply-To: "David W. Chapman Jr." Mail-Followup-To: Munechika SUMIKAWA , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200202051930.g15JUQL77892@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202051930.g15JUQL77892@freefall.freebsd.org> User-Agent: Mutt/1.3.27i X-Operating-System: FreeBSD 4.5-RC i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > This version support dynamic IPv6 stack detection and IPv6->IPv4 fallback > when IPv6 connection fails. I'll try merge into www/mozilla after checking > these features. > Almost sounds like we won't need two mozilla versions anymore. Is that what you meant when you were going to try to merge them? -- David W. Chapman Jr. dwcjr@inethouston.net Raintree Network Services, Inc. dwcjr@freebsd.org FreeBSD Committer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 11:59:28 2002 Delivered-To: cvs-all@freebsd.org Received: from verifam.don.to (cj3096656-b.sagam1.kn.home.ne.jp [210.20.134.46]) by hub.freebsd.org (Postfix) with ESMTP id 3913F37B426; Tue, 5 Feb 2002 11:59:15 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by verifam.don.to (8.11.3/3.7W) with ESMTP id g15JlOC14497; Wed, 6 Feb 2002 04:47:24 +0900 (JST) Date: Tue, 05 Feb 2002 19:58:17 +0000 (GMT) Message-Id: <20020205.195816.36217456.sumikawa@ebina.hitachi.co.jp> To: dwcjr@inethouston.net Cc: sumikawa@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, sumikawa@ebina.hitachi.co.jp Subject: Re: cvs commit: ports/www/mozilla+ipv6 Makefile distinfo pkg-plist ports/www/mozilla+ipv6/files patch-ak patch-aq patch-intl::uconv::src::unixcharset.properties patch-mi patch-xpcom::ds::plvector.c From: Munechika Sumikawa In-Reply-To: <20020205194134.GA66637@leviathan.inethouston.net> References: <200202051930.g15JUQL77892@freefall.freebsd.org> <20020205194134.GA66637@leviathan.inethouston.net> X-Mailer: xcite1.42> Mew version 3.0.52 on Emacs 21.1 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > This version support dynamic IPv6 stack detection and IPv6->IPv4 fallback > > when IPv6 connection fails. I'll try merge into www/mozilla after checking > > these features. > Almost sounds like we won't need two mozilla versions anymore. Is > that what you meant when you were going to try to merge them? Within 1 or 2 weeks. Unfortunately now I'm inside firewall and I don't have direct IPv4/IPv6 connectivity. I requested some IPv6 users to check above features and collecting working report. If I confirm them and that there is no impact to IPv4 users, I'll try to merge and send an IPv6-enabling patch(patch-ak) to mozilla developer. --- Munechika SUMIKAWA @ Hitachi Europe / KAME Project / FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 12:11: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id D4F8F37B405; Tue, 5 Feb 2002 12:10:59 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id g15KAxv92090; Tue, 5 Feb 2002 12:10:59 -0800 (PST) (envelope-from obrien) Date: Tue, 5 Feb 2002 12:10:59 -0800 From: "David O'Brien" To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile src/sys/modules/fs Makefile src/sys/modules/fs/linprocfs Makefile src/sys/modules/fs/procfs Makefile src/sys/modules/fs/pseudofs Makefile src/sys/modules/linprocfs Makefile src/sys/modules/procfs Makefile ... Message-ID: <20020205121059.A91779@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200202042016.g14KGok73826@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200202042016.g14KGok73826@freefall.freebsd.org>; from des@FreeBSD.org on Mon, Feb 04, 2002 at 12:16:50PM -0800 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Feb 04, 2002 at 12:16:50PM -0800, Dag-Erling Smorgrav wrote: > Added files: > sys/modules/linprocfs Makefile > sys/modules/procfs Makefile > sys/modules/pseudofs Makefile > Removed files: > sys/modules/fs Makefile > sys/modules/fs/linprocfs Makefile > sys/modules/fs/procfs Makefile > sys/modules/fs/pseudofs Makefile > Log: > Move the pseudofs, procfs and linprocfs modules out from the fs directory. > Keeping them there seemed like a good idea at the time, but it annoys bde > and confuses people who do not understand how MODULES_OVERRIDE works. Was this discussed anywhere? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 12:18:34 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 28A5437B425; Tue, 5 Feb 2002 12:18:32 -0800 (PST) Received: (from green@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15KIWC89658; Tue, 5 Feb 2002 12:18:32 -0800 (PST) (envelope-from green) Message-Id: <200202052018.g15KIWC89658@freefall.freebsd.org> From: Brian Feldman Date: Tue, 5 Feb 2002 12:18:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG green 2002/02/05 12:18:32 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml Log: Fix typos. Revision Changes Path 1.1.2.49 +16 -9 src/release/doc/en_US.ISO8859-1/errata/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 12:26:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B2C3D37B42B; Tue, 5 Feb 2002 12:26:09 -0800 (PST) Received: (from nbm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15KQ9890855; Tue, 5 Feb 2002 12:26:09 -0800 (PST) (envelope-from nbm) Message-Id: <200202052026.g15KQ9890855@freefall.freebsd.org> From: Neil Blakey-Milner Date: Tue, 5 Feb 2002 12:26:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/zope Makefile distinfo pkg-plist ports/www/zope/files zope.sh.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nbm 2002/02/05 12:26:09 PST Modified files: www/zope Makefile distinfo pkg-plist www/zope/files zope.sh.in Log: Upgrade to 2.5.0 plus the security fix. PR: ports/34430 Submitted by: HAYASHI Yasushi Revision Changes Path 1.34 +26 -12 ports/www/zope/Makefile 1.21 +2 -1 ports/www/zope/distinfo 1.3 +7 -1 ports/www/zope/files/zope.sh.in 1.25 +540 -131 ports/www/zope/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 12:44:59 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C89A437B41A; Tue, 5 Feb 2002 12:44:56 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15KiuB94777; Tue, 5 Feb 2002 12:44:56 -0800 (PST) (envelope-from phk) Message-Id: <200202052044.g15KiuB94777@freefall.freebsd.org> From: Poul-Henning Kamp Date: Tue, 5 Feb 2002 12:44:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys timetc.h src/sys/kern kern_tc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/02/05 12:44:56 PST Modified files: sys/sys timetc.h sys/kern kern_tc.c Log: Let the number of timecounters follow hz, otherwise people with HZ=BIGNUM will strain the assumptions behind timecounters to the point where they break. This may or may not help people seeing microuptime() backwards messages. Make the global timecounter variable volatile, it makes no difference in the code GCC generates, but it makes represents the intent correctly. Thanks to: jdp MFC after: 2 weeks Revision Changes Path 1.112 +3 -2 src/sys/kern/kern_tc.c 1.44 +2 -2 src/sys/sys/timetc.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 12:45:44 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id 2703437B41A; Tue, 5 Feb 2002 12:45:35 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g15KjXT34015; Tue, 5 Feb 2002 20:45:33 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id 117823F9; Tue, 5 Feb 2002 20:42:03 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g15Jnhs12003; Tue, 5 Feb 2002 19:49:43 GMT (envelope-from mark@grondar.za) Message-Id: <200202051949.g15Jnhs12003@greenpeace.grondar.org> To: "Andrey A. Chernov" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c References: <20020205184059.GA6785@nagual.pp.ru> In-Reply-To: <20020205184059.GA6785@nagual.pp.ru> ; from "Andrey A. Chernov" "Tue, 05 Feb 2002 21:40:59 +0300." Date: Tue, 05 Feb 2002 19:49:38 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Tue, Feb 05, 2002 at 15:20:44 +0300, Andrey A. Chernov wrote: > > > > 1) You break applications which expect the same sequence from random() > > (when initializing srandom() to some fixed value) since insert random() > > calls in the middle of application ones. > > In case my description is unclear, here is example: > > App: > srandom(33); > random(); > random(); > call PAM library > PAM calls random(); > PAM calls random() > return; /* application starts, control is handed over to the user */ srandom(33); random(); /* sequence is OK. */ M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 12:47:44 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 524CB37B404; Tue, 5 Feb 2002 12:47:41 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 530695341; Tue, 5 Feb 2002 21:47:37 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Alfred Perlstein Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/rpc.yppasswdd pw_util.c yppasswdd_extern.h References: <200202051826.g15IQ1A63962@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 05 Feb 2002 21:47:36 +0100 In-Reply-To: <200202051826.g15IQ1A63962@freefall.freebsd.org> Message-ID: Lines: 14 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alfred Perlstein writes: > Log: > Constify things to unbreak world. Argh! Sorry about that. The YP code is vile; the back-and-forth dependencies are just crazy, some of the code is duplicated all over the place, and it leaks memory like a sieve because someone has sprinkled the code with strdup()s to silence const warnings. I'm going to take a few days to try and sort it all out, since it's blocking some of my PAM work. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 12:48:34 2002 Delivered-To: cvs-all@freebsd.org Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by hub.freebsd.org (Postfix) with ESMTP id 3275637B420; Tue, 5 Feb 2002 12:48:29 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 0A95510DDF8; Tue, 5 Feb 2002 12:48:29 -0800 (PST) Date: Tue, 5 Feb 2002 12:48:29 -0800 From: Alfred Perlstein To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/rpc.yppasswdd pw_util.c yppasswdd_extern.h Message-ID: <20020205124828.R59017@elvis.mu.org> References: <200202051826.g15IQ1A63962@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Tue, Feb 05, 2002 at 09:47:36PM +0100 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Dag-Erling Smorgrav [020205 12:47] wrote: > Alfred Perlstein writes: > > Log: > > Constify things to unbreak world. > > Argh! Sorry about that. The YP code is vile; the back-and-forth > dependencies are just crazy, some of the code is duplicated all over > the place, and it leaks memory like a sieve because someone has > sprinkled the code with strdup()s to silence const warnings. I'm > going to take a few days to try and sort it all out, since it's > blocking some of my PAM work. thank you for taking the time to look into this! -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' Tax deductable donations for FreeBSD: http://www.freebsdfoundation.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 12:49:10 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id B123C37B420; Tue, 5 Feb 2002 12:49:04 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id A70F45341; Tue, 5 Feb 2002 21:49:03 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: obrien@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/modules Makefile src/sys/modules/fs Makefile src/sys/modules/fs/linprocfs Makefile src/sys/modules/fs/procfs Makefile src/sys/modules/fs/pseudofs Makefile src/sys/modules/linprocfs Makefile src/sys/modules/procfs Makefile ... References: <200202042016.g14KGok73826@freefall.freebsd.org> <20020205121059.A91779@dragon.nuxi.com> From: Dag-Erling Smorgrav Date: 05 Feb 2002 21:49:03 +0100 In-Reply-To: <20020205121059.A91779@dragon.nuxi.com> Message-ID: Lines: 9 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "David O'Brien" writes: > Was this discussed anywhere? No. Would you be happier if I'd stuck "Requested by: bde" at the bottom of the log message? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 12:54:50 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc54.attbi.com (rwcrmhc54.attbi.com [216.148.227.87]) by hub.freebsd.org (Postfix) with ESMTP id 586E437B432; Tue, 5 Feb 2002 12:54:44 -0800 (PST) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020205205439.RSYS7443.rwcrmhc54.attbi.com@bmah.dyndns.org>; Tue, 5 Feb 2002 20:54:39 +0000 Received: (from bmah@localhost) by bmah.dyndns.org (8.11.6/8.11.6) id g15KscG52395; Tue, 5 Feb 2002 12:54:38 -0800 (PST) (envelope-from bmah) Message-Id: <200202052054.g15KscG52395@bmah.dyndns.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Brian Feldman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml In-reply-to: <200202052018.g15KIWC89658@freefall.freebsd.org> References: <200202052018.g15KIWC89658@freefall.freebsd.org> Comments: In-reply-to Brian Feldman message dated "Tue, 05 Feb 2002 12:18:32 -0800." From: "Bruce A. Mah" Reply-To: bmah@FreeBSD.org X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 05 Feb 2002 12:54:38 -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG If memory serves me right, Brian Feldman wrote: > green 2002/02/05 12:18:32 PST > > Modified files: (Branch: RELENG_4) > release/doc/en_US.ISO8859-1/errata article.sgml > Log: > Fix typos. Just for the record, this commit was new information added (which is perfectly fine BTW!), not a typo fix. This errata item was based on what information I could find on the stable and qa mailing lists, which is why I wrote an errata entry and sent it to you (including the workaround) for a review last Thursday. I committed a day later without your review because I seemed to me like something that should get out to the Web site quickly. Thanks for the new info! Bruce. PS. FYI, the copy for the Web site needs to be regenerated. I should probably put a comment in this file reminding people of this fact, should anyone other than me want to make errata changes in the future. (I'll deal with this change.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 12:59:25 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 9BDAE37B426; Tue, 5 Feb 2002 12:59:18 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g15Kx8S08074; Tue, 5 Feb 2002 23:59:09 +0300 (MSK) (envelope-from ache) Date: Tue, 5 Feb 2002 23:59:08 +0300 From: "Andrey A. Chernov" To: Mark Murray , des@freebgsd.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205205907.GA8005@nagual.pp.ru> References: <20020205184059.GA6785@nagual.pp.ru> <200202051949.g15Jnhs12003@greenpeace.grondar.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202051949.g15Jnhs12003@greenpeace.grondar.org> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 19:49:38 +0000, Mark Murray wrote: > > On Tue, Feb 05, 2002 at 15:20:44 +0300, Andrey A. Chernov wrote: > > > > > > 1) You break applications which expect the same sequence from random() > > > (when initializing srandom() to some fixed value) since insert random() > > > calls in the middle of application ones. > > > > In case my description is unclear, here is example: > > > > App: > > srandom(33); > > random(); > > random(); > > call PAM library > > PAM calls random(); > > PAM calls random() > > return; > > /* application starts, control is handed over to the user */ > srandom(33); > random(); /* sequence is OK. */ It is OK at this point, but broken _after_ PAM called. Lets imagine srandom(33) produce this hypotetical sequence for random() calls: 2,4,6,7,8,9,1,2 Without PAM application got _all_ the values. With PAM, PAM got some values for itself: 2,4,5,7,8,9,1,2 ^^^^^ \------ this three goes to PAM and not to application. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 13: 4:58 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id AFABD37B420; Tue, 5 Feb 2002 13:04:55 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 462A65341; Tue, 5 Feb 2002 22:04:54 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Alfred Perlstein Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/rpc.yppasswdd pw_util.c yppasswdd_extern.h References: <200202051826.g15IQ1A63962@freefall.freebsd.org> <20020205124828.R59017@elvis.mu.org> From: Dag-Erling Smorgrav Date: 05 Feb 2002 22:04:53 +0100 In-Reply-To: <20020205124828.R59017@elvis.mu.org> Message-ID: Lines: 9 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alfred Perlstein writes: > thank you for taking the time to look into this! Yes, it's amazing how much one can achieve through sheer power of annoyance :) DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 13: 7: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D47A937B422; Tue, 5 Feb 2002 13:06:56 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15L6u203442; Tue, 5 Feb 2002 13:06:56 -0800 (PST) (envelope-from imp) Message-Id: <200202052106.g15L6u203442@freefall.freebsd.org> From: Warner Losh Date: Tue, 5 Feb 2002 13:06:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/talkd announce.c extern.h print.c process.c table.c talkd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/05 13:06:56 PST Modified files: libexec/talkd announce.c print.c process.c table.c talkd.c Added files: libexec/talkd extern.h Log: o Move externs to extern.h o Use new-style prototypes exclusively rather than the old foo() style. o Use new-style function definitions. o remove register o make functions passed to signal have the right signature. o do minor const poisoning. Revision Changes Path 1.15 +5 -11 src/libexec/talkd/announce.c 1.1 +40 -0 src/libexec/talkd/extern.h (new) 1.10 +4 -6 src/libexec/talkd/print.c 1.10 +5 -19 src/libexec/talkd/process.c 1.8 +15 -23 src/libexec/talkd/table.c 1.13 +5 -8 src/libexec/talkd/talkd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 13: 7:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 345BA37B430; Tue, 5 Feb 2002 13:07:47 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15L7lY03568; Tue, 5 Feb 2002 13:07:47 -0800 (PST) (envelope-from imp) Message-Id: <200202052107.g15L7lY03568@freefall.freebsd.org> From: Warner Losh Date: Tue, 5 Feb 2002 13:07:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/talkd extern.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/05 13:07:47 PST Modified files: libexec/talkd extern.h Log: Fix minor disorder in functions declared in extern.h Revision Changes Path 1.2 +1 -1 src/libexec/talkd/extern.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 13:23: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from green.bikeshed.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 264C837B41B; Tue, 5 Feb 2002 13:22:51 -0800 (PST) Received: from localhost (green@localhost) by green.bikeshed.org (8.11.6/8.11.6) with ESMTP id g15LMp561404; Tue, 5 Feb 2002 16:22:52 -0500 (EST) (envelope-from green@green.bikeshed.org) Message-Id: <200202052122.g15LMp561404@green.bikeshed.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: bmah@FreeBSD.org Cc: Brian Feldman , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml In-Reply-To: Message from "Bruce A. Mah" of "Tue, 05 Feb 2002 12:54:38 PST." <200202052054.g15KscG52395@bmah.dyndns.org> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 05 Feb 2002 16:22:51 -0500 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Bruce A. Mah" wrote: > If memory serves me right, Brian Feldman wrote: > > green 2002/02/05 12:18:32 PST > > > > Modified files: (Branch: RELENG_4) > > release/doc/en_US.ISO8859-1/errata article.sgml > > Log: > > Fix typos. > > Just for the record, this commit was new information added (which is > perfectly fine BTW!), not a typo fix. Yeah, I've gotten truly annoyed at how no-one will listen to why this occurs, so I tried to sneak it in in the hopes that people won't think I wrote it and therefore actually read what it says. > This errata item was based on what information I could find on the > stable and qa mailing lists, which is why I wrote an errata entry and > sent it to you (including the workaround) for a review last Thursday. I > committed a day later without your review because I seemed to me like > something that should get out to the Web site quickly. Well, I didn't mind; it's just people started bugging me about this yet again today. I don't know why I should defend our OpenSSH, though... Thanks for trying to clarify things for everybody, even though the only info you were able to get was incomplete through no fault of your own. > Thanks for the new info! > > Bruce. > > PS. FYI, the copy for the Web site needs to be regenerated. I should > probably put a comment in this file reminding people of this fact, > should anyone other than me want to make errata changes in the future. > (I'll deal with this change.) I prefer just leaving docs to people who know docs :) -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org <> bfeldman@tislabs.com \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 13:23:23 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BFCD837B426; Tue, 5 Feb 2002 13:23:05 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15LN5f05643; Tue, 5 Feb 2002 13:23:05 -0800 (PST) (envelope-from alfred) Message-Id: <200202052123.g15LN5f05643@freefall.freebsd.org> From: Alfred Perlstein Date: Tue, 5 Feb 2002 13:23:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm vm_extern.h vm_glue.c vm_map.c vm_map.h src/sys/kern kern_exit.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/02/05 13:23:05 PST Modified files: sys/vm vm_extern.h vm_glue.c vm_map.c vm_map.h sys/kern kern_exit.c Log: Fix a race with free'ing vmspaces at process exit when vmspaces are shared. Also introduce vm_endcopy instead of using pointer tricks when initializing new vmspaces. The race occured because of how the reference was utilized: test vmspace reference, possibly block, decrement reference When sharing a vmspace between multiple processes it was possible for two processes exiting at the same time to test the reference count, possibly block and neither one free because they wouldn't see the other's update. Submitted by: green Revision Changes Path 1.147 +4 -3 src/sys/kern/kern_exit.c 1.51 +1 -0 src/sys/vm/vm_extern.h 1.123 +1 -1 src/sys/vm/vm_glue.c 1.212 +30 -17 src/sys/vm/vm_map.c 1.69 +2 -0 src/sys/vm/vm_map.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 13:24:45 2002 Delivered-To: cvs-all@freebsd.org Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by hub.freebsd.org (Postfix) with ESMTP id 6A23037B428; Tue, 5 Feb 2002 13:24:41 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 40A8210DDF8; Tue, 5 Feb 2002 13:24:41 -0800 (PST) Date: Tue, 5 Feb 2002 13:24:41 -0800 From: Alfred Perlstein To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/rpc.yppasswdd pw_util.c yppasswdd_extern.h Message-ID: <20020205132441.S59017@elvis.mu.org> References: <200202051826.g15IQ1A63962@freefall.freebsd.org> <20020205124828.R59017@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Tue, Feb 05, 2002 at 10:04:53PM +0100 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Dag-Erling Smorgrav [020205 13:04] wrote: > Alfred Perlstein writes: > > thank you for taking the time to look into this! > > Yes, it's amazing how much one can achieve through sheer power of > annoyance :) "This is how we fix things on russian space station!" -- -Alfred Perlstein [alfred@freebsd.org] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 13:27:36 2002 Delivered-To: cvs-all@freebsd.org Received: from green.bikeshed.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1062537B426; Tue, 5 Feb 2002 13:27:27 -0800 (PST) Received: from localhost (green@localhost) by green.bikeshed.org (8.11.6/8.11.6) with ESMTP id g15LRSL61439; Tue, 5 Feb 2002 16:27:28 -0500 (EST) (envelope-from green@green.bikeshed.org) Message-Id: <200202052127.g15LRSL61439@green.bikeshed.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/vm vm_extern.h vm_glue.c vm_map.c vm_map.h src/sys/kern kern_exit.c In-Reply-To: Your message of "Tue, 05 Feb 2002 13:23:05 PST." <200202052123.g15LN5f05643@freefall.freebsd.org> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 05 Feb 2002 16:27:28 -0500 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alfred Perlstein wrote: > alfred 2002/02/05 13:23:05 PST > > Modified files: > sys/vm vm_extern.h vm_glue.c vm_map.c vm_map.h > sys/kern kern_exit.c > Log: > Fix a race with free'ing vmspaces at process exit when vmspaces are > shared. > > Also introduce vm_endcopy instead of using pointer tricks when > initializing new vmspaces. > > The race occured because of how the reference was utilized: > test vmspace reference, > possibly block, > decrement reference > > When sharing a vmspace between multiple processes it was possible > for two processes exiting at the same time to test the reference > count, possibly block and neither one free because they wouldn't > see the other's update. > > Submitted by: green For what it's worth, Matt Dillon did propose a possible alternate solution for this problem. I still haven't gotten around to puzzling that one out, so for now the simple solution that costs 4 bytes per vmspace isn't too bad, especially in comparison to the amount of memory leaked by shared memory segments that cannot be freed when a LinuxThreads program crashes. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org <> bfeldman@tislabs.com \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 13:32:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D0EF37B426; Tue, 5 Feb 2002 13:32:16 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15LWG706947; Tue, 5 Feb 2002 13:32:16 -0800 (PST) (envelope-from des) Message-Id: <200202052132.g15LWG706947@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 5 Feb 2002 13:32:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libfetch fetch.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/05 13:32:16 PST Modified files: lib/libfetch fetch.c Log: Eliminate a redundant loop. Revision Changes Path 1.33 +1 -2 src/lib/libfetch/fetch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 13:33: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6BB5637B41E; Tue, 5 Feb 2002 13:32:57 -0800 (PST) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15LWvf07044; Tue, 5 Feb 2002 13:32:57 -0800 (PST) (envelope-from joe) Message-Id: <200202052132.g15LWvf07044@freefall.freebsd.org> From: Josef Karthauser Date: Tue, 5 Feb 2002 13:32:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 physio.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2002/02/05 13:32:57 PST Modified files: share/man/man9 physio.9 Log: Update the physio man page to better reflect reality. PR: docs/30603 Reviewed by: phk MFC after: 3 days Revision Changes Path 1.12 +14 -37 src/share/man/man9/physio.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 13:47:19 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 3F6FE37B425; Tue, 5 Feb 2002 13:47:12 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g15Ll5V08625; Wed, 6 Feb 2002 00:47:05 +0300 (MSK) (envelope-from ache) Date: Wed, 6 Feb 2002 00:47:03 +0300 From: "Andrey A. Chernov" To: Mark Murray , des@freebsd.org Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205214703.GA8579@nagual.pp.ru> References: <20020205184059.GA6785@nagual.pp.ru> <200202051949.g15Jnhs12003@greenpeace.grondar.org> <20020205205907.GA8005@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020205205907.GA8005@nagual.pp.ru> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 23:59:08 +0300, Andrey A. Chernov wrote: > It is OK at this point, but broken _after_ PAM called. > Lets imagine srandom(33) produce this hypotetical sequence for random() > calls: To see the bug, run following test application with "call_pam" set to 1 and 0 #include int call_pam = 0; main() { srandom(33); random(); random(); if (call_pam) libpam_steals_N_randoms(); printf("%d\n", random()); } /* this is library code */ libpam_steals_N_randoms() { random(); random(); } -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 13:48:38 2002 Delivered-To: cvs-all@freebsd.org Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by hub.freebsd.org (Postfix) with ESMTP id 6B1A337B420; Tue, 5 Feb 2002 13:48:33 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 193A810DDF8; Tue, 5 Feb 2002 13:48:33 -0800 (PST) Date: Tue, 5 Feb 2002 13:48:33 -0800 From: Alfred Perlstein To: "Andrey A. Chernov" Cc: Mark Murray , des@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205134833.T59017@elvis.mu.org> References: <20020205184059.GA6785@nagual.pp.ru> <200202051949.g15Jnhs12003@greenpeace.grondar.org> <20020205205907.GA8005@nagual.pp.ru> <20020205214703.GA8579@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020205214703.GA8579@nagual.pp.ru>; from ache@nagual.pp.ru on Wed, Feb 06, 2002 at 12:47:03AM +0300 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Andrey A. Chernov [020205 13:47] wrote: > On Tue, Feb 05, 2002 at 23:59:08 +0300, Andrey A. Chernov wrote: > > > It is OK at this point, but broken _after_ PAM called. > > Lets imagine srandom(33) produce this hypotetical sequence for random() > > calls: > > To see the bug, run following test application with "call_pam" set to 1 > and 0 I understand the issue you're bringing up, would it make sense to create/utilize a save/restore random() context function? -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 13:55:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B77B37B41C; Tue, 5 Feb 2002 13:55:13 -0800 (PST) Received: (from zarzycki@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15LtDG10218; Tue, 5 Feb 2002 13:55:13 -0800 (PST) (envelope-from zarzycki) Message-Id: <200202052155.g15LtDG10218@freefall.freebsd.org> From: Dave Zarzycki Date: Tue, 5 Feb 2002 13:55:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/mkdir mkdir.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG zarzycki 2002/02/05 13:55:13 PST Modified files: bin/mkdir mkdir.c Log: Fix the race between the stat() and the mkdir(). Reviewed by: jkh Revision Changes Path 1.23 +19 -16 src/bin/mkdir/mkdir.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 13:55:59 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 70A1E37B428; Tue, 5 Feb 2002 13:55:48 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g15LtfN08731; Wed, 6 Feb 2002 00:55:41 +0300 (MSK) (envelope-from ache) Date: Wed, 6 Feb 2002 00:55:40 +0300 From: "Andrey A. Chernov" To: Alfred Perlstein Cc: Mark Murray , des@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205215540.GB8579@nagual.pp.ru> References: <20020205184059.GA6785@nagual.pp.ru> <200202051949.g15Jnhs12003@greenpeace.grondar.org> <20020205205907.GA8005@nagual.pp.ru> <20020205214703.GA8579@nagual.pp.ru> <20020205134833.T59017@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020205134833.T59017@elvis.mu.org> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 13:48:33 -0800, Alfred Perlstein wrote: > > I understand the issue you're bringing up, would it make sense > to create/utilize a save/restore random() context function? I don't think it worth to try. We already have acr4random() which is: 1) Safe to call from libraries. 2) Have the same speed compared to random() (or even faster) 3) Auto-seded from true randomness My patch for this thing just literally replace random() with arc4random() and remove srandomdev(). -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 13:58:28 2002 Delivered-To: cvs-all@freebsd.org Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by hub.freebsd.org (Postfix) with ESMTP id A199637B425; Tue, 5 Feb 2002 13:58:20 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 77B6E10DDF8; Tue, 5 Feb 2002 13:58:20 -0800 (PST) Date: Tue, 5 Feb 2002 13:58:20 -0800 From: Alfred Perlstein To: "Andrey A. Chernov" Cc: Mark Murray , des@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205135820.U59017@elvis.mu.org> References: <20020205184059.GA6785@nagual.pp.ru> <200202051949.g15Jnhs12003@greenpeace.grondar.org> <20020205205907.GA8005@nagual.pp.ru> <20020205214703.GA8579@nagual.pp.ru> <20020205134833.T59017@elvis.mu.org> <20020205215540.GB8579@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020205215540.GB8579@nagual.pp.ru>; from ache@nagual.pp.ru on Wed, Feb 06, 2002 at 12:55:40AM +0300 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Andrey A. Chernov [020205 13:55] wrote: > On Tue, Feb 05, 2002 at 13:48:33 -0800, Alfred Perlstein wrote: > > > > I understand the issue you're bringing up, would it make sense > > to create/utilize a save/restore random() context function? > > I don't think it worth to try. We already have acr4random() which is: > > 1) Safe to call from libraries. > 2) Have the same speed compared to random() (or even faster) > 3) Auto-seded from true randomness > > My patch for this thing just literally replace random() with > arc4random() and remove srandomdev(). this makes sense, what is the problem with doing so? -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' Tax deductable donations for FreeBSD: http://www.freebsdfoundation.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14: 1: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id 698A837B421; Tue, 5 Feb 2002 14:00:53 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g15M0qx34588; Tue, 5 Feb 2002 22:00:52 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id 5DF2C38D; Tue, 5 Feb 2002 21:58:34 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g15LwUs21329; Tue, 5 Feb 2002 21:58:30 GMT (envelope-from mark@grondar.za) Message-Id: <200202052158.g15LwUs21329@greenpeace.grondar.org> To: "Andrey A. Chernov" Cc: des@freebgsd.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c References: <20020205205907.GA8005@nagual.pp.ru> In-Reply-To: <20020205205907.GA8005@nagual.pp.ru> ; from "Andrey A. Chernov" "Tue, 05 Feb 2002 23:59:08 +0300." Date: Tue, 05 Feb 2002 21:58:25 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Tue, Feb 05, 2002 at 19:49:38 +0000, Mark Murray wrote: > > > On Tue, Feb 05, 2002 at 15:20:44 +0300, Andrey A. Chernov wrote: > > > > > > > > 1) You break applications which expect the same sequence from random() > > > > (when initializing srandom() to some fixed value) since insert random() > > > > calls in the middle of application ones. > > > > > > In case my description is unclear, here is example: > > > > > > App: > > > srandom(33); > > > random(); > > > random(); > > > call PAM library > > > PAM calls random(); > > > PAM calls random() > > > return; > > > > /* application starts, control is handed over to the user */ > > srandom(33); > > random(); /* sequence is OK. */ > > It is OK at this point, but broken _after_ PAM called. > Lets imagine srandom(33) produce this hypotetical sequence for random() > calls: > > 2,4,6,7,8,9,1,2 > > Without PAM application got _all_ the values. > With PAM, PAM got some values for itself: > > 2,4,5,7,8,9,1,2 > ^^^^^ > \------ this three goes to PAM and not to application. Why is your program doing user stuff before it has authenticated? _After_ PAM, the user is free to srandom() ans much as he likes. M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14: 4:33 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 3ABDA37B420; Tue, 5 Feb 2002 14:04:27 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g15M4Mx08854; Wed, 6 Feb 2002 01:04:22 +0300 (MSK) (envelope-from ache) Date: Wed, 6 Feb 2002 01:04:21 +0300 From: "Andrey A. Chernov" To: Alfred Perlstein Cc: Mark Murray , des@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205220421.GC8579@nagual.pp.ru> References: <20020205184059.GA6785@nagual.pp.ru> <200202051949.g15Jnhs12003@greenpeace.grondar.org> <20020205205907.GA8005@nagual.pp.ru> <20020205214703.GA8579@nagual.pp.ru> <20020205134833.T59017@elvis.mu.org> <20020205215540.GB8579@nagual.pp.ru> <20020205135820.U59017@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020205135820.U59017@elvis.mu.org> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 13:58:20 -0800, Alfred Perlstein wrote: > > > > My patch for this thing just literally replace random() with > > arc4random() and remove srandomdev(). > > this makes sense, what is the problem with doing so? Mark initially says that pam_unix code not needs true cryptographical randomness and more simple salt formulae can be used. He promise to come with fix. But in his fix he just remove srandomdev() and left random() in place cause the bug I demonstrate now. I see absolutely no advantage of using random() (deprecated in libraries) for salt instead of safe arc4random() like in my patch. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14: 6:30 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 3B0D437B422; Tue, 5 Feb 2002 14:06:25 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g15M6L308912; Wed, 6 Feb 2002 01:06:21 +0300 (MSK) (envelope-from ache) Date: Wed, 6 Feb 2002 01:06:20 +0300 From: "Andrey A. Chernov" To: Mark Murray Cc: des@freebgsd.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205220620.GD8579@nagual.pp.ru> References: <20020205205907.GA8005@nagual.pp.ru> <200202052158.g15LwUs21329@greenpeace.grondar.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202052158.g15LwUs21329@greenpeace.grondar.org> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 21:58:25 +0000, Mark Murray wrote: > > Why is your program doing user stuff before it has authenticated? > > _After_ PAM, the user is free to srandom() ans much as he likes. I see no rule in PAM docs that program can't do anything it wants (like initializing some tables f.e.) _before_ PAM. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14:10:35 2002 Delivered-To: cvs-all@freebsd.org Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by hub.freebsd.org (Postfix) with ESMTP id 54E0837B420; Tue, 5 Feb 2002 14:10:29 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 288D310DDF8; Tue, 5 Feb 2002 14:10:29 -0800 (PST) Date: Tue, 5 Feb 2002 14:10:29 -0800 From: Alfred Perlstein To: "Andrey A. Chernov" Cc: Mark Murray , des@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205141029.V59017@elvis.mu.org> References: <20020205184059.GA6785@nagual.pp.ru> <200202051949.g15Jnhs12003@greenpeace.grondar.org> <20020205205907.GA8005@nagual.pp.ru> <20020205214703.GA8579@nagual.pp.ru> <20020205134833.T59017@elvis.mu.org> <20020205215540.GB8579@nagual.pp.ru> <20020205135820.U59017@elvis.mu.org> <20020205220421.GC8579@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020205220421.GC8579@nagual.pp.ru>; from ache@nagual.pp.ru on Wed, Feb 06, 2002 at 01:04:21AM +0300 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Andrey A. Chernov [020205 14:04] wrote: > On Tue, Feb 05, 2002 at 13:58:20 -0800, Alfred Perlstein wrote: > > > > > > My patch for this thing just literally replace random() with > > > arc4random() and remove srandomdev(). > > > > this makes sense, what is the problem with doing so? > > Mark initially says that pam_unix code not needs true cryptographical > randomness and more simple salt formulae can be used. He promise to come > with fix. But in his fix he just remove srandomdev() and left random() in > place cause the bug I demonstrate now. I see absolutely no advantage of > using random() (deprecated in libraries) for salt instead of safe > arc4random() like in my patch. Mark, can you comment? I've read that you said an application shouldn't depend on state of random() when making pam calls, but this doesn't sound very good, it should at least be documented, better yet avoided... -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' Tax deductable donations for FreeBSD: http://www.freebsdfoundation.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14:13:58 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D39CE37B426; Tue, 5 Feb 2002 14:13:52 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15MDqU17088; Tue, 5 Feb 2002 14:13:52 -0800 (PST) (envelope-from des) Message-Id: <200202052213.g15MDqU17088@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 5 Feb 2002 14:13:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libfetch Makefile common.c common.h fetch.c fetch.h file.c ftp.c http.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/05 14:13:52 PST Modified files: lib/libfetch Makefile common.c common.h fetch.c fetch.h file.c ftp.c http.c Log: Reindent, and add parentheses to return statements. Some functions in ftp.c and http.c now have exceedingly long lines due to deep nesting; this will be corrected by reorganizing the code in a later revision. Revision Changes Path 1.26 +1 -1 src/lib/libfetch/Makefile 1.24 +226 -229 src/lib/libfetch/common.c 1.19 +6 -7 src/lib/libfetch/common.h 1.34 +216 -219 src/lib/libfetch/fetch.c 1.24 +24 -20 src/lib/libfetch/fetch.h 1.15 +75 -75 src/lib/libfetch/file.c 1.75 +685 -680 src/lib/libfetch/ftp.c 1.51 +734 -728 src/lib/libfetch/http.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14:15:22 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F25DD37B41E; Tue, 5 Feb 2002 14:15:16 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15MFGh17304; Tue, 5 Feb 2002 14:15:16 -0800 (PST) (envelope-from des) Message-Id: <200202052215.g15MFGh17304@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 5 Feb 2002 14:15:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libfetch common.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/05 14:15:16 PST Modified files: lib/libfetch common.c Log: Switch to a self-starting allocation scheme. Revision Changes Path 1.25 +3 -10 src/lib/libfetch/common.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14:20: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B41A37B427; Tue, 5 Feb 2002 14:20:04 -0800 (PST) Received: (from gioria@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15MK4X18028; Tue, 5 Feb 2002 14:20:04 -0800 (PST) (envelope-from gioria) Message-Id: <200202052220.g15MK4X18028@freefall.freebsd.org> From: Sebastien Gioria Date: Tue, 5 Feb 2002 14:20:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en support.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gioria 2002/02/05 14:20:04 PST Modified files: en support.sgml Log: Malartre mailling list is dead like www Revision Changes Path 1.251 +1 -6 www/en/support.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14:21: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id C878237B420; Tue, 5 Feb 2002 14:20:39 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g15MKdb34770; Tue, 5 Feb 2002 22:20:39 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id 309A0CE; Tue, 5 Feb 2002 22:19:43 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g15MJhs32408; Tue, 5 Feb 2002 22:19:43 GMT (envelope-from mark@grondar.za) Message-Id: <200202052219.g15MJhs32408@greenpeace.grondar.org> To: "Andrey A. Chernov" Cc: des@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c References: <20020205214703.GA8579@nagual.pp.ru> In-Reply-To: <20020205214703.GA8579@nagual.pp.ru> ; from "Andrey A. Chernov" "Wed, 06 Feb 2002 00:47:03 +0300." Date: Tue, 05 Feb 2002 22:19:38 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Tue, Feb 05, 2002 at 23:59:08 +0300, Andrey A. Chernov wrote: > > > It is OK at this point, but broken _after_ PAM called. > > Lets imagine srandom(33) produce this hypotetical sequence for random() > > calls: > > To see the bug, run following test application with "call_pam" set to 1 > and 0 The bug is doing userland stuff before the authentication IMO. > #include > > int call_pam = 0; > > main() > { > srandom(33); > random(); > random(); > if (call_pam) libpam_steals_N_randoms(); > printf("%d\n", random()); > } Should look like #include int call_pam = 0; main() { if (call_pam) libpam_steals_N_randoms(); srandom(33); random(); random(); printf("%d\n", random()); } M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14:26: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id 9126937B422; Tue, 5 Feb 2002 14:25:28 -0800 (PST) Received: from caddis.yogotech.com (caddis.yogotech.com [206.127.123.130]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id PAA12084; Tue, 5 Feb 2002 15:24:23 -0700 (MST) (envelope-from nate@yogotech.com) Received: (from nate@localhost) by caddis.yogotech.com (8.11.6/8.11.6) id g15MOCY70369; Tue, 5 Feb 2002 15:24:12 -0700 (MST) (envelope-from nate) From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15456.23434.738687.902455@caddis.yogotech.com> Date: Tue, 5 Feb 2002 15:24:10 -0700 To: Mark Murray Cc: "Andrey A. Chernov" , des@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c In-Reply-To: <200202052219.g15MJhs32408@greenpeace.grondar.org> References: <20020205214703.GA8579@nagual.pp.ru> <200202052219.g15MJhs32408@greenpeace.grondar.org> X-Mailer: VM 6.96 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > > It is OK at this point, but broken _after_ PAM called. > > > Lets imagine srandom(33) produce this hypotetical sequence for random() > > > calls: > > > > To see the bug, run following test application with "call_pam" set to 1 > > and 0 > > The bug is doing userland stuff before the authentication IMO. Naw, I agree with Andrey. Library calls like PAM shouldn't dictate the order you do things. Based on what I'm hearying, your change is ill-conceived and should be backed out. Nate > > > #include > > > > int call_pam = 0; > > > > main() > > { > > srandom(33); > > random(); > > random(); > > if (call_pam) libpam_steals_N_randoms(); > > printf("%d\n", random()); > > } > > Should look like > > #include > > int call_pam = 0; > > main() > { > if (call_pam) libpam_steals_N_randoms(); > srandom(33); > random(); > random(); > printf("%d\n", random()); > } > > M > -- > o Mark Murray > \_ FreeBSD Services Limited > O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14:28:46 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 3066837B41D; Tue, 5 Feb 2002 14:28:38 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g15MSX109179; Wed, 6 Feb 2002 01:28:34 +0300 (MSK) (envelope-from ache) Date: Wed, 6 Feb 2002 01:28:31 +0300 From: "Andrey A. Chernov" To: Mark Murray Cc: des@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205222829.GA9120@nagual.pp.ru> References: <20020205214703.GA8579@nagual.pp.ru> <200202052219.g15MJhs32408@greenpeace.grondar.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202052219.g15MJhs32408@greenpeace.grondar.org> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 22:19:38 +0000, Mark Murray wrote: > > On Tue, Feb 05, 2002 at 23:59:08 +0300, Andrey A. Chernov wrote: > > > > > It is OK at this point, but broken _after_ PAM called. > > > Lets imagine srandom(33) produce this hypotetical sequence for random() > > > calls: > > > > To see the bug, run following test application with "call_pam" set to 1 > > and 0 > > The bug is doing userland stuff before the authentication IMO. 1) Program must be able prepare yourself before auth, some operations like initializations, server key generations etc. can take a long time and when daemon starts, he do that _before_ starting auth. 2) The fact that random() and srandom() are unsafe in the libraries discussed almost in every Unix book I saw with usual recommendation to avoid them in the general purpose libraries. I don't see any reason why PAM is so special to not follow this rule. 3) All programs behave like they _owns_ random() internal state and not expect any damages from the libraries here. If you want PAM be special, it must be well documented in all visible PAM manpages and docs. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14:34:48 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 1F81F37B416; Tue, 5 Feb 2002 14:34:40 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id CEE0E5341; Tue, 5 Feb 2002 23:34:38 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: "Andrey A. Chernov" Cc: Mark Murray , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c References: <20020205214703.GA8579@nagual.pp.ru> <200202052219.g15MJhs32408@greenpeace.grondar.org> <20020205222829.GA9120@nagual.pp.ru> From: Dag-Erling Smorgrav Date: 05 Feb 2002 23:34:38 +0100 In-Reply-To: <20020205222829.GA9120@nagual.pp.ru> Message-ID: Lines: 11 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Andrey A. Chernov" writes: > 3) All programs behave like they _owns_ random() internal state and not > expect any damages from the libraries here. If you want PAM be special, it > must be well documented in all visible PAM manpages and docs. I agree with Andrey here, pam_unix(8) should not clobber random()'s internal state. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14:37: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 477B737B42B; Tue, 5 Feb 2002 14:37:00 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id JAA15702; Wed, 6 Feb 2002 09:36:54 +1100 Date: Wed, 6 Feb 2002 09:39:22 +1100 (EST) From: Bruce Evans X-X-Sender: To: Dag-Erling Smorgrav Cc: , , Subject: Re: cvs commit: src/sys/modules Makefile src/sys/modules/fs Makefile src/sys/modules/fs/linprocfs Makefile src/sys/modules/fs/procfs Makefile src/sys/modules/fs/pseudofs Makefile src/sys/modules/linpr In-Reply-To: Message-ID: <20020206093651.Q903-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 5 Feb 2002, Dag-Erling Smorgrav wrote: > "David O'Brien" writes: > > Was this discussed anywhere? > > No. Would you be happier if I'd stuck "Requested by: bde" at the > bottom of the log message? How about a "PR: 33583"? Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14:40:58 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id E59BA37B427; Tue, 5 Feb 2002 14:40:50 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g15Meoh34914; Tue, 5 Feb 2002 22:40:50 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id 11AD444D; Tue, 5 Feb 2002 22:35:44 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g15MZYs33989; Tue, 5 Feb 2002 22:35:34 GMT (envelope-from mark@grondar.za) Message-Id: <200202052235.g15MZYs33989@greenpeace.grondar.org> To: "Andrey A. Chernov" Cc: des@freebgsd.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c References: <20020205220620.GD8579@nagual.pp.ru> In-Reply-To: <20020205220620.GD8579@nagual.pp.ru> ; from "Andrey A. Chernov" "Wed, 06 Feb 2002 01:06:20 +0300." Date: Tue, 05 Feb 2002 22:35:29 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Tue, Feb 05, 2002 at 21:58:25 +0000, Mark Murray wrote: > > > > Why is your program doing user stuff before it has authenticated? > > > > _After_ PAM, the user is free to srandom() ans much as he likes. > > I see no rule in PAM docs that program can't do anything it wants (like > initializing some tables f.e.) _before_ PAM. Yes, and as soon as he needs predictable pseudo-random numbers, he calls srandom(). No problem. In my opinion, your program was a god example of how _not_ to do it. :-) M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14:45:39 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 2047E37B427; Tue, 5 Feb 2002 14:45:35 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g15MjUT09437; Wed, 6 Feb 2002 01:45:31 +0300 (MSK) (envelope-from ache) Date: Wed, 6 Feb 2002 01:45:29 +0300 From: "Andrey A. Chernov" To: Mark Murray Cc: des@freebgsd.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205224527.GA9394@nagual.pp.ru> References: <20020205220620.GD8579@nagual.pp.ru> <200202052235.g15MZYs33989@greenpeace.grondar.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202052235.g15MZYs33989@greenpeace.grondar.org> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 22:35:29 +0000, Mark Murray wrote: > > In my opinion, your program was a god example of how _not_ to do it. :-) Program just knows nothing about undocumented PAM internal random() clobbering. And don't need to know anything about that in general. Do you expect that each writer must analyze pam_unix() code before starting using random() in his program? If so, it should be documented even in random(4) manpage. General rule is: general purpose libraries should minimize unpredicatble and undocumented side effects. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14:46:24 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id 5F51C37B41B; Tue, 5 Feb 2002 14:46:17 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g15MkGr34989; Tue, 5 Feb 2002 22:46:16 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id ACED3394; Tue, 5 Feb 2002 22:42:07 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g15MKps32595; Tue, 5 Feb 2002 22:20:51 GMT (envelope-from mark@grondar.za) Message-Id: <200202052220.g15MKps32595@greenpeace.grondar.org> To: "Andrey A. Chernov" Cc: Alfred Perlstein , des@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c References: <20020205215540.GB8579@nagual.pp.ru> In-Reply-To: <20020205215540.GB8579@nagual.pp.ru> ; from "Andrey A. Chernov" "Wed, 06 Feb 2002 00:55:40 +0300." Date: Tue, 05 Feb 2002 22:20:46 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > 2) Have the same speed compared to random() (or even faster) It is three times slower, according to a cheap benchmark. M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14:46:50 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id F017537B425; Tue, 5 Feb 2002 14:46:42 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g15Mkg334993; Tue, 5 Feb 2002 22:46:42 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id EBB883E6; Tue, 5 Feb 2002 22:42:07 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g15Mcks34013; Tue, 5 Feb 2002 22:38:46 GMT (envelope-from mark@grondar.za) Message-Id: <200202052238.g15Mcks34013@greenpeace.grondar.org> To: Alfred Perlstein Cc: "Andrey A. Chernov" , des@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c References: <20020205141029.V59017@elvis.mu.org> In-Reply-To: <20020205141029.V59017@elvis.mu.org> ; from Alfred Perlstein "Tue, 05 Feb 2002 14:10:29 PST." Date: Tue, 05 Feb 2002 22:38:41 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Mark, can you comment? I've read that you said an application > shouldn't depend on state of random() when making pam calls, but > this doesn't sound very good, it should at least be documented, > better yet avoided... When did I say that? :-) I said that crypt(3)'s salt needs to be very variable to thwart dictionary building. In my opinion, Andreys example is a good example of very poor pseudo-random number usage. he simply needs to call srandom() in a better place. M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14:50:18 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 2A48037B426; Tue, 5 Feb 2002 14:50:08 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g15MnsS09499; Wed, 6 Feb 2002 01:49:55 +0300 (MSK) (envelope-from ache) Date: Wed, 6 Feb 2002 01:49:53 +0300 From: "Andrey A. Chernov" To: Mark Murray Cc: Alfred Perlstein , des@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205224952.GA9452@nagual.pp.ru> References: <20020205141029.V59017@elvis.mu.org> <200202052238.g15Mcks34013@greenpeace.grondar.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202052238.g15Mcks34013@greenpeace.grondar.org> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 22:38:41 +0000, Mark Murray wrote: > dictionary building. In my opinion, Andreys example is a good > example of very poor pseudo-random number usage. he simply needs > to call srandom() in a better place. Imagine not Andrey but some abstract person writting application for PAM. How do you plan to tell every such person to NOT use random() in the way I demonstrate? -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14:52:27 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 3B76737B419; Tue, 5 Feb 2002 14:52:21 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g15MqFN09534; Wed, 6 Feb 2002 01:52:15 +0300 (MSK) (envelope-from ache) Date: Wed, 6 Feb 2002 01:52:14 +0300 From: "Andrey A. Chernov" To: Mark Murray Cc: Alfred Perlstein , des@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205225214.GB9452@nagual.pp.ru> References: <20020205215540.GB8579@nagual.pp.ru> <200202052220.g15MKps32595@greenpeace.grondar.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202052220.g15MKps32595@greenpeace.grondar.org> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 22:20:46 +0000, Mark Murray wrote: > > 2) Have the same speed compared to random() (or even faster) > > It is three times slower, according to a cheap benchmark. Do you use srandomdev() to have full equivalent or just srandom()? I have lesser result. In anycase few calls from pam_unix() can't slow down the process, here is even not the loop. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 14:56:20 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by hub.freebsd.org (Postfix) with ESMTP id 92E5537B419; Tue, 5 Feb 2002 14:55:58 -0800 (PST) Received: from gateway.posi.net ([12.236.90.177]) by rwcrmhc52.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020205225558.YSFT3578.rwcrmhc52.attbi.com@gateway.posi.net>; Tue, 5 Feb 2002 22:55:58 +0000 Received: from localhost (kbyanc@localhost) by gateway.posi.net (8.11.6/8.11.6) with ESMTP id g15Mtqu20377; Tue, 5 Feb 2002 14:55:56 -0800 (PST) (envelope-from kbyanc@posi.net) X-Authentication-Warning: gateway.posi.net: kbyanc owned process doing -bs Date: Tue, 5 Feb 2002 14:55:52 -0800 (PST) From: Kelly Yancey To: Mark Murray Cc: "Andrey A. Chernov" , Alfred Perlstein , , , Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c In-Reply-To: <200202052220.g15MKps32595@greenpeace.grondar.org> Message-ID: <20020205145352.W20355-100000@gateway.posi.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 5 Feb 2002, Mark Murray wrote: > > 2) Have the same speed compared to random() (or even faster) > > It is three times slower, according to a cheap benchmark. > This should be a non-issue. How often does a program need to authenticate? I should think it is more important to follow POLA and preserve random()'s state across library calls. Kelly kbyanc@{posi.net,FreeBSD.org} To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 15:11:11 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 0166D37B420; Tue, 5 Feb 2002 15:11:02 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g15NAs009752; Wed, 6 Feb 2002 02:10:54 +0300 (MSK) (envelope-from ache) Date: Wed, 6 Feb 2002 02:10:51 +0300 From: "Andrey A. Chernov" To: Mark Murray Cc: Alfred Perlstein , des@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205231051.GA9710@nagual.pp.ru> References: <20020205215540.GB8579@nagual.pp.ru> <200202052220.g15MKps32595@greenpeace.grondar.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202052220.g15MKps32595@greenpeace.grondar.org> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 22:20:46 +0000, Mark Murray wrote: > > 2) Have the same speed compared to random() (or even faster) > > It is three times slower, according to a cheap benchmark. Yes, 3-4 times slower, according to my new test I write more accurately. But for non-looped 7 or 14 pam_unix() random() calls it gains _nothing_, they are very fast comparing to even minimal _net_ delay for YP code they needed. BTW, to clarify my position: I not insist on using arc4random(), I insist on removing random(). You can replace arc4random() with any fastest code you wants. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 15:12:56 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C8A4B37B429; Tue, 5 Feb 2002 15:12:51 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15NCp428963; Tue, 5 Feb 2002 15:12:51 -0800 (PST) (envelope-from alfred) Message-Id: <200202052312.g15NCp428963@freefall.freebsd.org> From: Alfred Perlstein Date: Tue, 5 Feb 2002 15:12:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/rpc rpcb_clnt.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/02/05 15:12:51 PST Modified files: lib/libc/rpc rpcb_clnt.c Log: Do not call addrinfo on local transport adresses, if returning a server handle (for reuse or whatever). We just return now a handle connected to the local rpcbind. Do not try to call checkcache, if host = NULL; Submitted by: mbr Revision Changes Path 1.5 +26 -6 src/lib/libc/rpc/rpcb_clnt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 15:13:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4996D37B41D; Tue, 5 Feb 2002 15:13:25 -0800 (PST) Received: (from benno@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15NDPt29019; Tue, 5 Feb 2002 15:13:25 -0800 (PST) (envelope-from benno) Message-Id: <200202052313.g15NDPt29019@freefall.freebsd.org> From: Benno Rice Date: Tue, 5 Feb 2002 15:13:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci agp_intel.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG benno 2002/02/05 15:13:25 PST Modified files: sys/pci agp_intel.c Log: Correctly identify the Intel 82830 AGP bridge. Revision Changes Path 1.7 +3 -0 src/sys/pci/agp_intel.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 15:15:46 2002 Delivered-To: cvs-all@freebsd.org Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by hub.freebsd.org (Postfix) with ESMTP id 5A42937B41A; Tue, 5 Feb 2002 15:15:40 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 2A20D10DDF8; Tue, 5 Feb 2002 15:15:40 -0800 (PST) Date: Tue, 5 Feb 2002 15:15:40 -0800 From: Alfred Perlstein To: "Andrey A. Chernov" Cc: Mark Murray , des@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205151540.Z59017@elvis.mu.org> References: <20020205215540.GB8579@nagual.pp.ru> <200202052220.g15MKps32595@greenpeace.grondar.org> <20020205231051.GA9710@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020205231051.GA9710@nagual.pp.ru>; from ache@nagual.pp.ru on Wed, Feb 06, 2002 at 02:10:51AM +0300 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Andrey A. Chernov [020205 15:11] wrote: > On Tue, Feb 05, 2002 at 22:20:46 +0000, Mark Murray wrote: > > > 2) Have the same speed compared to random() (or even faster) > > > > It is three times slower, according to a cheap benchmark. > > Yes, 3-4 times slower, according to my new test I write more accurately. > > But for non-looped 7 or 14 pam_unix() random() calls it gains _nothing_, > they are very fast comparing to even minimal _net_ delay for YP code they > needed. > > BTW, to clarify my position: I not insist on using arc4random(), I insist > on removing random(). You can replace arc4random() with any fastest code > you wants. to address the speed issue you could implement internal functions to save and restore the random() state. (as I've already suggested) -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' Tax deductable donations for FreeBSD: http://www.freebsdfoundation.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 15:18:47 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 1EFFF37B405; Tue, 5 Feb 2002 15:18:42 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g15NIZH09884; Wed, 6 Feb 2002 02:18:36 +0300 (MSK) (envelope-from ache) Date: Wed, 6 Feb 2002 02:18:33 +0300 From: "Andrey A. Chernov" To: Alfred Perlstein Cc: Mark Murray , des@freebsd.org, cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205231832.GA9856@nagual.pp.ru> References: <20020205215540.GB8579@nagual.pp.ru> <200202052220.g15MKps32595@greenpeace.grondar.org> <20020205231051.GA9710@nagual.pp.ru> <20020205151540.Z59017@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020205151540.Z59017@elvis.mu.org> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 15:15:40 -0800, Alfred Perlstein wrote: > > > > BTW, to clarify my position: I not insist on using arc4random(), I insist > > on removing random(). You can replace arc4random() with any fastest code > > you wants. > > to address the speed issue you could implement internal functions to > save and restore the random() state. (as I've already suggested) Yes, I agree with this solution, if 3-4 times slowness for 14 calls plays any role. But current variant is not acceptable and must be fixed somehow. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 15:26:21 2002 Delivered-To: cvs-all@freebsd.org Received: from patrocles.silby.com (d179.as0.nwbl0.wi.voyager.net [169.207.130.181]) by hub.freebsd.org (Postfix) with ESMTP id A535637B41E; Tue, 5 Feb 2002 15:26:14 -0800 (PST) Received: from localhost (silby@localhost) by patrocles.silby.com (8.11.6/8.11.6) with ESMTP id g15HT3b03404; Tue, 5 Feb 2002 17:29:14 GMT (envelope-from silby@silby.com) X-Authentication-Warning: patrocles.silby.com: silby owned process doing -bs Date: Tue, 5 Feb 2002 17:29:03 +0000 (GMT) From: Mike Silbersack To: "Andrey A. Chernov" Cc: Alfred Perlstein , Mark Murray , , , Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c In-Reply-To: <20020205231832.GA9856@nagual.pp.ru> Message-ID: <20020205172650.R1617-100000@patrocles.silby.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 6 Feb 2002, Andrey A. Chernov wrote: > On Tue, Feb 05, 2002 at 15:15:40 -0800, Alfred Perlstein wrote: > > > > > > BTW, to clarify my position: I not insist on using arc4random(), I insist > > > on removing random(). You can replace arc4random() with any fastest code > > > you wants. > > > > to address the speed issue you could implement internal functions to > > save and restore the random() state. (as I've already suggested) > > Yes, I agree with this solution, if 3-4 times slowness for 14 calls plays > any role. But current variant is not acceptable and must be fixed somehow. > > -- > Andrey A. Chernov > http://ache.pp.ru/ This argument is getting really ridiculous, guys. When generating syn-acks, we either do a arc4random or a MD5, depending on how the system is configured. I think the performance of pam modules using arc4random will be just fine. Please use it. Mike "Silby" Silbersack To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 15:43:52 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 04C8D37B41C; Tue, 5 Feb 2002 15:43:45 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15Nhi934423; Tue, 5 Feb 2002 15:43:44 -0800 (PST) (envelope-from alfred) Message-Id: <200202052343.g15Nhi934423@freefall.freebsd.org> From: Alfred Perlstein Date: Tue, 5 Feb 2002 15:43:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include/rpc auth.h rpc_com.h src/lib/libc/net getaddrinfo.c src/lib/libc/rpc auth_time.c clnt_bcast.c clnt_dg.c des_crypt.c getpublickey.c key_call.c key_prot_xdr.c netname.c netnamer.c rpc_generic.c rpc_soc.c rpcb_prot.c rpcdname.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/02/05 15:43:43 PST Modified files: include/rpc auth.h rpc_com.h lib/libc/net getaddrinfo.c lib/libc/rpc auth_time.c clnt_bcast.c clnt_dg.c des_crypt.c getpublickey.c key_call.c key_prot_xdr.c netname.c netnamer.c rpc_generic.c rpc_soc.c rpcb_prot.c rpcdname.c svc_auth_des.c svc_simple.c svc_vc.c lib/libc/yp xdryp.c yplib.c Log: Fix cc -Wall, fix rcsid warnings, add missing prototypes, change prototypes to be the same as in the original sun tirpc code. Remove ()P macro in a file where the mayority had ()P already removed. Add them if the mayority use ()P macros. Submitted by: mbr Requested by: bde Revision Changes Path 1.18 +14 -5 src/include/rpc/auth.h 1.4 +1 -0 src/include/rpc/rpc_com.h 1.23 +4 -0 src/lib/libc/net/getaddrinfo.c 1.7 +2 -5 src/lib/libc/rpc/auth_time.c 1.3 +2 -1 src/lib/libc/rpc/clnt_bcast.c 1.8 +2 -2 src/lib/libc/rpc/clnt_dg.c 1.4 +1 -1 src/lib/libc/rpc/des_crypt.c 1.5 +2 -2 src/lib/libc/rpc/getpublickey.c 1.9 +3 -4 src/lib/libc/rpc/key_call.c 1.3 +6 -0 src/lib/libc/rpc/key_prot_xdr.c 1.6 +3 -3 src/lib/libc/rpc/netname.c 1.6 +3 -3 src/lib/libc/rpc/netnamer.c 1.6 +3 -1 src/lib/libc/rpc/rpc_generic.c 1.5 +3 -3 src/lib/libc/rpc/rpc_soc.c 1.2 +2 -0 src/lib/libc/rpc/rpcb_prot.c 1.3 +1 -1 src/lib/libc/rpc/rpcdname.c 1.7 +3 -1 src/lib/libc/rpc/svc_auth_des.c 1.12 +5 -2 src/lib/libc/rpc/svc_simple.c 1.9 +0 -1 src/lib/libc/rpc/svc_vc.c 1.10 +1 -1 src/lib/libc/yp/xdryp.c 1.38 +1 -1 src/lib/libc/yp/yplib.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 15:46:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE24037B426; Tue, 5 Feb 2002 15:46:37 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15Nkbv35365; Tue, 5 Feb 2002 15:46:37 -0800 (PST) (envelope-from alfred) Message-Id: <200202052346.g15Nkbv35365@freefall.freebsd.org> From: Alfred Perlstein Date: Tue, 5 Feb 2002 15:46:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/rpc svc_vc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/02/05 15:46:37 PST Modified files: lib/libc/rpc svc_vc.c Log: For RPC v2 we need to fill in ret->xp_raddr too. INET_6 is not supported in portmap, so we don't have to care about it. Submitted by: mbr Revision Changes Path 1.10 +1 -1 src/lib/libc/rpc/svc_vc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 15:47: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id BC32437B428; Tue, 5 Feb 2002 15:46:39 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g15NjaI35752; Tue, 5 Feb 2002 23:45:36 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id DA2E138D; Tue, 5 Feb 2002 23:42:02 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g15Nals34566; Tue, 5 Feb 2002 23:36:50 GMT (envelope-from mark@grondar.za) Message-Id: <200202052336.g15Nals34566@greenpeace.grondar.org> To: Dag-Erling Smorgrav Cc: "Andrey A. Chernov" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c References: In-Reply-To: ; from Dag-Erling Smorgrav "05 Feb 2002 23:34:38 +0100." Date: Tue, 05 Feb 2002 23:36:42 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > "Andrey A. Chernov" writes: > > 3) All programs behave like they _owns_ random() internal state and not > > expect any damages from the libraries here. If you want PAM be special, it > > must be well documented in all visible PAM manpages and docs. > > I agree with Andrey here, pam_unix(8) should not clobber random()'s > internal state. OK. I have a local patch. As soon as I se that it survives the usual build, I'll commit it. M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 15:56:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8EA9D37B421; Tue, 5 Feb 2002 15:56:29 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g15NuTE37543; Tue, 5 Feb 2002 15:56:29 -0800 (PST) (envelope-from alfred) Message-Id: <200202052356.g15NuTE37543@freefall.freebsd.org> From: Alfred Perlstein Date: Tue, 5 Feb 2002 15:56:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net getaddrinfo.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/02/05 15:56:29 PST Modified files: lib/libc/net getaddrinfo.c Log: balance parens. Submitted by: mbr Revision Changes Path 1.24 +1 -1 src/lib/libc/net/getaddrinfo.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 16:41:45 2002 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 654) id DF7F337B41A; Tue, 5 Feb 2002 16:41:42 -0800 (PST) Date: Tue, 5 Feb 2002 16:41:42 -0800 From: Mike Smith To: "Andrey A. Chernov" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205164142.A88266@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > dictionary building. In my opinion, Andreys example is a good > > example of very poor pseudo-random number usage. he simply needs > > to call srandom() in a better place. > > Imagine not Andrey but some abstract person writting application for PAM. > How do you plan to tell every such person to NOT use random() in the way I > demonstrate? Most people wouldn't expect state like that to be preserved across calls into an arbitrary API. If you really care about this, you're going to have to come up with a completely separate set of APIs for library-internal usage. There's less in the way of functions with static data storage nowadays (since threaded programs have made it clear how stupid this is); you're just discovering over again that this isn't a sustainable model. Realistically, if you care about deterministic behaviour from a RNG, you want to own the state for the RNG yourself, not pray that nobody else is going to use it when you're not looking. Any other expectation is just bad design. = Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 16:43:33 2002 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 654) id 497F337B428; Tue, 5 Feb 2002 16:43:29 -0800 (PST) Date: Tue, 5 Feb 2002 16:43:29 -0800 From: Mike Smith To: Mark Murray Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205164329.A88662@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > I agree with Andrey here, pam_unix(8) should not clobber random()'s > > internal state. > > OK. I have a local patch. As soon as I se that it survives the usual > build, I'll commit it. This won't make random() thread-safe. Please fix the problem properly. 8) = Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 17:20:28 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0BFC137B944; Tue, 5 Feb 2002 17:19:22 -0800 (PST) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g161JL162473; Tue, 5 Feb 2002 17:19:21 -0800 (PST) (envelope-from dillon) Message-Id: <200202060119.g161JL162473@freefall.freebsd.org> From: Matt Dillon Date: Tue, 5 Feb 2002 17:19:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_param.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2002/02/05 17:19:19 PST Modified files: sys/kern subr_param.c Log: Allow the kern.maxusers boot tuneable to be set to 0 (previously only the kernel config's maxusers could be set to 0 for autosizing to work). Reviewed by: rwatson, imp MFC after: 3 days Revision Changes Path 1.52 +3 -2 src/sys/kern/subr_param.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 17:26: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id 5A27637B41A; Tue, 5 Feb 2002 17:25:31 -0800 (PST) Received: from chowder.gsoft.com.au (root@localhost [127.0.0.1]) by cain.gsoft.com.au (8.11.6/8.11.6) with ESMTP id g161PMZ68026; Wed, 6 Feb 2002 11:55:22 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20020205134833.T59017@elvis.mu.org> Date: Wed, 06 Feb 2002 11:55:21 +1030 (CST) From: "Daniel O'Connor" To: Alfred Perlstein Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Cc: cvs-all@freebsd.org, cvs-committers@freebsd.org, des@freebsd.org, Mark Murray , "Andrey A. Chernov" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 05-Feb-2002 Alfred Perlstein wrote: >> To see the bug, run following test application with "call_pam" set to 1 >> and 0 > > I understand the issue you're bringing up, would it make sense > to create/utilize a save/restore random() context function? No need to create one.. setstate() returns the old state which can then be passed back to setstate(). eg.. #include #include void foo(void); int main(int argc, char **argv) { printf("%ld\n", random()); foo(); printf("%ld\n", random()); printf("%ld\n", random()); foo(); printf("%ld\n", random()); } void foo(void) { char *rndstate; char state[16]; rndstate = initstate(123456789, state, sizeof(state)); if (rndstate == NULL) { printf("Unable to reseed\n"); exit(1); } srandomdev(); printf("foo - %ld\n", random()); setstate(rndstate); } --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 17:26:53 2002 Delivered-To: cvs-all@freebsd.org Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by hub.freebsd.org (Postfix) with ESMTP id 64D6C37B426; Tue, 5 Feb 2002 17:26:33 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 3BD0310DDF7; Tue, 5 Feb 2002 17:26:33 -0800 (PST) Date: Tue, 5 Feb 2002 17:26:33 -0800 From: Alfred Perlstein To: Daniel O'Connor Cc: cvs-all@freebsd.org, cvs-committers@freebsd.org, des@freebsd.org, Mark Murray , "Andrey A. Chernov" Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020205172633.B59017@elvis.mu.org> References: <20020205134833.T59017@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from doconnor@gsoft.com.au on Wed, Feb 06, 2002 at 11:55:21AM +1030 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG * Daniel O'Connor [020205 17:25] wrote: > > On 05-Feb-2002 Alfred Perlstein wrote: > >> To see the bug, run following test application with "call_pam" set to 1 > >> and 0 > > > > I understand the issue you're bringing up, would it make sense > > to create/utilize a save/restore random() context function? > > No need to create one.. > setstate() returns the old state which can then be passed back to setstate(). Andrey, can you use this then? > > eg.. > #include > #include > > void foo(void); > > int > main(int argc, char **argv) { > printf("%ld\n", random()); > foo(); > printf("%ld\n", random()); > printf("%ld\n", random()); > foo(); > printf("%ld\n", random()); > } > > void > foo(void) { > char *rndstate; > char state[16]; > > rndstate = initstate(123456789, state, sizeof(state)); > if (rndstate == NULL) { > printf("Unable to reseed\n"); > exit(1); > } > srandomdev(); > > printf("foo - %ld\n", random()); > > setstate(rndstate); > } > > --- > Daniel O'Connor software and network engineer > for Genesis Software - http://www.gsoft.com.au > "The nice thing about standards is that there > are so many of them to choose from." > -- Andrew Tanenbaum -- -Alfred Perlstein [alfred@freebsd.org] 'Instead of asking why a piece of software is using "1970s technology," start asking why software is ignoring 30 years of accumulated wisdom.' Tax deductable donations for FreeBSD: http://www.freebsdfoundation.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 17:34:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A91EB37B404; Tue, 5 Feb 2002 17:34:09 -0800 (PST) Received: (from scottl@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g161Y9W67117; Tue, 5 Feb 2002 17:34:09 -0800 (PST) (envelope-from scottl) Message-Id: <200202060134.g161Y9W67117@freefall.freebsd.org> From: Scott Long Date: Tue, 5 Feb 2002 17:34:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/aac aac.c aac_pci.c aacreg.h aacvar.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG scottl 2002/02/05 17:34:09 PST Modified files: sys/dev/aac aac.c aac_pci.c aacreg.h aacvar.h Log: Don't attach to Dell PERC2/QC cards that have a firmware rev of 1.x. This check is complicated by the fact that the Adaptec 5400S cards claim to use 1.x firmware also. PERC2/QC 1.x firmware is not compatible with this driver and will cause a system hang. MFC after: 3 days Revision Changes Path 1.36 +40 -0 src/sys/dev/aac/aac.c 1.17 +8 -0 src/sys/dev/aac/aac_pci.c 1.10 +1 -0 src/sys/dev/aac/aacreg.h 1.16 +2 -0 src/sys/dev/aac/aacvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 17:50: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 0DF1837B42B; Tue, 5 Feb 2002 17:50:01 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g161nSl11312; Wed, 6 Feb 2002 04:49:28 +0300 (MSK) (envelope-from ache) Date: Wed, 6 Feb 2002 04:49:27 +0300 From: "Andrey A. Chernov" To: Alfred Perlstein Cc: "Daniel O'Connor" , cvs-all@freebsd.org, cvs-committers@freebsd.org, des@freebsd.org, Mark Murray Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020206014927.GA11153@nagual.pp.ru> References: <20020205134833.T59017@elvis.mu.org> <20020205172633.B59017@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020205172633.B59017@elvis.mu.org> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 17:26:33 -0800, Alfred Perlstein wrote: > > > > No need to create one.. > > setstate() returns the old state which can then be passed back to setstate(). > > Andrey, can you use this then? Yes, why not? -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 17:55:16 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 4156E37B425; Tue, 5 Feb 2002 17:55:12 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g161t2611382; Wed, 6 Feb 2002 04:55:02 +0300 (MSK) (envelope-from ache) Date: Wed, 6 Feb 2002 04:55:02 +0300 From: "Andrey A. Chernov" To: Alfred Perlstein Cc: "Daniel O'Connor" , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, des@FreeBSD.org, Mark Murray Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020206015502.GB11153@nagual.pp.ru> References: <20020205134833.T59017@elvis.mu.org> <20020205172633.B59017@elvis.mu.org> <20020206014927.GA11153@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020206014927.GA11153@nagual.pp.ru> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Feb 06, 2002 at 04:49:27 +0300, Andrey A. Chernov wrote: > On Tue, Feb 05, 2002 at 17:26:33 -0800, Alfred Perlstein wrote: > > > > > > No need to create one.. > > > setstate() returns the old state which can then be passed back to setstate(). > > > > Andrey, can you use this then? > > Yes, why not? From other hand, just reading Mike reply: we should care about threads too. Saving & restoring state is not good for threads because of application locking needed, but acr4random() is more nice since locking either not needed here or can be implemented inside function. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 18: 0:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA55637B421; Tue, 5 Feb 2002 18:00:08 -0800 (PST) Received: (from bbraun@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16208F77800; Tue, 5 Feb 2002 18:00:08 -0800 (PST) (envelope-from bbraun) Message-Id: <200202060200.g16208F77800@freefall.freebsd.org> From: Rob Braun Date: Tue, 5 Feb 2002 18:00:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/cron/cron popen.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bbraun 2002/02/05 18:00:07 PST Modified files: usr.sbin/cron/cron popen.c Log: Make cron actually build without defining LOGIN_CAP. Reviewed by: jkh Revision Changes Path 1.12 +2 -2 src/usr.sbin/cron/cron/popen.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 18:53:41 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B069937B426; Tue, 5 Feb 2002 18:53:38 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g162rcq90117; Tue, 5 Feb 2002 18:53:38 -0800 (PST) (envelope-from obrien) Message-Id: <200202060253.g162rcq90117@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 18:53:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc gcc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 18:53:38 PST Modified files: contrib/gcc gcc.c Log: Merge revs 1.{2,15} (FREEBSD_NATIVE); 1.{5,13} (ELF, and objformat support); 1.16 (allow specification of TOOLS_PREFIX); 1.21 ("GCC_OPTIONS") into GCC 3.1-snap. Note that rev 1.20 was fixed in the stock GCC 3 sources. Revision Changes Path 1.21 +2656 -1505 src/contrib/gcc/gcc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 18:58:35 2002 Delivered-To: cvs-all@freebsd.org Received: from mail6.speakeasy.net (mail6.speakeasy.net [216.254.0.206]) by hub.freebsd.org (Postfix) with ESMTP id 2424937B400 for ; Tue, 5 Feb 2002 18:58:13 -0800 (PST) Received: (qmail 6439 invoked from network); 6 Feb 2002 02:58:10 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([65.91.155.143]) (envelope-sender ) by mail6.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 6 Feb 2002 02:58:10 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20020206061908.G260-100000@gamplex.bde.org> Date: Tue, 05 Feb 2002 21:58:01 -0500 (EST) From: John Baldwin To: Bruce Evans Subject: RE: cvs commit: src/sys/i386/i386 db_interface.c Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, Bruce Evans Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 05-Feb-02 Bruce Evans wrote: > On Tue, 5 Feb 2002, John Baldwin wrote: > >> On 30-Jan-02 Bruce Evans wrote: >> > bde 2002/01/30 10:23:32 PST >> > >> > Modified files: >> > sys/i386/i386 db_interface.c >> > Log: >> > Backed out the last vestiges of rev.1.51. Don't enter a critical >> > region in Debugger(), since rev.1.468 of machdep.c does this better. >> > Other cosmetic backouts. >> >> Err, have you tested this? In my tests locally this still doesn't work >> properly which is why I haven't committed it. :( > > PS: perhaps you are thinking of the flag in Debugger(). That is > fundamentally broken too. It just protects against multiple entries to > the debugger when the first entry is via the console debugger key. Try > the following: > - enter ddb using the key > - hit the key again. No problem since the flag is set. > - single step until the flag is unset > - hit the key again. This causes a fine mess. > The same thing mess happens when you enter ddb via a breakpoint and hit the > key, except the console driver is not reentered then (unless the breakpoint > is in the console driver). Hmm, the problem I was having is that interrupts were still firing while I was in ddb. I could tell because new KTR entries due to clock interrutps kept showing up. > Bruce -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 19:12:48 2002 Delivered-To: cvs-all@freebsd.org Received: from westend.coralwave.com (westend.coralwave.com [208.246.140.210]) by hub.freebsd.org (Postfix) with ESMTP id 076FD37B425; Tue, 5 Feb 2002 19:12:37 -0800 (PST) Received: from localhost [24.244.129.171] by westend.coralwave.com with ESMTP (SMTPD32-7.00) id A0777730058; Tue, 05 Feb 2002 22:18:15 -0500 Date: Tue, 5 Feb 2002 22:12:15 -0500 Subject: Not committing WARNS settings... Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v480) Cc: "David O'Brien" , Ruslan Ermilov , Mark Murray , current@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG To: Kris Kennaway From: Jeroen C.van Gelderen In-Reply-To: <20020205100414.A44541@xor.obsecurity.org> Message-Id: <526E436C-1AAF-11D6-B59E-00306580B1CA@vangelderen.org> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.480) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tuesday, February 5, 2002, at 01:04 , Kris Kennaway wrote: > On Tue, Feb 05, 2002 at 07:20:46AM -0800, David O'Brien wrote: >> On Mon, Feb 04, 2002 at 07:06:54PM -0800, Kris Kennaway wrote: >>> If you use the argument that one shouldn't set WARNS because a new >>> compiler will cause the tree to break, then there's no point having it >>> at all since that condition will always be true. >> >> The difference is _impending_. > > EPARSE. David is about to switch to GCC 3.0 and I guess he does not like moving targets. I would expect that for the GCC 4.0 upgrade a similar freeze request will go out. And that seems fair enough since it does not prevent anyone from applying the actual code fixes. We want to make this import stuff as easy on David as we can, no? It is a job from hell already. Cheers, Jeroen -- Jeroen C. van Gelderen - jeroen@vangelderen.org "Freedom is essentially a condition of inequality, not equality. It recognizes as a fact of nature the structural differences inherent in man - in temperament, character, and capacity - and it respects those differences. We are not alike and no law can make us so." -- Frank Chodorov To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 20: 8:28 2002 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-47.dsl.lsan03.pacbell.net [64.165.226.47]) by hub.freebsd.org (Postfix) with ESMTP id 02DC937B419; Tue, 5 Feb 2002 20:08:14 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 091FE66C76; Tue, 5 Feb 2002 20:08:12 -0800 (PST) Date: Tue, 5 Feb 2002 20:08:12 -0800 From: Kris Kennaway To: "Jeroen C.van Gelderen" Cc: Kris Kennaway , David O'Brien , Ruslan Ermilov , Mark Murray , current@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: Not committing WARNS settings... Message-ID: <20020205200812.A50411@xor.obsecurity.org> References: <20020205100414.A44541@xor.obsecurity.org> <526E436C-1AAF-11D6-B59E-00306580B1CA@vangelderen.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="J/dobhs11T7y2rNN" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <526E436C-1AAF-11D6-B59E-00306580B1CA@vangelderen.org>; from jeroen@vangelderen.org on Tue, Feb 05, 2002 at 10:12:15PM -0500 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --J/dobhs11T7y2rNN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Feb 05, 2002 at 10:12:15PM -0500, Jeroen C.van Gelderen wrote: > > On Tue, Feb 05, 2002 at 07:20:46AM -0800, David O'Brien wrote: > >> On Mon, Feb 04, 2002 at 07:06:54PM -0800, Kris Kennaway wrote: > >>> If you use the argument that one shouldn't set WARNS because a new > >>> compiler will cause the tree to break, then there's no point having it > >>> at all since that condition will always be true. > >> > >> The difference is _impending_. > > > > EPARSE. >=20 > David is about to switch to GCC 3.0 and I guess he does not like moving= =20 > targets. I would expect that for the GCC 4.0 upgrade a similar freeze=20 > request will go out. And that seems fair enough since it does not=20 > prevent anyone from applying the actual code fixes. We want to make this= =20 > import stuff as easy on David as we can, no? It is a job from hell=20 > already. All David has to do is set WARNS=3D0 or NO_WERROR=3D1 in or /etc/defaults/make.conf temporarily when he tests and commits the changeover, and he'll sidestep all the problems. There's no need to impose restrictions on the activities of other committers. It's really not a big deal, IMO. Kris --J/dobhs11T7y2rNN Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8YKwsWry0BWjoQKURAjJ2AJ9yWzPfb0EBzKwh/o1bmDoCA5WReQCePqO/ XqXoZEU+6izng3aCOEh/BvE= =bhTd -----END PGP SIGNATURE----- --J/dobhs11T7y2rNN-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 20: 9:46 2002 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id C759737B417; Tue, 5 Feb 2002 20:09:34 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g1649Xi12983; Tue, 5 Feb 2002 21:09:33 -0700 (MST) (envelope-from imp@village.org) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id g1649WL34468; Tue, 5 Feb 2002 21:09:32 -0700 (MST) (envelope-from imp@village.org) Date: Tue, 05 Feb 2002 21:09:10 -0700 (MST) Message-Id: <20020205.210910.130619961.imp@village.org> To: kris@obsecurity.org Cc: obrien@FreeBSD.org, ru@FreeBSD.org, markm@FreeBSD.org, current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: pam_ssh world breakage From: "M. Warner Losh" In-Reply-To: <20020205100414.A44541@xor.obsecurity.org> References: <20020204190654.B36742@xor.obsecurity.org> <20020205072046.A73751@dragon.nuxi.com> <20020205100414.A44541@xor.obsecurity.org> X-Mailer: Mew version 2.1 on Emacs 21.1 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message: <20020205100414.A44541@xor.obsecurity.org> Kris Kennaway writes: : On Tue, Feb 05, 2002 at 07:20:46AM -0800, David O'Brien wrote: : > On Mon, Feb 04, 2002 at 07:06:54PM -0800, Kris Kennaway wrote: : > > If you use the argument that one shouldn't set WARNS because a new : > > compiler will cause the tree to break, then there's no point having it : > > at all since that condition will always be true. : > : > The difference is _impending_. : : EPARSE. I think that David is trying to say that "Look guys, I'm this >< close to importing gcc3. It does warnings differently. Cranking up the WARNS level now will get in the way of my work and will lead to unnecessary build breakage on some platforms that I don't compile for all the time. Please go ahead and fix the warnings at the higher levels, but don't put WARNS=x into the Makefile* until I'm done importing things." Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 20:15:37 2002 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 9AD6D37B427; Tue, 5 Feb 2002 20:15:19 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g164FHi13044; Tue, 5 Feb 2002 21:15:18 -0700 (MST) (envelope-from imp@village.org) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id g164FEL34520; Tue, 5 Feb 2002 21:15:16 -0700 (MST) (envelope-from imp@village.org) Date: Tue, 05 Feb 2002 21:14:52 -0700 (MST) Message-Id: <20020205.211452.121219753.imp@village.org> To: mark@grondar.za Cc: ache@nagual.pp.ru, des@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c From: "M. Warner Losh" In-Reply-To: <200202052219.g15MJhs32408@greenpeace.grondar.org> References: <20020205214703.GA8579@nagual.pp.ru> <200202052219.g15MJhs32408@greenpeace.grondar.org> X-Mailer: Mew version 2.1 on Emacs 21.1 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message: <200202052219.g15MJhs32408@greenpeace.grondar.org> Mark Murray writes: : > On Tue, Feb 05, 2002 at 23:59:08 +0300, Andrey A. Chernov wrote: : > : > > It is OK at this point, but broken _after_ PAM called. : > > Lets imagine srandom(33) produce this hypotetical sequence for random() : > > calls: : > : > To see the bug, run following test application with "call_pam" set to 1 : > and 0 : : The bug is doing userland stuff before the authentication IMO. : : > #include : > : > int call_pam = 0; : > : > main() : > { : > srandom(33); : > random(); : > random(); : > if (call_pam) libpam_steals_N_randoms(); : > printf("%d\n", random()); : > } : : Should look like : : #include : : int call_pam = 0; : : main() : { : if (call_pam) libpam_steals_N_randoms(); : srandom(33); : random(); : random(); : printf("%d\n", random()); : } What if I have to do some non-trival things before calling PAM, which involve doing random stuff, and then I need top do non-trivial things after calling PAM? What if I'm using two such packages together? No, this doesn't scale well and should be avoid if we have a simple solution at hand (which I think we do). Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 20:26:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8288D37B428; Tue, 5 Feb 2002 20:26:39 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g164Qd509207; Tue, 5 Feb 2002 20:26:39 -0800 (PST) (envelope-from pat) Message-Id: <200202060426.g164Qd509207@freefall.freebsd.org> From: Patrick Li Date: Tue, 5 Feb 2002 20:26:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/gdkxft Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/05 20:26:39 PST Modified files: x11/gdkxft Makefile Log: Fix depends and link giconv library Submitted by: Shu-yu Guo Reviewed and Approved by: maintainer Revision Changes Path 1.7 +2 -2 ports/x11/gdkxft/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 20:30:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EAC5237B41D; Tue, 5 Feb 2002 20:30:26 -0800 (PST) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g164UQX09984; Tue, 5 Feb 2002 20:30:26 -0800 (PST) (envelope-from jhb) Message-Id: <200202060430.g164UQX09984@freefall.freebsd.org> From: John Baldwin Date: Tue, 5 Feb 2002 20:30:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha pmap.c src/sys/alpha/include pmap.h src/sys/kern subr_witness.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2002/02/05 20:30:26 PST Modified files: sys/alpha/alpha pmap.c sys/alpha/include pmap.h sys/kern subr_witness.c Log: Fixes for alpha pmap on SMP machines: - Create a private list of active pmaps rather than abusing the list of all processes when we need to look up pmaps. The process list needs a sx lock and we can't be getting sx locks in the middle of cpu_switch() (pmap_activate() can call pmap_get_asn() from cpu_switch()). Instead, we protect the list with a spinlock. This also means the list is shorter since a pmap can be used by more than one process and we could (at least in thoery) dink with pmap's more than once, but now we only touch each pmap once when we have to update all of them. - Wrap pmap_activate()'s code to get a new ASN in an explicit critical section so that when it is called while doing an exec() we can't get preempted. - Replace splhigh() in pmap_growkernel() with a critical section to prevent preemption while we are adjusting the kernel page tables. - Fixes abuse of PCPU_GET(), which doesn't return an L-value. - Also adds some slight cleanups to the ASN handling by adding some macros instead of magic numbers in relation to the ASN and ASN generations. Reviewed by: dfr Revision Changes Path 1.82 +58 -50 src/sys/alpha/alpha/pmap.c 1.15 +7 -2 src/sys/alpha/include/pmap.h 1.96 +1 -0 src/sys/kern/subr_witness.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 20:34: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from mail5.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by hub.freebsd.org (Postfix) with ESMTP id AFF7037B41B for ; Tue, 5 Feb 2002 20:33:56 -0800 (PST) Received: (qmail 15178 invoked from network); 6 Feb 2002 04:33:55 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([65.91.155.10]) (envelope-sender ) by mail5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 6 Feb 2002 04:33:55 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200202060430.g164UQX09984@freefall.freebsd.org> Date: Tue, 05 Feb 2002 23:33:53 -0500 (EST) From: John Baldwin To: John Baldwin Subject: RE: cvs commit: src/sys/alpha/alpha pmap.c src/sys/alpha/include Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 06-Feb-02 John Baldwin wrote: > jhb 2002/02/05 20:30:26 PST > > Modified files: > sys/alpha/alpha pmap.c > sys/alpha/include pmap.h > sys/kern subr_witness.c > Log: > Fixes for alpha pmap on SMP machines: > > - Create a private list of active pmaps rather than abusing the list of all > processes when we need to look up pmaps. The process list needs a sx > lock > and we can't be getting sx locks in the middle of cpu_switch() > (pmap_activate() can call pmap_get_asn() from cpu_switch()). Instead, we > protect the list with a spinlock. This also means the list is shorter > since a pmap can be used by more than one process and we could (at least > in thoery) dink with pmap's more than once, but now we only touch each > pmap once when we have to update all of them. > - Wrap pmap_activate()'s code to get a new ASN in an explicit critical > section > so that when it is called while doing an exec() we can't get preempted. > - Replace splhigh() in pmap_growkernel() with a critical section to prevent > preemption while we are adjusting the kernel page tables. > - Fixes abuse of PCPU_GET(), which doesn't return an L-value. > - Also adds some slight cleanups to the ASN handling by adding some macros > instead of magic numbers in relation to the ASN and ASN generations. > > Reviewed by: dfr I'd like to turn on preemption now on the Alpha same as for x86. The DS20 here with an SMP kernel and preemption turned on seems to be very stable now with these fixes. Side note: I'd forgotten how painful 28.8k dialup was. Then again, when I got this modem I was happy to be doing better than 14.4. :) I will definitely appreciate DSL when I get it hooked up again. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 20:41:13 2002 Delivered-To: cvs-all@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id A4D9537B41C; Tue, 5 Feb 2002 20:40:58 -0800 (PST) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.6/8.11.5) with SMTP id g164ecD72378; Tue, 5 Feb 2002 23:40:38 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Tue, 5 Feb 2002 23:40:38 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Alfred Perlstein Cc: "Daniel O'Connor" , cvs-all@freebsd.org, cvs-committers@freebsd.org, des@freebsd.org, Mark Murray , "Andrey A. Chernov" Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c In-Reply-To: <20020205172633.B59017@elvis.mu.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Mind you, none of this is thread safe, but thread safe is not exactly a feature of many of our library interfaces :-). Robert N M Watson FreeBSD Core Team, TrustedBSD Project robert@fledge.watson.org NAI Labs, Safeport Network Services On Tue, 5 Feb 2002, Alfred Perlstein wrote: > * Daniel O'Connor [020205 17:25] wrote: > > > > On 05-Feb-2002 Alfred Perlstein wrote: > > >> To see the bug, run following test application with "call_pam" set to 1 > > >> and 0 > > > > > > I understand the issue you're bringing up, would it make sense > > > to create/utilize a save/restore random() context function? > > > > No need to create one.. > > setstate() returns the old state which can then be passed back to setstate(). > > Andrey, can you use this then? > > > > > eg.. > > #include > > #include > > > > void foo(void); > > > > int > > main(int argc, char **argv) { > > printf("%ld\n", random()); > > foo(); > > printf("%ld\n", random()); > > printf("%ld\n", random()); > > foo(); > > printf("%ld\n", random()); > > } > > > > void > > foo(void) { > > char *rndstate; > > char state[16]; > > > > rndstate = initstate(123456789, state, sizeof(state)); > > if (rndstate == NULL) { > > printf("Unable to reseed\n"); > > exit(1); > > } > > srandomdev(); > > > > printf("foo - %ld\n", random()); > > > > setstate(rndstate); > > } > > > > --- > > Daniel O'Connor software and network engineer > > for Genesis Software - http://www.gsoft.com.au > > "The nice thing about standards is that there > > are so many of them to choose from." > > -- Andrew Tanenbaum > > -- > -Alfred Perlstein [alfred@freebsd.org] > 'Instead of asking why a piece of software is using "1970s technology," > start asking why software is ignoring 30 years of accumulated wisdom.' > Tax deductable donations for FreeBSD: http://www.freebsdfoundation.org/ > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 20:45:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C46937B416; Tue, 5 Feb 2002 20:45:09 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g164j9411977; Tue, 5 Feb 2002 20:45:09 -0800 (PST) (envelope-from pat) Message-Id: <200202060445.g164j9411977@freefall.freebsd.org> From: Patrick Li Date: Tue, 5 Feb 2002 20:45:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/openldap2 Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/05 20:45:08 PST Modified files: net/openldap2 Makefile distinfo Log: Update to 2.0.22 PR: 34631 Submitted by: Maxim Konovalov Revision Changes Path 1.51 +1 -1 ports/net/openldap2/Makefile 1.25 +1 -1 ports/net/openldap2/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 20:46:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 20EBF37B416; Tue, 5 Feb 2002 20:46:09 -0800 (PST) Received: (from ume@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g164k8H12218; Tue, 5 Feb 2002 20:46:08 -0800 (PST) (envelope-from ume) Message-Id: <200202060446.g164k8H12218@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Tue, 5 Feb 2002 20:46:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/namedb Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ume 2002/02/05 20:46:08 PST Modified files: etc/namedb Makefile Log: Install PROTO.localhost-v6.rev. Reported by: Scott Allendorf Forgot by: me (ume) Revision Changes Path 1.2 +3 -2 src/etc/namedb/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 20:49:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7767237B428; Tue, 5 Feb 2002 20:49:08 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g164n8Z12763; Tue, 5 Feb 2002 20:49:08 -0800 (PST) (envelope-from obrien) Message-Id: <200202060449.g164n8Z12763@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 20:49:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc libgcc2.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 20:49:08 PST Modified files: contrib/gcc libgcc2.c Log: We use the stock [3.1-snap] file. Revision Changes Path 1.5 +620 -2579 src/contrib/gcc/libgcc2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 20:54:52 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.22.40]) by hub.freebsd.org (Postfix) with ESMTP id DA39337B42A; Tue, 5 Feb 2002 20:54:44 -0800 (PST) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.11.3/8.11.3) with ESMTP id g164sWD19012; Tue, 5 Feb 2002 23:54:32 -0500 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <20020205200812.A50411@xor.obsecurity.org> References: <20020205100414.A44541@xor.obsecurity.org> <526E436C-1AAF-11D6-B59E-00306580B1CA@vangelderen.org> <20020205200812.A50411@xor.obsecurity.org> Date: Tue, 5 Feb 2002 23:54:31 -0500 To: Kris Kennaway , "Jeroen C.van Gelderen" From: Garance A Drosihn Subject: Re: Not committing WARNS settings... Cc: Kris Kennaway , "David O'Brien" , Ruslan Ermilov , Mark Murray , current@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Scanned-By: MIMEDefang 2.3 (www dot roaringpenguin dot com slash mimedefang) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 8:08 PM -0800 2/5/02, Kris Kennaway wrote: >On Tue, Feb 05, 2002 at 10:12:15PM -0500, Jeroen C.van Gelderen wrote: > >> David is about to switch to GCC 3.0 and I guess he does not like moving >> targets. I would expect that for the GCC 4.0 upgrade a similar freeze > > request will go out. And that seems fair enough since it does not > > prevent anyone from applying the actual code fixes. > >All David has to do is set WARNS=0 or NO_WERROR=1 in or >/etc/defaults/make.conf temporarily when he tests and commits the >changeover, and he'll sidestep all the problems. There's no need to >impose restrictions on the activities of other committers. I would assume that the most David would be expected to do is add the NO_WERROR=1 to the appropriate file. He should not have to go through the entire source tree and fix all new warning messages in the entire project. > > .... We want to make this > > import stuff as easy on David as we can, no? It is a job from hell > > already. I agree with this. Given the amount of effort involved for gcc3, he does not seem to asking for much. He is actively working on it, and making commits. Increasing the ERROR-level in makefiles is not something which is urgent, and it seems a reasonable courtesy to David to hold off on that for a few weeks. Hmm. I guess a question to David is: "what is the target-date for switching current over to gcc3?". I've been assuming that is pretty close to happening... -- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 20:57:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D84AE37B436; Tue, 5 Feb 2002 20:57:25 -0800 (PST) Received: (from ume@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g164vP314026; Tue, 5 Feb 2002 20:57:25 -0800 (PST) (envelope-from ume) Message-Id: <200202060457.g164vP314026@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Tue, 5 Feb 2002 20:57:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ume 2002/02/05 20:57:25 PST Modified files: etc Makefile Log: Install PROTO.localhost-v6.rev. Umm, it seems namedb/Makefile is not used. Revision Changes Path 1.274 +3 -2 src/etc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21: 0: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 88E3737B4A9; Tue, 5 Feb 2002 20:58:59 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g164wx114282; Tue, 5 Feb 2002 20:58:59 -0800 (PST) (envelope-from obrien) Message-Id: <200202060458.g164wx114282@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 20:58:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc reload.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 20:58:59 PST Modified files: contrib/gcc reload.c Log: Use the stock [3.1-snap] file. Revision Changes Path 1.7 +1482 -1351 src/contrib/gcc/reload.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21: 0: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E6C337B47C; Tue, 5 Feb 2002 20:58:32 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g164wWN14182; Tue, 5 Feb 2002 20:58:32 -0800 (PST) (envelope-from obrien) Message-Id: <200202060458.g164wWN14182@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 20:58:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc print-tree.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 20:58:32 PST Modified files: contrib/gcc print-tree.c Log: Use the stock [3.1-snap] file. Revision Changes Path 1.5 +168 -108 src/contrib/gcc/print-tree.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21: 0:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A24A37B480; Tue, 5 Feb 2002 20:59:39 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g164xdi14393; Tue, 5 Feb 2002 20:59:39 -0800 (PST) (envelope-from obrien) Message-Id: <200202060459.g164xdi14393@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 20:59:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc toplev.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 20:59:39 PST Modified files: contrib/gcc toplev.c Log: Merge rev 1.2 (-fformat-extensions) and rev 1.7 (optimization downgrade) into GCC 3.1-snap. Revision Changes Path 1.12 +3615 -4136 src/contrib/gcc/toplev.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21: 0:52 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2FCCA37B4A5; Tue, 5 Feb 2002 21:00:20 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1650KH14575; Tue, 5 Feb 2002 21:00:20 -0800 (PST) (envelope-from obrien) Message-Id: <200202060500.g1650KH14575@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 21:00:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config/alpha alpha.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 21:00:19 PST Modified files: contrib/gcc/config/alpha alpha.c Log: Merge the stock gcc-3.1_snap file onto HEAD. Revision Changes Path 1.3 +7016 -3239 src/contrib/gcc/config/alpha/alpha.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21: 1:41 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5BED637B649; Tue, 5 Feb 2002 21:00:51 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1650pt14670; Tue, 5 Feb 2002 21:00:51 -0800 (PST) (envelope-from obrien) Message-Id: <200202060500.g1650pt14670@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 21:00:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config/alpha elf.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 21:00:50 PST Modified files: contrib/gcc/config/alpha elf.h Log: Merge the stock gcc-3.1_snap file onto HEAD. Revision Changes Path 1.6 +339 -225 src/contrib/gcc/config/alpha/elf.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21: 2:23 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D5DA937B448; Tue, 5 Feb 2002 21:01:30 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1651U814792; Tue, 5 Feb 2002 21:01:30 -0800 (PST) (envelope-from obrien) Message-Id: <200202060501.g1651U814792@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 21:01:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config/i386 i386.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 21:01:30 PST Modified files: contrib/gcc/config/i386 i386.c Log: Use the stock file for now. The changes from GCC 2.95.3 to 3.1 are large and it is hard to figure out how to apply our changes. Once BDE can properly test GCC 3.1 he'll add back in our changes. Revision Changes Path 1.8 +10493 -3921 src/contrib/gcc/config/i386/i386.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21: 2:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA9F637B696; Tue, 5 Feb 2002 21:01:51 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1651pc14866; Tue, 5 Feb 2002 21:01:51 -0800 (PST) (envelope-from obrien) Message-Id: <200202060501.g1651pc14866@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 21:01:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config/i386 i386.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 21:01:51 PST Modified files: contrib/gcc/config/i386 i386.h Log: Use the stock [3.1-snap] file. Revision Changes Path 1.6 +1934 -1525 src/contrib/gcc/config/i386/i386.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21: 2:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FC4E37B499; Tue, 5 Feb 2002 21:02:21 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1652LR14995; Tue, 5 Feb 2002 21:02:21 -0800 (PST) (envelope-from obrien) Message-Id: <200202060502.g1652LR14995@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 21:02:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/config/i386 i386.md X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 21:02:20 PST Modified files: contrib/gcc/config/i386 i386.md Log: Use the stock [3.l-snap] version of this. Revision Changes Path 1.10 +18048 -6598 src/contrib/gcc/config/i386/i386.md To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21: 3:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0342A37B429; Tue, 5 Feb 2002 21:02:44 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1652iH15036; Tue, 5 Feb 2002 21:02:44 -0800 (PST) (envelope-from pat) Message-Id: <200202060502.g1652iH15036@freefall.freebsd.org> From: Patrick Li Date: Tue, 5 Feb 2002 21:02:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/ecasound Makefile distinfo pkg-plist ports/audio/ecasound/files patch-kvutils:temporary_file_directory.cpp X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/05 21:02:44 PST Modified files: audio/ecasound Makefile distinfo pkg-plist Removed files: audio/ecasound/files patch-kvutils:temporary_file_directory.cpp Log: Update to 2.0.4 PR: 34645 Submitted by: maintainer Revision Changes Path 1.8 +1 -1 ports/audio/ecasound/Makefile 1.5 +1 -1 ports/audio/ecasound/distinfo 1.2 +0 -53 ports/audio/ecasound/files/patch-kvutils:temporary_file_directory.cpp (dead) 1.6 +2 -3 ports/audio/ecasound/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21: 3:45 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D5CD137B434; Tue, 5 Feb 2002 21:03:43 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1653hi15331; Tue, 5 Feb 2002 21:03:43 -0800 (PST) (envelope-from obrien) Message-Id: <200202060503.g1653hi15331@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 21:03:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/cp decl.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 21:03:43 PST Modified files: contrib/gcc/cp decl.c Log: Merge rev 1.2 (printf format error fixes) into GCC 3.1-snap. Revision Changes Path 1.7 +5993 -6392 src/contrib/gcc/cp/decl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21: 4:41 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 28DEC37B417; Tue, 5 Feb 2002 21:04:26 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1654QE15495; Tue, 5 Feb 2002 21:04:26 -0800 (PST) (envelope-from obrien) Message-Id: <200202060504.g1654QE15495@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 21:04:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/cp decl.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 21:04:26 PST Modified files: contrib/gcc/cp decl.c Log: A slightly different version of rev 1.2 that is closer to something the GCC maintainers might actually accept. Revision Changes Path 1.8 +12 -5 src/contrib/gcc/cp/decl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21: 5:52 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A1D2A37B416; Tue, 5 Feb 2002 21:05:49 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1655nU18947; Tue, 5 Feb 2002 21:05:49 -0800 (PST) (envelope-from obrien) Message-Id: <200202060505.g1655nU18947@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 21:05:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/cp except.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 21:05:49 PST Modified files: contrib/gcc/cp except.c Log: Use the stock GCC 3.1-snap version of this. Revision Changes Path 1.6 +653 -921 src/contrib/gcc/cp/except.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21: 7: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 546C437B423; Tue, 5 Feb 2002 21:07:01 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16571v19593; Tue, 5 Feb 2002 21:07:01 -0800 (PST) (envelope-from obrien) Message-Id: <200202060507.g16571v19593@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 21:07:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/cp ptree.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 21:07:01 PST Modified files: contrib/gcc/cp ptree.c Log: Merge BDE's printf format error fixes (rev 1.2) into GCC 3.1-snap. Revision Changes Path 1.5 +50 -30 src/contrib/gcc/cp/ptree.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21: 7:42 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6197937B48C; Tue, 5 Feb 2002 21:07:20 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1657Ht19699; Tue, 5 Feb 2002 21:07:17 -0800 (PST) (envelope-from obrien) Message-Id: <200202060507.g1657Ht19699@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 21:07:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/cp ptree.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 21:07:17 PST Modified files: contrib/gcc/cp ptree.c Log: A slightly more general version of rev 1.2 that might be more acceptable to the GCC maintainers. Revision Changes Path 1.6 +11 -4 src/contrib/gcc/cp/ptree.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21: 8: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DCB7D37B41D; Tue, 5 Feb 2002 21:07:51 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1657pC19807; Tue, 5 Feb 2002 21:07:51 -0800 (PST) (envelope-from obrien) Message-Id: <200202060507.g1657pC19807@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 21:07:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/ginclude stdarg.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 21:07:51 PST Modified files: contrib/gcc/ginclude stdarg.h Log: Use the stock [3.1-snap] version of this. Revision Changes Path 1.5 +48 -122 src/contrib/gcc/ginclude/stdarg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21: 9:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B17B37B41D; Tue, 5 Feb 2002 21:09:43 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1659hf20104; Tue, 5 Feb 2002 21:09:43 -0800 (PST) (envelope-from obrien) Message-Id: <200202060509.g1659hf20104@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 21:09:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/ginclude stddef.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 21:09:43 PST Modified files: contrib/gcc/ginclude stddef.h Log: Use the stock [3.1-snap] version of this. Revision Changes Path 1.4 +54 -10 src/contrib/gcc/ginclude/stddef.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21:10:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F18E937B416; Tue, 5 Feb 2002 21:10:06 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g165A6b20195; Tue, 5 Feb 2002 21:10:06 -0800 (PST) (envelope-from obrien) Message-Id: <200202060510.g165A6b20195@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 5 Feb 2002 21:10:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc/ginclude varargs.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/05 21:10:06 PST Modified files: contrib/gcc/ginclude varargs.h Log: Use the stock [3.1-snap] version of this. Revision Changes Path 1.5 +45 -130 src/contrib/gcc/ginclude/varargs.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21:16:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 32A7237B416; Tue, 5 Feb 2002 21:16:29 -0800 (PST) Received: (from ume@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g165GT321249; Tue, 5 Feb 2002 21:16:29 -0800 (PST) (envelope-from ume) Message-Id: <200202060516.g165GT321249@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Tue, 5 Feb 2002 21:16:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ume 2002/02/05 21:16:29 PST Modified files: (Branch: RELENG_4) etc Makefile Log: MFC 1.274: Install PROTO.localhost-v6.rev. Revision Changes Path 1.219.2.24 +3 -2 src/etc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21:19:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0127737B41A; Tue, 5 Feb 2002 21:18:33 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g165IXP21589; Tue, 5 Feb 2002 21:18:33 -0800 (PST) (envelope-from pat) Message-Id: <200202060518.g165IXP21589@freefall.freebsd.org> From: Patrick Li Date: Tue, 5 Feb 2002 21:18:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/dnstracer Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/05 21:18:32 PST Modified files: net/dnstracer Makefile distinfo Log: Update to 1.3 PR: 34649 Submitted by: maintainer Revision Changes Path 1.2 +1 -1 ports/net/dnstracer/Makefile 1.2 +1 -1 ports/net/dnstracer/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21:26:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6860637B42A; Tue, 5 Feb 2002 21:26:46 -0800 (PST) Received: (from horikawa@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g165Qki22824; Tue, 5 Feb 2002 21:26:46 -0800 (PST) (envelope-from horikawa) Message-Id: <200202060526.g165Qki22824@freefall.freebsd.org> From: Kazuo Horikawa Date: Tue, 5 Feb 2002 21:26:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man1 objdump.1 pax.1 pic.1 rcs.1 rdist.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2002/02/05 21:26:46 PST Modified files: ja_JP.eucJP/man/man1 objdump.1 pax.1 pic.1 rcs.1 rdist.1 Log: Fix typos o replace .stabl with .stab (objdump.1) o fix japanese wording (pax.1, pic.1, rcs.1) o uncapitalize "opt_dest_name" since Japanese does not capitalize initial word of sentense (rdist.1). Submitted by: Satoru Koizumi Revision Changes Path 1.9 +2 -2 doc/ja_JP.eucJP/man/man1/objdump.1 1.19 +5 -5 doc/ja_JP.eucJP/man/man1/pax.1 1.13 +3 -3 doc/ja_JP.eucJP/man/man1/pic.1 1.8 +2 -2 doc/ja_JP.eucJP/man/man1/rcs.1 1.16 +1 -1 doc/ja_JP.eucJP/man/man1/rdist.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21:32:38 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C20737B41F; Tue, 5 Feb 2002 21:32:34 -0800 (PST) Received: (from horikawa@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g165WY023674; Tue, 5 Feb 2002 21:32:34 -0800 (PST) (envelope-from horikawa) Message-Id: <200202060532.g165WY023674@freefall.freebsd.org> From: Kazuo Horikawa Date: Tue, 5 Feb 2002 21:32:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man1 send-pr.1 sh.1 stty.1 su.1 vidcontrol.1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2002/02/05 21:32:34 PST Modified files: ja_JP.eucJP/man/man1 send-pr.1 sh.1 stty.1 su.1 vidcontrol.1 Log: fix typos o fix typo in description for "gnu" category (send-pr.1) o fix partially untranslated sentense in description for "trap" (sh.1) o fix Japanese wording (stty.1, o remove extraneous ".Fl )" after "-c class" description (su.1) o add missing right parren for VGA_WIDTH90 option description (vidcontrol.1) Submitted by: Satoru Koizumi Revision Changes Path 1.12 +1 -1 doc/ja_JP.eucJP/man/man1/send-pr.1 1.36 +2 -2 doc/ja_JP.eucJP/man/man1/sh.1 1.19 +1 -1 doc/ja_JP.eucJP/man/man1/stty.1 1.19 +1 -2 doc/ja_JP.eucJP/man/man1/su.1 1.25 +2 -2 doc/ja_JP.eucJP/man/man1/vidcontrol.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 21:59:35 2002 Delivered-To: cvs-all@freebsd.org Received: from zibbi.icomtek.csir.co.za (zibbi.icomtek.csir.co.za [146.64.24.58]) by hub.freebsd.org (Postfix) with ESMTP id 6B41837B426; Tue, 5 Feb 2002 21:59:25 -0800 (PST) Received: (from jhay@localhost) by zibbi.icomtek.csir.co.za (8.11.6/8.11.6) id g165wrG54670; Wed, 6 Feb 2002 07:58:53 +0200 (SAT) (envelope-from jhay) From: John Hay Message-Id: <200202060558.g165wrG54670@zibbi.icomtek.csir.co.za> Subject: Re: Not committing WARNS settings... In-Reply-To: <20020205200812.A50411@xor.obsecurity.org> from Kris Kennaway at "Feb 5, 2002 08:08:12 pm" To: kris@obsecurity.org (Kris Kennaway) Date: Wed, 6 Feb 2002 07:58:53 +0200 (SAT) Cc: current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > All David has to do is set WARNS=0 or NO_WERROR=1 in or > /etc/defaults/make.conf temporarily when he tests and commits the > changeover, and he'll sidestep all the problems. There's no need to > impose restrictions on the activities of other committers. > > It's really not a big deal, IMO. > > Kris Let me hijack this a little. How many of you WARNS= adding people consider different compile/code paths than the one your machine exercise? For instance the one "make release" will exercise? The WARNS=1 in libexec/Makefile.inc breaks "make release" because telnetd is then compiled, but it isn't warning free. John -- John Hay -- John.Hay@icomtek.csir.co.za / jhay@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 22:33: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-47.dsl.lsan03.pacbell.net [64.165.226.47]) by hub.freebsd.org (Postfix) with ESMTP id 4FA7437B400; Tue, 5 Feb 2002 22:32:47 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id C6E0766C80; Tue, 5 Feb 2002 22:32:46 -0800 (PST) Date: Tue, 5 Feb 2002 22:32:46 -0800 From: Kris Kennaway To: John Hay Cc: Kris Kennaway , current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Not committing WARNS settings... Message-ID: <20020205223246.A52122@xor.obsecurity.org> References: <20020205200812.A50411@xor.obsecurity.org> <200202060558.g165wrG54670@zibbi.icomtek.csir.co.za> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="mYCpIKhGyMATD0i+" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200202060558.g165wrG54670@zibbi.icomtek.csir.co.za>; from jhay@icomtek.csir.co.za on Wed, Feb 06, 2002 at 07:58:53AM +0200 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --mYCpIKhGyMATD0i+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Feb 06, 2002 at 07:58:53AM +0200, John Hay wrote: > >=20 > > All David has to do is set WARNS=3D0 or NO_WERROR=3D1 in or > > /etc/defaults/make.conf temporarily when he tests and commits the > > changeover, and he'll sidestep all the problems. There's no need to > > impose restrictions on the activities of other committers. > >=20 > > It's really not a big deal, IMO. > >=20 > > Kris >=20 > Let me hijack this a little. How many of you WARNS=3D adding people > consider different compile/code paths than the one your machine > exercise? For instance the one "make release" will exercise? The > WARNS=3D1 in libexec/Makefile.inc breaks "make release" because > telnetd is then compiled, but it isn't warning free. Yeah, I'm going to fix that tonight when I get home and can test it. I try and be careful to consider all code paths, but this one slipped me by. Sorry. Kris --mYCpIKhGyMATD0i+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8YM4OWry0BWjoQKURAopCAJsFhvN3jRPYfM7I1DkBuOcgEKnmFgCg9LhU VzMyGNiWKwrcyKSZt2AFU2c= =Dmc9 -----END PGP SIGNATURE----- --mYCpIKhGyMATD0i+-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 23: 1:42 2002 Delivered-To: cvs-all@freebsd.org Received: from patrocles.silby.com (d4.as10.nwbl0.wi.voyager.net [169.207.131.4]) by hub.freebsd.org (Postfix) with ESMTP id 03B0837B426; Tue, 5 Feb 2002 23:01:30 -0800 (PST) Received: from localhost (silby@localhost) by patrocles.silby.com (8.11.6/8.11.6) with ESMTP id g1615AG04926; Wed, 6 Feb 2002 01:05:11 GMT (envelope-from silby@silby.com) X-Authentication-Warning: patrocles.silby.com: silby owned process doing -bs Date: Wed, 6 Feb 2002 01:05:09 +0000 (GMT) From: Mike Silbersack To: Matt Dillon Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/sys/ufs/ffs ffs_softdep.c In-Reply-To: <200202050749.g157n1458534@freefall.freebsd.org> Message-ID: <20020206010252.P4693-100000@patrocles.silby.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Did any of these changes break something with softupdates? I just cvsup'd a -stable box, and on the first reboot with the new kernel I got a "giving up on 1 buffers" and the filesystems were automatically fscked on the reboot. (A subsequent reboot did not have that problem, but I didn't do anything other than boot and shutdown -r now.) Mike "Silby" Silbersack On Mon, 4 Feb 2002, Matt Dillon wrote: > dillon 2002/02/04 23:49:01 PST > > Modified files: (Branch: RELENG_4) > sys/ufs/ffs ffs_softdep.c > Log: > MFC 1.103. drain_output() must be called prior to checking for > dirty buffers or we may get an incorrect indication, resulting in > a later panic. > > Revision Changes Path > 1.57.2.10 +11 -9 src/sys/ufs/ffs/ffs_softdep.c > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 23:34:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F3A1037B426; Tue, 5 Feb 2002 23:34:17 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g167YH766888; Tue, 5 Feb 2002 23:34:17 -0800 (PST) (envelope-from ru) Message-Id: <200202060734.g167YH766888@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 5 Feb 2002 23:34:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/rpc.yppasswdd pw_copy.c pw_util.c yppasswdd_extern.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/02/05 23:34:17 PST Modified files: usr.sbin/rpc.yppasswdd pw_copy.c pw_util.c yppasswdd_extern.h Log: Do a bit more of prototype cleanup. Revision Changes Path 1.6 +1 -2 src/usr.sbin/rpc.yppasswdd/pw_copy.c 1.8 +0 -1 src/usr.sbin/rpc.yppasswdd/pw_util.c 1.11 +1 -4 src/usr.sbin/rpc.yppasswdd/yppasswdd_extern.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 23:37: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0FD4A37B41D; Tue, 5 Feb 2002 23:37:01 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g167b1567352; Tue, 5 Feb 2002 23:37:01 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202060737.g167b1567352@freefall.freebsd.org> From: Jun Kuriyama Date: Tue, 5 Feb 2002 23:37:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/dtdparse Makefile distinfo pkg-comment pkg-descr pkg-plist ports/textproc/dtdparse/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/05 23:37:00 PST Modified files: textproc Makefile Added files: textproc/dtdparse Makefile distinfo pkg-comment pkg-descr pkg-plist textproc/dtdparse/files patch-aa Log: Add dtdparse 2.0.b6, parse a DTD and produce an XML document that represents it. PR: ports/34400 Submitted by: Kimura Fuyuki Revision Changes Path 1.311 +1 -0 ports/textproc/Makefile 1.1 +60 -0 ports/textproc/dtdparse/Makefile (new) 1.1 +1 -0 ports/textproc/dtdparse/distinfo (new) 1.1 +20 -0 ports/textproc/dtdparse/files/patch-aa (new) 1.1 +1 -0 ports/textproc/dtdparse/pkg-comment (new) 1.1 +8 -0 ports/textproc/dtdparse/pkg-descr (new) 1.1 +30 -0 ports/textproc/dtdparse/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 23:37:17 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E567737B437; Tue, 5 Feb 2002 23:37:05 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g167b5P67395; Tue, 5 Feb 2002 23:37:05 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202060737.g167b5P67395@freefall.freebsd.org> From: Jun Kuriyama Date: Tue, 5 Feb 2002 23:37:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/05 23:37:05 PST Modified files: . modules Log: dtdparse --> ports/textproc/dtdparse Revision Changes Path 1.4650 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Feb 5 23:44:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F395437B428; Tue, 5 Feb 2002 23:44:09 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g167i9B68960; Tue, 5 Feb 2002 23:44:09 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202060744.g167i9B68960@freefall.freebsd.org> From: Jun Kuriyama Date: Tue, 5 Feb 2002 23:44:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/xt Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/05 23:44:09 PST Modified files: textproc/xt Makefile Log: Add java category. PR: ports/34442 Suggested by: Kimura Fuyuki Revision Changes Path 1.15 +2 -2 ports/textproc/xt/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 0: 0: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CCE0037B419; Tue, 5 Feb 2002 23:59:56 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g167xub71900; Tue, 5 Feb 2002 23:59:56 -0800 (PST) (envelope-from dougb) Message-Id: <200202060759.g167xub71900@freefall.freebsd.org> From: Doug Barton Date: Tue, 5 Feb 2002 23:59:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/p5-Net-DNS Makefile distinfo pkg-descr ports/net/p5-Net-DNS/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dougb 2002/02/05 23:59:56 PST Modified files: net/p5-Net-DNS Makefile distinfo pkg-descr Removed files: net/p5-Net-DNS/files patch-aa Log: * Assume maintainership by agreement. * Update to 0.14, which has only two changes: - Fix the bug which we fixed with patch-aa - Fix the "defined @array" line that trips up perl 5.6.x Revision Changes Path 1.21 +2 -3 ports/net/p5-Net-DNS/Makefile 1.6 +1 -1 ports/net/p5-Net-DNS/distinfo 1.2 +0 -14 ports/net/p5-Net-DNS/files/patch-aa (dead) 1.3 +9 -41 ports/net/p5-Net-DNS/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 0:11:34 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E56037B416; Wed, 6 Feb 2002 00:11:30 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g168BUt77243; Wed, 6 Feb 2002 00:11:30 -0800 (PST) (envelope-from roam) Message-Id: <200202060811.g168BUt77243@freefall.freebsd.org> From: Peter Pentchev Date: Wed, 6 Feb 2002 00:11:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/kbedic Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2002/02/06 00:11:30 PST Modified files: textproc Makefile Added files: textproc/kbedic Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add kbedic-2.1, a Bulgarian-to-English and English-to-Bulgarian dictionary. PR: 33995 Submitted by: Angel Todorov Revision Changes Path 1.312 +1 -0 ports/textproc/Makefile 1.1 +23 -0 ports/textproc/kbedic/Makefile (new) 1.1 +1 -0 ports/textproc/kbedic/distinfo (new) 1.1 +1 -0 ports/textproc/kbedic/pkg-comment (new) 1.1 +21 -0 ports/textproc/kbedic/pkg-descr (new) 1.1 +3 -0 ports/textproc/kbedic/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 0:11:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 07E9C37B423; Wed, 6 Feb 2002 00:11:34 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g168BYQ77276; Wed, 6 Feb 2002 00:11:34 -0800 (PST) (envelope-from roam) Message-Id: <200202060811.g168BYQ77276@freefall.freebsd.org> From: Peter Pentchev Date: Wed, 6 Feb 2002 00:11:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2002/02/06 00:11:33 PST Modified files: . modules Log: kbedic --> ports/textproc/kbedic Revision Changes Path 1.4651 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 0:22:10 2002 Delivered-To: cvs-all@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 1283E37B405; Wed, 6 Feb 2002 00:21:52 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g168Lmg55480; Wed, 6 Feb 2002 10:21:48 +0200 (EET) (envelope-from ru) Date: Wed, 6 Feb 2002 10:21:48 +0200 From: Ruslan Ermilov To: Warner Losh Cc: Kris Kennaway , "David O'Brien" , Mark Murray , current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Not committing WARNS settings... Message-ID: <20020206102148.A53923@sunbay.com> References: <20020204190654.B36742@xor.obsecurity.org> <20020205072046.A73751@dragon.nuxi.com> <20020205100414.A44541@xor.obsecurity.org> <20020205.210910.130619961.imp@village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020205.210910.130619961.imp@village.org> User-Agent: Mutt/1.3.23i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 09:09:10PM -0700, M. Warner Losh wrote: > In message: <20020205100414.A44541@xor.obsecurity.org> > Kris Kennaway writes: > : On Tue, Feb 05, 2002 at 07:20:46AM -0800, David O'Brien wrote: > : > On Mon, Feb 04, 2002 at 07:06:54PM -0800, Kris Kennaway wrote: > : > > If you use the argument that one shouldn't set WARNS because a new > : > > compiler will cause the tree to break, then there's no point having it > : > > at all since that condition will always be true. > : > > : > The difference is _impending_. > : > : EPARSE. > > I think that David is trying to say that "Look guys, I'm this >< close > to importing gcc3. It does warnings differently. Cranking up the > WARNS level now will get in the way of my work and will lead to > unnecessary build breakage on some platforms that I don't compile for > all the time. Please go ahead and fix the warnings at the higher > levels, but don't put WARNS=x into the Makefile* until I'm done > importing things." > Nope, what David was _actually_ trying to say is to hold off with WARNS fixes until GCC 3.1 becomes our compiler, because otherwise this is an almost 100% duplicate of efforts, as GCC 3.1 is so WARNS-different from GCC 2.95.3. And of course David should add NO_WERROR (but probably to Makefile.inc1) to avoid world breakage. Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 0:35:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B065B37B41F; Wed, 6 Feb 2002 00:35:45 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g168Zjq80750; Wed, 6 Feb 2002 00:35:45 -0800 (PST) (envelope-from roam) Message-Id: <200202060835.g168Zjq80750@freefall.freebsd.org> From: Peter Pentchev Date: Wed, 6 Feb 2002 00:35:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2002/02/06 00:35:42 PST Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Add Angel Todorov for his textproc/kbedic port. Revision Changes Path 1.88 +4 -0 doc/en_US.ISO8859-1/articles/contributors/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 0:48:24 2002 Delivered-To: cvs-all@freebsd.org Received: from harrier.prod.itd.earthlink.net (harrier.mail.pas.earthlink.net [207.217.120.12]) by hub.freebsd.org (Postfix) with ESMTP id 7526C37B426; Wed, 6 Feb 2002 00:48:19 -0800 (PST) Received: from pool0014.cvx21-bradley.dialup.earthlink.net ([209.179.192.14] helo=mindspring.com) by harrier.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16YNkU-0006wq-00; Wed, 06 Feb 2002 00:48:15 -0800 Message-ID: <3C60EDC8.28844031@mindspring.com> Date: Wed, 06 Feb 2002 00:48:08 -0800 From: Terry Lambert X-Mailer: Mozilla 4.7 [en]C-CCK-MCD {Sony} (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Ruslan Ermilov Cc: Warner Losh , Kris Kennaway , David O'Brien , Mark Murray , current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Not committing WARNS settings... References: <20020204190654.B36742@xor.obsecurity.org> <20020205072046.A73751@dragon.nuxi.com> <20020205100414.A44541@xor.obsecurity.org> <20020205.210910.130619961.imp@village.org> <20020206102148.A53923@sunbay.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ruslan Ermilov wrote: > Nope, what David was _actually_ trying to say is to hold off with WARNS > fixes until GCC 3.1 becomes our compiler, because otherwise this is an > almost 100% duplicate of efforts, as GCC 3.1 is so WARNS-different from > GCC 2.95.3. And of course David should add NO_WERROR (but probably to > Makefile.inc1) to avoid world breakage. A cynic would say that that means that there are two sets of things that need to be fixed, and not just one. Another cynic might say "instead of speculating, why not ask David what David was trying to say?"... I know: no patience on these lists. 8-). -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 1:40:59 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id D2EA337B420; Wed, 6 Feb 2002 01:40:43 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id UAA29459; Wed, 6 Feb 2002 20:40:41 +1100 Date: Wed, 6 Feb 2002 20:43:10 +1100 (EST) From: Bruce Evans X-X-Sender: To: John Baldwin Cc: , , Bruce Evans Subject: RE: cvs commit: src/sys/i386/i386 db_interface.c In-Reply-To: Message-ID: <20020206201716.B2295-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 5 Feb 2002, John Baldwin wrote: > On 05-Feb-02 Bruce Evans wrote: > > On Tue, 5 Feb 2002, John Baldwin wrote: > >> Err, have you tested this? In my tests locally this still doesn't work > >> properly which is why I haven't committed it. :( > > > > PS: perhaps you are thinking of the flag in Debugger(). That is > > ... > > Hmm, the problem I was having is that interrupts were still firing while I was > in ddb. I could tell because new KTR entries due to clock interrutps kept > showing up. This can't happen :-). Except for bugs which would affect most forms of interrupt disablement. Perhaps there is a path through trap() which enables interrupts even for debugger traps, but only when they are enabled when the trap occurs. Ah, I see a related broken path, not for debugger traps but for pagefaults. Interrupts are enabled for pagefaults almost unconditionally, so a pagefault in ddb would cause problems. I think this causes the "Context switches not allowed in the Debugger" message. I thought that this was caused by a more fundamental bug. BTW, why does the spinlocking in kern_clock.c use MTX_QUIET? nanotime() for witness timestamps should work normally there. I noticed this when I uninlined mtx_*_spin_*(). The `flags' versions are not used anywhere else. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 2:18:56 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 5FDFE37B417; Wed, 6 Feb 2002 02:18:51 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id DD35E5341; Wed, 6 Feb 2002 11:18:49 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Bruce Evans Cc: , , Subject: Re: cvs commit: src/sys/modules Makefile src/sys/modules/fs Makefile src/sys/modules/fs/linprocfs Makefile src/sys/modules/fs/procfs Makefile src/sys/modules/fs/pseudofs Makefile src/sys/modules/linpr References: <20020206093651.Q903-100000@gamplex.bde.org> From: Dag-Erling Smorgrav Date: 06 Feb 2002 11:18:49 +0100 In-Reply-To: <20020206093651.Q903-100000@gamplex.bde.org> Message-ID: Lines: 10 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Bruce Evans writes: > > No. Would you be happier if I'd stuck "Requested by: bde" at the > > bottom of the log message? > How about a "PR: 33583"? Ooh, I'd forgotten about this one. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 2:23: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 48DCC37B430; Wed, 6 Feb 2002 02:23:03 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16AN3O04331; Wed, 6 Feb 2002 02:23:03 -0800 (PST) (envelope-from des) Message-Id: <200202061023.g16AN3O04331@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 6 Feb 2002 02:23:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules Makefile src/sys/modules/linprocfs Makefile src/sys/modules/procfs Makefile src/sys/modules/pseudofs Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/06 02:23:03 PST Modified files: sys/modules Makefile sys/modules/linprocfs Makefile sys/modules/procfs Makefile sys/modules/pseudofs Makefile Log: Forced commit. Previous commit was in response to: PR: kern/33583 Revision Changes Path 1.231 +0 -0 src/sys/modules/Makefile 1.10 +0 -0 src/sys/modules/linprocfs/Makefile 1.26 +0 -0 src/sys/modules/procfs/Makefile 1.2 +0 -0 src/sys/modules/pseudofs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 2:30:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E2F337B423; Wed, 6 Feb 2002 02:30:11 -0800 (PST) Received: (from wosch@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16AUBx05247; Wed, 6 Feb 2002 02:30:11 -0800 (PST) (envelope-from wosch) Message-Id: <200202061030.g16AUBx05247@freefall.freebsd.org> From: Wolfram Schneider Date: Wed, 6 Feb 2002 02:30:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/docproj who.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wosch 2002/02/06 02:30:11 PST Modified files: en/docproj who.sgml Log: Fix rev 1.8: Wrong link to the FreeBSD Documentation Project. Revision Changes Path 1.10 +2 -2 www/en/docproj/who.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 2:47:28 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id CEC3337B417; Wed, 6 Feb 2002 02:47:23 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 6210B5341; Wed, 6 Feb 2002 11:47:22 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: John Hay Cc: kris@obsecurity.org (Kris Kennaway), current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Not committing WARNS settings... References: <200202060558.g165wrG54670@zibbi.icomtek.csir.co.za> From: Dag-Erling Smorgrav Date: 06 Feb 2002 11:47:21 +0100 In-Reply-To: <200202060558.g165wrG54670@zibbi.icomtek.csir.co.za> Message-ID: Lines: 13 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG John Hay writes: > Let me hijack this a little. How many of you WARNS= adding people > consider different compile/code paths than the one your machine > exercise? For instance the one "make release" will exercise? The > WARNS=1 in libexec/Makefile.inc breaks "make release" because > telnetd is then compiled, but it isn't warning free. This is a good reason why non-zero WARNS should only be set in leaf Makefiles. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 3: 0:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A0F6537B417; Wed, 6 Feb 2002 03:00:15 -0800 (PST) Received: (from chern@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16B0Fn10316; Wed, 6 Feb 2002 03:00:15 -0800 (PST) (envelope-from chern) Message-Id: <200202061100.g16B0Fn10316@freefall.freebsd.org> From: Chern Lee Date: Wed, 6 Feb 2002 03:00:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/cutting-edge chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG chern 2002/02/06 03:00:14 PST Modified files: en_US.ISO8859-1/books/handbook/cutting-edge chapter.sgml Log: Add missing cd /usr/src before make installworld. PR: docs/34622 Submitted by: Michael Heyes Revision Changes Path 1.105 +2 -1 doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 3: 5: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C56637B41B; Wed, 6 Feb 2002 03:05:00 -0800 (PST) Received: (from chern@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16B50u11562; Wed, 6 Feb 2002 03:05:00 -0800 (PST) (envelope-from chern) Message-Id: <200202061105.g16B50u11562@freefall.freebsd.org> From: Chern Lee Date: Wed, 6 Feb 2002 03:05:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG chern 2002/02/06 03:05:00 PST Modified files: en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml Log: Suggest freebsd-security-notifications over freebsd-announce for security issues. PR: docs/34578 Submitted by: Yonatan Bokovza and Szilveszter Adam Revision Changes Path 1.120 +1 -1 doc/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 3: 8: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E77C637B41A; Wed, 6 Feb 2002 03:07:55 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16B7tb15543; Wed, 6 Feb 2002 03:07:55 -0800 (PST) (envelope-from kris) Message-Id: <200202061107.g16B7tb15543@freefall.freebsd.org> From: Kris Kennaway Date: Wed, 6 Feb 2002 03:07:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/telnetd Makefile src/secure/libexec/telnetd Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/02/06 03:07:55 PST Modified files: libexec/telnetd Makefile secure/libexec/telnetd Makefile Log: Set WFORMAT=0, overlooked in previous commits to libexec/. Reported by: jhay Revision Changes Path 1.19 +1 -0 src/libexec/telnetd/Makefile 1.27 +1 -0 src/secure/libexec/telnetd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 3:15:55 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id CF58437B417; Wed, 6 Feb 2002 03:15:30 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g16BFTn64934; Wed, 6 Feb 2002 11:15:29 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id D81B8B6; Wed, 6 Feb 2002 11:12:44 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g16BCis55559; Wed, 6 Feb 2002 11:12:44 GMT (envelope-from mark@grondar.za) Message-Id: <200202061112.g16BCis55559@greenpeace.grondar.org> To: Dag-Erling Smorgrav Cc: current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Not committing WARNS settings... References: In-Reply-To: ; from Dag-Erling Smorgrav "06 Feb 2002 11:47:21 +0100." Date: Wed, 06 Feb 2002 11:12:38 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > John Hay writes: > > Let me hijack this a little. How many of you WARNS= adding people > > consider different compile/code paths than the one your machine > > exercise? For instance the one "make release" will exercise? The > > WARNS=1 in libexec/Makefile.inc breaks "make release" because > > telnetd is then compiled, but it isn't warning free. > > This is a good reason why non-zero WARNS should only be set in leaf > Makefiles. IMO, this is a good reason to not have WARNS contain -Werror at this time. NO_WERROR is a good way to fix this (again IMO). I see a great need to let warnings "hang out", and in an ideal world I see an need for (new) warnings to break things. I see no need for warnings to hold back a project as important as GCC3, and NO_WERROR is the cleanest solution. I do not expect others to agree with (or like) this. M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 3:39:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ECE4E37B429; Wed, 6 Feb 2002 03:39:44 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16Bdim19835; Wed, 6 Feb 2002 03:39:44 -0800 (PST) (envelope-from phantom) Message-Id: <200202061139.g16Bdim19835@freefall.freebsd.org> From: Alexey Zelkin Date: Wed, 6 Feb 2002 03:39:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/share/sgml authors.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/06 03:39:44 PST Modified files: en_US.ISO8859-1/share/sgml authors.ent Log: Add &a.security-officer; and &a.portmgr; entities Revision Changes Path 1.206 +4 -0 doc/en_US.ISO8859-1/share/sgml/authors.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 3:51:11 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 559BE37B417; Wed, 6 Feb 2002 03:51:05 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16Bp5921664; Wed, 6 Feb 2002 03:51:05 -0800 (PST) (envelope-from phantom) Message-Id: <200202061151.g16Bp5921664@freefall.freebsd.org> From: Alexey Zelkin Date: Wed, 6 Feb 2002 03:51:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/06 03:51:05 PST Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Fixup 'Who is Responsible for What' section * remove 'Boot blocks' and 'Boot loader' points (these should be moved to committers-guide IMO) * Release Coordinator: jkh@ -> re@ headed by murray@ * Security Officer: kris@ -> security-officer@ headed by nectar@ * Ports Manager: asami@ -> portmgr@ Also add href to releng article into 'Release Coodination' point Inspired by: docs/34656 Revision Changes Path 1.89 +6 -22 doc/en_US.ISO8859-1/articles/contributors/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 4: 1:59 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6416E37B42B; Wed, 6 Feb 2002 04:01:56 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16C1uH30256; Wed, 6 Feb 2002 04:01:56 -0800 (PST) (envelope-from phantom) Message-Id: <200202061201.g16C1uH30256@freefall.freebsd.org> From: Alexey Zelkin Date: Wed, 6 Feb 2002 04:01:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/06 04:01:56 PST Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Move Satoshi Asami from 'Core Team Members' list to 'Core Team Alumni' Noticed by: wosch PR: docs/34657 Revision Changes Path 1.90 +4 -4 doc/en_US.ISO8859-1/articles/contributors/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 4: 7:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 82CE737B423; Wed, 6 Feb 2002 04:07:08 -0800 (PST) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16C78X35019; Wed, 6 Feb 2002 04:07:08 -0800 (PST) (envelope-from wjv) Message-Id: <200202061207.g16C78X35019@freefall.freebsd.org> From: Johann Visagie Date: Wed, 6 Feb 2002 04:07:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/arch Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2002/02/06 04:07:07 PST Modified files: devel Makefile Added files: devel/arch Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add arch 1.0.p5, a distributed source code management / revision control system. Revision Changes Path 1.744 +1 -0 ports/devel/Makefile 1.1 +42 -0 ports/devel/arch/Makefile (new) 1.1 +1 -0 ports/devel/arch/distinfo (new) 1.1 +1 -0 ports/devel/arch/pkg-comment (new) 1.1 +18 -0 ports/devel/arch/pkg-descr (new) 1.1 +668 -0 ports/devel/arch/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 4: 7:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F23B37B42F; Wed, 6 Feb 2002 04:07:12 -0800 (PST) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16C7Cs35063; Wed, 6 Feb 2002 04:07:12 -0800 (PST) (envelope-from wjv) Message-Id: <200202061207.g16C7Cs35063@freefall.freebsd.org> From: Johann Visagie Date: Wed, 6 Feb 2002 04:07:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2002/02/06 04:07:12 PST Modified files: . modules Log: arch --> ports/devel/arch Revision Changes Path 1.4652 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 4: 7:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D24CF37B446; Wed, 6 Feb 2002 04:07:41 -0800 (PST) Received: (from tom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16C7fD35170; Wed, 6 Feb 2002 04:07:41 -0800 (PST) (envelope-from tom) Message-Id: <200202061207.g16C7fD35170@freefall.freebsd.org> From: Tom Hukins Date: Wed, 6 Feb 2002 04:07:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/platforms ppc.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tom 2002/02/06 04:07:41 PST Modified files: en/platforms ppc.sgml Log: OpenBSD/powerpc is now OpenBSD/macppc Submitted by: Matt Christian Revision Changes Path 1.3 +2 -2 www/en/platforms/ppc.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 4:29:47 2002 Delivered-To: cvs-all@freebsd.org Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by hub.freebsd.org (Postfix) with ESMTP id B689337B405; Wed, 6 Feb 2002 04:29:42 -0800 (PST) Received: from madman.nectar.cc (madman.nectar.cc [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id 236D65; Wed, 6 Feb 2002 06:29:42 -0600 (CST) Received: (from nectar@localhost) by madman.nectar.cc (8.11.6/8.11.6) id g16CTPU53325; Wed, 6 Feb 2002 06:29:25 -0600 (CST) (envelope-from nectar) Date: Wed, 6 Feb 2002 06:29:25 -0600 From: "Jacques A. Vidrine" To: Mark Murray Cc: "Andrey A. Chernov" , des@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020206122925.GD53286@madman.nectar.cc> Mail-Followup-To: "Jacques A. Vidrine" , Mark Murray , "Andrey A. Chernov" , des@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <20020205214703.GA8579@nagual.pp.ru> <200202052219.g15MJhs32408@greenpeace.grondar.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202052219.g15MJhs32408@greenpeace.grondar.org> User-Agent: Mutt/1.3.27i X-Url: http://www.nectar.cc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 10:19:38PM +0000, Mark Murray wrote: > > On Tue, Feb 05, 2002 at 23:59:08 +0300, Andrey A. Chernov wrote: > > > > > It is OK at this point, but broken _after_ PAM called. > > > Lets imagine srandom(33) produce this hypotetical sequence for random() > > > calls: > > > > To see the bug, run following test application with "call_pam" set to 1 > > and 0 > > The bug is doing userland stuff before the authentication IMO. No, the bug is in the usage of srandom/random by what for all purposes is implementation code. C99 spells out quite clearly for srand/rand that these functions shall behave as if the implementation never calls them. I cannot find such a requirement in POSIX for srandom/random, but POLA dictates that the same semantics apply. Cheers, -- Jacques A. Vidrine http://www.nectar.cc/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 5:21:32 2002 Delivered-To: cvs-all@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id C2D6537B421; Wed, 6 Feb 2002 05:21:19 -0800 (PST) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.6/8.11.5) with SMTP id g16DL8D76943; Wed, 6 Feb 2002 08:21:08 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Wed, 6 Feb 2002 08:21:07 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Terry Lambert Cc: Ruslan Ermilov , Warner Losh , Kris Kennaway , "David O'Brien" , Mark Murray , current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Not committing WARNS settings... In-Reply-To: <3C60EDC8.28844031@mindspring.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 6 Feb 2002, Terry Lambert wrote: > Ruslan Ermilov wrote: > > Nope, what David was _actually_ trying to say is to hold off with WARNS > > fixes until GCC 3.1 becomes our compiler, because otherwise this is an > > almost 100% duplicate of efforts, as GCC 3.1 is so WARNS-different from > > GCC 2.95.3. And of course David should add NO_WERROR (but probably to > > Makefile.inc1) to avoid world breakage. > > A cynic would say that that means that there are two sets of things that > need to be fixed, and not just one. Well, I think that's true: no one is saying you can't fix the warnings you find by turning up the warning level. They're just asking that the warning level not be turned up in the default Makefile. Since these are entirely seperable activities... Robert N M Watson FreeBSD Core Team, TrustedBSD Project robert@fledge.watson.org NAI Labs, Safeport Network Services To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 5:30:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DCA9837B423; Wed, 6 Feb 2002 05:30:31 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16DUVa51164; Wed, 6 Feb 2002 05:30:31 -0800 (PST) (envelope-from des) Message-Id: <200202061330.g16DUVa51164@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 6 Feb 2002 05:30:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include/rpcsvc yp_prot.h ypclnt.h src/lib/libc/yp xdryp.c yplib.c src/lib/librpcsvc yp_update.c src/libexec/ypxfr yp_dbwrite.c ypxfr_extern.h ypxfr_getmap.c ypxfr_main.c ypxfr_misc.c ypxfrd_getmap.c src/usr.bin/chpass pw_yp.c pw_yp.h ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/06 05:30:31 PST Modified files: include/rpcsvc yp_prot.h ypclnt.h lib/libc/yp xdryp.c yplib.c lib/librpcsvc yp_update.c libexec/ypxfr yp_dbwrite.c ypxfr_extern.h ypxfr_getmap.c ypxfr_main.c ypxfr_misc.c ypxfrd_getmap.c usr.bin/chpass pw_yp.c pw_yp.h usr.bin/passwd yp_passwd.c usr.bin/ypcat ypcat.c usr.bin/ypmatch ypmatch.c usr.bin/ypwhich ypwhich.c usr.sbin/rpc.yppasswdd pw_util.c yppasswdd_extern.h yppasswdd_main.c yppasswdd_server.c usr.sbin/rpc.ypupdated update.c yp_dbdelete.c yp_dbupdate.c ypupdated_extern.h ypupdated_main.c ypupdated_server.c usr.sbin/rpc.ypxfrd ypxfrd_extern.h ypxfrd_main.c ypxfrd_server.c usr.sbin/yp_mkdb yp_mkdb.c usr.sbin/ypbind yp_ping.c yp_ping.h ypbind.c usr.sbin/yppoll yppoll.c usr.sbin/yppush yppush_extern.h yppush_main.c usr.sbin/ypserv yp_access.c yp_dblookup.c yp_dnslookup.c yp_extern.h yp_main.c yp_server.c usr.sbin/ypset ypset.c Log: Apply the following mechanical transformations in preparation for ansification and constification: s{\s+__P\((\(.*?\))\)}{$1}g; s{\(\s+}{\(}g; s{\s+\)}{\)}g; s{\s+,}{,}g; s{(\s+)(for|if|switch|while)\(}{$1$2 \(}g; s{return ([^\(].*?);}{return ($1);}g; s{([\w\)])([!=+/\*-]?=)([\w\(+-])}{$1 $2 $3}g; s{\s+$}{\n};g Also add $FreeBSD$ where needed. MFC after: 1 week Revision Changes Path 1.11 +14 -14 src/include/rpcsvc/yp_prot.h 1.12 +10 -10 src/include/rpcsvc/ypclnt.h 1.11 +10 -10 src/lib/libc/yp/xdryp.c 1.39 +123 -123 src/lib/libc/yp/yplib.c 1.5 +2 -2 src/lib/librpcsvc/yp_update.c 1.9 +2 -2 src/libexec/ypxfr/yp_dbwrite.c 1.9 +14 -14 src/libexec/ypxfr/ypxfr_extern.h 1.9 +2 -2 src/libexec/ypxfr/ypxfr_getmap.c 1.15 +3 -3 src/libexec/ypxfr/ypxfr_main.c 1.11 +3 -3 src/libexec/ypxfr/ypxfr_misc.c 1.8 +2 -2 src/libexec/ypxfr/ypxfrd_getmap.c 1.18 +4 -4 src/usr.bin/chpass/pw_yp.c 1.8 +5 -5 src/usr.bin/chpass/pw_yp.h 1.17 +3 -3 src/usr.bin/passwd/yp_passwd.c 1.7 +11 -11 src/usr.bin/ypcat/ypcat.c 1.10 +9 -9 src/usr.bin/ypmatch/ypmatch.c 1.13 +24 -24 src/usr.bin/ypwhich/ypwhich.c 1.9 +1 -1 src/usr.sbin/rpc.yppasswdd/pw_util.c 1.12 +9 -9 src/usr.sbin/rpc.yppasswdd/yppasswdd_extern.h 1.19 +1 -1 src/usr.sbin/rpc.yppasswdd/yppasswdd_main.c 1.22 +6 -6 src/usr.sbin/rpc.yppasswdd/yppasswdd_server.c 1.6 +3 -3 src/usr.sbin/rpc.ypupdated/update.c 1.4 +1 -1 src/usr.sbin/rpc.ypupdated/yp_dbdelete.c 1.5 +3 -3 src/usr.sbin/rpc.ypupdated/yp_dbupdate.c 1.3 +4 -4 src/usr.sbin/rpc.ypupdated/ypupdated_extern.h 1.7 +2 -2 src/usr.sbin/rpc.ypupdated/ypupdated_main.c 1.5 +2 -2 src/usr.sbin/rpc.ypupdated/ypupdated_server.c 1.5 +5 -5 src/usr.sbin/rpc.ypxfrd/ypxfrd_extern.h 1.11 +2 -2 src/usr.sbin/rpc.ypxfrd/ypxfrd_main.c 1.9 +1 -1 src/usr.sbin/rpc.ypxfrd/ypxfrd_server.c 1.13 +6 -6 src/usr.sbin/yp_mkdb/yp_mkdb.c 1.11 +2 -2 src/usr.sbin/ypbind/yp_ping.c 1.2 +5 -1 src/usr.sbin/ypbind/yp_ping.h 1.36 +56 -56 src/usr.sbin/ypbind/ypbind.c 1.9 +3 -3 src/usr.sbin/yppoll/yppoll.c 1.5 +2 -2 src/usr.sbin/yppush/yppush_extern.h 1.14 +13 -13 src/usr.sbin/yppush/yppush_main.c 1.19 +6 -6 src/usr.sbin/ypserv/yp_access.c 1.21 +7 -7 src/usr.sbin/ypserv/yp_dblookup.c 1.21 +6 -6 src/usr.sbin/ypserv/yp_dnslookup.c 1.16 +28 -28 src/usr.sbin/ypserv/yp_extern.h 1.24 +5 -5 src/usr.sbin/ypserv/yp_main.c 1.34 +7 -7 src/usr.sbin/ypserv/yp_server.c 1.9 +14 -14 src/usr.sbin/ypset/ypset.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 5:33:32 2002 Delivered-To: cvs-all@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 8100837B426; Wed, 6 Feb 2002 05:33:18 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g16DX8m98089; Wed, 6 Feb 2002 15:33:08 +0200 (EET) (envelope-from ru) Date: Wed, 6 Feb 2002 15:33:08 +0200 From: Ruslan Ermilov To: Jacques Vidrine Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/bind FREEBSD-Xlist Message-ID: <20020206153308.A96758@sunbay.com> References: <200202042128.g14LSjq96253@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202042128.g14LSjq96253@freefall.freebsd.org> User-Agent: Mutt/1.3.23i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Feb 04, 2002 at 01:28:45PM -0800, Jacques Vidrine wrote: > nectar 2002/02/04 13:28:45 PST > > Added files: > contrib/bind FREEBSD-Xlist > Log: > Give the next BIND-importing schmuck some assistance. > > Revision Changes Path > 1.1 +37 -0 src/contrib/bind/FREEBSD-Xlist (new) > Does it mean you're willing to maintain BIND from now on? Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 5:38:26 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 39B2B37B404; Wed, 6 Feb 2002 05:38:24 -0800 (PST) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16DcOu52984; Wed, 6 Feb 2002 05:38:24 -0800 (PST) (envelope-from wjv) Message-Id: <200202061338.g16DcOu52984@freefall.freebsd.org> From: Johann Visagie Date: Wed, 6 Feb 2002 05:38:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/py-bsddb3/files patch-setup.py X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2002/02/06 05:38:24 PST Modified files: databases/py-bsddb3/files patch-setup.py Log: - Add a patch to get this port to link against libdb3, since it is dependent upon databases/db3. Approved by: No response from maintainer in 24h Revision Changes Path 1.2 +14 -3 ports/databases/py-bsddb3/files/patch-setup.py To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 6:49:22 2002 Delivered-To: cvs-all@freebsd.org Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by hub.freebsd.org (Postfix) with ESMTP id D989937B420; Wed, 6 Feb 2002 06:49:14 -0800 (PST) Received: from madman.nectar.cc (madman.nectar.cc [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id AAFEC5; Wed, 6 Feb 2002 08:49:13 -0600 (CST) Received: (from nectar@localhost) by madman.nectar.cc (8.11.6/8.11.6) id g16EnDQ65949; Wed, 6 Feb 2002 08:49:13 -0600 (CST) (envelope-from nectar) Date: Wed, 6 Feb 2002 08:49:13 -0600 From: "Jacques A. Vidrine" To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/bind FREEBSD-Xlist Message-ID: <20020206144913.GC65827@madman.nectar.cc> Mail-Followup-To: "Jacques A. Vidrine" , Ruslan Ermilov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200202042128.g14LSjq96253@freefall.freebsd.org> <20020206153308.A96758@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020206153308.A96758@sunbay.com> User-Agent: Mutt/1.3.27i X-Url: http://www.nectar.cc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Feb 06, 2002 at 03:33:08PM +0200, Ruslan Ermilov wrote: > On Mon, Feb 04, 2002 at 01:28:45PM -0800, Jacques Vidrine wrote: > > nectar 2002/02/04 13:28:45 PST > > > > Added files: > > contrib/bind FREEBSD-Xlist > > Log: > > Give the next BIND-importing schmuck some assistance. > > > > Revision Changes Path > > 1.1 +37 -0 src/contrib/bind/FREEBSD-Xlist (new) > > > Does it mean you're willing to maintain BIND from now on? s/from now on/for now/ I don't mind being the schmuck for a while. Someone has to. -- Jacques A. Vidrine http://www.nectar.cc/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 7:14:37 2002 Delivered-To: cvs-all@freebsd.org Received: from zibbi.icomtek.csir.co.za (zibbi.icomtek.csir.co.za [146.64.24.58]) by hub.freebsd.org (Postfix) with ESMTP id CFAA337B420; Wed, 6 Feb 2002 07:14:21 -0800 (PST) Received: (from jhay@localhost) by zibbi.icomtek.csir.co.za (8.11.6/8.11.6) id g16FE3A70349; Wed, 6 Feb 2002 17:14:03 +0200 (SAT) (envelope-from jhay) From: John Hay Message-Id: <200202061514.g16FE3A70349@zibbi.icomtek.csir.co.za> Subject: Re: cvs commit: src/contrib/bind FREEBSD-Xlist In-Reply-To: <20020206144913.GC65827@madman.nectar.cc> from "Jacques A. Vidrine" at "Feb 6, 2002 08:49:13 am" To: n@nectar.cc (Jacques A. Vidrine) Date: Wed, 6 Feb 2002 17:14:03 +0200 (SAT) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > > nectar 2002/02/04 13:28:45 PST > > > > > > Added files: > > > contrib/bind FREEBSD-Xlist > > > Log: > > > Give the next BIND-importing schmuck some assistance. > > > > > > Revision Changes Path > > > 1.1 +37 -0 src/contrib/bind/FREEBSD-Xlist (new) > > > > > Does it mean you're willing to maintain BIND from now on? > > s/from now on/for now/ > > I don't mind being the schmuck for a while. Someone has to. What about going to v9.x? At least for -current, although looking at the security history of 8.x, I think we should really think about doing it even for -stable. Leave the bind8 port for those guys that need some of its features. John -- John Hay -- John.Hay@icomtek.csir.co.za / jhay@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 7:26:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 849A037B41E; Wed, 6 Feb 2002 07:26:07 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16FQ7o29847; Wed, 6 Feb 2002 07:26:07 -0800 (PST) (envelope-from des) Message-Id: <200202061526.g16FQ7o29847@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 6 Feb 2002 07:26:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/yp xdryp.c yplib.c src/lib/librpcsvc yp_passwd.c yp_update.c src/libexec/ypxfr yp_dbwrite.c ypxfr_extern.h ypxfr_getmap.c ypxfr_main.c ypxfr_misc.c ypxfrd_getmap.c src/usr.bin/chpass pw_yp.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/06 07:26:07 PST Modified files: lib/libc/yp xdryp.c yplib.c lib/librpcsvc yp_passwd.c yp_update.c libexec/ypxfr yp_dbwrite.c ypxfr_extern.h ypxfr_getmap.c ypxfr_main.c ypxfr_misc.c ypxfrd_getmap.c usr.bin/chpass pw_yp.c usr.sbin/rpc.yppasswdd pw_copy.c pw_util.c yppasswdd_main.c yppasswdd_server.c usr.sbin/rpc.ypupdated update.c yp_dbdelete.c yp_dbupdate.c ypupdated_main.c ypupdated_server.c usr.sbin/rpc.ypxfrd ypxfrd_main.c usr.sbin/yp_mkdb yp_mkdb.c usr.sbin/ypbind yp_ping.c ypbind.c usr.sbin/yppoll yppoll.c usr.sbin/yppush yppush_main.c usr.sbin/ypserv yp_access.c yp_dblookup.c yp_dnslookup.c yp_error.c yp_main.c yp_server.c yp_svc_udp.c usr.sbin/ypset ypset.c Log: ANSIfy and remove some dead code. Sponsored by: DARPA, NAI Labs Revision Changes Path 1.12 +2 -6 src/lib/libc/yp/xdryp.c 1.40 +33 -75 src/lib/libc/yp/yplib.c 1.6 +2 -3 src/lib/librpcsvc/yp_passwd.c 1.6 +2 -8 src/lib/librpcsvc/yp_update.c 1.10 +4 -9 src/libexec/ypxfr/yp_dbwrite.c 1.10 +1 -1 src/libexec/ypxfr/ypxfr_extern.h 1.10 +3 -5 src/libexec/ypxfr/ypxfr_getmap.c 1.16 +8 -14 src/libexec/ypxfr/ypxfr_main.c 1.12 +9 -18 src/libexec/ypxfr/ypxfr_misc.c 1.9 +4 -6 src/libexec/ypxfr/ypxfrd_getmap.c 1.19 +13 -23 src/usr.bin/chpass/pw_yp.c 1.7 +1 -3 src/usr.sbin/rpc.yppasswdd/pw_copy.c 1.10 +5 -8 src/usr.sbin/rpc.yppasswdd/pw_util.c 1.20 +7 -8 src/usr.sbin/rpc.yppasswdd/yppasswdd_main.c 1.23 +21 -23 src/usr.sbin/rpc.yppasswdd/yppasswdd_server.c 1.7 +11 -43 src/usr.sbin/rpc.ypupdated/update.c 1.5 +2 -3 src/usr.sbin/rpc.ypupdated/yp_dbdelete.c 1.6 +5 -11 src/usr.sbin/rpc.ypupdated/yp_dbupdate.c 1.8 +8 -9 src/usr.sbin/rpc.ypupdated/ypupdated_main.c 1.6 +10 -14 src/usr.sbin/rpc.ypupdated/ypupdated_server.c 1.12 +7 -9 src/usr.sbin/rpc.ypxfrd/ypxfrd_main.c 1.14 +8 -9 src/usr.sbin/yp_mkdb/yp_mkdb.c 1.12 +4 -10 src/usr.sbin/ypbind/yp_ping.c 1.37 +19 -40 src/usr.sbin/ypbind/ypbind.c 1.10 +2 -3 src/usr.sbin/yppoll/yppoll.c 1.15 +21 -29 src/usr.sbin/yppush/yppush_main.c 1.20 +10 -11 src/usr.sbin/ypserv/yp_access.c 1.22 +41 -62 src/usr.sbin/ypserv/yp_dblookup.c 1.22 +21 -22 src/usr.sbin/ypserv/yp_dnslookup.c 1.9 +5 -23 src/usr.sbin/ypserv/yp_error.c 1.25 +8 -8 src/usr.sbin/ypserv/yp_main.c 1.35 +8 -11 src/usr.sbin/ypserv/yp_server.c 1.7 +3 -6 src/usr.sbin/ypserv/yp_svc_udp.c 1.10 +3 -6 src/usr.sbin/ypset/ypset.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 7:29:21 2002 Delivered-To: cvs-all@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 5263637B404; Wed, 6 Feb 2002 07:29:00 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g16FSYB15168; Wed, 6 Feb 2002 17:28:34 +0200 (EET) (envelope-from ru) Date: Wed, 6 Feb 2002 17:28:34 +0200 From: Ruslan Ermilov To: "Jacques A. Vidrine" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/bind FREEBSD-Xlist Message-ID: <20020206172834.A14949@sunbay.com> References: <200202042128.g14LSjq96253@freefall.freebsd.org> <20020206153308.A96758@sunbay.com> <20020206144913.GC65827@madman.nectar.cc> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020206144913.GC65827@madman.nectar.cc> User-Agent: Mutt/1.3.23i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Feb 06, 2002 at 08:49:13AM -0600, Jacques A. Vidrine wrote: > On Wed, Feb 06, 2002 at 03:33:08PM +0200, Ruslan Ermilov wrote: > > On Mon, Feb 04, 2002 at 01:28:45PM -0800, Jacques Vidrine wrote: > > > nectar 2002/02/04 13:28:45 PST > > > > > > Added files: > > > contrib/bind FREEBSD-Xlist > > > Log: > > > Give the next BIND-importing schmuck some assistance. > > > > > > Revision Changes Path > > > 1.1 +37 -0 src/contrib/bind/FREEBSD-Xlist (new) > > > > > Does it mean you're willing to maintain BIND from now on? > > s/from now on/for now/ > > I don't mind being the schmuck for a while. Someone has to. > OK, then would you please mind looking at http://people.FreeBSD.org/~ru/patches/mdoc/contrib_bind.patch submit it to BIND people, and if they commit it, import updated manpages on a vendor branch? Thanks, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 7:33: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by hub.freebsd.org (Postfix) with ESMTP id 91A3E37B41F; Wed, 6 Feb 2002 07:32:58 -0800 (PST) Received: from madman.nectar.cc (madman.nectar.cc [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id 2847E47; Wed, 6 Feb 2002 09:32:58 -0600 (CST) Received: (from nectar@localhost) by madman.nectar.cc (8.11.6/8.11.6) id g16FWwh66225; Wed, 6 Feb 2002 09:32:58 -0600 (CST) (envelope-from nectar) Date: Wed, 6 Feb 2002 09:32:58 -0600 From: "Jacques A. Vidrine" To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/bind FREEBSD-Xlist Message-ID: <20020206153257.GE66083@madman.nectar.cc> Mail-Followup-To: "Jacques A. Vidrine" , Ruslan Ermilov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200202042128.g14LSjq96253@freefall.freebsd.org> <20020206153308.A96758@sunbay.com> <20020206144913.GC65827@madman.nectar.cc> <20020206172834.A14949@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020206172834.A14949@sunbay.com> User-Agent: Mutt/1.3.27i X-Url: http://www.nectar.cc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Feb 06, 2002 at 05:28:34PM +0200, Ruslan Ermilov wrote: > OK, then would you please mind looking at > > http://people.FreeBSD.org/~ru/patches/mdoc/contrib_bind.patch > > submit it to BIND people, and if they commit it, import updated > manpages on a vendor branch? Man, I walked right into that one, didn't I? ^ | +-- pun intended -- Jacques A. Vidrine http://www.nectar.cc/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 8:36:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B189C37B6EB; Wed, 6 Feb 2002 08:14:07 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16GD4W50397; Wed, 6 Feb 2002 08:13:04 -0800 (PST) (envelope-from alfred) Message-Id: <200202061613.g16GD4W50397@freefall.freebsd.org> From: Alfred Perlstein Date: Wed, 6 Feb 2002 08:13:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/librpcsvc Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/02/06 08:13:04 PST Modified files: lib/librpcsvc Makefile Log: remove -M from RPCCOM, it slipped in with the tirpc upgrade. Submitted by: mbr Revision Changes Path 1.15 +2 -2 src/lib/librpcsvc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 8:53:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AC81B37BB0A; Wed, 6 Feb 2002 08:26:41 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16GQfA56893; Wed, 6 Feb 2002 08:26:41 -0800 (PST) (envelope-from bmah) Message-Id: <200202061626.g16GQfA56893@freefall.freebsd.org> From: "Bruce A. Mah" Date: Wed, 6 Feb 2002 08:26:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/share/mk doc.images.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/06 08:26:41 PST Modified files: share/mk doc.images.mk Log: Teach the doc tree how to convert PIC diagrams to PDF files in a OBJDIR-friendly way. Revision Changes Path 1.16 +5 -3 doc/share/mk/doc.images.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 8:54:42 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4FC1E37BDCF; Wed, 6 Feb 2002 08:32:06 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16GUfW59941; Wed, 6 Feb 2002 08:30:41 -0800 (PST) (envelope-from sobomax) Message-Id: <200202061630.g16GUfW59941@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 6 Feb 2002 08:30:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/galeon Makefile distinfo ports/www/galeon/files patch-configure X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/06 08:30:37 PST Modified files: www/galeon Makefile distinfo www/galeon/files patch-configure Log: Update to 1.0.3. PR: 34653 Submitted by: Joe Marcus Clarke Revision Changes Path 1.57 +1 -1 ports/www/galeon/Makefile 1.35 +1 -1 ports/www/galeon/distinfo 1.6 +24 -24 ports/www/galeon/files/patch-configure To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 8:56:41 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A59E737C383; Wed, 6 Feb 2002 08:51:09 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16Gp9n67139; Wed, 6 Feb 2002 08:51:09 -0800 (PST) (envelope-from imp) Message-Id: <200202061651.g16Gp9n67139@freefall.freebsd.org> From: Warner Losh Date: Wed, 6 Feb 2002 08:51:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/makekey makekey.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/06 08:51:09 PST Modified files: libexec/makekey makekey.c Log: o Remove __P o Use proper prototypes o remove register Revision Changes Path 1.9 +4 -6 src/libexec/makekey/makekey.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 8:57: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 81D8337B43F; Wed, 6 Feb 2002 08:31:15 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16GTf258110; Wed, 6 Feb 2002 08:29:41 -0800 (PST) (envelope-from sobomax) Message-Id: <200202061629.g16GTf258110@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 6 Feb 2002 08:29:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/gnomoku Makefile distinfo pkg-plist ports/games/gnomoku/files patch-fdstream.cc patch-fdstream.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/06 08:29:39 PST Modified files: games/gnomoku Makefile distinfo pkg-plist Added files: games/gnomoku/files patch-fdstream.cc patch-fdstream.h Log: Update to 1.4. Revision Changes Path 1.2 +1 -1 ports/games/gnomoku/Makefile 1.2 +1 -1 ports/games/gnomoku/distinfo 1.1 +60 -0 ports/games/gnomoku/files/patch-fdstream.cc (new) 1.1 +14 -0 ports/games/gnomoku/files/patch-fdstream.h (new) 1.2 +5 -2 ports/games/gnomoku/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 8:59:46 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AED237C042; Wed, 6 Feb 2002 08:38:57 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16Gcjw64138; Wed, 6 Feb 2002 08:38:45 -0800 (PST) (envelope-from imp) Message-Id: <200202061638.g16Gcjw64138@freefall.freebsd.org> From: Warner Losh Date: Wed, 6 Feb 2002 08:38:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/getNAME getNAME.c src/libexec/getty chat.c extern.h main.c subr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/06 08:38:40 PST Modified files: libexec/getNAME getNAME.c libexec/getty chat.c extern.h main.c subr.c Log: o __P removal o remove register o use strict prototypes Revision Changes Path 1.8 +17 -24 src/libexec/getNAME/getNAME.c 1.7 +19 -32 src/libexec/getty/chat.c 1.8 +15 -15 src/libexec/getty/extern.h 1.34 +33 -48 src/libexec/getty/main.c 1.18 +36 -45 src/libexec/getty/subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9: 3:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E6C3F37C214; Wed, 6 Feb 2002 08:47:09 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16Gl9666537; Wed, 6 Feb 2002 08:47:09 -0800 (PST) (envelope-from imp) Message-Id: <200202061647.g16Gl9666537@freefall.freebsd.org> From: Warner Losh Date: Wed, 6 Feb 2002 08:47:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/getty main.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/06 08:47:06 PST Modified files: libexec/getty main.c Log: Remove some unused variables, mark unused parameters as unused and change names of variables that shadow globally declared variables. This should help people doing later WARNS= fixes. Revision Changes Path 1.35 +12 -13 src/libexec/getty/main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9: 5:23 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B4C0637BEF3; Wed, 6 Feb 2002 08:34:38 -0800 (PST) Received: (from nectar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16GXAM63121; Wed, 6 Feb 2002 08:33:10 -0800 (PST) (envelope-from nectar) Message-Id: <200202061633.g16GXAM63121@freefall.freebsd.org> From: Jacques Vidrine Date: Wed, 6 Feb 2002 08:33:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/bind .cvsignore LICENSE_RSA src/contrib/bind/OLD/BSD Makefile Makefile.inc Makefile.maninc README src/contrib/bind/OLD/BSD/Diffs lib-libc-net src/contrib/bind/OLD/BSD/dig Makefile src/contrib/bind/OLD/BSD/named ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2002/02/06 08:33:10 PST Removed files: contrib/bind .cvsignore LICENSE_RSA contrib/bind/OLD/BSD Makefile Makefile.inc Makefile.maninc README contrib/bind/OLD/BSD/Diffs lib-libc-net contrib/bind/OLD/BSD/dig Makefile contrib/bind/OLD/BSD/named Makefile contrib/bind/OLD/BSD/named-xfer Makefile contrib/bind/OLD/BSD/named.reload Makefile contrib/bind/OLD/BSD/named.restart Makefile contrib/bind/OLD/BSD/ndc Makefile contrib/bind/OLD/BSD/nslookup Makefile contrib/bind/OLD/bin bsdinstall.sh manroff mkdep contrib/bind/bin/addr .cvsignore contrib/bind/bin/dig .cvsignore contrib/bind/bin/dnskeygen .cvsignore contrib/bind/bin/dnsquery .cvsignore contrib/bind/bin/host .cvsignore contrib/bind/bin/irpd .cvsignore contrib/bind/bin/named .cvsignore contrib/bind/bin/named-bootconf .cvsignore contrib/bind/bin/named-xfer .cvsignore contrib/bind/bin/ndc .cvsignore contrib/bind/bin/nslookup .cvsignore contrib/bind/bin/nsupdate .cvsignore contrib/bind/conf README contrib/bind/conf/recursive keep-running named-res1.conf named.conf.rfc1918-stubs root.cache contrib/bind/conf/recursive/pri 127.0.0 localhost contrib/bind/conf/workstation named.conf root.cache contrib/bind/conf/workstation/pri 127.0.0 localhost contrib/bind/conf/workstation/stub README contrib/bind/lib .cvsignore contrib/bind/lib/bsd .cvsignore Makefile daemon.c ftruncate.c gettimeofday.c mktemp.c putenv.c readv.c setenv.c setitimer.c strcasecmp.c strdup.c strerror.c strpbrk.c strsep.c strtoul.c utimes.c writev.c contrib/bind/lib/cylink .cvsignore Makefile bits.c bn.c bn.h bn00.c bn16.c bn16.h bn32.c bn32.h bn68000.c bn8086.c bninit16.c bninit32.c bnsize00.h c_asm.h cencrint.h ctk_endian.h ctk_prime.c cylink.h dss.c dssnum.h kludge.h lbn.h lbn00.c lbn16.c lbn16.h lbn32.c lbn32.h lbn68000.c lbn68000.h lbn68020.c lbn68020.h lbn80386.h lbn8086.h lbnmem.c lbnmem.h lbnppc.c lbnppc.h legal.c legal.h math.c ppcasm.h rand.c sha.c sha.h sizetest.c swap.c toolkit.h contrib/bind/lib/dnssafe .cvsignore Makefile ahcbcpad.c ahcbcpad.h ahchdig.c ahchdig.h ahchencr.c ahchencr.h ahchgen.c ahchgen.h ahchrand.c ahchrand.h ahdigest.c ahdigest.h ahencryp.c ahencryp.h ahgen.c ahgen.h ahrandom.c ahrandom.h ahrsaenc.c ahrsaenc.h ahrsaepr.c ahrsaepr.h ahrsaepu.c ahrsaepu.h aichdig.c aichdig.h aichenc8.c aichenc8.h aichencn.c aichencn.h aichencr.c aichencr.h aichgen.c aichgen.h aichrand.c aichrand.h aimd5.c aimd5ran.c ainfotyp.c ainfotyp.h ainull.c ainull.h airsaepr.c airsaepu.c airsakgn.c airsaprv.c airsapub.c algae.h algchoic.c algchoic.h algobj.c algobj.h amcrte.c amdigest.h amencdec.h amgen.h ammd5.c ammd5r.c amrandom.h amrkg.c amrsae.c atypes.h balg.c balg.h balgmeth.h bgclrbit.c bgmdmpyx.c bgmdsqx.c bgmodexp.c bgpegcd.c big2exp.c bigabs.c bigacc.c bigarith.c bigcmp.c bigconst.c biginv.c biglen.c bigmath.h bigmaxes.h bigmodx.c bigmpy.c bigpdiv.c bigpmpy.c bigpmpyh.c bigpmpyl.c bigpsq.c bigqrx.c bigsmod.c bigtocan.c bigu.c bigunexp.c binfocsh.c binfocsh.h bkey.c bkey.h bmempool.c bmempool.h bsafe2.h btypechk.h cantobig.c crt2.c crt2.h digest.c digrand.c digrand.h encrypt.c generate.c global.h intbits.c intitem.c intitem.h keyobj.c keyobj.h ki8byte.c ki8byte.h kifulprv.c kifulprv.h kiitem.c kiitem.h kinfotyp.c kinfotyp.h kipkcrpr.c kipkcrpr.h kirsacrt.c kirsapub.c kirsapub.h md5.c md5.h md5rand.c md5rand.h prime.c prime.h random.c rsa.c rsa.h rsakeygn.c rsakeygn.h seccbcd.c seccbce.c secrcbc.h surrendr.c surrendr.h contrib/bind/lib/dst .cvsignore contrib/bind/lib/inet .cvsignore contrib/bind/lib/irs .cvsignore contrib/bind/lib/isc .cvsignore contrib/bind/lib/nameser .cvsignore contrib/bind/lib/resolv .cvsignore contrib/bind/port/aix32 Makefile Makefile.set README noop.c probe contrib/bind/port/aix32/bin mkdep contrib/bind/port/aix32/include Makefile paths.h port_after.h port_before.h prand_conf.h contrib/bind/port/aix32/include/sys Makefile bitypes.h cdefs.h contrib/bind/port/aix4 Makefile Makefile.set Makefile.set.aix Makefile.set.gcc noop.c probe contrib/bind/port/aix4/bin make_os_version mkdep contrib/bind/port/aix4/include Makefile paths.h port_after.h port_before.h prand_conf.h contrib/bind/port/aix4/include/sys Makefile bitypes.h cdefs.h contrib/bind/port/aux3 Makefile Makefile.set noop.c probe contrib/bind/port/aux3/bin mkdep contrib/bind/port/aux3/include Makefile paths.h port_after.h port_before.h prand_conf.h contrib/bind/port/aux3/include/sys Makefile bitypes.h cdefs.h contrib/bind/port/bsdos .cvsignore Makefile Makefile.set Makefile.set.bcc Makefile.set.gcc maybe_fix_includes noop.c probe contrib/bind/port/bsdos/include Makefile port_after.h port_before.h prand_conf.h contrib/bind/port/bsdos/include/sys .cvsignore Makefile bitypes.h contrib/bind/port/bsdos2 .cvsignore Makefile Makefile.set maybe_fix_includes noop.c probe contrib/bind/port/bsdos2/include Makefile port_after.h port_before.h prand_conf.h contrib/bind/port/bsdos2/include/sys .cvsignore Makefile bitypes.h contrib/bind/port/cygwin Makefile Makefile.set README probe contrib/bind/port/cygwin/bin mkdep contrib/bind/port/cygwin/include Makefile ansi_realloc.h assert.h nlist.h paths.h port_after.h port_before.h prand_conf.h contrib/bind/port/cygwin/include/asm socket.h contrib/bind/port/cygwin/include/net route.h contrib/bind/port/cygwin/include/sys Makefile bitypes.h cdefs.h mbuf.h socket.h un.h wait.h contrib/bind/port/darwin Makefile Makefile.set README noop.c probe contrib/bind/port/darwin/include Makefile port_after.h port_before.h prand_conf.h contrib/bind/port/darwin/include/sys Makefile bitypes.h contrib/bind/port/decunix .cvsignore Makefile Makefile.set noop.c probe contrib/bind/port/decunix/bin probe_ipv6 contrib/bind/port/decunix/include Makefile port_after.h port_before.h prand_conf.h contrib/bind/port/decunix/include/sys Makefile bitypes.h cdefs.h contrib/bind/port/hpux Makefile Makefile.set Makefile.set.gcc Makefile.set.hp noop.c probe contrib/bind/port/hpux/bin install mkdep probe_ipv6 contrib/bind/port/hpux/include Makefile paths.h port_after.h port_before.h prand_conf.h contrib/bind/port/hpux/include/sys Makefile bitypes.h cdefs.h contrib/bind/port/hpux10 Makefile Makefile.set Makefile.set.gcc Makefile.set.hp noop.c probe contrib/bind/port/hpux10/bin install mkdep contrib/bind/port/hpux10/include Makefile paths.h port_after.h port_before.h prand_conf.h contrib/bind/port/hpux10/include/sys Makefile bitypes.h cdefs.h contrib/bind/port/hpux9 Makefile Makefile.set README noop.c probe contrib/bind/port/hpux9/bin install mkdep contrib/bind/port/hpux9/include Makefile paths.h port_after.h port_before.h prand_conf.h contrib/bind/port/hpux9/include/sys Makefile bitypes.h cdefs.h contrib/bind/port/irix Makefile Makefile.set README irix_patch noop.c probe contrib/bind/port/irix/bin mkdep probe_ipv6 contrib/bind/port/irix/include Makefile paths.h port_after.h port_before.h prand_conf.h contrib/bind/port/irix/include/sys Makefile bitypes.h cdefs.h contrib/bind/port/linux Makefile Makefile.set noop.c probe contrib/bind/port/linux/bin mkdep probe_ipv6 contrib/bind/port/linux/include .cvsignore Makefile nlist.h port_after.h port_before.h prand_conf.h contrib/bind/port/linux/include/net Makefile route.h contrib/bind/port/linux/include/sys Makefile mbuf.h contrib/bind/port/lynxos Makefile Makefile.set README ansi_realloc.c probe contrib/bind/port/lynxos/bin mkdep probe_ipv6 contrib/bind/port/lynxos/include Makefile ansi_realloc.h paths.h port_after.h port_before.h contrib/bind/port/lynxos/include/sys Makefile bitypes.h cdefs.h contrib/bind/port/mpe Makefile Makefile.set README bind.c endgrent.c endpwent.c fchown.c fcntl.c fsync.c ftruncate.c getline.c getpass.c initgroups.c longpointer.c longpointer.h nice.c probe recvfrom.c setgid.c setuid.c contrib/bind/port/mpe/bin copy install mkdep probe_ipv6 contrib/bind/port/mpe/include Makefile nlist.h paths.h port_after.h port_before.h prand_conf.h syslog.h utmp.h contrib/bind/port/mpe/include/net route.h contrib/bind/port/mpe/include/sys Makefile bitypes.h cdefs.h file.h mbuf.h param.h time.h contrib/bind/port/netbsd Makefile Makefile.set noop.c probe contrib/bind/port/netbsd/bin probe_ipv6 contrib/bind/port/netbsd/include Makefile port_after.h port_before.h prand_conf.h contrib/bind/port/netbsd/include/sys Makefile bitypes.h contrib/bind/port/next Makefile Makefile.set README.FIRST dirname maybe_fix_includes posix-compat.c probe contrib/bind/port/next/bin mkdep contrib/bind/port/next/include Makefile paths.h port_after.h port_before.h prand_conf.h contrib/bind/port/next/include/sys Makefile bitypes.h cdefs.h contrib/bind/port/openbsd Makefile Makefile.set noop.c probe contrib/bind/port/openbsd/bin probe_ipv6 contrib/bind/port/openbsd/include Makefile port_after.h port_before.h prand_conf.h contrib/bind/port/openbsd/include/sys Makefile bitypes.h contrib/bind/port/qnx Makefile Makefile.set README noop.c probe contrib/bind/port/qnx/bin probe_ipv6 contrib/bind/port/qnx/include Makefile db.h nlist.h paths.h port_after.h port_before.h contrib/bind/port/qnx/include/sys Makefile bitypes.h cdefs.h ioctl.h mbuf.h resource.h contrib/bind/port/rhapsody Makefile Makefile.set README noop.c probe contrib/bind/port/rhapsody/bin mkdep probe_ipv6 contrib/bind/port/rhapsody/include Makefile port_after.h port_before.h prand_conf.h contrib/bind/port/rhapsody/include/sys Makefile bitypes.h contrib/bind/port/sco42 INSTALL Makefile Makefile.set README ansi_realloc.c probe sco_gettime.c contrib/bind/port/sco42/bin mkdep contrib/bind/port/sco42/include Makefile ansi_realloc.h paths.h port_after.h port_before.h sco_gettime.h contrib/bind/port/sco42/include/sys Makefile bitypes.h cdefs.h mbuf.h un.h contrib/bind/port/sco42/tools files-to-backup fixincludes.sh libsocket8.sh percentp.sh contrib/bind/port/sco50 Makefile Makefile.set Makefile.set.gcc Makefile.set.sco README files-to-backup getrusage.c probe contrib/bind/port/sco50/bin install mkdep probe_ipv6 contrib/bind/port/sco50/include Makefile paths.h port_after.h port_before.h prand_conf.h resolv.h.diffs contrib/bind/port/sco50/include/sys Makefile mbuf.h contrib/bind/port/sco50/tools libbind.sh libsocket8.sh contrib/bind/port/solaris Makefile Makefile.set Makefile.set.gcc Makefile.set.sun noop.c probe contrib/bind/port/solaris/bin choose_bitypes make_os_version mkdep probe_ipv6 contrib/bind/port/solaris/include .cvsignore Makefile paths.h port_after.h port_before.h prand_conf.h contrib/bind/port/solaris/include/sys Makefile cdefs.h intNt_bitypes.h no_intNt_bitypes.h contrib/bind/port/sunos Makefile Makefile.set ansi_realloc.c memmove.c probe contrib/bind/port/sunos/bin mkdep contrib/bind/port/sunos/include Makefile ansi_realloc.h assert.h paths.h port_after.h port_before.h prand_conf.h contrib/bind/port/sunos/include/sys Makefile bitypes.h cdefs.h wait.h contrib/bind/port/ultrix Makefile Makefile.set isc_sprintf.c maybe_fix_includes probe contrib/bind/port/ultrix/bin mkdep contrib/bind/port/ultrix/include Makefile paths.h port_after.h port_before.h prand_conf.h contrib/bind/port/ultrix/include/rpc Makefile xdr.h contrib/bind/port/ultrix/include/sys Makefile bitypes.h cdefs.h socket.h syslog.h contrib/bind/port/unixware20 Makefile Makefile.set README noop.c probe contrib/bind/port/unixware20/bin mkdep contrib/bind/port/unixware20/include Makefile paths.h port_after.h port_before.h contrib/bind/port/unixware20/include/sys Makefile bitypes.h cdefs.h contrib/bind/port/unixware212 Makefile Makefile.set README noop.c probe contrib/bind/port/unixware212/bin mkdep contrib/bind/port/unixware212/include Makefile paths.h port_after.h port_before.h contrib/bind/port/unixware212/include/sys Makefile bitypes.h cdefs.h contrib/bind/port/unixware7 Makefile Makefile.set noop.c probe contrib/bind/port/unixware7/bin mkdep contrib/bind/port/unixware7/include Makefile paths.h port_after.h port_before.h prand_conf.h contrib/bind/port/winnt .cvsignore BIND8NT-src-changes.txt BINDBuild.dsw BINDTools.dsw README.TXT makeversion.pl named-bootconf.txt named.mak readme1st.txt readme1sttools.txt contrib/bind/port/winnt/BINDCmd BINDCmd.cpp BINDCmd.dsp BINDCmd.dsw BINDCmd.h BINDCmd.mak contrib/bind/port/winnt/BINDCtrl .cvsignore BINDCtrl.aps BINDCtrl.clw BINDCtrl.cpp BINDCtrl.dep BINDCtrl.dsp BINDCtrl.dsw BINDCtrl.h BINDCtrl.mak BINDCtrl.rc BINDCtrlDlg.cpp BINDCtrlDlg.h StdAfx.cpp StdAfx.h resource.h contrib/bind/port/winnt/BINDCtrl/res BINDCtrl.ico BINDCtrl.rc2 trffc10a.ico trffc10b.ico trffc10c.ico trffc13.ico contrib/bind/port/winnt/BINDInstall .cvsignore BINDInstall.aps BINDInstall.clw BINDInstall.cpp BINDInstall.dep BINDInstall.dsp BINDInstall.h BINDInstall.mak BINDInstall.rc BINDInstallDlg.cpp BINDInstallDlg.h DirBrowse.cpp DirBrowse.h StdAfx.cpp StdAfx.h VersionInfo.cpp VersionInfo.h resource.h contrib/bind/port/winnt/BINDInstall/res BINDInstall.ico BINDInstall.rc2 contrib/bind/port/winnt/bindevt .cvsignore MSG00409.bin bindevt.aps bindevt.c bindevt.dep bindevt.dsp bindevt.mak bindevt.mc bindevt.rc contrib/bind/port/winnt/dig dig.dsp dig.dsw dig.mak contrib/bind/port/winnt/dnskeygen dnskeygen.dsp dnskeygen.dsw contrib/bind/port/winnt/host host.dsp host.dsw host.mak contrib/bind/port/winnt/include .cvsignore BINDCmd.h bind_registry.h bind_service.h bindevt.h bindwsock.h bsafe_link.h config.h diff dirent.h externs.h fnpointer.h grp.h libc.h mapdefs.h nlist.h nt_fcntl.h nt_signal.h oids.h pathnames.h paths.h port_after.h port_before.h prand_conf.h pwd.h sgtty.h syslog.h unistd.h utime.h utmp.h contrib/bind/port/winnt/include/net if.h route.h contrib/bind/port/winnt/include/netinet in.h contrib/bind/port/winnt/include/sys Makefile bitypes.h cdefs.h file.h ioctl.h mbuf.h param.h socket.h sockio.h time.h uio.h un.h wait.h contrib/bind/port/winnt/libbind .cvsignore DLLMain.c dirent.c files.c getopt.c interface.c ioctl_if.c libbind.def libbind.dep libbind.dsp libbind.mak libbind.rc libbind.rct nameserver.c resource.h signal.c socket.c syslog.c unistd.c contrib/bind/port/winnt/named .cvsignore named.dep named.dsp named.dsw named.mak named.opt named.rc ns_ntmisc.c ns_ntservice.c ns_ntsignal.c ns_ntxfer.c resource.h contrib/bind/port/winnt/nslookup nslookup.dsp nslookup.dsw contrib/bind/port/winnt/nsupdate .cvsignore nsupdate.dep nsupdate.dsp nsupdate.dsw nsupdate.mak nsupdate.opt nsupdate.rc resource.h contrib/bind/port/winnt/xfer .cvsignore named-xfer.rc resource.h xfer.dep xfer.dsp xfer.mak Log: Remove files that shouldn't have been imported. These will be surgically removed from the repository. Approved by: markm (with a CVS Meister hat on) Revision Changes Path 1.2 +0 -2 src/contrib/bind/.cvsignore (dead) 1.2 +0 -43 src/contrib/bind/LICENSE_RSA (dead) 1.2 +0 -4673 src/contrib/bind/OLD/BSD/Diffs/lib-libc-net (dead) 1.2 +0 -5 src/contrib/bind/OLD/BSD/Makefile (dead) 1.2 +0 -26 src/contrib/bind/OLD/BSD/Makefile.inc (dead) 1.2 +0 -56 src/contrib/bind/OLD/BSD/Makefile.maninc (dead) 1.2 +0 -43 src/contrib/bind/OLD/BSD/README (dead) 1.2 +0 -13 src/contrib/bind/OLD/BSD/dig/Makefile (dead) 1.2 +0 -15 src/contrib/bind/OLD/BSD/named-xfer/Makefile (dead) 1.2 +0 -23 src/contrib/bind/OLD/BSD/named.reload/Makefile (dead) 1.2 +0 -23 src/contrib/bind/OLD/BSD/named.restart/Makefile (dead) 1.2 +0 -26 src/contrib/bind/OLD/BSD/named/Makefile (dead) 1.2 +0 -25 src/contrib/bind/OLD/BSD/ndc/Makefile (dead) 1.2 +0 -21 src/contrib/bind/OLD/BSD/nslookup/Makefile (dead) 1.2 +0 -251 src/contrib/bind/OLD/bin/bsdinstall.sh (dead) 1.2 +0 -5 src/contrib/bind/OLD/bin/manroff (dead) 1.2 +0 -132 src/contrib/bind/OLD/bin/mkdep (dead) 1.2 +0 -2 src/contrib/bind/bin/addr/.cvsignore (dead) 1.2 +0 -2 src/contrib/bind/bin/dig/.cvsignore (dead) 1.2 +0 -2 src/contrib/bind/bin/dnskeygen/.cvsignore (dead) 1.2 +0 -2 src/contrib/bind/bin/dnsquery/.cvsignore (dead) 1.2 +0 -2 src/contrib/bind/bin/host/.cvsignore (dead) 1.2 +0 -3 src/contrib/bind/bin/irpd/.cvsignore (dead) 1.2 +0 -1 src/contrib/bind/bin/named-bootconf/.cvsignore (dead) 1.2 +0 -2 src/contrib/bind/bin/named-xfer/.cvsignore (dead) 1.2 +0 -7 src/contrib/bind/bin/named/.cvsignore (dead) 1.2 +0 -3 src/contrib/bind/bin/ndc/.cvsignore (dead) 1.2 +0 -3 src/contrib/bind/bin/nslookup/.cvsignore (dead) 1.2 +0 -2 src/contrib/bind/bin/nsupdate/.cvsignore (dead) 1.2 +0 -25 src/contrib/bind/conf/README (dead) 1.2 +0 -11 src/contrib/bind/conf/recursive/keep-running (dead) 1.2 +0 -57 src/contrib/bind/conf/recursive/named-res1.conf (dead) 1.2 +0 -174 src/contrib/bind/conf/recursive/named.conf.rfc1918-stubs (dead) 1.2 +0 -12 src/contrib/bind/conf/recursive/pri/127.0.0 (dead) 1.2 +0 -12 src/contrib/bind/conf/recursive/pri/localhost (dead) 1.2 +0 -45 src/contrib/bind/conf/recursive/root.cache (dead) 1.2 +0 -36 src/contrib/bind/conf/workstation/named.conf (dead) 1.2 +0 -12 src/contrib/bind/conf/workstation/pri/127.0.0 (dead) 1.2 +0 -12 src/contrib/bind/conf/workstation/pri/localhost (dead) 1.2 +0 -45 src/contrib/bind/conf/workstation/root.cache (dead) 1.2 +0 -1 src/contrib/bind/conf/workstation/stub/README (dead) 1.2 +0 -2 src/contrib/bind/lib/.cvsignore (dead) 1.2 +0 -2 src/contrib/bind/lib/bsd/.cvsignore (dead) 1.2 +0 -93 src/contrib/bind/lib/bsd/Makefile (dead) 1.2 +0 -79 src/contrib/bind/lib/bsd/daemon.c (dead) 1.2 +0 -63 src/contrib/bind/lib/bsd/ftruncate.c (dead) 1.2 +0 -62 src/contrib/bind/lib/bsd/gettimeofday.c (dead) 1.2 +0 -154 src/contrib/bind/lib/bsd/mktemp.c (dead) 1.2 +0 -25 src/contrib/bind/lib/bsd/putenv.c (dead) 1.2 +0 -38 src/contrib/bind/lib/bsd/readv.c (dead) 1.2 +0 -149 src/contrib/bind/lib/bsd/setenv.c (dead) 1.2 +0 -27 src/contrib/bind/lib/bsd/setitimer.c (dead) 1.2 +0 -122 src/contrib/bind/lib/bsd/strcasecmp.c (dead) 1.2 +0 -18 src/contrib/bind/lib/bsd/strdup.c (dead) 1.2 +0 -90 src/contrib/bind/lib/bsd/strerror.c (dead) 1.2 +0 -68 src/contrib/bind/lib/bsd/strpbrk.c (dead) 1.2 +0 -86 src/contrib/bind/lib/bsd/strsep.c (dead) 1.2 +0 -117 src/contrib/bind/lib/bsd/strtoul.c (dead) 1.2 +0 -39 src/contrib/bind/lib/bsd/utimes.c (dead) 1.2 +0 -86 src/contrib/bind/lib/bsd/writev.c (dead) 1.2 +0 -2 src/contrib/bind/lib/cylink/.cvsignore (dead) 1.2 +0 -94 src/contrib/bind/lib/cylink/Makefile (dead) 1.2 +0 -359 src/contrib/bind/lib/cylink/bits.c (dead) 1.2 +0 -131 src/contrib/bind/lib/cylink/bn.c (dead) 1.2 +0 -221 src/contrib/bind/lib/cylink/bn.h (dead) 1.2 +0 -68 src/contrib/bind/lib/cylink/bn00.c (dead) 1.2 +0 -949 src/contrib/bind/lib/cylink/bn16.c (dead) 1.2 +0 -92 src/contrib/bind/lib/cylink/bn16.h (dead) 1.2 +0 -949 src/contrib/bind/lib/cylink/bn32.c (dead) 1.2 +0 -92 src/contrib/bind/lib/cylink/bn32.h (dead) 1.2 +0 -62 src/contrib/bind/lib/cylink/bn68000.c (dead) 1.2 +0 -62 src/contrib/bind/lib/cylink/bn8086.c (dead) 1.2 +0 -56 src/contrib/bind/lib/cylink/bninit16.c (dead) 1.2 +0 -56 src/contrib/bind/lib/cylink/bninit32.c (dead) 1.2 +0 -75 src/contrib/bind/lib/cylink/bnsize00.h (dead) 1.2 +0 -133 src/contrib/bind/lib/cylink/c_asm.h (dead) 1.2 +0 -255 src/contrib/bind/lib/cylink/cencrint.h (dead) 1.2 +0 -212 src/contrib/bind/lib/cylink/ctk_endian.h (dead) 1.2 +0 -435 src/contrib/bind/lib/cylink/ctk_prime.c (dead) 1.2 +0 -82 src/contrib/bind/lib/cylink/cylink.h (dead) 1.2 +0 -1202 src/contrib/bind/lib/cylink/dss.c (dead) 1.2 +0 -724 src/contrib/bind/lib/cylink/dssnum.h (dead) 1.2 +0 -158 src/contrib/bind/lib/cylink/kludge.h (dead) 1.2 +0 -186 src/contrib/bind/lib/cylink/lbn.h (dead) 1.2 +0 -65 src/contrib/bind/lib/cylink/lbn00.c (dead) 1.2 +0 -3644 src/contrib/bind/lib/cylink/lbn16.c (dead) 1.2 +0 -181 src/contrib/bind/lib/cylink/lbn16.h (dead) 1.2 +0 -3643 src/contrib/bind/lib/cylink/lbn32.c (dead) 1.2 +0 -181 src/contrib/bind/lib/cylink/lbn32.h (dead) 1.2 +0 -500 src/contrib/bind/lib/cylink/lbn68000.c (dead) 1.2 +0 -74 src/contrib/bind/lib/cylink/lbn68000.h (dead) 1.2 +0 -349 src/contrib/bind/lib/cylink/lbn68020.c (dead) 1.2 +0 -69 src/contrib/bind/lib/cylink/lbn68020.h (dead) 1.2 +0 -169 src/contrib/bind/lib/cylink/lbn80386.h (dead) 1.2 +0 -113 src/contrib/bind/lib/cylink/lbn8086.h (dead) 1.2 +0 -195 src/contrib/bind/lib/cylink/lbnmem.c (dead) 1.2 +0 -102 src/contrib/bind/lib/cylink/lbnmem.h (dead) 1.2 +0 -358 src/contrib/bind/lib/cylink/lbnppc.c (dead) 1.2 +0 -98 src/contrib/bind/lib/cylink/lbnppc.h (dead) 1.2 +0 -45 src/contrib/bind/lib/cylink/legal.c (dead) 1.2 +0 -47 src/contrib/bind/lib/cylink/legal.h (dead) 1.2 +0 -1151 src/contrib/bind/lib/cylink/math.c (dead) 1.2 +0 -575 src/contrib/bind/lib/cylink/ppcasm.h (dead) 1.2 +0 -333 src/contrib/bind/lib/cylink/rand.c (dead) 1.2 +0 -698 src/contrib/bind/lib/cylink/sha.c (dead) 1.2 +0 -148 src/contrib/bind/lib/cylink/sha.h (dead) 1.2 +0 -51 src/contrib/bind/lib/cylink/sizetest.c (dead) 1.2 +0 -211 src/contrib/bind/lib/cylink/swap.c (dead) 1.2 +0 -393 src/contrib/bind/lib/cylink/toolkit.h (dead) 1.2 +0 -2 src/contrib/bind/lib/dnssafe/.cvsignore (dead) 1.2 +0 -123 src/contrib/bind/lib/dnssafe/Makefile (dead) 1.2 +0 -176 src/contrib/bind/lib/dnssafe/ahcbcpad.c (dead) 1.2 +0 -37 src/contrib/bind/lib/dnssafe/ahcbcpad.h (dead) 1.2 +0 -132 src/contrib/bind/lib/dnssafe/ahchdig.c (dead) 1.2 +0 -32 src/contrib/bind/lib/dnssafe/ahchdig.h (dead) 1.2 +0 -268 src/contrib/bind/lib/dnssafe/ahchencr.c (dead) 1.2 +0 -74 src/contrib/bind/lib/dnssafe/ahchencr.h (dead) 1.2 +0 -218 src/contrib/bind/lib/dnssafe/ahchgen.c (dead) 1.2 +0 -44 src/contrib/bind/lib/dnssafe/ahchgen.h (dead) 1.2 +0 -130 src/contrib/bind/lib/dnssafe/ahchrand.c (dead) 1.2 +0 -31 src/contrib/bind/lib/dnssafe/ahchrand.h (dead) 1.2 +0 -93 src/contrib/bind/lib/dnssafe/ahdigest.c (dead) 1.2 +0 -48 src/contrib/bind/lib/dnssafe/ahdigest.h (dead) 1.2 +0 -171 src/contrib/bind/lib/dnssafe/ahencryp.c (dead) 1.2 +0 -85 src/contrib/bind/lib/dnssafe/ahencryp.h (dead) 1.2 +0 -92 src/contrib/bind/lib/dnssafe/ahgen.c (dead) 1.2 +0 -47 src/contrib/bind/lib/dnssafe/ahgen.h (dead) 1.2 +0 -99 src/contrib/bind/lib/dnssafe/ahrandom.c (dead) 1.2 +0 -47 src/contrib/bind/lib/dnssafe/ahrandom.h (dead) 1.2 +0 -244 src/contrib/bind/lib/dnssafe/ahrsaenc.c (dead) 1.2 +0 -68 src/contrib/bind/lib/dnssafe/ahrsaenc.h (dead) 1.2 +0 -101 src/contrib/bind/lib/dnssafe/ahrsaepr.c (dead) 1.2 +0 -20 src/contrib/bind/lib/dnssafe/ahrsaepr.h (dead) 1.2 +0 -114 src/contrib/bind/lib/dnssafe/ahrsaepu.c (dead) 1.2 +0 -20 src/contrib/bind/lib/dnssafe/ahrsaepu.h (dead) 1.2 +0 -38 src/contrib/bind/lib/dnssafe/aichdig.c (dead) 1.2 +0 -17 src/contrib/bind/lib/dnssafe/aichdig.h (dead) 1.2 +0 -35 src/contrib/bind/lib/dnssafe/aichenc8.c (dead) 1.2 +0 -19 src/contrib/bind/lib/dnssafe/aichenc8.h (dead) 1.2 +0 -19 src/contrib/bind/lib/dnssafe/aichencn.c (dead) 1.2 +0 -17 src/contrib/bind/lib/dnssafe/aichencn.h (dead) 1.2 +0 -33 src/contrib/bind/lib/dnssafe/aichencr.c (dead) 1.2 +0 -17 src/contrib/bind/lib/dnssafe/aichencr.h (dead) 1.2 +0 -33 src/contrib/bind/lib/dnssafe/aichgen.c (dead) 1.2 +0 -17 src/contrib/bind/lib/dnssafe/aichgen.h (dead) 1.2 +0 -38 src/contrib/bind/lib/dnssafe/aichrand.c (dead) 1.2 +0 -17 src/contrib/bind/lib/dnssafe/aichrand.h (dead) 1.2 +0 -27 src/contrib/bind/lib/dnssafe/aimd5.c (dead) 1.2 +0 -27 src/contrib/bind/lib/dnssafe/aimd5ran.c (dead) 1.2 +0 -32 src/contrib/bind/lib/dnssafe/ainfotyp.c (dead) 1.2 +0 -39 src/contrib/bind/lib/dnssafe/ainfotyp.h (dead) 1.2 +0 -28 src/contrib/bind/lib/dnssafe/ainull.c (dead) 1.2 +0 -10 src/contrib/bind/lib/dnssafe/ainull.h (dead) 1.2 +0 -47 src/contrib/bind/lib/dnssafe/airsaepr.c (dead) 1.2 +0 -47 src/contrib/bind/lib/dnssafe/airsaepu.c (dead) 1.2 +0 -62 src/contrib/bind/lib/dnssafe/airsakgn.c (dead) 1.2 +0 -27 src/contrib/bind/lib/dnssafe/airsaprv.c (dead) 1.2 +0 -27 src/contrib/bind/lib/dnssafe/airsapub.c (dead) 1.2 +0 -66 src/contrib/bind/lib/dnssafe/algae.h (dead) 1.2 +0 -169 src/contrib/bind/lib/dnssafe/algchoic.c (dead) 1.2 +0 -111 src/contrib/bind/lib/dnssafe/algchoic.h (dead) 1.2 +0 -123 src/contrib/bind/lib/dnssafe/algobj.c (dead) 1.2 +0 -19 src/contrib/bind/lib/dnssafe/algobj.h (dead) 1.2 +0 -119 src/contrib/bind/lib/dnssafe/amcrte.c (dead) 1.2 +0 -19 src/contrib/bind/lib/dnssafe/amdigest.h (dead) 1.2 +0 -21 src/contrib/bind/lib/dnssafe/amencdec.h (dead) 1.2 +0 -19 src/contrib/bind/lib/dnssafe/amgen.h (dead) 1.2 +0 -102 src/contrib/bind/lib/dnssafe/ammd5.c (dead) 1.2 +0 -79 src/contrib/bind/lib/dnssafe/ammd5r.c (dead) 1.2 +0 -17 src/contrib/bind/lib/dnssafe/amrandom.h (dead) 1.2 +0 -83 src/contrib/bind/lib/dnssafe/amrkg.c (dead) 1.2 +0 -117 src/contrib/bind/lib/dnssafe/amrsae.c (dead) 1.2 +0 -60 src/contrib/bind/lib/dnssafe/atypes.h (dead) 1.2 +0 -117 src/contrib/bind/lib/dnssafe/balg.c (dead) 1.2 +0 -116 src/contrib/bind/lib/dnssafe/balg.h (dead) 1.2 +0 -18 src/contrib/bind/lib/dnssafe/balgmeth.h (dead) 1.2 +0 -30 src/contrib/bind/lib/dnssafe/bgclrbit.c (dead) 1.2 +0 -28 src/contrib/bind/lib/dnssafe/bgmdmpyx.c (dead) 1.2 +0 -26 src/contrib/bind/lib/dnssafe/bgmdsqx.c (dead) 1.2 +0 -134 src/contrib/bind/lib/dnssafe/bgmodexp.c (dead) 1.2 +0 -80 src/contrib/bind/lib/dnssafe/bgpegcd.c (dead) 1.2 +0 -27 src/contrib/bind/lib/dnssafe/big2exp.c (dead) 1.2 +0 -24 src/contrib/bind/lib/dnssafe/bigabs.c (dead) 1.2 +0 -36 src/contrib/bind/lib/dnssafe/bigacc.c (dead) 1.2 +0 -140 src/contrib/bind/lib/dnssafe/bigarith.c (dead) 1.2 +0 -36 src/contrib/bind/lib/dnssafe/bigcmp.c (dead) 1.2 +0 -28 src/contrib/bind/lib/dnssafe/bigconst.c (dead) 1.2 +0 -105 src/contrib/bind/lib/dnssafe/biginv.c (dead) 1.2 +0 -30 src/contrib/bind/lib/dnssafe/biglen.c (dead) 1.2 +0 -71 src/contrib/bind/lib/dnssafe/bigmath.h (dead) 1.2 +0 -47 src/contrib/bind/lib/dnssafe/bigmaxes.h (dead) 1.2 +0 -27 src/contrib/bind/lib/dnssafe/bigmodx.c (dead) 1.2 +0 -38 src/contrib/bind/lib/dnssafe/bigmpy.c (dead) 1.2 +0 -161 src/contrib/bind/lib/dnssafe/bigpdiv.c (dead) 1.2 +0 -27 src/contrib/bind/lib/dnssafe/bigpmpy.c (dead) 1.2 +0 -32 src/contrib/bind/lib/dnssafe/bigpmpyh.c (dead) 1.2 +0 -32 src/contrib/bind/lib/dnssafe/bigpmpyl.c (dead) 1.2 +0 -44 src/contrib/bind/lib/dnssafe/bigpsq.c (dead) 1.2 +0 -87 src/contrib/bind/lib/dnssafe/bigqrx.c (dead) 1.2 +0 -30 src/contrib/bind/lib/dnssafe/bigsmod.c (dead) 1.2 +0 -62 src/contrib/bind/lib/dnssafe/bigtocan.c (dead) 1.2 +0 -23 src/contrib/bind/lib/dnssafe/bigu.c (dead) 1.2 +0 -100 src/contrib/bind/lib/dnssafe/bigunexp.c (dead) 1.2 +0 -65 src/contrib/bind/lib/dnssafe/binfocsh.c (dead) 1.2 +0 -33 src/contrib/bind/lib/dnssafe/binfocsh.h (dead) 1.2 +0 -103 src/contrib/bind/lib/dnssafe/bkey.c (dead) 1.2 +0 -32 src/contrib/bind/lib/dnssafe/bkey.h (dead) 1.2 +0 -273 src/contrib/bind/lib/dnssafe/bmempool.c (dead) 1.2 +0 -53 src/contrib/bind/lib/dnssafe/bmempool.h (dead) 1.2 +0 -194 src/contrib/bind/lib/dnssafe/bsafe2.h (dead) 1.2 +0 -25 src/contrib/bind/lib/dnssafe/btypechk.h (dead) 1.2 +0 -59 src/contrib/bind/lib/dnssafe/cantobig.c (dead) 1.2 +0 -230 src/contrib/bind/lib/dnssafe/crt2.c (dead) 1.2 +0 -50 src/contrib/bind/lib/dnssafe/crt2.h (dead) 1.2 +0 -69 src/contrib/bind/lib/dnssafe/digest.c (dead) 1.2 +0 -90 src/contrib/bind/lib/dnssafe/digrand.c (dead) 1.2 +0 -53 src/contrib/bind/lib/dnssafe/digrand.h (dead) 1.2 +0 -149 src/contrib/bind/lib/dnssafe/encrypt.c (dead) 1.2 +0 -80 src/contrib/bind/lib/dnssafe/generate.c (dead) 1.2 +0 -63 src/contrib/bind/lib/dnssafe/global.h (dead) 1.2 +0 -34 src/contrib/bind/lib/dnssafe/intbits.c (dead) 1.2 +0 -56 src/contrib/bind/lib/dnssafe/intitem.c (dead) 1.2 +0 -11 src/contrib/bind/lib/dnssafe/intitem.h (dead) 1.2 +0 -115 src/contrib/bind/lib/dnssafe/keyobj.c (dead) 1.2 +0 -16 src/contrib/bind/lib/dnssafe/keyobj.h (dead) 1.2 +0 -72 src/contrib/bind/lib/dnssafe/ki8byte.c (dead) 1.2 +0 -9 src/contrib/bind/lib/dnssafe/ki8byte.h (dead) 1.2 +0 -153 src/contrib/bind/lib/dnssafe/kifulprv.c (dead) 1.2 +0 -12 src/contrib/bind/lib/dnssafe/kifulprv.h (dead) 1.2 +0 -46 src/contrib/bind/lib/dnssafe/kiitem.c (dead) 1.2 +0 -9 src/contrib/bind/lib/dnssafe/kiitem.h (dead) 1.2 +0 -28 src/contrib/bind/lib/dnssafe/kinfotyp.c (dead) 1.2 +0 -57 src/contrib/bind/lib/dnssafe/kinfotyp.h (dead) 1.2 +0 -102 src/contrib/bind/lib/dnssafe/kipkcrpr.c (dead) 1.2 +0 -13 src/contrib/bind/lib/dnssafe/kipkcrpr.h (dead) 1.2 +0 -103 src/contrib/bind/lib/dnssafe/kirsacrt.c (dead) 1.2 +0 -82 src/contrib/bind/lib/dnssafe/kirsapub.c (dead) 1.2 +0 -13 src/contrib/bind/lib/dnssafe/kirsapub.h (dead) 1.2 +0 -283 src/contrib/bind/lib/dnssafe/md5.c (dead) 1.2 +0 -32 src/contrib/bind/lib/dnssafe/md5.h (dead) 1.2 +0 -71 src/contrib/bind/lib/dnssafe/md5rand.c (dead) 1.2 +0 -36 src/contrib/bind/lib/dnssafe/md5rand.h (dead) 1.2 +0 -166 src/contrib/bind/lib/dnssafe/prime.c (dead) 1.2 +0 -26 src/contrib/bind/lib/dnssafe/prime.h (dead) 1.2 +0 -60 src/contrib/bind/lib/dnssafe/random.c (dead) 1.2 +0 -211 src/contrib/bind/lib/dnssafe/rsa.c (dead) 1.2 +0 -44 src/contrib/bind/lib/dnssafe/rsa.h (dead) 1.2 +0 -244 src/contrib/bind/lib/dnssafe/rsakeygn.c (dead) 1.2 +0 -54 src/contrib/bind/lib/dnssafe/rsakeygn.h (dead) 1.2 +0 -148 src/contrib/bind/lib/dnssafe/seccbcd.c (dead) 1.2 +0 -99 src/contrib/bind/lib/dnssafe/seccbce.c (dead) 1.2 +0 -36 src/contrib/bind/lib/dnssafe/secrcbc.h (dead) 1.2 +0 -26 src/contrib/bind/lib/dnssafe/surrendr.c (dead) 1.2 +0 -22 src/contrib/bind/lib/dnssafe/surrendr.h (dead) 1.2 +0 -3 src/contrib/bind/lib/dst/.cvsignore (dead) 1.2 +0 -2 src/contrib/bind/lib/inet/.cvsignore (dead) 1.2 +0 -2 src/contrib/bind/lib/irs/.cvsignore (dead) 1.2 +0 -2 src/contrib/bind/lib/isc/.cvsignore (dead) 1.2 +0 -2 src/contrib/bind/lib/nameser/.cvsignore (dead) 1.2 +0 -3 src/contrib/bind/lib/resolv/.cvsignore (dead) 1.2 +0 -85 src/contrib/bind/port/aix32/Makefile (dead) 1.2 +0 -19 src/contrib/bind/port/aix32/Makefile.set (dead) 1.2 +0 -65 src/contrib/bind/port/aix32/README (dead) 1.2 +0 -5 src/contrib/bind/port/aix32/bin/mkdep (dead) 1.2 +0 -91 src/contrib/bind/port/aix32/include/Makefile (dead) 1.2 +0 -2 src/contrib/bind/port/aix32/include/paths.h (dead) 1.2 +0 -177 src/contrib/bind/port/aix32/include/port_after.h (dead) 1.2 +0 -18 src/contrib/bind/port/aix32/include/port_before.h (dead) 1.2 +0 -33 src/contrib/bind/port/aix32/include/prand_conf.h (dead) 1.2 +0 -77 src/contrib/bind/port/aix32/include/sys/Makefile (dead) 1.2 +0 -37 src/contrib/bind/port/aix32/include/sys/bitypes.h (dead) 1.2 +0 -144 src/contrib/bind/port/aix32/include/sys/cdefs.h (dead) 1.2 +0 -4 src/contrib/bind/port/aix32/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/aix32/probe (dead) 1.2 +0 -85 src/contrib/bind/port/aix4/Makefile (dead) 1.2 +0 -19 src/contrib/bind/port/aix4/Makefile.set (dead) 1.2 +0 -19 src/contrib/bind/port/aix4/Makefile.set.aix (dead) 1.2 +0 -19 src/contrib/bind/port/aix4/Makefile.set.gcc (dead) 1.2 +0 -31 src/contrib/bind/port/aix4/bin/make_os_version (dead) 1.2 +0 -5 src/contrib/bind/port/aix4/bin/mkdep (dead) 1.2 +0 -94 src/contrib/bind/port/aix4/include/Makefile (dead) 1.2 +0 -2 src/contrib/bind/port/aix4/include/paths.h (dead) 1.2 +0 -194 src/contrib/bind/port/aix4/include/port_after.h (dead) 1.2 +0 -23 src/contrib/bind/port/aix4/include/port_before.h (dead) 1.2 +0 -33 src/contrib/bind/port/aix4/include/prand_conf.h (dead) 1.2 +0 -77 src/contrib/bind/port/aix4/include/sys/Makefile (dead) 1.2 +0 -37 src/contrib/bind/port/aix4/include/sys/bitypes.h (dead) 1.2 +0 -147 src/contrib/bind/port/aix4/include/sys/cdefs.h (dead) 1.2 +0 -4 src/contrib/bind/port/aix4/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/aix4/probe (dead) 1.2 +0 -85 src/contrib/bind/port/aux3/Makefile (dead) 1.2 +0 -19 src/contrib/bind/port/aux3/Makefile.set (dead) 1.2 +0 -5 src/contrib/bind/port/aux3/bin/mkdep (dead) 1.2 +0 -91 src/contrib/bind/port/aux3/include/Makefile (dead) 1.2 +0 -2 src/contrib/bind/port/aux3/include/paths.h (dead) 1.2 +0 -192 src/contrib/bind/port/aux3/include/port_after.h (dead) 1.2 +0 -38 src/contrib/bind/port/aux3/include/port_before.h (dead) 1.2 +0 -29 src/contrib/bind/port/aux3/include/prand_conf.h (dead) 1.2 +0 -77 src/contrib/bind/port/aux3/include/sys/Makefile (dead) 1.2 +0 -90 src/contrib/bind/port/aux3/include/sys/bitypes.h (dead) 1.2 +0 -141 src/contrib/bind/port/aux3/include/sys/cdefs.h (dead) 1.2 +0 -4 src/contrib/bind/port/aux3/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/aux3/probe (dead) 1.2 +0 -1 src/contrib/bind/port/bsdos/.cvsignore (dead) 1.2 +0 -86 src/contrib/bind/port/bsdos/Makefile (dead) 1.2 +0 -18 src/contrib/bind/port/bsdos/Makefile.set (dead) 1.2 +0 -19 src/contrib/bind/port/bsdos/Makefile.set.bcc (dead) 1.2 +0 -18 src/contrib/bind/port/bsdos/Makefile.set.gcc (dead) 1.2 +0 -91 src/contrib/bind/port/bsdos/include/Makefile (dead) 1.2 +0 -178 src/contrib/bind/port/bsdos/include/port_after.h (dead) 1.2 +0 -105 src/contrib/bind/port/bsdos/include/port_before.h (dead) 1.2 +0 -36 src/contrib/bind/port/bsdos/include/prand_conf.h (dead) 1.2 +0 -2 src/contrib/bind/port/bsdos/include/sys/.cvsignore (dead) 1.2 +0 -92 src/contrib/bind/port/bsdos/include/sys/Makefile (dead) 1.2 +0 -38 src/contrib/bind/port/bsdos/include/sys/bitypes.h (dead) 1.2 +0 -13 src/contrib/bind/port/bsdos/maybe_fix_includes (dead) 1.2 +0 -4 src/contrib/bind/port/bsdos/noop.c (dead) 1.2 +0 -12 src/contrib/bind/port/bsdos/probe (dead) 1.2 +0 -1 src/contrib/bind/port/bsdos2/.cvsignore (dead) 1.2 +0 -86 src/contrib/bind/port/bsdos2/Makefile (dead) 1.2 +0 -18 src/contrib/bind/port/bsdos2/Makefile.set (dead) 1.2 +0 -91 src/contrib/bind/port/bsdos2/include/Makefile (dead) 1.2 +0 -174 src/contrib/bind/port/bsdos2/include/port_after.h (dead) 1.2 +0 -105 src/contrib/bind/port/bsdos2/include/port_before.h (dead) 1.2 +0 -36 src/contrib/bind/port/bsdos2/include/prand_conf.h (dead) 1.2 +0 -2 src/contrib/bind/port/bsdos2/include/sys/.cvsignore (dead) 1.2 +0 -92 src/contrib/bind/port/bsdos2/include/sys/Makefile (dead) 1.2 +0 -37 src/contrib/bind/port/bsdos2/include/sys/bitypes.h (dead) 1.2 +0 -13 src/contrib/bind/port/bsdos2/maybe_fix_includes (dead) 1.2 +0 -4 src/contrib/bind/port/bsdos2/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/bsdos2/probe (dead) 1.2 +0 -85 src/contrib/bind/port/cygwin/Makefile (dead) 1.2 +0 -20 src/contrib/bind/port/cygwin/Makefile.set (dead) 1.2 +0 -101 src/contrib/bind/port/cygwin/README (dead) 1.2 +0 -143 src/contrib/bind/port/cygwin/bin/mkdep (dead) 1.2 +0 -91 src/contrib/bind/port/cygwin/include/Makefile (dead) 1.2 +0 -22 src/contrib/bind/port/cygwin/include/ansi_realloc.h (dead) 1.2 +0 -12 src/contrib/bind/port/cygwin/include/asm/socket.h (dead) 1.2 +0 -2 src/contrib/bind/port/cygwin/include/assert.h (dead) 1.2 +0 -6 src/contrib/bind/port/cygwin/include/net/route.h (dead) 1.2 +0 -6 src/contrib/bind/port/cygwin/include/nlist.h (dead) 1.2 +0 -2 src/contrib/bind/port/cygwin/include/paths.h (dead) 1.2 +0 -192 src/contrib/bind/port/cygwin/include/port_after.h (dead) 1.2 +0 -46 src/contrib/bind/port/cygwin/include/port_before.h (dead) 1.2 +0 -38 src/contrib/bind/port/cygwin/include/prand_conf.h (dead) 1.2 +0 -77 src/contrib/bind/port/cygwin/include/sys/Makefile (dead) 1.2 +0 -37 src/contrib/bind/port/cygwin/include/sys/bitypes.h (dead) 1.2 +0 -144 src/contrib/bind/port/cygwin/include/sys/cdefs.h (dead) 1.2 +0 -6 src/contrib/bind/port/cygwin/include/sys/mbuf.h (dead) 1.2 +0 -10 src/contrib/bind/port/cygwin/include/sys/socket.h (dead) 1.2 +0 -0 src/contrib/bind/port/cygwin/include/sys/un.h (dead) 1.2 +0 -9 src/contrib/bind/port/cygwin/include/sys/wait.h (dead) 1.2 +0 -11 src/contrib/bind/port/cygwin/probe (dead) 1.2 +0 -90 src/contrib/bind/port/darwin/Makefile (dead) 1.2 +0 -19 src/contrib/bind/port/darwin/Makefile.set (dead) 1.2 +0 -2 src/contrib/bind/port/darwin/README (dead) 1.2 +0 -91 src/contrib/bind/port/darwin/include/Makefile (dead) 1.2 +0 -165 src/contrib/bind/port/darwin/include/port_after.h (dead) 1.2 +0 -15 src/contrib/bind/port/darwin/include/port_before.h (dead) 1.2 +0 -30 src/contrib/bind/port/darwin/include/prand_conf.h (dead) 1.2 +0 -76 src/contrib/bind/port/darwin/include/sys/Makefile (dead) 1.2 +0 -37 src/contrib/bind/port/darwin/include/sys/bitypes.h (dead) 1.2 +0 -12 src/contrib/bind/port/darwin/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/darwin/probe (dead) 1.2 +0 -1 src/contrib/bind/port/decunix/.cvsignore (dead) 1.2 +0 -85 src/contrib/bind/port/decunix/Makefile (dead) 1.2 +0 -20 src/contrib/bind/port/decunix/Makefile.set (dead) 1.2 +0 -55 src/contrib/bind/port/decunix/bin/probe_ipv6 (dead) 1.2 +0 -95 src/contrib/bind/port/decunix/include/Makefile (dead) 1.2 +0 -199 src/contrib/bind/port/decunix/include/port_after.h (dead) 1.2 +0 -112 src/contrib/bind/port/decunix/include/port_before.h (dead) 1.2 +0 -36 src/contrib/bind/port/decunix/include/prand_conf.h (dead) 1.2 +0 -77 src/contrib/bind/port/decunix/include/sys/Makefile (dead) 1.2 +0 -35 src/contrib/bind/port/decunix/include/sys/bitypes.h (dead) 1.2 +0 -6 src/contrib/bind/port/decunix/include/sys/cdefs.h (dead) 1.2 +0 -4 src/contrib/bind/port/decunix/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/decunix/probe (dead) 1.2 +0 -85 src/contrib/bind/port/hpux/Makefile (dead) 1.2 +0 -19 src/contrib/bind/port/hpux/Makefile.set (dead) 1.2 +0 -19 src/contrib/bind/port/hpux/Makefile.set.gcc (dead) 1.2 +0 -19 src/contrib/bind/port/hpux/Makefile.set.hp (dead) 1.2 +0 -251 src/contrib/bind/port/hpux/bin/install (dead) 1.2 +0 -5 src/contrib/bind/port/hpux/bin/mkdep (dead) 1.2 +0 -55 src/contrib/bind/port/hpux/bin/probe_ipv6 (dead) 1.2 +0 -95 src/contrib/bind/port/hpux/include/Makefile (dead) 1.2 +0 -2 src/contrib/bind/port/hpux/include/paths.h (dead) 1.2 +0 -192 src/contrib/bind/port/hpux/include/port_after.h (dead) 1.2 +0 -106 src/contrib/bind/port/hpux/include/port_before.h (dead) 1.2 +0 -33 src/contrib/bind/port/hpux/include/prand_conf.h (dead) 1.2 +0 -77 src/contrib/bind/port/hpux/include/sys/Makefile (dead) 1.2 +0 -27 src/contrib/bind/port/hpux/include/sys/bitypes.h (dead) 1.2 +0 -144 src/contrib/bind/port/hpux/include/sys/cdefs.h (dead) 1.2 +0 -4 src/contrib/bind/port/hpux/noop.c (dead) 1.2 +0 -12 src/contrib/bind/port/hpux/probe (dead) 1.2 +0 -85 src/contrib/bind/port/hpux10/Makefile (dead) 1.2 +0 -19 src/contrib/bind/port/hpux10/Makefile.set (dead) 1.2 +0 -19 src/contrib/bind/port/hpux10/Makefile.set.gcc (dead) 1.2 +0 -19 src/contrib/bind/port/hpux10/Makefile.set.hp (dead) 1.2 +0 -251 src/contrib/bind/port/hpux10/bin/install (dead) 1.2 +0 -5 src/contrib/bind/port/hpux10/bin/mkdep (dead) 1.2 +0 -91 src/contrib/bind/port/hpux10/include/Makefile (dead) 1.2 +0 -2 src/contrib/bind/port/hpux10/include/paths.h (dead) 1.2 +0 -190 src/contrib/bind/port/hpux10/include/port_after.h (dead) 1.2 +0 -109 src/contrib/bind/port/hpux10/include/port_before.h (dead) 1.2 +0 -33 src/contrib/bind/port/hpux10/include/prand_conf.h (dead) 1.2 +0 -77 src/contrib/bind/port/hpux10/include/sys/Makefile (dead) 1.2 +0 -36 src/contrib/bind/port/hpux10/include/sys/bitypes.h (dead) 1.2 +0 -144 src/contrib/bind/port/hpux10/include/sys/cdefs.h (dead) 1.2 +0 -4 src/contrib/bind/port/hpux10/noop.c (dead) 1.2 +0 -12 src/contrib/bind/port/hpux10/probe (dead) 1.2 +0 -85 src/contrib/bind/port/hpux9/Makefile (dead) 1.2 +0 -19 src/contrib/bind/port/hpux9/Makefile.set (dead) 1.2 +0 -4 src/contrib/bind/port/hpux9/README (dead) 1.2 +0 -251 src/contrib/bind/port/hpux9/bin/install (dead) 1.2 +0 -5 src/contrib/bind/port/hpux9/bin/mkdep (dead) 1.2 +0 -91 src/contrib/bind/port/hpux9/include/Makefile (dead) 1.2 +0 -2 src/contrib/bind/port/hpux9/include/paths.h (dead) 1.2 +0 -200 src/contrib/bind/port/hpux9/include/port_after.h (dead) 1.2 +0 -31 src/contrib/bind/port/hpux9/include/port_before.h (dead) 1.2 +0 -33 src/contrib/bind/port/hpux9/include/prand_conf.h (dead) 1.2 +0 -77 src/contrib/bind/port/hpux9/include/sys/Makefile (dead) 1.2 +0 -37 src/contrib/bind/port/hpux9/include/sys/bitypes.h (dead) 1.2 +0 -144 src/contrib/bind/port/hpux9/include/sys/cdefs.h (dead) 1.2 +0 -4 src/contrib/bind/port/hpux9/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/hpux9/probe (dead) 1.2 +0 -101 src/contrib/bind/port/irix/Makefile (dead) 1.2 +0 -19 src/contrib/bind/port/irix/Makefile.set (dead) 1.2 +0 -57 src/contrib/bind/port/irix/README (dead) 1.2 +0 -142 src/contrib/bind/port/irix/bin/mkdep (dead) 1.2 +0 -55 src/contrib/bind/port/irix/bin/probe_ipv6 (dead) 1.2 +0 -57 src/contrib/bind/port/irix/include/Makefile (dead) 1.2 +0 -2 src/contrib/bind/port/irix/include/paths.h (dead) 1.2 +0 -175 src/contrib/bind/port/irix/include/port_after.h (dead) 1.2 +0 -34 src/contrib/bind/port/irix/include/port_before.h (dead) 1.2 +0 -34 src/contrib/bind/port/irix/include/prand_conf.h (dead) 1.2 +0 -39 src/contrib/bind/port/irix/include/sys/Makefile (dead) 1.2 +0 -41 src/contrib/bind/port/irix/include/sys/bitypes.h (dead) 1.2 +0 -144 src/contrib/bind/port/irix/include/sys/cdefs.h (dead) 1.2 +0 -20 src/contrib/bind/port/irix/irix_patch (dead) 1.2 +0 -203 src/contrib/bind/port/irix/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/irix/probe (dead) 1.2 +0 -85 src/contrib/bind/port/linux/Makefile (dead) 1.2 +0 -19 src/contrib/bind/port/linux/Makefile.set (dead) 1.2 +0 -143 src/contrib/bind/port/linux/bin/mkdep (dead) 1.2 +0 -59 src/contrib/bind/port/linux/bin/probe_ipv6 (dead) 1.2 +0 -1 src/contrib/bind/port/linux/include/.cvsignore (dead) 1.2 +0 -96 src/contrib/bind/port/linux/include/Makefile (dead) 1.2 +0 -78 src/contrib/bind/port/linux/include/net/Makefile (dead) 1.2 +0 -3 src/contrib/bind/port/linux/include/net/route.h (dead) 1.2 +0 -3 src/contrib/bind/port/linux/include/nlist.h (dead) 1.2 +0 -190 src/contrib/bind/port/linux/include/port_after.h (dead) 1.2 +0 -20 src/contrib/bind/port/linux/include/port_before.h (dead) 1.2 +0 -48 src/contrib/bind/port/linux/include/prand_conf.h (dead) 1.2 +0 -77 src/contrib/bind/port/linux/include/sys/Makefile (dead) 1.2 +0 -3 src/contrib/bind/port/linux/include/sys/mbuf.h (dead) 1.2 +0 -4 src/contrib/bind/port/linux/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/linux/probe (dead) 1.2 +0 -85 src/contrib/bind/port/lynxos/Makefile (dead) 1.2 +0 -19 src/contrib/bind/port/lynxos/Makefile.set (dead) 1.2 +0 -2 src/contrib/bind/port/lynxos/README (dead) 1.2 +0 -31 src/contrib/bind/port/lynxos/ansi_realloc.c (dead) 1.2 +0 -143 src/contrib/bind/port/lynxos/bin/mkdep (dead) 1.2 +0 -55 src/contrib/bind/port/lynxos/bin/probe_ipv6 (dead) 1.2 +0 -95 src/contrib/bind/port/lynxos/include/Makefile (dead) 1.2 +0 -22 src/contrib/bind/port/lynxos/include/ansi_realloc.h (dead) 1.2 +0 -2 src/contrib/bind/port/lynxos/include/paths.h (dead) 1.2 +0 -211 src/contrib/bind/port/lynxos/include/port_after.h (dead) 1.2 +0 -21 src/contrib/bind/port/lynxos/include/port_before.h (dead) 1.2 +0 -77 src/contrib/bind/port/lynxos/include/sys/Makefile (dead) 1.2 +0 -39 src/contrib/bind/port/lynxos/include/sys/bitypes.h (dead) 1.2 +0 -146 src/contrib/bind/port/lynxos/include/sys/cdefs.h (dead) 1.2 +0 -11 src/contrib/bind/port/lynxos/probe (dead) 1.2 +0 -92 src/contrib/bind/port/mpe/Makefile (dead) 1.2 +0 -23 src/contrib/bind/port/mpe/Makefile.set (dead) 1.2 +0 -3 src/contrib/bind/port/mpe/README (dead) 1.2 +0 -3 src/contrib/bind/port/mpe/bin/copy (dead) 1.2 +0 -251 src/contrib/bind/port/mpe/bin/install (dead) 1.2 +0 -143 src/contrib/bind/port/mpe/bin/mkdep (dead) 1.2 +0 -55 src/contrib/bind/port/mpe/bin/probe_ipv6 (dead) 1.2 +0 -31 src/contrib/bind/port/mpe/bind.c (dead) 1.2 +0 -5 src/contrib/bind/port/mpe/endgrent.c (dead) 1.2 +0 -5 src/contrib/bind/port/mpe/endpwent.c (dead) 1.2 +0 -35 src/contrib/bind/port/mpe/fchown.c (dead) 1.2 +0 -23 src/contrib/bind/port/mpe/fcntl.c (dead) 1.2 +0 -27 src/contrib/bind/port/mpe/fsync.c (dead) 1.2 +0 -40 src/contrib/bind/port/mpe/ftruncate.c (dead) 1.2 +0 -147 src/contrib/bind/port/mpe/getline.c (dead) 1.2 +0 -99 src/contrib/bind/port/mpe/getpass.c (dead) 1.2 +0 -95 src/contrib/bind/port/mpe/include/Makefile (dead) 1.2 +0 -1 src/contrib/bind/port/mpe/include/net/route.h (dead) 1.2 +0 -1 src/contrib/bind/port/mpe/include/nlist.h (dead) 1.2 +0 -3 src/contrib/bind/port/mpe/include/paths.h (dead) 1.2 +0 -235 src/contrib/bind/port/mpe/include/port_after.h (dead) 1.2 +0 -55 src/contrib/bind/port/mpe/include/port_before.h (dead) 1.2 +0 -24 src/contrib/bind/port/mpe/include/prand_conf.h (dead) 1.2 +0 -77 src/contrib/bind/port/mpe/include/sys/Makefile (dead) 1.2 +0 -29 src/contrib/bind/port/mpe/include/sys/bitypes.h (dead) 1.2 +0 -144 src/contrib/bind/port/mpe/include/sys/cdefs.h (dead) 1.2 +0 -1 src/contrib/bind/port/mpe/include/sys/file.h (dead) 1.2 +0 -1 src/contrib/bind/port/mpe/include/sys/mbuf.h (dead) 1.2 +0 -4 src/contrib/bind/port/mpe/include/sys/param.h (dead) 1.2 +0 -1 src/contrib/bind/port/mpe/include/sys/time.h (dead) 1.2 +0 -1 src/contrib/bind/port/mpe/include/syslog.h (dead) 1.2 +0 -1 src/contrib/bind/port/mpe/include/utmp.h (dead) 1.2 +0 -7 src/contrib/bind/port/mpe/initgroups.c (dead) 1.2 +0 -169 src/contrib/bind/port/mpe/longpointer.c (dead) 1.2 +0 -18 src/contrib/bind/port/mpe/longpointer.h (dead) 1.2 +0 -5 src/contrib/bind/port/mpe/nice.c (dead) 1.2 +0 -14 src/contrib/bind/port/mpe/probe (dead) 1.2 +0 -43 src/contrib/bind/port/mpe/recvfrom.c (dead) 1.2 +0 -18 src/contrib/bind/port/mpe/setgid.c (dead) 1.2 +0 -31 src/contrib/bind/port/mpe/setuid.c (dead) 1.2 +0 -85 src/contrib/bind/port/netbsd/Makefile (dead) 1.2 +0 -18 src/contrib/bind/port/netbsd/Makefile.set (dead) 1.2 +0 -55 src/contrib/bind/port/netbsd/bin/probe_ipv6 (dead) 1.2 +0 -95 src/contrib/bind/port/netbsd/include/Makefile (dead) 1.2 +0 -177 src/contrib/bind/port/netbsd/include/port_after.h (dead) 1.2 +0 -20 src/contrib/bind/port/netbsd/include/port_before.h (dead) 1.2 +0 -44 src/contrib/bind/port/netbsd/include/prand_conf.h (dead) 1.2 +0 -77 src/contrib/bind/port/netbsd/include/sys/Makefile (dead) 1.2 +0 -37 src/contrib/bind/port/netbsd/include/sys/bitypes.h (dead) 1.2 +0 -4 src/contrib/bind/port/netbsd/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/netbsd/probe (dead) 1.2 +0 -98 src/contrib/bind/port/next/Makefile (dead) 1.2 +0 -20 src/contrib/bind/port/next/Makefile.set (dead) 1.2 +0 -20 src/contrib/bind/port/next/README.FIRST (dead) 1.2 +0 -5 src/contrib/bind/port/next/bin/mkdep (dead) 1.2 +0 -3 src/contrib/bind/port/next/dirname (dead) 1.2 +0 -91 src/contrib/bind/port/next/include/Makefile (dead) 1.2 +0 -1 src/contrib/bind/port/next/include/paths.h (dead) 1.2 +0 -190 src/contrib/bind/port/next/include/port_after.h (dead) 1.2 +0 -132 src/contrib/bind/port/next/include/port_before.h (dead) 1.2 +0 -37 src/contrib/bind/port/next/include/prand_conf.h (dead) 1.2 +0 -92 src/contrib/bind/port/next/include/sys/Makefile (dead) 1.2 +0 -40 src/contrib/bind/port/next/include/sys/bitypes.h (dead) 1.2 +0 -144 src/contrib/bind/port/next/include/sys/cdefs.h (dead) 1.2 +0 -0 src/contrib/bind/port/next/maybe_fix_includes (dead) 1.2 +0 -178 src/contrib/bind/port/next/posix-compat.c (dead) 1.2 +0 -10 src/contrib/bind/port/next/probe (dead) 1.2 +0 -85 src/contrib/bind/port/openbsd/Makefile (dead) 1.2 +0 -18 src/contrib/bind/port/openbsd/Makefile.set (dead) 1.2 +0 -55 src/contrib/bind/port/openbsd/bin/probe_ipv6 (dead) 1.2 +0 -95 src/contrib/bind/port/openbsd/include/Makefile (dead) 1.2 +0 -166 src/contrib/bind/port/openbsd/include/port_after.h (dead) 1.2 +0 -32 src/contrib/bind/port/openbsd/include/port_before.h (dead) 1.2 +0 -40 src/contrib/bind/port/openbsd/include/prand_conf.h (dead) 1.2 +0 -77 src/contrib/bind/port/openbsd/include/sys/Makefile (dead) 1.2 +0 -37 src/contrib/bind/port/openbsd/include/sys/bitypes.h (dead) 1.2 +0 -4 src/contrib/bind/port/openbsd/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/openbsd/probe (dead) 1.2 +0 -86 src/contrib/bind/port/qnx/Makefile (dead) 1.2 +0 -24 src/contrib/bind/port/qnx/Makefile.set (dead) 1.2 +0 -116 src/contrib/bind/port/qnx/README (dead) 1.2 +0 -55 src/contrib/bind/port/qnx/bin/probe_ipv6 (dead) 1.2 +0 -95 src/contrib/bind/port/qnx/include/Makefile (dead) 1.2 +0 -0 src/contrib/bind/port/qnx/include/db.h (dead) 1.2 +0 -0 src/contrib/bind/port/qnx/include/nlist.h (dead) 1.2 +0 -1 src/contrib/bind/port/qnx/include/paths.h (dead) 1.2 +0 -153 src/contrib/bind/port/qnx/include/port_after.h (dead) 1.2 +0 -30 src/contrib/bind/port/qnx/include/port_before.h (dead) 1.2 +0 -77 src/contrib/bind/port/qnx/include/sys/Makefile (dead) 1.2 +0 -37 src/contrib/bind/port/qnx/include/sys/bitypes.h (dead) 1.2 +0 -126 src/contrib/bind/port/qnx/include/sys/cdefs.h (dead) 1.2 +0 -0 src/contrib/bind/port/qnx/include/sys/ioctl.h (dead) 1.2 +0 -0 src/contrib/bind/port/qnx/include/sys/mbuf.h (dead) 1.2 +0 -0 src/contrib/bind/port/qnx/include/sys/resource.h (dead) 1.2 +0 -4 src/contrib/bind/port/qnx/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/qnx/probe (dead) 1.2 +0 -90 src/contrib/bind/port/rhapsody/Makefile (dead) 1.2 +0 -19 src/contrib/bind/port/rhapsody/Makefile.set (dead) 1.2 +0 -7 src/contrib/bind/port/rhapsody/README (dead) 1.2 +0 -143 src/contrib/bind/port/rhapsody/bin/mkdep (dead) 1.2 +0 -55 src/contrib/bind/port/rhapsody/bin/probe_ipv6 (dead) 1.2 +0 -95 src/contrib/bind/port/rhapsody/include/Makefile (dead) 1.2 +0 -165 src/contrib/bind/port/rhapsody/include/port_after.h (dead) 1.2 +0 -15 src/contrib/bind/port/rhapsody/include/port_before.h (dead) 1.2 +0 -30 src/contrib/bind/port/rhapsody/include/prand_conf.h (dead) 1.2 +0 -76 src/contrib/bind/port/rhapsody/include/sys/Makefile (dead) 1.2 +0 -37 src/contrib/bind/port/rhapsody/include/sys/bitypes.h (dead) 1.2 +0 -10 src/contrib/bind/port/rhapsody/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/rhapsody/probe (dead) 1.2 +0 -69 src/contrib/bind/port/sco42/INSTALL (dead) 1.2 +0 -85 src/contrib/bind/port/sco42/Makefile (dead) 1.2 +0 -22 src/contrib/bind/port/sco42/Makefile.set (dead) 1.2 +0 -32 src/contrib/bind/port/sco42/README (dead) 1.2 +0 -31 src/contrib/bind/port/sco42/ansi_realloc.c (dead) 1.2 +0 -143 src/contrib/bind/port/sco42/bin/mkdep (dead) 1.2 +0 -91 src/contrib/bind/port/sco42/include/Makefile (dead) 1.2 +0 -22 src/contrib/bind/port/sco42/include/ansi_realloc.h (dead) 1.2 +0 -2 src/contrib/bind/port/sco42/include/paths.h (dead) 1.2 +0 -193 src/contrib/bind/port/sco42/include/port_after.h (dead) 1.2 +0 -44 src/contrib/bind/port/sco42/include/port_before.h (dead) 1.2 +0 -22 src/contrib/bind/port/sco42/include/sco_gettime.h (dead) 1.2 +0 -77 src/contrib/bind/port/sco42/include/sys/Makefile (dead) 1.2 +0 -37 src/contrib/bind/port/sco42/include/sys/bitypes.h (dead) 1.2 +0 -144 src/contrib/bind/port/sco42/include/sys/cdefs.h (dead) 1.2 +0 -4 src/contrib/bind/port/sco42/include/sys/mbuf.h (dead) 1.2 +0 -23 src/contrib/bind/port/sco42/include/sys/un.h (dead) 1.2 +0 -13 src/contrib/bind/port/sco42/probe (dead) 1.2 +0 -28 src/contrib/bind/port/sco42/sco_gettime.c (dead) 1.2 +0 -24 src/contrib/bind/port/sco42/tools/files-to-backup (dead) 1.2 +0 -42 src/contrib/bind/port/sco42/tools/fixincludes.sh (dead) 1.2 +0 -87 src/contrib/bind/port/sco42/tools/libsocket8.sh (dead) 1.2 +0 -42 src/contrib/bind/port/sco42/tools/percentp.sh (dead) 1.2 +0 -91 src/contrib/bind/port/sco50/Makefile (dead) 1.2 +0 -25 src/contrib/bind/port/sco50/Makefile.set (dead) 1.2 +0 -22 src/contrib/bind/port/sco50/Makefile.set.gcc (dead) 1.2 +0 -25 src/contrib/bind/port/sco50/Makefile.set.sco (dead) 1.2 +0 -32 src/contrib/bind/port/sco50/README (dead) 1.2 +0 -251 src/contrib/bind/port/sco50/bin/install (dead) 1.2 +0 -143 src/contrib/bind/port/sco50/bin/mkdep (dead) 1.2 +0 -55 src/contrib/bind/port/sco50/bin/probe_ipv6 (dead) 1.2 +0 -24 src/contrib/bind/port/sco50/files-to-backup (dead) 1.2 +0 -60 src/contrib/bind/port/sco50/getrusage.c (dead) 1.2 +0 -105 src/contrib/bind/port/sco50/include/Makefile (dead) 1.2 +0 -1 src/contrib/bind/port/sco50/include/paths.h (dead) 1.2 +0 -181 src/contrib/bind/port/sco50/include/port_after.h (dead) 1.2 +0 -22 src/contrib/bind/port/sco50/include/port_before.h (dead) 1.2 +0 -31 src/contrib/bind/port/sco50/include/prand_conf.h (dead) 1.2 +0 -28 src/contrib/bind/port/sco50/include/resolv.h.diffs (dead) 1.2 +0 -77 src/contrib/bind/port/sco50/include/sys/Makefile (dead) 1.2 +0 -4 src/contrib/bind/port/sco50/include/sys/mbuf.h (dead) 1.2 +0 -18 src/contrib/bind/port/sco50/probe (dead) 1.2 +0 -80 src/contrib/bind/port/sco50/tools/libbind.sh (dead) 1.2 +0 -98 src/contrib/bind/port/sco50/tools/libsocket8.sh (dead) 1.2 +0 -85 src/contrib/bind/port/solaris/Makefile (dead) 1.2 +0 -20 src/contrib/bind/port/solaris/Makefile.set (dead) 1.2 +0 -20 src/contrib/bind/port/solaris/Makefile.set.gcc (dead) 1.2 +0 -20 src/contrib/bind/port/solaris/Makefile.set.sun (dead) 1.2 +0 -26 src/contrib/bind/port/solaris/bin/choose_bitypes (dead) 1.2 +0 -29 src/contrib/bind/port/solaris/bin/make_os_version (dead) 1.2 +0 -147 src/contrib/bind/port/solaris/bin/mkdep (dead) 1.2 +0 -55 src/contrib/bind/port/solaris/bin/probe_ipv6 (dead) 1.2 +0 -2 src/contrib/bind/port/solaris/include/.cvsignore (dead) 1.2 +0 -98 src/contrib/bind/port/solaris/include/Makefile (dead) 1.2 +0 -2 src/contrib/bind/port/solaris/include/paths.h (dead) 1.2 +0 -225 src/contrib/bind/port/solaris/include/port_after.h (dead) 1.2 +0 -114 src/contrib/bind/port/solaris/include/port_before.h (dead) 1.2 +0 -36 src/contrib/bind/port/solaris/include/prand_conf.h (dead) 1.2 +0 -83 src/contrib/bind/port/solaris/include/sys/Makefile (dead) 1.2 +0 -144 src/contrib/bind/port/solaris/include/sys/cdefs.h (dead) 1.2 +0 -33 src/contrib/bind/port/solaris/include/sys/intNt_bitypes.h (dead) 1.2 +0 -30 src/contrib/bind/port/solaris/include/sys/no_intNt_bitypes.h (dead) 1.2 +0 -4 src/contrib/bind/port/solaris/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/solaris/probe (dead) 1.2 +0 -85 src/contrib/bind/port/sunos/Makefile (dead) 1.2 +0 -19 src/contrib/bind/port/sunos/Makefile.set (dead) 1.2 +0 -31 src/contrib/bind/port/sunos/ansi_realloc.c (dead) 1.2 +0 -143 src/contrib/bind/port/sunos/bin/mkdep (dead) 1.2 +0 -91 src/contrib/bind/port/sunos/include/Makefile (dead) 1.2 +0 -22 src/contrib/bind/port/sunos/include/ansi_realloc.h (dead) 1.2 +0 -2 src/contrib/bind/port/sunos/include/assert.h (dead) 1.2 +0 -2 src/contrib/bind/port/sunos/include/paths.h (dead) 1.2 +0 -232 src/contrib/bind/port/sunos/include/port_after.h (dead) 1.2 +0 -32 src/contrib/bind/port/sunos/include/port_before.h (dead) 1.2 +0 -35 src/contrib/bind/port/sunos/include/prand_conf.h (dead) 1.2 +0 -77 src/contrib/bind/port/sunos/include/sys/Makefile (dead) 1.2 +0 -37 src/contrib/bind/port/sunos/include/sys/bitypes.h (dead) 1.2 +0 -144 src/contrib/bind/port/sunos/include/sys/cdefs.h (dead) 1.2 +0 -7 src/contrib/bind/port/sunos/include/sys/wait.h (dead) 1.2 +0 -10 src/contrib/bind/port/sunos/memmove.c (dead) 1.2 +0 -11 src/contrib/bind/port/sunos/probe (dead) 1.2 +0 -86 src/contrib/bind/port/ultrix/Makefile (dead) 1.2 +0 -19 src/contrib/bind/port/ultrix/Makefile.set (dead) 1.2 +0 -145 src/contrib/bind/port/ultrix/bin/mkdep (dead) 1.2 +0 -103 src/contrib/bind/port/ultrix/include/Makefile (dead) 1.2 +0 -2 src/contrib/bind/port/ultrix/include/paths.h (dead) 1.2 +0 -225 src/contrib/bind/port/ultrix/include/port_after.h (dead) 1.2 +0 -41 src/contrib/bind/port/ultrix/include/port_before.h (dead) 1.2 +0 -36 src/contrib/bind/port/ultrix/include/prand_conf.h (dead) 1.2 +0 -82 src/contrib/bind/port/ultrix/include/rpc/Makefile (dead) 1.2 +0 -4 src/contrib/bind/port/ultrix/include/rpc/xdr.h (dead) 1.2 +0 -77 src/contrib/bind/port/ultrix/include/sys/Makefile (dead) 1.2 +0 -37 src/contrib/bind/port/ultrix/include/sys/bitypes.h (dead) 1.2 +0 -3 src/contrib/bind/port/ultrix/include/sys/cdefs.h (dead) 1.2 +0 -4 src/contrib/bind/port/ultrix/include/sys/socket.h (dead) 1.2 +0 -4 src/contrib/bind/port/ultrix/include/sys/syslog.h (dead) 1.2 +0 -19 src/contrib/bind/port/ultrix/isc_sprintf.c (dead) 1.2 +0 -13 src/contrib/bind/port/ultrix/maybe_fix_includes (dead) 1.2 +0 -11 src/contrib/bind/port/ultrix/probe (dead) 1.2 +0 -85 src/contrib/bind/port/unixware20/Makefile (dead) 1.2 +0 -19 src/contrib/bind/port/unixware20/Makefile.set (dead) 1.2 +0 -22 src/contrib/bind/port/unixware20/README (dead) 1.2 +0 -143 src/contrib/bind/port/unixware20/bin/mkdep (dead) 1.2 +0 -91 src/contrib/bind/port/unixware20/include/Makefile (dead) 1.2 +0 -2 src/contrib/bind/port/unixware20/include/paths.h (dead) 1.2 +0 -181 src/contrib/bind/port/unixware20/include/port_after.h (dead) 1.2 +0 -26 src/contrib/bind/port/unixware20/include/port_before.h (dead) 1.2 +0 -77 src/contrib/bind/port/unixware20/include/sys/Makefile (dead) 1.2 +0 -37 src/contrib/bind/port/unixware20/include/sys/bitypes.h (dead) 1.2 +0 -144 src/contrib/bind/port/unixware20/include/sys/cdefs.h (dead) 1.2 +0 -4 src/contrib/bind/port/unixware20/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/unixware20/probe (dead) 1.2 +0 -85 src/contrib/bind/port/unixware212/Makefile (dead) 1.2 +0 -19 src/contrib/bind/port/unixware212/Makefile.set (dead) 1.2 +0 -2 src/contrib/bind/port/unixware212/README (dead) 1.2 +0 -143 src/contrib/bind/port/unixware212/bin/mkdep (dead) 1.2 +0 -91 src/contrib/bind/port/unixware212/include/Makefile (dead) 1.2 +0 -2 src/contrib/bind/port/unixware212/include/paths.h (dead) 1.2 +0 -183 src/contrib/bind/port/unixware212/include/port_after.h (dead) 1.2 +0 -28 src/contrib/bind/port/unixware212/include/port_before.h (dead) 1.2 +0 -77 src/contrib/bind/port/unixware212/include/sys/Makefile (dead) 1.2 +0 -37 src/contrib/bind/port/unixware212/include/sys/bitypes.h (dead) 1.2 +0 -144 src/contrib/bind/port/unixware212/include/sys/cdefs.h (dead) 1.2 +0 -4 src/contrib/bind/port/unixware212/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/unixware212/probe (dead) 1.2 +0 -85 src/contrib/bind/port/unixware7/Makefile (dead) 1.2 +0 -19 src/contrib/bind/port/unixware7/Makefile.set (dead) 1.2 +0 -143 src/contrib/bind/port/unixware7/bin/mkdep (dead) 1.2 +0 -84 src/contrib/bind/port/unixware7/include/Makefile (dead) 1.2 +0 -9 src/contrib/bind/port/unixware7/include/paths.h (dead) 1.2 +0 -62 src/contrib/bind/port/unixware7/include/port_after.h (dead) 1.2 +0 -17 src/contrib/bind/port/unixware7/include/port_before.h (dead) 1.2 +0 -31 src/contrib/bind/port/unixware7/include/prand_conf.h (dead) 1.2 +0 -4 src/contrib/bind/port/unixware7/noop.c (dead) 1.2 +0 -11 src/contrib/bind/port/unixware7/probe (dead) 1.2 +0 -1 src/contrib/bind/port/winnt/.cvsignore (dead) 1.2 +0 -35 src/contrib/bind/port/winnt/BIND8NT-src-changes.txt (dead) 1.2 +0 -182 src/contrib/bind/port/winnt/BINDBuild.dsw (dead) 1.2 +0 -309 src/contrib/bind/port/winnt/BINDCmd/BINDCmd.cpp (dead) 1.2 +0 -102 src/contrib/bind/port/winnt/BINDCmd/BINDCmd.dsp (dead) 1.2 +0 -29 src/contrib/bind/port/winnt/BINDCmd/BINDCmd.dsw (dead) 1.2 +0 -19 src/contrib/bind/port/winnt/BINDCmd/BINDCmd.h (dead) 1.2 +0 -199 src/contrib/bind/port/winnt/BINDCmd/BINDCmd.mak (dead) 1.2 +0 -5 src/contrib/bind/port/winnt/BINDCtrl/.cvsignore (dead) 1.2 +0 -23 src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.aps (dead) 1.2 +0 -82 src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.clw (dead) 1.2 +0 -72 src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.cpp (dead) 1.2 +0 -22 src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.dep (dead) 1.2 +0 -160 src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.dsp (dead) 1.2 +0 -29 src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.dsw (dead) 1.2 +0 -49 src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.h (dead) 1.2 +0 -228 src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.mak (dead) 1.2 +0 -188 src/contrib/bind/port/winnt/BINDCtrl/BINDCtrl.rc (dead) 1.2 +0 -561 src/contrib/bind/port/winnt/BINDCtrl/BINDCtrlDlg.cpp (dead) 1.2 +0 -89 src/contrib/bind/port/winnt/BINDCtrl/BINDCtrlDlg.h (dead) 1.2 +0 -8 src/contrib/bind/port/winnt/BINDCtrl/StdAfx.cpp (dead) 1.2 +0 -26 src/contrib/bind/port/winnt/BINDCtrl/StdAfx.h (dead) 1.2 +0 -1 src/contrib/bind/port/winnt/BINDCtrl/res/BINDCtrl.ico (dead) 1.2 +0 -13 src/contrib/bind/port/winnt/BINDCtrl/res/BINDCtrl.rc2 (dead) 1.2 +0 -1 src/contrib/bind/port/winnt/BINDCtrl/res/trffc10a.ico (dead) 1.2 +0 -1 src/contrib/bind/port/winnt/BINDCtrl/res/trffc10b.ico (dead) 1.2 +0 -1 src/contrib/bind/port/winnt/BINDCtrl/res/trffc10c.ico (dead) 1.2 +0 -1 src/contrib/bind/port/winnt/BINDCtrl/res/trffc13.ico (dead) 1.2 +0 -46 src/contrib/bind/port/winnt/BINDCtrl/resource.h (dead) 1.2 +0 -2 src/contrib/bind/port/winnt/BINDInstall/.cvsignore (dead) 1.2 +0 -44 src/contrib/bind/port/winnt/BINDInstall/BINDInstall.aps (dead) 1.2 +0 -90 src/contrib/bind/port/winnt/BINDInstall/BINDInstall.clw (dead) 1.2 +0 -86 src/contrib/bind/port/winnt/BINDInstall/BINDInstall.cpp (dead) 1.2 +0 -30 src/contrib/bind/port/winnt/BINDInstall/BINDInstall.dep (dead) 1.2 +0 -204 src/contrib/bind/port/winnt/BINDInstall/BINDInstall.dsp (dead) 1.2 +0 -45 src/contrib/bind/port/winnt/BINDInstall/BINDInstall.h (dead) 1.2 +0 -279 src/contrib/bind/port/winnt/BINDInstall/BINDInstall.mak (dead) 1.2 +0 -292 src/contrib/bind/port/winnt/BINDInstall/BINDInstall.rc (dead) 1.2 +0 -1093 src/contrib/bind/port/winnt/BINDInstall/BINDInstallDlg.cpp (dead) 1.2 +0 -98 src/contrib/bind/port/winnt/BINDInstall/BINDInstallDlg.h (dead) 1.2 +0 -84 src/contrib/bind/port/winnt/BINDInstall/DirBrowse.cpp (dead) 1.2 +0 -52 src/contrib/bind/port/winnt/BINDInstall/DirBrowse.h (dead) 1.2 +0 -8 src/contrib/bind/port/winnt/BINDInstall/StdAfx.cpp (dead) 1.2 +0 -26 src/contrib/bind/port/winnt/BINDInstall/StdAfx.h (dead) 1.2 +0 -286 src/contrib/bind/port/winnt/BINDInstall/VersionInfo.cpp (dead) 1.2 +0 -62 src/contrib/bind/port/winnt/BINDInstall/VersionInfo.h (dead) 1.2 +0 -1 src/contrib/bind/port/winnt/BINDInstall/res/BINDInstall.ico (dead) 1.2 +0 -13 src/contrib/bind/port/winnt/BINDInstall/res/BINDInstall.rc2 (dead) 1.2 +0 -90 src/contrib/bind/port/winnt/BINDInstall/resource.h (dead) 1.2 +0 -65 src/contrib/bind/port/winnt/BINDTools.dsw (dead) 1.2 +0 -98 src/contrib/bind/port/winnt/README.TXT (dead) 1.2 +0 -4 src/contrib/bind/port/winnt/bindevt/.cvsignore (dead) 1.2 +0 -4 src/contrib/bind/port/winnt/bindevt/MSG00409.bin (dead) 1.2 +0 -4 src/contrib/bind/port/winnt/bindevt/bindevt.aps (dead) 1.2 +0 -10 src/contrib/bind/port/winnt/bindevt/bindevt.c (dead) 1.2 +0 -5 src/contrib/bind/port/winnt/bindevt/bindevt.dep (dead) 1.2 +0 -101 src/contrib/bind/port/winnt/bindevt/bindevt.dsp (dead) 1.2 +0 -183 src/contrib/bind/port/winnt/bindevt/bindevt.mak (dead) 1.2 +0 -30 src/contrib/bind/port/winnt/bindevt/bindevt.mc (dead) 1.2 +0 -2 src/contrib/bind/port/winnt/bindevt/bindevt.rc (dead) 1.2 +0 -122 src/contrib/bind/port/winnt/dig/dig.dsp (dead) 1.2 +0 -29 src/contrib/bind/port/winnt/dig/dig.dsw (dead) 1.2 +0 -297 src/contrib/bind/port/winnt/dig/dig.mak (dead) 1.2 +0 -106 src/contrib/bind/port/winnt/dnskeygen/dnskeygen.dsp (dead) 1.2 +0 -29 src/contrib/bind/port/winnt/dnskeygen/dnskeygen.dsw (dead) 1.2 +0 -106 src/contrib/bind/port/winnt/host/host.dsp (dead) 1.2 +0 -29 src/contrib/bind/port/winnt/host/host.dsw (dead) 1.2 +0 -201 src/contrib/bind/port/winnt/host/host.mak (dead) 1.2 +0 -2 src/contrib/bind/port/winnt/include/.cvsignore (dead) 1.2 +0 -19 src/contrib/bind/port/winnt/include/BINDCmd.h (dead) 1.2 +0 -21 src/contrib/bind/port/winnt/include/bind_registry.h (dead) 1.2 +0 -24 src/contrib/bind/port/winnt/include/bind_service.h (dead) 1.2 +0 -63 src/contrib/bind/port/winnt/include/bindevt.h (dead) 1.2 +0 -3701 src/contrib/bind/port/winnt/include/bindwsock.h (dead) 1.2 +0 -4 src/contrib/bind/port/winnt/include/bsafe_link.h (dead) 1.2 +0 -18 src/contrib/bind/port/winnt/include/config.h (dead) 1.2 +0 -12 src/contrib/bind/port/winnt/include/diff (dead) 1.2 +0 -78 src/contrib/bind/port/winnt/include/dirent.h (dead) 1.2 +0 -5 src/contrib/bind/port/winnt/include/externs.h (dead) 1.2 +0 -23 src/contrib/bind/port/winnt/include/fnpointer.h (dead) 1.2 +0 -4 src/contrib/bind/port/winnt/include/grp.h (dead) 1.2 +0 -7 src/contrib/bind/port/winnt/include/libc.h (dead) 1.2 +0 -8 src/contrib/bind/port/winnt/include/mapdefs.h (dead) 1.2 +0 -286 src/contrib/bind/port/winnt/include/net/if.h (dead) 1.2 +0 -6 src/contrib/bind/port/winnt/include/net/route.h (dead) 1.2 +0 -7 src/contrib/bind/port/winnt/include/netinet/in.h (dead) 1.2 +0 -6 src/contrib/bind/port/winnt/include/nlist.h (dead) 1.2 +0 -22 src/contrib/bind/port/winnt/include/nt_fcntl.h (dead) 1.2 +0 -65 src/contrib/bind/port/winnt/include/nt_signal.h (dead) 1.2 +0 -86 src/contrib/bind/port/winnt/include/oids.h (dead) 1.2 +0 -74 src/contrib/bind/port/winnt/include/pathnames.h (dead) 1.2 +0 -49 src/contrib/bind/port/winnt/include/paths.h (dead) 1.2 +0 -285 src/contrib/bind/port/winnt/include/port_after.h (dead) 1.2 +0 -264 src/contrib/bind/port/winnt/include/port_before.h (dead) 1.2 +0 -37 src/contrib/bind/port/winnt/include/prand_conf.h (dead) 1.2 +0 -4 src/contrib/bind/port/winnt/include/pwd.h (dead) 1.2 +0 -4 src/contrib/bind/port/winnt/include/sgtty.h (dead) 1.2 +0 -77 src/contrib/bind/port/winnt/include/sys/Makefile (dead) 1.2 +0 -37 src/contrib/bind/port/winnt/include/sys/bitypes.h (dead) 1.2 +0 -144 src/contrib/bind/port/winnt/include/sys/cdefs.h (dead) 1.2 +0 -4 src/contrib/bind/port/winnt/include/sys/file.h (dead) 1.2 +0 -6 src/contrib/bind/port/winnt/include/sys/ioctl.h (dead) 1.2 +0 -6 src/contrib/bind/port/winnt/include/sys/mbuf.h (dead) 1.2 +0 -6 src/contrib/bind/port/winnt/include/sys/param.h (dead) 1.2 +0 -200 src/contrib/bind/port/winnt/include/sys/socket.h (dead) 1.2 +0 -128 src/contrib/bind/port/winnt/include/sys/sockio.h (dead) 1.2 +0 -26 src/contrib/bind/port/winnt/include/sys/time.h (dead) 1.2 +0 -4 src/contrib/bind/port/winnt/include/sys/uio.h (dead) 1.2 +0 -6 src/contrib/bind/port/winnt/include/sys/un.h (dead) 1.2 +0 -18 src/contrib/bind/port/winnt/include/sys/wait.h (dead) 1.2 +0 -15 src/contrib/bind/port/winnt/include/syslog.h (dead) 1.2 +0 -55 src/contrib/bind/port/winnt/include/unistd.h (dead) 1.2 +0 -8 src/contrib/bind/port/winnt/include/utime.h (dead) 1.2 +0 -4 src/contrib/bind/port/winnt/include/utmp.h (dead) 1.2 +0 -6 src/contrib/bind/port/winnt/libbind/.cvsignore (dead) 1.2 +0 -44 src/contrib/bind/port/winnt/libbind/DLLMain.c (dead) 1.2 +0 -85 src/contrib/bind/port/winnt/libbind/dirent.c (dead) 1.2 +0 -144 src/contrib/bind/port/winnt/libbind/files.c (dead) 1.2 +0 -73 src/contrib/bind/port/winnt/libbind/getopt.c (dead) 1.2 +0 -42 src/contrib/bind/port/winnt/libbind/interface.c (dead) 1.2 +0 -220 src/contrib/bind/port/winnt/libbind/ioctl_if.c (dead) 1.2 +0 -256 src/contrib/bind/port/winnt/libbind/libbind.def (dead) 1.2 +0 -5055 src/contrib/bind/port/winnt/libbind/libbind.dep (dead) 1.2 +0 -1912 src/contrib/bind/port/winnt/libbind/libbind.dsp (dead) 1.2 +0 -5182 src/contrib/bind/port/winnt/libbind/libbind.mak (dead) 1.2 +0 -109 src/contrib/bind/port/winnt/libbind/libbind.rc (dead) 1.2 +0 -3 src/contrib/bind/port/winnt/libbind/libbind.rct (dead) 1.2 +0 -141 src/contrib/bind/port/winnt/libbind/nameserver.c (dead) 1.2 +0 -15 src/contrib/bind/port/winnt/libbind/resource.h (dead) 1.2 +0 -278 src/contrib/bind/port/winnt/libbind/signal.c (dead) 1.2 +0 -545 src/contrib/bind/port/winnt/libbind/socket.c (dead) 1.2 +0 -91 src/contrib/bind/port/winnt/libbind/syslog.c (dead) 1.2 +0 -1034 src/contrib/bind/port/winnt/libbind/unistd.c (dead) 1.2 +0 -75 src/contrib/bind/port/winnt/makeversion.pl (dead) 1.2 +0 -23 src/contrib/bind/port/winnt/named-bootconf.txt (dead) 1.2 +0 -97 src/contrib/bind/port/winnt/named.mak (dead) 1.2 +0 -6 src/contrib/bind/port/winnt/named/.cvsignore (dead) 1.2 +0 -1196 src/contrib/bind/port/winnt/named/named.dep (dead) 1.2 +0 -323 src/contrib/bind/port/winnt/named/named.dsp (dead) 1.2 +0 -119 src/contrib/bind/port/winnt/named/named.dsw (dead) 1.2 +0 -675 src/contrib/bind/port/winnt/named/named.mak (dead) 1.2 +0 -41 src/contrib/bind/port/winnt/named/named.opt (dead) 1.2 +0 -109 src/contrib/bind/port/winnt/named/named.rc (dead) 1.2 +0 -148 src/contrib/bind/port/winnt/named/ns_ntmisc.c (dead) 1.2 +0 -237 src/contrib/bind/port/winnt/named/ns_ntservice.c (dead) 1.2 +0 -276 src/contrib/bind/port/winnt/named/ns_ntsignal.c (dead) 1.2 +0 -249 src/contrib/bind/port/winnt/named/ns_ntxfer.c (dead) 1.2 +0 -15 src/contrib/bind/port/winnt/named/resource.h (dead) 1.2 +0 -135 src/contrib/bind/port/winnt/nslookup/nslookup.dsp (dead) 1.2 +0 -29 src/contrib/bind/port/winnt/nslookup/nslookup.dsw (dead) 1.2 +0 -6 src/contrib/bind/port/winnt/nsupdate/.cvsignore (dead) 1.2 +0 -5 src/contrib/bind/port/winnt/nsupdate/nsupdate.dep (dead) 1.2 +0 -90 src/contrib/bind/port/winnt/nsupdate/nsupdate.dsp (dead) 1.2 +0 -29 src/contrib/bind/port/winnt/nsupdate/nsupdate.dsw (dead) 1.2 +0 -218 src/contrib/bind/port/winnt/nsupdate/nsupdate.mak (dead) 1.2 +0 -669 src/contrib/bind/port/winnt/nsupdate/nsupdate.opt (dead) 1.2 +0 -109 src/contrib/bind/port/winnt/nsupdate/nsupdate.rc (dead) 1.2 +0 -15 src/contrib/bind/port/winnt/nsupdate/resource.h (dead) 1.2 +0 -93 src/contrib/bind/port/winnt/readme1st.txt (dead) 1.2 +0 -49 src/contrib/bind/port/winnt/readme1sttools.txt (dead) 1.2 +0 -6 src/contrib/bind/port/winnt/xfer/.cvsignore (dead) 1.2 +0 -109 src/contrib/bind/port/winnt/xfer/named-xfer.rc (dead) 1.2 +0 -15 src/contrib/bind/port/winnt/xfer/resource.h (dead) 1.2 +0 -115 src/contrib/bind/port/winnt/xfer/xfer.dep (dead) 1.2 +0 -103 src/contrib/bind/port/winnt/xfer/xfer.dsp (dead) 1.2 +0 -209 src/contrib/bind/port/winnt/xfer/xfer.mak (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9: 8:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B72F37C32B; Wed, 6 Feb 2002 08:56:15 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16GuF369058; Wed, 6 Feb 2002 08:56:15 -0800 (PST) (envelope-from phantom) Message-Id: <200202061656.g16GuF369058@freefall.freebsd.org> From: Alexey Zelkin Date: Wed, 6 Feb 2002 08:56:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/sr_YU.ISO8859-2 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/06 08:56:15 PST Modified files: sr_YU.ISO8859-2 Makefile Log: Disable books directory since it has no real content yet Revision Changes Path 1.2 +3 -1 doc/sr_YU.ISO8859-2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:12: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B9C1937C5C1; Wed, 6 Feb 2002 09:01:34 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16H1YD69754; Wed, 6 Feb 2002 09:01:34 -0800 (PST) (envelope-from phantom) Message-Id: <200202061701.g16H1YD69754@freefall.freebsd.org> From: Alexey Zelkin Date: Wed, 6 Feb 2002 09:01:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/sr_YU.ISO8859-2/articles/dialup-firewall Makefile article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/06 09:01:34 PST Added files: sr_YU.ISO8859-2/articles/dialup-firewall Makefile article.sgml Log: Add Serbian translation of dialup-firewall article. This is second document translated into Serbian in FreeBSD doc/ tree. Show will go on! Submitted by: Vladimir Vrzic Revision Changes Path 1.1 +14 -0 doc/sr_YU.ISO8859-2/articles/dialup-firewall/Makefile (new) 1.1 +354 -0 doc/sr_YU.ISO8859-2/articles/dialup-firewall/article.sgml (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:12:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B65A37C60C; Wed, 6 Feb 2002 09:02:23 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16H2N369898; Wed, 6 Feb 2002 09:02:23 -0800 (PST) (envelope-from phantom) Message-Id: <200202061702.g16H2N369898@freefall.freebsd.org> From: Alexey Zelkin Date: Wed, 6 Feb 2002 09:02:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/sr_YU.ISO8859-2/articles Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/06 09:02:23 PST Modified files: sr_YU.ISO8859-2/articles Makefile Log: Activate dialup-firewall article build Revision Changes Path 1.2 +3 -1 doc/sr_YU.ISO8859-2/articles/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:13: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 89C4B37B619; Wed, 6 Feb 2002 09:03:33 -0800 (PST) Received: (from sumikawa@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16H3Xl70217; Wed, 6 Feb 2002 09:03:33 -0800 (PST) (envelope-from sumikawa) Message-Id: <200202061703.g16H3Xl70217@freefall.freebsd.org> From: Munechika SUMIKAWA Date: Wed, 6 Feb 2002 09:03:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/mtr Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sumikawa 2002/02/06 09:03:33 PST Modified files: net/mtr Makefile distinfo Log: Re-enable IPv6 support. Revision Changes Path 1.32 +8 -2 ports/net/mtr/Makefile 1.15 +1 -0 ports/net/mtr/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:13:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9361537B63C; Wed, 6 Feb 2002 09:04:41 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16H4ff70404; Wed, 6 Feb 2002 09:04:41 -0800 (PST) (envelope-from bmah) Message-Id: <200202061704.g16H4ff70404@freefall.freebsd.org> From: "Bruce A. Mah" Date: Wed, 6 Feb 2002 09:04:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/06 09:04:41 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml Log: New errata entry: SA-02:09. Medium-level reorganization of the OpenSSH item. Revision Changes Path 1.1.2.50 +41 -15 src/release/doc/en_US.ISO8859-1/errata/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:16:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D68E37B647; Wed, 6 Feb 2002 09:05:51 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16H5pi74131; Wed, 6 Feb 2002 09:05:51 -0800 (PST) (envelope-from phantom) Message-Id: <200202061705.g16H5pi74131@freefall.freebsd.org> From: Alexey Zelkin Date: Wed, 6 Feb 2002 09:05:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/faq book.sgml doc/en_US.ISO8859-1/articles/committers-guide article.sgml doc/en_US.ISO8859-1/articles/contributors article.sgml doc/en_US.ISO8859-1/books/faq book.sgml doc/en_US.ISO8859-1/share/sgml authors.ent teams.ent doc/fr_FR.ISO8859-1/books/faq book.sgml ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/06 09:05:51 PST Modified files: de_DE.ISO8859-1/books/faq book.sgml en_US.ISO8859-1/articles/committers-guide article.sgml en_US.ISO8859-1/articles/contributors article.sgml en_US.ISO8859-1/books/faq book.sgml en_US.ISO8859-1/share/sgml authors.ent fr_FR.ISO8859-1/books/faq book.sgml fr_FR.ISO8859-1/books/handbook book.sgml ja_JP.eucJP/books/faq book.sgml ru_RU.KOI8-R/books/faq book.sgml share/sgml catalog Added files: en_US.ISO8859-1/share/sgml teams.ent Log: Move non-committers email address entities (re, faq, etc.) into own entities file (teams.ent) Revision Changes Path 1.12 +2 -0 doc/de_DE.ISO8859-1/books/faq/book.sgml 1.94 +3 -0 doc/en_US.ISO8859-1/articles/committers-guide/article.sgml 1.91 +2 -0 doc/en_US.ISO8859-1/articles/contributors/article.sgml 1.402 +2 -0 doc/en_US.ISO8859-1/books/faq/book.sgml 1.207 +0 -7 doc/en_US.ISO8859-1/share/sgml/authors.ent 1.1 +25 -0 doc/en_US.ISO8859-1/share/sgml/teams.ent (new) 1.8 +2 -1 doc/fr_FR.ISO8859-1/books/faq/book.sgml 1.6 +2 -1 doc/fr_FR.ISO8859-1/books/handbook/book.sgml 1.47 +2 -0 doc/ja_JP.eucJP/books/faq/book.sgml 1.56 +1 -0 doc/ru_RU.KOI8-R/books/faq/book.sgml 1.22 +3 -0 doc/share/sgml/catalog To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:17: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2A02737C764; Wed, 6 Feb 2002 09:07:37 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16H7bQ74497; Wed, 6 Feb 2002 09:07:37 -0800 (PST) (envelope-from roam) Message-Id: <200202061707.g16H7bQ74497@freefall.freebsd.org> From: Peter Pentchev Date: Wed, 6 Feb 2002 09:07:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/pgpkeys roam.key X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2002/02/06 09:07:37 PST Modified files: en_US.ISO8859-1/books/handbook/pgpkeys roam.key Log: Add an uid . Revision Changes Path 1.2 +13 -10 doc/en_US.ISO8859-1/books/handbook/pgpkeys/roam.key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:18:23 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5838737B487; Wed, 6 Feb 2002 09:09:08 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16H98H74792; Wed, 6 Feb 2002 09:09:08 -0800 (PST) (envelope-from phantom) Message-Id: <200202061709.g16H98H74792@freefall.freebsd.org> From: Alexey Zelkin Date: Wed, 6 Feb 2002 09:09:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/diag/ac ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/06 09:09:08 PST Modified files: tools/diag/ac ac Log: List of committers was moved out of handbook. Teach 'ac' about new location. Also teach it about complex entries in access file (or correctly to say simplify them) Revision Changes Path 1.5 +5 -3 src/tools/diag/ac/ac To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:23:15 2002 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 63A5837C737; Wed, 6 Feb 2002 09:21:10 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id g16HKvO97110; Wed, 6 Feb 2002 09:20:57 -0800 (PST) (envelope-from obrien) Date: Wed, 6 Feb 2002 09:20:57 -0800 From: "David O'Brien" To: Mark Murray Cc: Dag-Erling Smorgrav , current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Not committing WARNS settings... Message-ID: <20020206092057.D96921@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200202061112.g16BCis55559@greenpeace.grondar.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200202061112.g16BCis55559@greenpeace.grondar.org>; from mark@grondar.za on Wed, Feb 06, 2002 at 11:12:38AM +0000 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Feb 06, 2002 at 11:12:38AM +0000, Mark Murray wrote: > IMO, this is a good reason to not have WARNS contain -Werror at this > time. NO_WERROR is a good way to fix this (again IMO). I see a great > need to let warnings "hang out", and in an ideal world I see an need > for (new) warnings to break things. I see no need for warnings to > hold back a project as important as GCC3, and NO_WERROR is the > cleanest solution. > > I do not expect others to agree with (or like) this. I do not. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:27: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 998A437C6AC; Wed, 6 Feb 2002 09:23:04 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.6/8.11.1) id g16HN4L97178; Wed, 6 Feb 2002 09:23:04 -0800 (PST) (envelope-from obrien) Date: Wed, 6 Feb 2002 09:23:04 -0800 From: "David O'Brien" To: Robert Watson Cc: Kris Kennaway , Mark Murray , current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Not committing WARNS settings... Message-ID: <20020206092304.E96921@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <3C60EDC8.28844031@mindspring.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from rwatson@FreeBSD.org on Wed, Feb 06, 2002 at 08:21:07AM -0500 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Feb 06, 2002 at 08:21:07AM -0500, Robert Watson wrote: > Well, I think that's true: no one is saying you can't fix the warnings you > find by turning up the warning level. Well... it would be nice if people would do CORRECT fixes. From some things DES was saying, people are making some really stupid "fixes" just to quite warnings. Esp. WRT const. I am starting to think all WARNS cleanup patches should be posted to audit and have an "Approved by: audit" or any of our accepted very knowledgeable C standards people. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:30: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BEE3637C176; Wed, 6 Feb 2002 09:27:24 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16HROC77777; Wed, 6 Feb 2002 09:27:24 -0800 (PST) (envelope-from bmah) Message-Id: <200202061727.g16HROC77777@freefall.freebsd.org> From: "Bruce A. Mah" Date: Wed, 6 Feb 2002 09:27:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/4.5R errata.html X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/06 09:27:24 PST Modified files: en/releases/4.5R errata.html Log: Regen from errata/article.sgml 1.1.2.50. Revision Changes Path 1.5 +60 -10 www/en/releases/4.5R/errata.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:37:29 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7127337B417; Wed, 6 Feb 2002 09:37:13 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16HbDf79055; Wed, 6 Feb 2002 09:37:13 -0800 (PST) (envelope-from knu) Message-Id: <200202061737.g16HbDf79055@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 6 Feb 2002 09:37:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/test test.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/06 09:37:13 PST Modified files: (Branch: RELENG_4) bin/test test.c Log: MFC: rev.1.40: Work around a buffer overflow problem on argv. Revision Changes Path 1.29.2.4 +16 -6 src/bin/test/test.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:37:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D22DF37B417; Wed, 6 Feb 2002 09:37:30 -0800 (PST) Received: (from nectar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16HbUB79094; Wed, 6 Feb 2002 09:37:30 -0800 (PST) (envelope-from nectar) Message-Id: <200202061737.g16HbUB79094@freefall.freebsd.org> From: Jacques Vidrine Date: Wed, 6 Feb 2002 09:37:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/security security.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2002/02/06 09:37:30 PST Modified files: en/security security.sgml Log: Add FreeBSD-SA-02:09 and -02:10. Revision Changes Path 1.80 +4 -2 www/en/security/security.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:38:58 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A28F537B42B; Wed, 6 Feb 2002 09:38:37 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16Hcbd79210; Wed, 6 Feb 2002 09:38:37 -0800 (PST) (envelope-from knu) Message-Id: <200202061738.g16Hcbd79210@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 6 Feb 2002 09:38:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/test test.c X-FreeBSD-CVS-Branch: RELENG_4_5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/06 09:38:37 PST Modified files: (Branch: RELENG_4_5) bin/test test.c Log: MFC: rev.1.40: Work around a buffer overflow problem on argv. Revision Changes Path 1.29.2.3.2.1 +16 -6 src/bin/test/test.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:40:53 2002 Delivered-To: cvs-all@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id CBEC537B41C; Wed, 6 Feb 2002 09:40:42 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.4) id g16Hec252669; Wed, 6 Feb 2002 12:40:38 -0500 (EST) (envelope-from wollman) Date: Wed, 6 Feb 2002 12:40:38 -0500 (EST) From: Garrett Wollman Message-Id: <200202061740.g16Hec252669@khavrinen.lcs.mit.edu> To: Mark Murray Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c In-Reply-To: <200202052235.g15MZYs33989@greenpeace.grondar.org> References: <20020205220620.GD8579@nagual.pp.ru> <200202052235.g15MZYs33989@greenpeace.grondar.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG < said: > Yes, and as soon as he needs predictable pseudo-random numbers, he calls > srandom(). No problem. The initial state of the random number is defined to be *as if* srandom(1) had been called. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:45:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 049B737B41B; Wed, 6 Feb 2002 09:45:09 -0800 (PST) Received: (from nectar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16Hj8v80060; Wed, 6 Feb 2002 09:45:08 -0800 (PST) (envelope-from nectar) Message-Id: <200202061745.g16Hj8v80060@freefall.freebsd.org> From: Jacques Vidrine Date: Wed, 6 Feb 2002 09:45:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/committers-guide article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2002/02/06 09:45:08 PST Modified files: en_US.ISO8859-1/articles/committers-guide article.sgml Log: Add Security Officer to Who's Who section. Reminded by: rwatson Revision Changes Path 1.95 +12 -0 doc/en_US.ISO8859-1/articles/committers-guide/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:47:22 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0398037B405; Wed, 6 Feb 2002 09:47:19 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16HlIK80459; Wed, 6 Feb 2002 09:47:18 -0800 (PST) (envelope-from phantom) Message-Id: <200202061747.g16HlIK80459@freefall.freebsd.org> From: Alexey Zelkin Date: Wed, 6 Feb 2002 09:47:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/diag/ac ent.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/06 09:47:18 PST Added files: tools/diag/ac ent.sh Log: Add script that checks contents of .ent files (sorting and addresses) Revision Changes Path 1.1 +58 -0 src/tools/diag/ac/ent.sh (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:49:16 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B199537B422; Wed, 6 Feb 2002 09:49:13 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16HnDV80740; Wed, 6 Feb 2002 09:49:13 -0800 (PST) (envelope-from phantom) Message-Id: <200202061749.g16HnDV80740@freefall.freebsd.org> From: Alexey Zelkin Date: Wed, 6 Feb 2002 09:49:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/diag/ac README X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/06 09:49:13 PST Added files: tools/diag/ac README Log: Add descirptions of scripts in this directory Revision Changes Path 1.1 +9 -0 src/tools/diag/ac/README (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:50:11 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B7DB437B41E; Wed, 6 Feb 2002 09:50:05 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16Ho5v80912; Wed, 6 Feb 2002 09:50:05 -0800 (PST) (envelope-from phantom) Message-Id: <200202061750.g16Ho5v80912@freefall.freebsd.org> From: Alexey Zelkin Date: Wed, 6 Feb 2002 09:50:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/diag README X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/06 09:50:05 PST Modified files: tools/diag README Log: Update description of 'ac' subdirectory Revision Changes Path 1.6 +2 -2 src/tools/diag/README To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 9:51:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7D97F37B41E; Wed, 6 Feb 2002 09:51:18 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16HpIE81090; Wed, 6 Feb 2002 09:51:18 -0800 (PST) (envelope-from phantom) Message-Id: <200202061751.g16HpIE81090@freefall.freebsd.org> From: Alexey Zelkin Date: Wed, 6 Feb 2002 09:51:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/share/sgml authors.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/06 09:51:18 PST Modified files: en_US.ISO8859-1/share/sgml authors.ent Log: Fix sorting Noticed by: tools/diag/ac/ent.sh Revision Changes Path 1.208 +20 -20 doc/en_US.ISO8859-1/share/sgml/authors.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 10: 0:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4793237B400; Wed, 6 Feb 2002 10:00:11 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16I0Bp83397; Wed, 6 Feb 2002 10:00:11 -0800 (PST) (envelope-from phantom) Message-Id: <200202061800.g16I0Bp83397@freefall.freebsd.org> From: Alexey Zelkin Date: Wed, 6 Feb 2002 10:00:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/diag/ac ent.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/06 10:00:11 PST Modified files: tools/diag/ac ent.sh Log: Fix sentence in comment Revision Changes Path 1.2 +1 -1 src/tools/diag/ac/ent.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 10: 1:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 64CA737B417; Wed, 6 Feb 2002 10:01:19 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16I1J384343; Wed, 6 Feb 2002 10:01:19 -0800 (PST) (envelope-from knu) Message-Id: <200202061801.g16I1J384343@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 6 Feb 2002 10:01:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: projects/cvsweb cvsweb.cgi X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/06 10:01:19 PST Modified files: cvsweb cvsweb.cgi Log: Fix a minor bug in tarball creation. - Use TMPDIR instead of the hardcoded /tmp. - Never pass 'MAIN' to cvs(1). 'HEAD' is the valid tag. Revision Changes Path 1.88 +10 -6 projects/cvsweb/cvsweb.cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 10: 6: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9354537B41B; Wed, 6 Feb 2002 10:05:53 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16I5rR90993; Wed, 6 Feb 2002 10:05:53 -0800 (PST) (envelope-from ru) Message-Id: <200202061805.g16I5rR90993@freefall.freebsd.org> From: Ruslan Ermilov Date: Wed, 6 Feb 2002 10:05:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.subdir.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/02/06 10:05:53 PST Modified files: share/mk bsd.subdir.mk Log: Back out revision 1.23 (SUBDIR_CHANGE). Not objected to by: bde, eivind Revision Changes Path 1.33 +12 -37 src/share/mk/bsd.subdir.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 10: 8:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 39ADB37B419; Wed, 6 Feb 2002 10:08:31 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16I8VV93354; Wed, 6 Feb 2002 10:08:31 -0800 (PST) (envelope-from ru) Message-Id: <200202061808.g16I8VV93354@freefall.freebsd.org> From: Ruslan Ermilov Date: Wed, 6 Feb 2002 10:08:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.obj.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/02/06 10:08:31 PST Modified files: share/mk bsd.obj.mk Log: Neither .depend nor ${DEPENDFILE} depend on _SUBDIR. (One step closer to _SUBDIR <-> _SUBDIRUSE merge.) Revision Changes Path 1.38 +2 -2 src/share/mk/bsd.obj.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 10:13:16 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D99137B422; Wed, 6 Feb 2002 10:13:12 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16IDCT97883; Wed, 6 Feb 2002 10:13:12 -0800 (PST) (envelope-from markm) Message-Id: <200202061813.g16IDCT97883@freefall.freebsd.org> From: Mark Murray Date: Wed, 6 Feb 2002 10:13:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/06 10:13:12 PST Modified files: usr.bin Makefile.inc Log: Backout -Werror protection. No need to walk all over the upcoming GCC3 changeover. Revision Changes Path 1.3 +0 -1 src/usr.bin/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 10:15: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5290C37B42A; Wed, 6 Feb 2002 10:14:59 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16IExI99772; Wed, 6 Feb 2002 10:14:59 -0800 (PST) (envelope-from markm) Message-Id: <200202061814.g16IExI99772@freefall.freebsd.org> From: Mark Murray Date: Wed, 6 Feb 2002 10:14:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/06 10:14:59 PST Modified files: lib/libpam Makefile.inc Log: Comment out the WARNS= so as to not trample all over the GCC3 work. Revision Changes Path 1.5 +1 -1 src/lib/libpam/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 10:45:33 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id 4C81537B41D; Wed, 6 Feb 2002 10:45:27 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g16IjQq69535; Wed, 6 Feb 2002 18:45:26 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id 116CB5B; Wed, 6 Feb 2002 18:42:06 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g16I7ws27754; Wed, 6 Feb 2002 18:07:58 GMT (envelope-from mark@grondar.za) Message-Id: <200202061807.g16I7ws27754@greenpeace.grondar.org> To: obrien@FreeBSD.org Cc: current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Not committing WARNS settings... References: <20020206092057.D96921@dragon.nuxi.com> In-Reply-To: <20020206092057.D96921@dragon.nuxi.com> ; from "David O'Brien" "Wed, 06 Feb 2002 09:20:57 PST." Date: Wed, 06 Feb 2002 18:07:52 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Wed, Feb 06, 2002 at 11:12:38AM +0000, Mark Murray wrote: > > IMO, this is a good reason to not have WARNS contain -Werror at this > > time. NO_WERROR is a good way to fix this (again IMO). I see a great > > need to let warnings "hang out", and in an ideal world I see an need > > for (new) warnings to break things. I see no need for warnings to > > hold back a project as important as GCC3, and NO_WERROR is the > > cleanest solution. > > > > I do not expect others to agree with (or like) this. > > I do not. Right. I am about to commit a WARNS?= backout in anticipation of your GCC3 work. While I believe we should be going the other way, you are the (un)lucky fellow doing the hard work, so I'll defer. In the meanwhile we shal continue to disagree on a more theoretical level. OK? :-) M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 10:46:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 84F5837B405; Wed, 6 Feb 2002 10:46:49 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16Ikn107092; Wed, 6 Feb 2002 10:46:49 -0800 (PST) (envelope-from markm) Message-Id: <200202061846.g16Ikn107092@freefall.freebsd.org> From: Mark Murray Date: Wed, 6 Feb 2002 10:46:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_krb5 Makefile src/lib/libpam/modules/pam_opie Makefile src/lib/libpam/modules/pam_radius Makefile src/lib/libpam/modules/pam_ssh Makefile src/lib/libpam/modules/pam_unix Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/06 10:46:49 PST Modified files: lib/libpam/modules/pam_krb5 Makefile lib/libpam/modules/pam_opie Makefile lib/libpam/modules/pam_radius Makefile lib/libpam/modules/pam_ssh Makefile lib/libpam/modules/pam_unix Makefile Log: Remove NO_WERROR, now that WARNS=n is gone. Revision Changes Path 1.5 +0 -1 src/lib/libpam/modules/pam_krb5/Makefile 1.6 +0 -1 src/lib/libpam/modules/pam_opie/Makefile 1.9 +0 -1 src/lib/libpam/modules/pam_radius/Makefile 1.10 +0 -1 src/lib/libpam/modules/pam_ssh/Makefile 1.10 +0 -1 src/lib/libpam/modules/pam_unix/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 11: 8:44 2002 Delivered-To: cvs-all@freebsd.org Received: from tomts9-srv.bellnexxia.net (tomts9.bellnexxia.net [209.226.175.53]) by hub.freebsd.org (Postfix) with ESMTP id C382E37B41C; Wed, 6 Feb 2002 11:08:35 -0800 (PST) Received: from khan.anarcat.dyndns.org ([65.94.186.7]) by tomts9-srv.bellnexxia.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20020206190834.YQSX8611.tomts9-srv.bellnexxia.net@khan.anarcat.dyndns.org>; Wed, 6 Feb 2002 14:08:34 -0500 Received: from shall.anarcat.dyndns.org (shall.anarcat.dyndns.org [192.168.0.1]) by khan.anarcat.dyndns.org (Postfix) with ESMTP id E7A481989; Wed, 6 Feb 2002 14:08:29 -0500 (EST) Received: by shall.anarcat.dyndns.org (Postfix, from userid 1000) id 8E25320ACC; Wed, 6 Feb 2002 14:08:43 -0500 (EST) Date: Wed, 6 Feb 2002 14:08:43 -0500 From: The Anarcat To: Akinori MUSHA Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: projects/cvsweb cvsweb.cgi Message-ID: <20020206190843.GC47033@shall.anarcat.dyndns.org> Mail-Followup-To: Akinori MUSHA , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200202061801.g16I1J384343@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="69pVuxX8awAiJ7fD" Content-Disposition: inline In-Reply-To: <200202061801.g16I1J384343@freefall.freebsd.org> User-Agent: Mutt/1.3.25i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --69pVuxX8awAiJ7fD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed Feb 06, 2002 at 10:01:19AM -0800, Akinori MUSHA wrote: > Fix a minor bug in tarball creation. Now that's interesting. I forgot cvsweb could do that. How about fixing the http://www.freebsd.org/ports/ download links? They point to ftp.freebsd.org which, half the time, is unavailable. The ftp mirrors are often not capabable of on-the-fly tarball generation so the mirror argument doesn't hold. Anyways, even ftp.freebsd.org doesn't seem to do this either. A non-tested patch follows. A. Index: ports.cgi =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/www/en/cgi/ports.cgi,v retrieving revision 1.59 diff -u -r1.59 ports.cgi --- ports.cgi 7 Nov 2001 16:32:12 -0000 1.59 +++ ports.cgi 6 Feb 2002 19:07:33 -0000 @@ -49,7 +49,7 @@ =20 # URL of ports tree for download=20 $remotePrefixFtpDownload =3D - 'ftp://ftp.FreeBSD.org/pub/FreeBSD/branches/-current/ports'; + 'http://www.FreeBSD.org/cgi/cvsweb.cgi/ports'; =20 # where to get -current packages local($p) =3D 'ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386'; @@ -313,6 +313,7 @@ =20 $path =3D~ s/^$localPrefix/$remotePrefixFtp/o; $pathDownload =3D~ s/^$localPrefix/$remotePrefixFtpDownload/o; + $pathDownload .=3D "?tarball=3D1"; $descfile =3D~ s/^$localPrefix/$remotePrefixFtp/o; =20 print qq{
$version\n}; --69pVuxX8awAiJ7fD Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjxhfzoACgkQttcWHAnWiGcPBQCgipw+yle1YIRfzcxFGaOkvKhJ 5HcAn0wZPzynZ4hyFB+7YK6O28/T/mKV =CAmB -----END PGP SIGNATURE----- --69pVuxX8awAiJ7fD-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 11:14:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00A4137B420; Wed, 6 Feb 2002 11:14:04 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16JE2425514; Wed, 6 Feb 2002 11:14:02 -0800 (PST) (envelope-from alfred) Message-Id: <200202061914.g16JE2425514@freefall.freebsd.org> From: Alfred Perlstein Date: Wed, 6 Feb 2002 11:14:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/rpc svc_vc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/02/06 11:14:02 PST Modified files: lib/libc/rpc svc_vc.c Log: Move the AF_LOCAL check to the AF_INET check since portmap protocol v. 2 only needs this. That also makes it shorter and simpler. Submitted by: mbr Revision Changes Path 1.11 +1 -5 src/lib/libc/rpc/svc_vc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 11:15:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 842E337B41D; Wed, 6 Feb 2002 11:15:34 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16JFYQ25724; Wed, 6 Feb 2002 11:15:34 -0800 (PST) (envelope-from alfred) Message-Id: <200202061915.g16JFYQ25724@freefall.freebsd.org> From: Alfred Perlstein Date: Wed, 6 Feb 2002 11:15:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/keyserv keyserv.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/02/06 11:15:34 PST Modified files: usr.sbin/keyserv keyserv.c Log: Readded the svc_create() and the registering of the local transport, now it is fixed. This should get us a working keyserv again, since it depends on local transport for key exchange. Since we do not have any KEYFILE name hardcoded anymore, set the umask that way that the keyserver socket can be created with with the appropriate permissions. Re-add the accidently removed signal(SIGPIPE, SIG_IGN); to the code which makes sense to avoid SIGPIPE when a disconnect on rpc socket occurs. Submitted by: mbr Revision Changes Path 1.7 +36 -2 src/usr.sbin/keyserv/keyserv.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 11:23:11 2002 Delivered-To: cvs-all@freebsd.org Received: from tomts23-srv.bellnexxia.net (tomts23.bellnexxia.net [209.226.175.185]) by hub.freebsd.org (Postfix) with ESMTP id 990A037B427; Wed, 6 Feb 2002 11:23:05 -0800 (PST) Received: from khan.anarcat.dyndns.org ([65.94.186.7]) by tomts23-srv.bellnexxia.net (InterMail vM.4.01.03.16 201-229-121-116-20010115) with ESMTP id <20020206192113.GUIH23298.tomts23-srv.bellnexxia.net@khan.anarcat.dyndns.org>; Wed, 6 Feb 2002 14:21:13 -0500 Received: from shall.anarcat.dyndns.org (shall.anarcat.dyndns.org [192.168.0.1]) by khan.anarcat.dyndns.org (Postfix) with ESMTP id D81981A40; Wed, 6 Feb 2002 14:22:59 -0500 (EST) Received: by shall.anarcat.dyndns.org (Postfix, from userid 1000) id 51D5120ACC; Wed, 6 Feb 2002 14:23:05 -0500 (EST) Date: Wed, 6 Feb 2002 14:23:05 -0500 From: The Anarcat To: Akinori MUSHA Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: projects/cvsweb cvsweb.cgi Message-ID: <20020206192304.GD47033@shall.anarcat.dyndns.org> Mail-Followup-To: Akinori MUSHA , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200202061801.g16I1J384343@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5gxpn/Q6ypwruk0T" Content-Disposition: inline In-Reply-To: <200202061801.g16I1J384343@freefall.freebsd.org> User-Agent: Mutt/1.3.25i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --5gxpn/Q6ypwruk0T Content-Type: text/plain; charset=us-ascii Content-Disposition: inline I opened a PR about this: ports/34669. http://www.freebsd.org/cgi/query-pr.cgi?pr=34669 A. --5gxpn/Q6ypwruk0T Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjxhgpgACgkQttcWHAnWiGfPUQCdGd8C+GsdAydIIcgLw/2yhlVz mtUAnjQCshyuxRkMMiq8neq0JUOT7F/c =PgIy -----END PGP SIGNATURE----- --5gxpn/Q6ypwruk0T-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 11:35:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B169937B400; Wed, 6 Feb 2002 11:35:37 -0800 (PST) Received: (from julian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16JZbT30235; Wed, 6 Feb 2002 11:35:37 -0800 (PST) (envelope-from julian) Message-Id: <200202061935.g16JZbT30235@freefall.freebsd.org> From: Julian Elischer Date: Wed, 6 Feb 2002 11:35:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-all.c ata-raid.c ata-raid.h src/sys/dev/usb uhci.c src/sys/sys syscall.h syscall.mk sysproto.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG julian 2002/02/06 11:35:37 PST Modified files: sys/dev/ata ata-all.c ata-raid.c ata-raid.h sys/dev/usb uhci.c sys/sys syscall.h syscall.mk sysproto.h Log: Make LINT compile after fruitless attempts to get the authors to fix their code. ata stuff: Change name of ar_attach to not colide with existing ar_attach in if_ar.c. usb stuff: Create a dummy function to satisfy a call to it when in DEBUG mode. Revision Changes Path 1.128 +1 -1 src/sys/dev/ata/ata-all.c 1.23 +1 -1 src/sys/dev/ata/ata-raid.c 1.8 +1 -1 src/sys/dev/ata/ata-raid.h 1.80 +6 -0 src/sys/dev/usb/uhci.c 1.100 +0 -0 src/sys/sys/syscall.h 1.55 +0 -0 src/sys/sys/syscall.mk 1.91 +0 -0 src/sys/sys/sysproto.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 12: 0:35 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id BFA6B37B416; Wed, 6 Feb 2002 12:00:24 -0800 (PST) Received: from InterJet.elischer.org ([12.232.206.8]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020206200024.VPGM10199.rwcrmhc53.attbi.com@InterJet.elischer.org>; Wed, 6 Feb 2002 20:00:24 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id LAA92080; Wed, 6 Feb 2002 11:45:01 -0800 (PST) Date: Wed, 6 Feb 2002 11:45:01 -0800 (PST) From: Julian Elischer To: Julian Elischer Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-raid.c ata-raid.h src/sys/dev/usb uhci.c src/sys/sys syscall.h syscall.mk sysproto.h In-Reply-To: <200202061935.g16JZbT30235@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 6 Feb 2002, Julian Elischer wrote: > julian 2002/02/06 11:35:37 PST > > Modified files: > sys/dev/ata ata-all.c ata-raid.c ata-raid.h > sys/dev/usb uhci.c > sys/sys syscall.h syscall.mk sysproto.h > Log: > Make LINT compile after fruitless attempts to get the authors > to fix their code. [...] > 1.100 +0 -0 src/sys/sys/syscall.h > 1.55 +0 -0 src/sys/sys/syscall.mk > 1.91 +0 -0 src/sys/sys/sysproto.h HUH? there were no changes in these files! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 12:27: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freebsd.dk (fw-rl0.freebsd.dk [212.242.86.114]) by hub.freebsd.org (Postfix) with ESMTP id 803D537B416; Wed, 6 Feb 2002 12:27:02 -0800 (PST) Received: (from sos@localhost) by freebsd.dk (8.11.6/8.11.6) id g16KR1O00501; Wed, 6 Feb 2002 21:27:01 +0100 (CET) (envelope-from sos) From: Søren Schmidt Message-Id: <200202062027.g16KR1O00501@freebsd.dk> Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-raid.c ata-raid.h src/sys/dev/usb uhci.c src/sys/sys syscall.h syscall.mk sysproto.h In-Reply-To: <200202061935.g16JZbT30235@freefall.freebsd.org> To: Julian Elischer Date: Wed, 6 Feb 2002 21:27:00 +0100 (CET) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Reply-To: sos@freebsd.dk X-Mailer: ELM [version 2.4ME+ PL94b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It seems Julian Elischer wrote: > julian 2002/02/06 11:35:37 PST > > Modified files: > sys/dev/ata ata-all.c ata-raid.c ata-raid.h > sys/dev/usb uhci.c > sys/sys syscall.h syscall.mk sysproto.h > Log: > Make LINT compile after fruitless attempts to get the authors > to fix their code. WHAT? I havn't seen a single mail from you on that matter, hrmpf! -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 12:33:15 2002 Delivered-To: cvs-all@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id E220237B420; Wed, 6 Feb 2002 12:32:55 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 1E43E9B73; Wed, 6 Feb 2002 15:32:16 -0500 (EST) Date: Wed, 6 Feb 2002 15:32:16 -0500 From: Will Andrews To: =?iso-8859-1?Q?S=F8ren?= Schmidt Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-raid.c ata-raid.h src/sys/dev/usb uhci.c src/sys/sys syscall.h syscall.mk sysproto.h Message-ID: <20020206203215.GL82640@squall.waterspout.com> Mail-Followup-To: =?iso-8859-1?Q?S=F8ren?= Schmidt , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200202061935.g16JZbT30235@freefall.freebsd.org> <200202062027.g16KR1O00501@freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200202062027.g16KR1O00501@freebsd.dk> User-Agent: Mutt/1.3.26i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Feb 06, 2002 at 09:27:00PM +0100, Søren Schmidt wrote: > WHAT? I havn't seen a single mail from you on that matter, hrmpf! He sent it to -current or -hackers a few days ago, not sure which. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 12:39:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0F7EC37B41C; Wed, 6 Feb 2002 12:39:37 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16Kdbj42665; Wed, 6 Feb 2002 12:39:37 -0800 (PST) (envelope-from markm) Message-Id: <200202062039.g16Kdbj42665@freefall.freebsd.org> From: Mark Murray Date: Wed, 6 Feb 2002 12:39:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ypserv Makefile src/etc hosts.allow X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/06 12:39:36 PST Modified files: usr.sbin/ypserv Makefile etc hosts.allow Log: Enable TCP_WRAPPERs for the NIS server. The protection afforded is not massive, but usable. Revision Changes Path 1.16 +7 -1 src/etc/hosts.allow 1.20 +5 -2 src/usr.sbin/ypserv/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 12:40:58 2002 Delivered-To: cvs-all@freebsd.org Received: from freebsd.dk (fw-rl0.freebsd.dk [212.242.86.114]) by hub.freebsd.org (Postfix) with ESMTP id 58F1037B41A; Wed, 6 Feb 2002 12:40:51 -0800 (PST) Received: (from sos@localhost) by freebsd.dk (8.11.6/8.11.6) id g16Keii03909; Wed, 6 Feb 2002 21:40:44 +0100 (CET) (envelope-from sos) From: Søren Schmidt Message-Id: <200202062040.g16Keii03909@freebsd.dk> Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-raid.c ata-raid.h src/sys/dev/usb uhci.c src/sys/sys syscall.h syscall.mk sysproto.h In-Reply-To: <20020206203215.GL82640@squall.waterspout.com> To: Will Andrews Date: Wed, 6 Feb 2002 21:40:44 +0100 (CET) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Reply-To: sos@freebsd.dk X-Mailer: ELM [version 2.4ME+ PL94b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It seems Will Andrews wrote: > On Wed, Feb 06, 2002 at 09:27:00PM +0100, Søren Schmidt wrote: > > WHAT? I havn't seen a single mail from you on that matter, hrmpf! > > He sent it to -current or -hackers a few days ago, not sure which. Hmm, that must have been a very descriptive Subject: since it has gotten past here without notice, but I'll gladly admit that if the subject of things are not obiviously something I need to read, well... Take that as a hint to the amount of garbage on the lists... -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 12:42:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 51FA937B41B; Wed, 6 Feb 2002 12:42:36 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16KgaP43417; Wed, 6 Feb 2002 12:42:36 -0800 (PST) (envelope-from markm) Message-Id: <200202062042.g16KgaP43417@freefall.freebsd.org> From: Mark Murray Date: Wed, 6 Feb 2002 12:42:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ypserv Makefile.yp X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/06 12:42:36 PST Modified files: usr.sbin/ypserv Makefile.yp Log: Fix an inconsistency between what FreeBSD NIS and AMD think the AMD map name should be. Revision Changes Path 1.33 +4 -4 src/usr.sbin/ypserv/Makefile.yp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 12:49:53 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 64D3637B435; Wed, 6 Feb 2002 12:48:03 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16Km3b44135; Wed, 6 Feb 2002 12:48:03 -0800 (PST) (envelope-from markm) Message-Id: <200202062048.g16Km3b44135@freefall.freebsd.org> From: Mark Murray Date: Wed, 6 Feb 2002 12:48:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ypserv ypserv.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/06 12:48:03 PST Modified files: usr.sbin/ypserv ypserv.8 Log: Sort out the documentation WRT TCP_WRAPPERs, which is now enabled. Revision Changes Path 1.32 +2 -12 src/usr.sbin/ypserv/ypserv.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 12:55:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D77D337B42A; Wed, 6 Feb 2002 12:55:28 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16KtSr45136; Wed, 6 Feb 2002 12:55:28 -0800 (PST) (envelope-from wollman) Message-Id: <200202062055.g16KtSr45136@freefall.freebsd.org> From: Garrett Wollman Date: Wed, 6 Feb 2002 12:55:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/misc iso3166 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wollman 2002/02/06 12:55:28 PST Modified files: (Branch: RELENG_4) share/misc iso3166 Log: MFC revs. 1.7 and 1.8. PR: 34608, 22570 Submitted by: Laurent Wacrenier Revision Changes Path 1.6.2.1 +9 -7 src/share/misc/iso3166 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 12:59:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A59B37B400; Wed, 6 Feb 2002 12:59:18 -0800 (PST) Received: (from wollman@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16KxIl45755; Wed, 6 Feb 2002 12:59:18 -0800 (PST) (envelope-from wollman) Message-Id: <200202062059.g16KxIl45755@freefall.freebsd.org> From: Garrett Wollman Date: Wed, 6 Feb 2002 12:59:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/misc iso639 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wollman 2002/02/06 12:59:18 PST Modified files: (Branch: RELENG_4) share/misc iso639 Log: MFC revs. 1.3 and 1.4: add updated alpha-3 codes. Obtained from: ISO 639-2/RA, Revision Changes Path 1.2.2.1 +466 -169 src/share/misc/iso639 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 13: 4:39 2002 Delivered-To: cvs-all@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 70DC937B417; Wed, 6 Feb 2002 13:04:36 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.4) id g16L4ZI56267; Wed, 6 Feb 2002 16:04:35 -0500 (EST) (envelope-from wollman) Date: Wed, 6 Feb 2002 16:04:35 -0500 (EST) From: Garrett Wollman Message-Id: <200202062104.g16L4ZI56267@khavrinen.lcs.mit.edu> To: Garrett Wollman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/misc iso639 In-Reply-To: <200202062059.g16KxIl45755@freefall.freebsd.org> References: <200202062059.g16KxIl45755@freefall.freebsd.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG < said: > MFC revs. 1.3 and 1.4: add updated alpha-3 codes. > Obtained from: ISO 639-2/RA, So if any crazed documenter was waiting for this to translate the handbook into Dene (den) or Old Norse (non), here's your cue! -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 13: 5:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5009337B404; Wed, 6 Feb 2002 13:05:24 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16L5ON50089; Wed, 6 Feb 2002 13:05:24 -0800 (PST) (envelope-from pat) Message-Id: <200202062105.g16L5ON50089@freefall.freebsd.org> From: Patrick Li Date: Wed, 6 Feb 2002 13:05:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/wmlj Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/06 13:05:24 PST Modified files: net/wmlj Makefile distinfo Log: Update to 0.3 PR: 34667 Submitted by: maintainer Revision Changes Path 1.3 +2 -3 ports/net/wmlj/Makefile 1.3 +1 -1 ports/net/wmlj/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 13:11:39 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0745337B425; Wed, 6 Feb 2002 13:11:37 -0800 (PST) Received: (from jeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16LBaI51299; Wed, 6 Feb 2002 13:11:36 -0800 (PST) (envelope-from jeh) Message-Id: <200202062111.g16LBaI51299@freefall.freebsd.org> From: "James E. Housley" Date: Wed, 6 Feb 2002 13:11:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/uvscan-dat Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeh 2002/02/06 13:11:36 PST Modified files: security/uvscan-dat Makefile distinfo Log: Update to 4185 Revision Changes Path 1.79 +1 -1 ports/security/uvscan-dat/Makefile 1.77 +1 -1 ports/security/uvscan-dat/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 13:38:23 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7013137B41B; Wed, 6 Feb 2002 13:38:20 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16LcKG55977; Wed, 6 Feb 2002 13:38:20 -0800 (PST) (envelope-from markm) Message-Id: <200202062138.g16LcKG55977@freefall.freebsd.org> From: Mark Murray Date: Wed, 6 Feb 2002 13:38:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 Makefile random_harvest.9 rijndael.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/06 13:38:20 PST Modified files: share/man/man9 Makefile Added files: share/man/man9 random_harvest.9 rijndael.9 Log: Document entropy device bits. Revision Changes Path 1.150 +1 -0 src/share/man/man9/Makefile 1.1 +102 -0 src/share/man/man9/random_harvest.9 (new) 1.1 +135 -0 src/share/man/man9/rijndael.9 (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 13:43: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0845137B425; Wed, 6 Feb 2002 13:42:59 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16Lgxd56688; Wed, 6 Feb 2002 13:42:59 -0800 (PST) (envelope-from markm) Message-Id: <200202062142.g16Lgxd56688@freefall.freebsd.org> From: Mark Murray Date: Wed, 6 Feb 2002 13:42:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4/man4.i386 npx.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/06 13:42:58 PST Modified files: share/man/man4/man4.i386 npx.4 Log: CURRENT-tyyle updates. This document was (is?) in the dark ages. Revision Changes Path 1.14 +43 -3 src/share/man/man4/man4.i386/npx.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 13:45:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7440437B416; Wed, 6 Feb 2002 13:45:48 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16LjmX57125; Wed, 6 Feb 2002 13:45:48 -0800 (PST) (envelope-from markm) Message-Id: <200202062145.g16LjmX57125@freefall.freebsd.org> From: Mark Murray Date: Wed, 6 Feb 2002 13:45:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/growfs growfs.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/06 13:45:48 PST Modified files: sbin/growfs growfs.8 Log: Minor grammar fixes. Revision Changes Path 1.10 +5 -5 src/sbin/growfs/growfs.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 13:58:42 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9754D37B420; Wed, 6 Feb 2002 13:58:30 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16LwUk59397; Wed, 6 Feb 2002 13:58:30 -0800 (PST) (envelope-from markm) Message-Id: <200202062158.g16LwUk59397@freefall.freebsd.org> From: Mark Murray Date: Wed, 6 Feb 2002 13:58:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/06 13:58:30 PST Modified files: share/man Makefile Log: Allow local tweaks when messing with manpages. Revision Changes Path 1.12 +4 -2 src/share/man/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 14: 3:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C95DF37B42A; Wed, 6 Feb 2002 14:03:26 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16M3Qk60179; Wed, 6 Feb 2002 14:03:26 -0800 (PST) (envelope-from knu) Message-Id: <200202062203.g16M3Qk60179@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 6 Feb 2002 14:03:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/ruby-openssl Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/06 14:03:26 PST Modified files: security/ruby-openssl Makefile distinfo Log: Update to 0.1.1. Revision Changes Path 1.9 +1 -1 ports/security/ruby-openssl/Makefile 1.9 +1 -1 ports/security/ruby-openssl/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 14: 3:41 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 19BFA37B428; Wed, 6 Feb 2002 14:03:33 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16M3X860211; Wed, 6 Feb 2002 14:03:33 -0800 (PST) (envelope-from knu) Message-Id: <200202062203.g16M3X860211@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 6 Feb 2002 14:03:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/ruby-algebra Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/06 14:03:33 PST Modified files: math/ruby-algebra Makefile distinfo Log: Update to 0.56. Revision Changes Path 1.6 +4 -1 ports/math/ruby-algebra/Makefile 1.6 +1 -1 ports/math/ruby-algebra/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 14: 6:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0F4AF37B419; Wed, 6 Feb 2002 14:06:49 -0800 (PST) Received: (from ambrisko@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16M6nm64267; Wed, 6 Feb 2002 14:06:49 -0800 (PST) (envelope-from ambrisko) Message-Id: <200202062206.g16M6nm64267@freefall.freebsd.org> From: Doug Ambrisko Date: Wed, 6 Feb 2002 14:06:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_sis.c if_sisreg.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ambrisko 2002/02/06 14:06:48 PST Modified files: sys/pci if_sis.c if_sisreg.h Log: Fix support for 630ET support. We don't need the Linux part to set the mii access mode. Fix the device ID and make it read the mac via sis_read_mac. Reviewed by: imp MFC after: 1 week Revision Changes Path 1.48 +3 -10 src/sys/pci/if_sis.c 1.13 +1 -1 src/sys/pci/if_sisreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 14:21:28 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ECE5037B41F; Wed, 6 Feb 2002 14:21:12 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16MLC266192; Wed, 6 Feb 2002 14:21:12 -0800 (PST) (envelope-from knu) Message-Id: <200202062221.g16MLC266192@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 6 Feb 2002 14:21:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/ruby-webrick Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/06 14:21:12 PST Modified files: www Makefile Added files: www/ruby-webrick Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add ruby-webrick, an HTTP server toolkit for Ruby. You can write your custom web server very easily. Revision Changes Path 1.465 +1 -0 ports/www/Makefile 1.1 +38 -0 ports/www/ruby-webrick/Makefile (new) 1.1 +1 -0 ports/www/ruby-webrick/distinfo (new) 1.1 +1 -0 ports/www/ruby-webrick/pkg-comment (new) 1.1 +4 -0 ports/www/ruby-webrick/pkg-descr (new) 1.1 +49 -0 ports/www/ruby-webrick/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 14:21:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E3B437B42A; Wed, 6 Feb 2002 14:21:18 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16MLIu66227; Wed, 6 Feb 2002 14:21:18 -0800 (PST) (envelope-from knu) Message-Id: <200202062221.g16MLIu66227@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 6 Feb 2002 14:21:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/06 14:21:18 PST Modified files: . modules Log: ruby-webrick --> ports/www/ruby-webrick Revision Changes Path 1.4653 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 14:36:22 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A138637B417; Wed, 6 Feb 2002 14:36:19 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16MaJn68344; Wed, 6 Feb 2002 14:36:19 -0800 (PST) (envelope-from knu) Message-Id: <200202062236.g16MaJn68344@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 6 Feb 2002 14:36:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/ruby-ncurses Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/06 14:36:19 PST Modified files: devel Makefile Added files: devel/ruby-ncurses Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add ruby-ncurses, a Ruby interface to ncurses. Revision Changes Path 1.745 +1 -0 ports/devel/Makefile 1.1 +40 -0 ports/devel/ruby-ncurses/Makefile (new) 1.1 +1 -0 ports/devel/ruby-ncurses/distinfo (new) 1.1 +1 -0 ports/devel/ruby-ncurses/pkg-comment (new) 1.1 +4 -0 ports/devel/ruby-ncurses/pkg-descr (new) 1.1 +5 -0 ports/devel/ruby-ncurses/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 14:36:45 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B548D37B42C; Wed, 6 Feb 2002 14:36:25 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16MaPU68383; Wed, 6 Feb 2002 14:36:25 -0800 (PST) (envelope-from knu) Message-Id: <200202062236.g16MaPU68383@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 6 Feb 2002 14:36:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG knu 2002/02/06 14:36:25 PST Modified files: . modules Log: ruby-ncurses --> ports/devel/ruby-ncurses Revision Changes Path 1.4654 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 14:40:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 03F7437B400; Wed, 6 Feb 2002 14:40:05 -0800 (PST) Received: (from nectar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16Me5269127; Wed, 6 Feb 2002 14:40:05 -0800 (PST) (envelope-from nectar) Message-Id: <200202062240.g16Me5269127@freefall.freebsd.org> From: Jacques Vidrine Date: Wed, 6 Feb 2002 14:40:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/shells/esh Makefile distinfo pkg-descr ports/shells/esh/files patch-aa patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2002/02/06 14:40:05 PST Modified files: shells/esh Makefile distinfo pkg-descr shells/esh/files patch-aa Removed files: shells/esh/files patch-ab Log: Update 0.8 -> 0.8.5. Release MAINTAINER. Revision Changes Path 1.10 +6 -4 ports/shells/esh/Makefile 1.2 +1 -1 ports/shells/esh/distinfo 1.3 +14 -12 ports/shells/esh/files/patch-aa 1.3 +0 -18 ports/shells/esh/files/patch-ab (dead) 1.3 +1 -3 ports/shells/esh/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 14:45:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9CAC437B41B; Wed, 6 Feb 2002 14:45:44 -0800 (PST) Received: (from nectar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g16Mjip70159; Wed, 6 Feb 2002 14:45:44 -0800 (PST) (envelope-from nectar) Message-Id: <200202062245.g16Mjip70159@freefall.freebsd.org> From: Jacques Vidrine Date: Wed, 6 Feb 2002 14:45:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/stella Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nectar 2002/02/06 14:45:44 PST Modified files: emulators/stella Makefile Log: Release MAINTAINER. Revision Changes Path 1.12 +2 -2 ports/emulators/stella/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 14:58:53 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 3AC5737B421; Wed, 6 Feb 2002 14:58:48 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 51ECF5341; Wed, 6 Feb 2002 23:58:46 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: obrien@FreeBSD.org Cc: Robert Watson , Kris Kennaway , Mark Murray , current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Not committing WARNS settings... References: <3C60EDC8.28844031@mindspring.com> <20020206092304.E96921@dragon.nuxi.com> From: Dag-Erling Smorgrav Date: 06 Feb 2002 23:58:45 +0100 In-Reply-To: <20020206092304.E96921@dragon.nuxi.com> Message-ID: Lines: 12 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "David O'Brien" writes: > Well... it would be nice if people would do CORRECT fixes. From > some things DES was saying, people are making some really stupid "fixes" > just to quite warnings. Esp. WRT const. Yes, the YP code is full of strdup()s that have no purpose other than to silence const warnings, and the allocated memory is never freed - nor is the return value from strdup() checked. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 15:45:29 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id 9EA3637B421; Wed, 6 Feb 2002 15:45:19 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g16NjIc72124; Wed, 6 Feb 2002 23:45:18 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id 23CB15A; Wed, 6 Feb 2002 23:42:10 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g16Ng1s34852; Wed, 6 Feb 2002 23:42:01 GMT (envelope-from mark@grondar.za) Message-Id: <200202062342.g16Ng1s34852@greenpeace.grondar.org> To: Dag-Erling Smorgrav Cc: current@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Not committing WARNS settings... References: In-Reply-To: ; from Dag-Erling Smorgrav "06 Feb 2002 23:58:45 +0100." Date: Wed, 06 Feb 2002 23:41:56 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > "David O'Brien" writes: > > Well... it would be nice if people would do CORRECT fixes. From > > some things DES was saying, people are making some really stupid "fixes" > > just to quite warnings. Esp. WRT const. > > Yes, the YP code is full of strdup()s that have no purpose other than > to silence const warnings, and the allocated memory is never freed - > nor is the return value from strdup() checked. Some strdup()s are ok. if they are definitely one-offs, then they are no worse than "char foo[BAR]" for some value of BAR. Others can be downright evil. M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 16:42:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B13137B41D; Wed, 6 Feb 2002 16:42:46 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g170gkH93778; Wed, 6 Feb 2002 16:42:46 -0800 (PST) (envelope-from ijliao) Message-Id: <200202070042.g170gkH93778@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 6 Feb 2002 16:42:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/dnssecwalker Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/06 16:42:46 PST Modified files: net Makefile Added files: net/dnssecwalker Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add dnssec walker DNSSEC Walker Revision Changes Path 1.706 +1 -0 ports/net/Makefile 1.1 +28 -0 ports/net/dnssecwalker/Makefile (new) 1.1 +1 -0 ports/net/dnssecwalker/distinfo (new) 1.1 +1 -0 ports/net/dnssecwalker/pkg-comment (new) 1.1 +4 -0 ports/net/dnssecwalker/pkg-descr (new) 1.1 +1 -0 ports/net/dnssecwalker/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 16:42:53 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D49C537B41A; Wed, 6 Feb 2002 16:42:48 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g170gm993811; Wed, 6 Feb 2002 16:42:48 -0800 (PST) (envelope-from ijliao) Message-Id: <200202070042.g170gm993811@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 6 Feb 2002 16:42:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/06 16:42:48 PST Modified files: . modules Log: dnssecwalker --> ports/net/dnssecwalker Revision Changes Path 1.4655 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 16:54:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E7F3E37B41A; Wed, 6 Feb 2002 16:54:32 -0800 (PST) Received: (from mckusick@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g170sWk95807; Wed, 6 Feb 2002 16:54:32 -0800 (PST) (envelope-from mckusick) Message-Id: <200202070054.g170sWk95807@freefall.freebsd.org> From: Kirk McKusick Date: Wed, 6 Feb 2002 16:54:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ffs ffs_softdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mckusick 2002/02/06 16:54:32 PST Modified files: sys/ufs/ffs ffs_softdep.c Log: Occationally deleted files would hang around for hours or days without being reclaimed. This bug was introduced in revision 1.95 dealing with filenames placed in newly allocated directory blocks, thus is not present in 4.X systems. The bug is triggered when a new entry is made in a directory after the data block containing the original new entry has been written, but before the inode that references the data block has been written. Submitted by: Bill Fenner Revision Changes Path 1.107 +10 -7 src/sys/ufs/ffs/ffs_softdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 17: 3:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5548237B41C; Wed, 6 Feb 2002 17:03:48 -0800 (PST) Received: (from jim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1713mZ97255; Wed, 6 Feb 2002 17:03:48 -0800 (PST) (envelope-from jim) Message-Id: <200202070103.g1713mZ97255@freefall.freebsd.org> From: Jim Mock Date: Wed, 6 Feb 2002 17:03:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/cyrus pkg-deinstall X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jim 2002/02/06 17:03:48 PST Modified files: mail/cyrus pkg-deinstall Log: Fix a typo. PKG_PREIFX -> PKG_PREFIX Submitted by: Krzysztof Stryjek on -ports Revision Changes Path 1.2 +2 -2 ports/mail/cyrus/pkg-deinstall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 17:13:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 91C7C37B42F; Wed, 6 Feb 2002 17:13:35 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g171DZA02426; Wed, 6 Feb 2002 17:13:35 -0800 (PST) (envelope-from ijliao) Message-Id: <200202070113.g171DZA02426@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 6 Feb 2002 17:13:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile ports/security/ccrypt Makefile distinfo pkg-comment pkg-descr pkg-plist ports/security/ccrypt/files patch-Makefile.in patch-doc::Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/06 17:13:35 PST Modified files: security Makefile Added files: security/ccrypt Makefile distinfo pkg-comment pkg-descr pkg-plist security/ccrypt/files patch-Makefile.in patch-doc::Makefile.in Log: add ccrypt 1.2 A command-line utility for encrypting and decrypting files and streams Revision Changes Path 1.268 +1 -0 ports/security/Makefile 1.1 +32 -0 ports/security/ccrypt/Makefile (new) 1.1 +1 -0 ports/security/ccrypt/distinfo (new) 1.1 +11 -0 ports/security/ccrypt/files/patch-Makefile.in (new) 1.1 +11 -0 ports/security/ccrypt/files/patch-doc::Makefile.in (new) 1.1 +1 -0 ports/security/ccrypt/pkg-comment (new) 1.1 +22 -0 ports/security/ccrypt/pkg-descr (new) 1.1 +6 -0 ports/security/ccrypt/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 17:13:58 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E1A937B405; Wed, 6 Feb 2002 17:13:38 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g171Dcv02460; Wed, 6 Feb 2002 17:13:38 -0800 (PST) (envelope-from ijliao) Message-Id: <200202070113.g171Dcv02460@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 6 Feb 2002 17:13:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/06 17:13:38 PST Modified files: . modules Log: ccrypt --> ports/security/ccrypt Revision Changes Path 1.4656 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 17:20: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 20ECD37B41E; Wed, 6 Feb 2002 17:19:57 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g171Juf03835; Wed, 6 Feb 2002 17:19:56 -0800 (PST) (envelope-from petef) Message-Id: <200202070119.g171Juf03835@freefall.freebsd.org> From: Pete Fritchman Date: Wed, 6 Feb 2002 17:19:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/06 17:19:56 PST Modified files: . modules Log: libstroke --> ports/devel/libstroke Revision Changes Path 1.4657 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 17:20: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4421037B42B; Wed, 6 Feb 2002 17:19:53 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g171Jra03791; Wed, 6 Feb 2002 17:19:53 -0800 (PST) (envelope-from petef) Message-Id: <200202070119.g171Jra03791@freefall.freebsd.org> From: Pete Fritchman Date: Wed, 6 Feb 2002 17:19:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/libstroke Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/06 17:19:53 PST Modified files: devel Makefile Added files: devel/libstroke Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add libstroke 0.5.1, a stroke translation library. Submitted by: Jerry A! Revision Changes Path 1.746 +1 -0 ports/devel/Makefile 1.1 +19 -0 ports/devel/libstroke/Makefile (new) 1.1 +1 -0 ports/devel/libstroke/distinfo (new) 1.1 +1 -0 ports/devel/libstroke/pkg-comment (new) 1.1 +12 -0 ports/devel/libstroke/pkg-descr (new) 1.1 +6 -0 ports/devel/libstroke/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 17:22: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F026A37B423; Wed, 6 Feb 2002 17:21:54 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g171LsW04397; Wed, 6 Feb 2002 17:21:54 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202070121.g171LsW04397@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 6 Feb 2002 17:21:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/xmlcharent Makefile distinfo pkg-comment pkg-descr pkg-plist ports/textproc/xmlcharent/files catalog X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/06 17:21:54 PST Modified files: textproc Makefile Added files: textproc/xmlcharent Makefile distinfo pkg-comment pkg-descr pkg-plist textproc/xmlcharent/files catalog Log: Add xmlcharent 0.1, XML character entities. PR: ports/34482 Submitted by: Kimura Fuyuki Revision Changes Path 1.313 +1 -0 ports/textproc/Makefile 1.1 +35 -0 ports/textproc/xmlcharent/Makefile (new) 1.1 +1 -0 ports/textproc/xmlcharent/distinfo (new) 1.1 +56 -0 ports/textproc/xmlcharent/files/catalog (new) 1.1 +1 -0 ports/textproc/xmlcharent/pkg-comment (new) 1.1 +6 -0 ports/textproc/xmlcharent/pkg-descr (new) 1.1 +25 -0 ports/textproc/xmlcharent/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 17:22:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9C35637B41A; Wed, 6 Feb 2002 17:21:58 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g171Lwb04433; Wed, 6 Feb 2002 17:21:58 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202070121.g171Lwb04433@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 6 Feb 2002 17:21:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/06 17:21:58 PST Modified files: . modules Log: xmlcharent --> ports/textproc/xmlcharent Revision Changes Path 1.4658 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 17:32:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E7A237B41F; Wed, 6 Feb 2002 17:32:53 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g171Wqj07805; Wed, 6 Feb 2002 17:32:52 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202070132.g171Wqj07805@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 6 Feb 2002 17:32:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/06 17:32:52 PST Modified files: . modules Log: jrefentry --> ports/textproc/jrefentry Revision Changes Path 1.4659 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 17:32:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C11A237B416; Wed, 6 Feb 2002 17:32:48 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g171WmH07488; Wed, 6 Feb 2002 17:32:48 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202070132.g171WmH07488@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 6 Feb 2002 17:32:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/jrefentry Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/06 17:32:48 PST Modified files: textproc Makefile Added files: textproc/jrefentry Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add jrefentry 1.1, DocBook XML JRefEntry DTD. PR: ports/34526 Submitted by: Kimura Fuyuki Revision Changes Path 1.314 +1 -0 ports/textproc/Makefile 1.1 +40 -0 ports/textproc/jrefentry/Makefile (new) 1.1 +1 -0 ports/textproc/jrefentry/distinfo (new) 1.1 +1 -0 ports/textproc/jrefentry/pkg-comment (new) 1.1 +8 -0 ports/textproc/jrefentry/pkg-descr (new) 1.1 +9 -0 ports/textproc/jrefentry/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 17:38: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7DFE737B400; Wed, 6 Feb 2002 17:37:53 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g171brc11969; Wed, 6 Feb 2002 17:37:53 -0800 (PST) (envelope-from obrien) Message-Id: <200202070137.g171brc11969@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 6 Feb 2002 17:37:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/ld Makefile Makefile.alpha Makefile.i386 Makefile.ia64 Makefile.m68k Makefile.powerpc Makefile.sparc64 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/06 17:37:53 PST Modified files: gnu/usr.bin/binutils/ld Makefile Makefile.alpha Makefile.i386 Makefile.ia64 Makefile.m68k Makefile.powerpc Makefile.sparc64 Log: Set the SCRIPTDIR to be rooted at TOOLS_PREFIX rather than DESTDIR. (the two may be different (ie, build vs. runtime)) Allow ldscript's SEARCH_DIR do be rooted somewhere other than `/'. (in this case at TOOLS_PREFIX) These changes are most helpful during `make buildworld' so that the shared libs built in the middle of `make buildworld' are used vs. the ones in /usr/lib on the build machine. Submitted by: ru Revision Changes Path 1.20 +1 -1 src/gnu/usr.bin/binutils/ld/Makefile 1.14 +1 -1 src/gnu/usr.bin/binutils/ld/Makefile.alpha 1.15 +1 -1 src/gnu/usr.bin/binutils/ld/Makefile.i386 1.2 +1 -1 src/gnu/usr.bin/binutils/ld/Makefile.ia64 1.6 +1 -1 src/gnu/usr.bin/binutils/ld/Makefile.m68k 1.8 +1 -1 src/gnu/usr.bin/binutils/ld/Makefile.powerpc 1.8 +1 -1 src/gnu/usr.bin/binutils/ld/Makefile.sparc64 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 17:41: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C202337B427; Wed, 6 Feb 2002 17:40:53 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g171erY12425; Wed, 6 Feb 2002 17:40:53 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202070140.g171erY12425@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 6 Feb 2002 17:40:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/06 17:40:53 PST Modified files: . modules Log: dtd2relax --> ports/textproc/dtd2relax Revision Changes Path 1.4660 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 17:41:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 334ED37B419; Wed, 6 Feb 2002 17:40:49 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g171enr12373; Wed, 6 Feb 2002 17:40:49 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202070140.g171enr12373@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 6 Feb 2002 17:40:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/dtd2relax Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/06 17:40:49 PST Modified files: textproc Makefile Added files: textproc/dtd2relax Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add dtd2relax 1.1.1, DTD to RELAX converter for Java. PR: ports/34548 Submitted by: Kimura Fuyuki Revision Changes Path 1.315 +1 -0 ports/textproc/Makefile 1.1 +36 -0 ports/textproc/dtd2relax/Makefile (new) 1.1 +2 -0 ports/textproc/dtd2relax/distinfo (new) 1.1 +1 -0 ports/textproc/dtd2relax/pkg-comment (new) 1.1 +6 -0 ports/textproc/dtd2relax/pkg-descr (new) 1.1 +12 -0 ports/textproc/dtd2relax/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 17:45: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A63F37B41B; Wed, 6 Feb 2002 17:44:56 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g171iud13124; Wed, 6 Feb 2002 17:44:56 -0800 (PST) (envelope-from petef) Message-Id: <200202070144.g171iud13124@freefall.freebsd.org> From: Pete Fritchman Date: Wed, 6 Feb 2002 17:44:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/fvwm2 Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/06 17:44:55 PST Modified files: x11-wm/fvwm2 Makefile distinfo Log: Update to 2.4.5 PR: 34549 Submitted by: Anders Andersson Add libstroke support (a WITH_STROKE hook). Submitted by: Jerry A! Revision Changes Path 1.40 +10 -1 ports/x11-wm/fvwm2/Makefile 1.16 +1 -1 ports/x11-wm/fvwm2/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 17:47:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D69A437B422; Wed, 6 Feb 2002 17:46:52 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g171kq413556; Wed, 6 Feb 2002 17:46:52 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202070146.g171kq413556@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 6 Feb 2002 17:46:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/dtdinst Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/06 17:46:52 PST Modified files: textproc Makefile Added files: textproc/dtdinst Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add dtdinst 2001.12.03, converts DTDs to XML instance, in a specific or RELAX NG format. PR: ports/34575 Submitted by: Kimura Fuyuki Revision Changes Path 1.316 +1 -0 ports/textproc/Makefile 1.1 +38 -0 ports/textproc/dtdinst/Makefile (new) 1.1 +4 -0 ports/textproc/dtdinst/distinfo (new) 1.1 +1 -0 ports/textproc/dtdinst/pkg-comment (new) 1.1 +8 -0 ports/textproc/dtdinst/pkg-descr (new) 1.1 +6 -0 ports/textproc/dtdinst/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 17:47:17 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF2F237B405; Wed, 6 Feb 2002 17:46:58 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g171kwI13594; Wed, 6 Feb 2002 17:46:58 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202070146.g171kwI13594@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 6 Feb 2002 17:46:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/06 17:46:58 PST Modified files: . modules Log: dtdinst --> ports/textproc/dtdinst Revision Changes Path 1.4661 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 18:25:33 2002 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 9CF1637B417; Wed, 6 Feb 2002 18:25:17 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g172PFi18742; Wed, 6 Feb 2002 19:25:15 -0700 (MST) (envelope-from imp@village.org) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id g172PEL41542; Wed, 6 Feb 2002 19:25:14 -0700 (MST) (envelope-from imp@village.org) Date: Wed, 06 Feb 2002 19:24:52 -0700 (MST) Message-Id: <20020206.192452.82225187.imp@village.org> To: obrien@FreeBSD.ORG Cc: rwatson@FreeBSD.ORG, kris@FreeBSD.ORG, markm@FreeBSD.ORG, current@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: Not committing WARNS settings... From: "M. Warner Losh" In-Reply-To: <20020206092304.E96921@dragon.nuxi.com> References: <3C60EDC8.28844031@mindspring.com> <20020206092304.E96921@dragon.nuxi.com> X-Mailer: Mew version 2.1 on Emacs 21.1 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message: <20020206092304.E96921@dragon.nuxi.com> "David O'Brien" writes: : I am starting to think all WARNS cleanup patches should be posted to : audit and have an "Approved by: audit" or any of our accepted very : knowledgeable C standards people. I think this is a good idea since a number of the warnings are subtle. Look at the recent 8 -> 8U change causing so much problems. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 18:54:33 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C152837B404; Wed, 6 Feb 2002 18:54:30 -0800 (PST) Received: (from green@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g172sUW25202; Wed, 6 Feb 2002 18:54:30 -0800 (PST) (envelope-from green) Message-Id: <200202070254.g172sUW25202@freefall.freebsd.org> From: Brian Feldman Date: Wed, 6 Feb 2002 18:54:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/dd args.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG green 2002/02/06 18:54:30 PST Modified files: bin/dd args.c Log: Correct a logic bug that snuck in and broke multiplication of off_ts. Revision Changes Path 1.30 +1 -1 src/bin/dd/args.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 20:31:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1244437B404; Wed, 6 Feb 2002 20:31:13 -0800 (PST) Received: (from logo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g174VDZ44710; Wed, 6 Feb 2002 20:31:13 -0800 (PST) (envelope-from logo) Message-Id: <200202070431.g174VDZ44710@freefall.freebsd.org> From: Valentino Vaschetto Date: Wed, 6 Feb 2002 20:31:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/hubs article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG logo 2002/02/06 20:31:12 PST Modified files: en_US.ISO8859-1/articles/hubs article.sgml Log: - Fixed typo where it points cvsup mirrors to mirror from ftp-master, instead of cvsup-master. - Deleted an bogus space - Added stats link for ftp2.FreeBSD.org Revision Changes Path 1.6 +7 -3 doc/en_US.ISO8859-1/articles/hubs/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 20:33:20 2002 Delivered-To: cvs-all@freebsd.org Received: from mail11.speakeasy.net (mail11.speakeasy.net [216.254.0.211]) by hub.freebsd.org (Postfix) with ESMTP id 0635D37B41F for ; Wed, 6 Feb 2002 20:33:11 -0800 (PST) Received: (qmail 20547 invoked from network); 7 Feb 2002 04:33:03 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([65.90.117.149]) (envelope-sender ) by mail11.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 7 Feb 2002 04:33:03 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20020206201716.B2295-100000@gamplex.bde.org> Date: Wed, 06 Feb 2002 23:32:37 -0500 (EST) From: John Baldwin To: Bruce Evans Subject: RE: cvs commit: src/sys/i386/i386 db_interface.c Cc: Bruce Evans , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 06-Feb-02 Bruce Evans wrote: > On Tue, 5 Feb 2002, John Baldwin wrote: > >> On 05-Feb-02 Bruce Evans wrote: >> > On Tue, 5 Feb 2002, John Baldwin wrote: >> >> Err, have you tested this? In my tests locally this still doesn't work >> >> properly which is why I haven't committed it. :( >> > >> > PS: perhaps you are thinking of the flag in Debugger(). That is >> > ... >> >> Hmm, the problem I was having is that interrupts were still firing while I >> was >> in ddb. I could tell because new KTR entries due to clock interrutps kept >> showing up. > > This can't happen :-). Except for bugs which would affect most forms > of interrupt disablement. Perhaps there is a path through trap() which > enables interrupts even for debugger traps, but only when they are > enabled when the trap occurs. Ah, I see a related broken path, not > for debugger traps but for pagefaults. Interrupts are enabled for > pagefaults almost unconditionally, so a pagefault in ddb would cause > problems. I think this causes the "Context switches not allowed in the > Debugger" message. I thought that this was caused by a more fundamental > bug. Hmm, agreed that we shouldn't re-enable interrupts unless they were enabled in the previous frame. I'll test this out again locally to see if I still have problems though. > BTW, why does the spinlocking in kern_clock.c use MTX_QUIET? nanotime() > for witness timestamps should work normally there. I noticed this > when I uninlined mtx_*_spin_*(). The `flags' versions are not used > anywhere else. Because if you are trying to debug locks using KTR_LOCK you get lots of noise from the clock interrupts. :) > Bruce -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 20:39: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7102D37B422; Wed, 6 Feb 2002 20:39:05 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g174d5S45458; Wed, 6 Feb 2002 20:39:05 -0800 (PST) (envelope-from imp) Message-Id: <200202070439.g174d5S45458@freefall.freebsd.org> From: Warner Losh Date: Wed, 6 Feb 2002 20:39:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/xtend packet.c status.c user.c xtend.c xtend.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/06 20:39:05 PST Modified files: libexec/xtend packet.c status.c user.c xtend.c xtend.h Log: o __P removal. o Use new prototypes and function definitions only. Revision Changes Path 1.9 +2 -4 src/libexec/xtend/packet.c 1.9 +5 -4 src/libexec/xtend/status.c 1.10 +5 -9 src/libexec/xtend/user.c 1.12 +26 -21 src/libexec/xtend/xtend.c 1.7 +1 -1 src/libexec/xtend/xtend.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 20:49:38 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 98F8337B41F; Wed, 6 Feb 2002 20:49:34 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g174nYZ46567; Wed, 6 Feb 2002 20:49:34 -0800 (PST) (envelope-from imp) Message-Id: <200202070449.g174nYZ46567@freefall.freebsd.org> From: Warner Losh Date: Wed, 6 Feb 2002 20:49:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/tftpd tftpd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/06 20:49:34 PST Modified files: libexec/tftpd tftpd.c Log: o __P removal o Use new-style prototypes and function definitions. o Fix timeout and justquit to have proper signatures for signal handlers. Mark the args as __unused. o remove register Revision Changes Path 1.22 +31 -41 src/libexec/tftpd/tftpd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 20:58:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6002837B419; Wed, 6 Feb 2002 20:58:29 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g174wTP47693; Wed, 6 Feb 2002 20:58:29 -0800 (PST) (envelope-from imp) Message-Id: <200202070458.g174wTP47693@freefall.freebsd.org> From: Warner Losh Date: Wed, 6 Feb 2002 20:58:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rshd rshd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/06 20:58:29 PST Modified files: libexec/rshd rshd.c Log: o __P removal o new style definitions/declarations o declare null_conv static and its arguments __unused Revision Changes Path 1.42 +19 -26 src/libexec/rshd/rshd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 21: 7: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E0AC937B41E; Wed, 6 Feb 2002 21:07:04 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17574A52079; Wed, 6 Feb 2002 21:07:04 -0800 (PST) (envelope-from imp) Message-Id: <200202070507.g17574A52079@freefall.freebsd.org> From: Warner Losh Date: Wed, 6 Feb 2002 21:07:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rshd rshd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/06 21:07:04 PST Modified files: libexec/rshd rshd.c Log: o const poison a few prototypes to avoid gcc3 warnings o s/err/error/ in a couple places to avoid shadowing warnings Revision Changes Path 1.43 +9 -9 src/libexec/rshd/rshd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 21:24:56 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B93737B41C; Wed, 6 Feb 2002 21:24:53 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g175Or954230; Wed, 6 Feb 2002 21:24:53 -0800 (PST) (envelope-from imp) Message-Id: <200202070524.g175Or954230@freefall.freebsd.org> From: Warner Losh Date: Wed, 6 Feb 2002 21:24:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rpc.rquotad rquotad.c src/libexec/rpc.rstatd rstat_proc.c rstatd.c src/libexec/rpc.rusersd rusers_proc.c rusersd.c src/libexec/rpc.rwalld rwalld.c src/libexec/rpc.sprayd sprayd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/06 21:24:53 PST Modified files: libexec/rpc.rquotad rquotad.c libexec/rpc.rstatd rstat_proc.c rstatd.c libexec/rpc.rusersd rusers_proc.c rusersd.c libexec/rpc.rwalld rwalld.c libexec/rpc.sprayd sprayd.c Log: o __P removal o use new style prototypes and function definitions o signal handlers need an argument. Mark it unused. Revision Changes Path 1.5 +15 -27 src/libexec/rpc.rquotad/rquotad.c 1.17 +15 -30 src/libexec/rpc.rstatd/rstat_proc.c 1.9 +3 -5 src/libexec/rpc.rstatd/rstatd.c 1.11 +8 -18 src/libexec/rpc.rusersd/rusers_proc.c 1.9 +3 -5 src/libexec/rpc.rusersd/rusersd.c 1.9 +13 -16 src/libexec/rpc.rwalld/rwalld.c 1.6 +5 -9 src/libexec/rpc.sprayd/sprayd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 21:56:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6FFA837B41D; Wed, 6 Feb 2002 21:56:12 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g175uCD57798; Wed, 6 Feb 2002 21:56:12 -0800 (PST) (envelope-from pat) Message-Id: <200202070556.g175uCD57798@freefall.freebsd.org> From: Patrick Li Date: Wed, 6 Feb 2002 21:56:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/hlserver-dod Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/06 21:56:12 PST Modified files: games/hlserver-dod Makefile distinfo pkg-plist Log: Update to 2.0 Revision Changes Path 1.7 +5 -7 ports/games/hlserver-dod/Makefile 1.5 +1 -1 ports/games/hlserver-dod/distinfo 1.5 +631 -325 ports/games/hlserver-dod/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 22:43: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C3BFA37B41C; Wed, 6 Feb 2002 22:43:02 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g176h2v67058; Wed, 6 Feb 2002 22:43:02 -0800 (PST) (envelope-from imp) Message-Id: <200202070643.g176h2v67058@freefall.freebsd.org> From: Warner Losh Date: Wed, 6 Feb 2002 22:43:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/cardbus cardbus.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/06 22:43:02 PST Modified files: sys/dev/cardbus cardbus.c Log: Get rid of the bogus DETACH_NOWARN and don't warn when asked to detach a card that isn't there unless we're booting verbose. It serves no purpose. Revision Changes Path 1.14 +3 -4 src/sys/dev/cardbus/cardbus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 22:43:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F01E37B417; Wed, 6 Feb 2002 22:43:29 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g176hTU67164; Wed, 6 Feb 2002 22:43:29 -0800 (PST) (envelope-from imp) Message-Id: <200202070643.g176hTU67164@freefall.freebsd.org> From: Warner Losh Date: Wed, 6 Feb 2002 22:43:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccard card_if.m X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/06 22:43:29 PST Modified files: sys/dev/pccard card_if.m Log: Remove DETACH_NOWARN Revision Changes Path 1.17 +1 -2 src/sys/dev/pccard/card_if.m To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 22:53: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00C9A37B41E; Wed, 6 Feb 2002 22:52:52 -0800 (PST) Received: (from mike@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g176qps68233; Wed, 6 Feb 2002 22:52:51 -0800 (PST) (envelope-from mike) Message-Id: <200202070652.g176qps68233@freefall.freebsd.org> From: Mike Barcroft Date: Wed, 6 Feb 2002 22:52:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mike 2002/02/06 22:52:51 PST Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Move Jeroen Ruigrok/Asmodai to the Development Team Alumni area. Revision Changes Path 1.92 +3 -4 doc/en_US.ISO8859-1/articles/contributors/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 23: 7:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F0E3837B41B; Wed, 6 Feb 2002 23:07:48 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1777m974024; Wed, 6 Feb 2002 23:07:48 -0800 (PST) (envelope-from ijliao) Message-Id: <200202070707.g1777m974024@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 6 Feb 2002 23:07:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/cad Makefile ports/cad/gnucap Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/06 23:07:48 PST Modified files: cad Makefile Added files: cad/gnucap Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add gnucap 0.30 The Gnu Circuit Analysis Package Revision Changes Path 1.30 +1 -0 ports/cad/Makefile 1.1 +23 -0 ports/cad/gnucap/Makefile (new) 1.1 +1 -0 ports/cad/gnucap/distinfo (new) 1.1 +1 -0 ports/cad/gnucap/pkg-comment (new) 1.1 +22 -0 ports/cad/gnucap/pkg-descr (new) 1.1 +2 -0 ports/cad/gnucap/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 23: 7:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C659C37B404; Wed, 6 Feb 2002 23:07:50 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1777oH74055; Wed, 6 Feb 2002 23:07:50 -0800 (PST) (envelope-from ijliao) Message-Id: <200202070707.g1777oH74055@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 6 Feb 2002 23:07:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/06 23:07:50 PST Modified files: . modules Log: gnucap --> ports/cad/gnucap Revision Changes Path 1.4662 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 23:47:56 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1FB5537B47C; Wed, 6 Feb 2002 23:47:00 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g177l0d80210; Wed, 6 Feb 2002 23:47:00 -0800 (PST) (envelope-from luigi) Message-Id: <200202070747.g177l0d80210@freefall.freebsd.org> From: Luigi Rizzo Date: Wed, 6 Feb 2002 23:47:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_sisreg.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG luigi 2002/02/06 23:47:00 PST Modified files: sys/pci if_sisreg.h Log: Fix a bug in the driver -- the chip will always include the CRC in the received packet size, but the upper level routines want the length without it. Reported-by: Doug Ambrisko, ambrisko@freebsd.org Revision Changes Path 1.14 +2 -1 src/sys/pci/if_sisreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Feb 6 23:48:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D6F7237B431; Wed, 6 Feb 2002 23:47:55 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g177lt780401; Wed, 6 Feb 2002 23:47:55 -0800 (PST) (envelope-from dinoex) Message-Id: <200202070747.g177lt780401@freefall.freebsd.org> From: Dirk Meyer Date: Wed, 6 Feb 2002 23:47:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/licq Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/02/06 23:47:55 PST Modified files: net/licq Makefile Log: Apply patch adds -DWITH_DANTE (should be specified with -DWITH_SOCKS). Submitted by: fjoe Revision Changes Path 1.39 +8 -0 ports/net/licq/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 0: 4:29 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 34BC737B41B; Thu, 7 Feb 2002 00:04:25 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1784PD83426; Thu, 7 Feb 2002 00:04:25 -0800 (PST) (envelope-from luigi) Message-Id: <200202070804.g1784PD83426@freefall.freebsd.org> From: Luigi Rizzo Date: Thu, 7 Feb 2002 00:04:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_sisreg.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG luigi 2002/02/07 00:04:25 PST Modified files: sys/pci if_sisreg.h Log: Use ETHER_CRC_LEN instead of SIS_CRC_SIZE Suggested-by: Archie, Doug Ambrisko Revision Changes Path 1.15 +1 -2 src/sys/pci/if_sisreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 0:25:22 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D632F37B400; Thu, 7 Feb 2002 00:25:19 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g178PJI89900; Thu, 7 Feb 2002 00:25:19 -0800 (PST) (envelope-from ru) Message-Id: <200202070825.g178PJI89900@freefall.freebsd.org> From: Ruslan Ermilov Date: Thu, 7 Feb 2002 00:25:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/02/07 00:25:19 PST Modified files: . access Log: Add Maxim Konovalov (maxim) to committers. Welcome, Maxim! Approved by: core Revision Changes Path 1.282 +1 -0 CVSROOT/access To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 0:35:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 39FBE37B41E; Thu, 7 Feb 2002 00:35:49 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g178ZnM91344; Thu, 7 Feb 2002 00:35:49 -0800 (PST) (envelope-from dinoex) Message-Id: <200202070835.g178ZnM91344@freefall.freebsd.org> From: Dirk Meyer Date: Thu, 7 Feb 2002 00:35:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/licq-qt-gui Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/02/07 00:35:48 PST Modified files: net/licq-qt-gui Makefile Log: Mark as Broken for XFree86 4.x.x. PR: 34534 Revision Changes Path 1.8 +4 -0 ports/net/licq-qt-gui/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 0:39:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C3D3A37B41D; Thu, 7 Feb 2002 00:39:26 -0800 (PST) Received: (from mjacob@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g178dQ291977; Thu, 7 Feb 2002 00:39:26 -0800 (PST) (envelope-from mjacob) Message-Id: <200202070839.g178dQ291977@freefall.freebsd.org> From: Matt Jacob Date: Thu, 7 Feb 2002 00:39:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/tc am7990.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mjacob 2002/02/07 00:39:26 PST Modified files: sys/alpha/tc am7990.c Log: Replace the MFREE that Marshal (Quick Draw) Dillon apparently didn't look for. MFC after: 1 day Revision Changes Path 1.13 +7 -4 src/sys/alpha/tc/am7990.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 1:11:11 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B67137B404; Thu, 7 Feb 2002 01:11:05 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g179B5A00422; Thu, 7 Feb 2002 01:11:05 -0800 (PST) (envelope-from maxim) Message-Id: <200202070911.g179B5A00422@freefall.freebsd.org> From: Maxim Konovalov Date: Thu, 7 Feb 2002 01:11:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/news news.xml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG maxim 2002/02/07 01:11:05 PST Modified files: en/news news.xml Log: Announce my presence as a new committer. Reviewed by: ru Approved by: ru Revision Changes Path 1.60 +14 -1 www/en/news/news.xml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 1:20:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D4AB37B422; Thu, 7 Feb 2002 01:20:54 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g179Ks701972; Thu, 7 Feb 2002 01:20:54 -0800 (PST) (envelope-from maxim) Message-Id: <200202070920.g179Ks701972@freefall.freebsd.org> From: Maxim Konovalov Date: Thu, 7 Feb 2002 01:20:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors article.sgml doc/en_US.ISO8859-1/share/sgml authors.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG maxim 2002/02/07 01:20:54 PST Modified files: en_US.ISO8859-1/articles/contributors article.sgml en_US.ISO8859-1/share/sgml authors.ent Log: Move myself from the contributors list to the developers list. Reviewed by: ru Approved by: ru Revision Changes Path 1.93 +4 -4 doc/en_US.ISO8859-1/articles/contributors/article.sgml 1.209 +2 -0 doc/en_US.ISO8859-1/share/sgml/authors.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 1:24:46 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 54B9137B421; Thu, 7 Feb 2002 01:24:44 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g179Oit02580; Thu, 7 Feb 2002 01:24:44 -0800 (PST) (envelope-from maxim) Message-Id: <200202070924.g179Oit02580@freefall.freebsd.org> From: Maxim Konovalov Date: Thu, 7 Feb 2002 01:24:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG maxim 2002/02/07 01:24:44 PST Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add myself. Reviewed by: ru Approved by: ru Revision Changes Path 1.56 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 1:38:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B0CE037B41F; Thu, 7 Feb 2002 01:38:08 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g179c8b04714; Thu, 7 Feb 2002 01:38:08 -0800 (PST) (envelope-from sobomax) Message-Id: <200202070938.g179c8b04714@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 7 Feb 2002 01:38:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/gswitchit_applet Makefile distinfo pkg-plist ports/x11/gswitchit_applet/files patch-configure patch-ltmain.sh patch-po::Makefile.in.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/07 01:38:08 PST Modified files: x11/gswitchit_applet Makefile distinfo pkg-plist Added files: x11/gswitchit_applet/files patch-configure patch-ltmain.sh patch-po::Makefile.in.in Log: Update to 0.81. Revision Changes Path 1.6 +4 -6 ports/x11/gswitchit_applet/Makefile 1.3 +1 -1 ports/x11/gswitchit_applet/distinfo 1.1 +74 -0 ports/x11/gswitchit_applet/files/patch-configure (new) 1.1 +45 -0 ports/x11/gswitchit_applet/files/patch-ltmain.sh (new) 1.1 +14 -0 ports/x11/gswitchit_applet/files/patch-po::Makefile.in.in (new) 1.2 +22 -4 ports/x11/gswitchit_applet/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 1:54:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DAFF737B416; Thu, 7 Feb 2002 01:54:29 -0800 (PST) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g179sTr07399; Thu, 7 Feb 2002 01:54:29 -0800 (PST) (envelope-from yoichi) Message-Id: <200202070954.g179sTr07399@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Thu, 7 Feb 2002 01:54:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/semantic Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yoichi 2002/02/07 01:54:29 PST Modified files: devel/semantic Makefile pkg-plist Log: *.bnf should be installed in the load-path for semantic-bnf-find-source-on-load-path. PR: ports/34685 Submitted by: maintainer Revision Changes Path 1.3 +3 -5 ports/devel/semantic/Makefile 1.2 +5 -6 ports/devel/semantic/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 1:56:26 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7E4B737B420; Thu, 7 Feb 2002 01:56:22 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g179uMP07888; Thu, 7 Feb 2002 01:56:22 -0800 (PST) (envelope-from sobomax) Message-Id: <200202070956.g179uMP07888@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 7 Feb 2002 01:56:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/ldd ldd.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/07 01:56:22 PST Modified files: (Branch: RELENG_4) usr.bin/ldd ldd.c Log: MFC: GC meaningless assignment. Revision Changes Path 1.18.2.5 +2 -2 src/usr.bin/ldd/ldd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 2: 2:17 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 030C537B428; Thu, 7 Feb 2002 02:02:14 -0800 (PST) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17A2DK12360; Thu, 7 Feb 2002 02:02:13 -0800 (PST) (envelope-from yoichi) Message-Id: <200202071002.g17A2DK12360@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Thu, 7 Feb 2002 02:02:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/jde Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yoichi 2002/02/07 02:02:13 PST Modified files: java/jde Makefile pkg-plist Log: Install missing file java.bnf. PR: ports/34686 Submitted by: maintainer Revision Changes Path 1.2 +2 -1 ports/java/jde/Makefile 1.2 +1 -0 ports/java/jde/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 2:28: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 23EAA37B41B; Thu, 7 Feb 2002 02:27:59 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17ARxX19433; Thu, 7 Feb 2002 02:27:59 -0800 (PST) (envelope-from phk) Message-Id: <200202071027.g17ARxX19433@freefall.freebsd.org> From: Poul-Henning Kamp Date: Thu, 7 Feb 2002 02:27:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha genassym.c src/sys/i386/i386 genassym.c src/sys/ia64/ia64 genassym.c src/sys/powerpc/powerpc genassym.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/02/07 02:27:59 PST Modified files: sys/alpha/alpha genassym.c sys/i386/i386 genassym.c sys/ia64/ia64 genassym.c sys/powerpc/powerpc genassym.c Log: GC the PC_SWITCH* symbols which are not used in assembly anymore. Revision Changes Path 1.36 +0 -1 src/sys/alpha/alpha/genassym.c 1.120 +0 -2 src/sys/i386/i386/genassym.c 1.25 +0 -1 src/sys/ia64/ia64/genassym.c 1.41 +0 -1 src/sys/powerpc/powerpc/genassym.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 2:32:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E207337B436; Thu, 7 Feb 2002 02:32:26 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17AWQJ19982; Thu, 7 Feb 2002 02:32:26 -0800 (PST) (envelope-from roam) Message-Id: <200202071032.g17AWQJ19982@freefall.freebsd.org> From: Peter Pentchev Date: Thu, 7 Feb 2002 02:32:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/autorespond Makefile distinfo ports/mail/autorespond/files patch-autorespond.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2002/02/07 02:32:26 PST Modified files: mail/autorespond Makefile distinfo Added files: mail/autorespond/files patch-autorespond.c Log: Update autorespond to 2.0.2, adding a patch to comment out a definition of strcasestr(), which is already provided by our libc's . Take over maintainership from Neil Blakey-Milner with many thanks for his work on this and other ports! PR: 34024 Submitted by: Oliver Lehmann Approved by: nbm (former maintainer) Revision Changes Path 1.5 +4 -4 ports/mail/autorespond/Makefile 1.3 +1 -1 ports/mail/autorespond/distinfo 1.1 +19 -0 ports/mail/autorespond/files/patch-autorespond.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 2:38:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DFF3E37B404; Thu, 7 Feb 2002 02:38:16 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17AcGW21036; Thu, 7 Feb 2002 02:38:16 -0800 (PST) (envelope-from sobomax) Message-Id: <200202071038.g17AcGW21036@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 7 Feb 2002 02:38:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/tar buffer.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/07 02:38:16 PST Modified files: gnu/usr.bin/tar buffer.c Log: When unpacking compressed archive check exit status of the child (gzip or bzip) and exit with error code if that status != 0. PR: 30876 Submitted by: Simon Gerraty Revision Changes Path 1.5 +21 -3 src/gnu/usr.bin/tar/buffer.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 2:39:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1726F37B420; Thu, 7 Feb 2002 02:39:27 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17AdRH21135; Thu, 7 Feb 2002 02:39:27 -0800 (PST) (envelope-from sobomax) Message-Id: <200202071039.g17AdRH21135@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 7 Feb 2002 02:39:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/tar buffer.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/07 02:39:27 PST Modified files: gnu/usr.bin/tar buffer.c Log: (forced) Previous commit (rev 1.5) is a subject of: MFC after: 2 weeks Revision Changes Path 1.6 +0 -0 src/gnu/usr.bin/tar/buffer.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 2:41:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 40E9B37B416; Thu, 7 Feb 2002 02:41:51 -0800 (PST) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17AfpO21545; Thu, 7 Feb 2002 02:41:51 -0800 (PST) (envelope-from znerd) Message-Id: <200202071041.g17AfpO21545@freefall.freebsd.org> From: Ernst de Haan Date: Thu, 7 Feb 2002 02:41:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/orion Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG znerd 2002/02/07 02:41:51 PST Modified files: www/orion Makefile distinfo pkg-plist Log: Upgraded the application to 1.5.2 Revision Changes Path 1.18 +1 -7 ports/www/orion/Makefile 1.5 +1 -1 ports/www/orion/distinfo 1.9 +8 -0 ports/www/orion/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 2:46: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EB50C37B404; Thu, 7 Feb 2002 02:45:53 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17AjrK22312; Thu, 7 Feb 2002 02:45:53 -0800 (PST) (envelope-from roam) Message-Id: <200202071045.g17AjrK22312@freefall.freebsd.org> From: Peter Pentchev Date: Thu, 7 Feb 2002 02:45:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/qmailadmin Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2002/02/07 02:45:53 PST Modified files: mail/qmailadmin Makefile distinfo pkg-plist Log: Update qmailadmin to 1.0.1. Take over maintainership from Neil Blakey-Milner, with many thanks for his work on this and other ports! PR: 34023 Submitted by: Oliver Lehmann Approved by: nbm (former maintainer) Revision Changes Path 1.7 +15 -7 ports/mail/qmailadmin/Makefile 1.6 +1 -1 ports/mail/qmailadmin/distinfo 1.5 +34 -24 ports/mail/qmailadmin/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 2:49: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D58A637B417; Thu, 7 Feb 2002 02:48:59 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17AmxR22967; Thu, 7 Feb 2002 02:48:59 -0800 (PST) (envelope-from roam) Message-Id: <200202071048.g17AmxR22967@freefall.freebsd.org> From: Peter Pentchev Date: Thu, 7 Feb 2002 02:48:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/qmailadmin Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2002/02/07 02:48:59 PST Modified files: mail/qmailadmin Makefile pkg-plist Log: Forced commit to note that my previous commit actually included quite a lot of my own changes to clean up this port's CGIBINDIR and WEBDATADIR handling in pkg-plist (and, consequently, package deinstalls). Revision Changes Path 1.8 +0 -0 ports/mail/qmailadmin/Makefile 1.6 +0 -0 ports/mail/qmailadmin/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 2:56:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B6C9937B419; Thu, 7 Feb 2002 02:56:05 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17Au5B24380; Thu, 7 Feb 2002 02:56:05 -0800 (PST) (envelope-from sobomax) Message-Id: <200202071056.g17Au5B24380@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 7 Feb 2002 02:56:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mozilla Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/07 02:56:05 PST Modified files: www/mozilla Makefile Log: Utilize MASTER_SITES grouping. Revision Changes Path 1.80 +5 -4 ports/www/mozilla/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 3:25:23 2002 Delivered-To: cvs-all@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id 2D8BB37B404; Thu, 7 Feb 2002 03:25:20 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 821A99B08; Thu, 7 Feb 2002 06:24:39 -0500 (EST) Date: Thu, 7 Feb 2002 06:24:39 -0500 From: Will Andrews To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT access Message-ID: <20020207112439.GV82640@squall.waterspout.com> Mail-Followup-To: Ruslan Ermilov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200202070825.g178PJI89900@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202070825.g178PJI89900@freefall.freebsd.org> User-Agent: Mutt/1.3.26i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Feb 07, 2002 at 12:25:19AM -0800, Ruslan Ermilov wrote: > Log: > Add Maxim Konovalov (maxim) to committers. Welcome, Maxim! I assume he is a src or doc committer. Could you clarify? Regards, -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 3:33:45 2002 Delivered-To: cvs-all@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id E9C4737B417; Thu, 7 Feb 2002 03:33:36 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id NAA60299; Thu, 7 Feb 2002 13:33:19 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h246.234.dialup.iptcom.net [212.9.234.246]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id NAA62706; Thu, 7 Feb 2002 13:33:13 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id g17BWgd64349; Thu, 7 Feb 2002 13:32:42 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C6265E8.36D68E1C@FreeBSD.org> Date: Thu, 07 Feb 2002 13:32:56 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Will Andrews Cc: Ruslan Ermilov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT access References: <200202070825.g178PJI89900@freefall.freebsd.org> <20020207112439.GV82640@squall.waterspout.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Will Andrews wrote: > > On Thu, Feb 07, 2002 at 12:25:19AM -0800, Ruslan Ermilov wrote: > > Log: > > Add Maxim Konovalov (maxim) to committers. Welcome, Maxim! > > I assume he is a src or doc committer. Could you clarify? As well as what he will be working at and who his mentor is (ru?). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 4: 0:45 2002 Delivered-To: cvs-all@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id DF43A37B420; Thu, 7 Feb 2002 04:00:25 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g17C04252742; Thu, 7 Feb 2002 14:00:04 +0200 (EET) (envelope-from ru) Date: Thu, 7 Feb 2002 14:00:04 +0200 From: Ruslan Ermilov To: Maxim Sobolev Cc: Will Andrews , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT access Message-ID: <20020207140004.A52452@sunbay.com> References: <200202070825.g178PJI89900@freefall.freebsd.org> <20020207112439.GV82640@squall.waterspout.com> <3C6265E8.36D68E1C@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3C6265E8.36D68E1C@FreeBSD.org> User-Agent: Mutt/1.3.23i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Feb 07, 2002 at 01:32:56PM +0200, Maxim Sobolev wrote: > Will Andrews wrote: > > > > On Thu, Feb 07, 2002 at 12:25:19AM -0800, Ruslan Ermilov wrote: > > > Log: > > > Add Maxim Konovalov (maxim) to committers. Welcome, Maxim! > > > > I assume he is a src or doc committer. Could you clarify? > Please read his introductory email. > As well as what he will be working at and who his mentor is (ru?). > He will continue working on FreeBSD, and I'll be his mentor. Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 4:29:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E61DB37B41C; Thu, 7 Feb 2002 04:29:43 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17CThN53441; Thu, 7 Feb 2002 04:29:43 -0800 (PST) (envelope-from sobomax) Message-Id: <200202071229.g17CThN53441@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 7 Feb 2002 04:29:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/AbiWord Makefile distinfo pkg-plist ports/editors/AbiWord/files patch-user::wp::strings::ru-RU.strings patch-user::wp::strings::uk-UA.strings X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/07 04:29:42 PST Modified files: editors/AbiWord Makefile distinfo pkg-plist Removed files: editors/AbiWord/files patch-user::wp::strings::ru-RU.strings patch-user::wp::strings::uk-UA.strings Log: Update to 0.99.1. Revision Changes Path 1.35 +7 -5 ports/editors/AbiWord/Makefile 1.14 +1 -1 ports/editors/AbiWord/distinfo 1.2 +0 -372 ports/editors/AbiWord/files/patch-user::wp::strings::ru-RU.strings (dead) 1.2 +0 -929 ports/editors/AbiWord/files/patch-user::wp::strings::uk-UA.strings (dead) 1.12 +9 -1 ports/editors/AbiWord/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 4:54:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 87AC537B41F; Thu, 7 Feb 2002 04:54:54 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17Css058617; Thu, 7 Feb 2002 04:54:54 -0800 (PST) (envelope-from sobomax) Message-Id: <200202071254.g17Css058617@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 7 Feb 2002 04:54:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/pkgconfig Makefile distinfo ports/devel/pkgconfig/files patch-Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/07 04:54:53 PST Modified files: devel/pkgconfig Makefile distinfo devel/pkgconfig/files patch-Makefile.in Log: Update to 0.10.0. Revision Changes Path 1.8 +1 -1 ports/devel/pkgconfig/Makefile 1.6 +1 -1 ports/devel/pkgconfig/distinfo 1.3 +7 -7 ports/devel/pkgconfig/files/patch-Makefile.in To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 5:34:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 53BC737B405; Thu, 7 Feb 2002 05:34:29 -0800 (PST) Received: (from fjoe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17DYT974230; Thu, 7 Feb 2002 05:34:29 -0800 (PST) (envelope-from fjoe) Message-Id: <200202071334.g17DYT974230@freefall.freebsd.org> From: Max Khon Date: Thu, 7 Feb 2002 05:34:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG fjoe 2002/02/07 05:34:28 PST Modified files: . modules Log: add licq-devel -> ports/net/licq-devel module Revision Changes Path 1.4663 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 5:44:22 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E04B37B41F; Thu, 7 Feb 2002 05:44:16 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17DiGX93303; Thu, 7 Feb 2002 05:44:16 -0800 (PST) (envelope-from sobomax) Message-Id: <200202071344.g17DiGX93303@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 7 Feb 2002 05:44:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/py-gnome Makefile ports/x11-toolkits/py-gnome/files patch-pygnome::Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/07 05:44:16 PST Modified files: x11-toolkits/py-gnome Makefile x11-toolkits/py-gnome/files patch-pygnome::Makefile.in Log: - Fix the build with the forthcoming gnomecontrolcenter-1.4.0.3; - silence harmless configure warning by overriding CONFIGURE_TARGET. Submitted by: Joe Marcus Clarke , sobomax Revision Changes Path 1.56 +1 -0 ports/x11-toolkits/py-gnome/Makefile 1.2 +4 -4 ports/x11-toolkits/py-gnome/files/patch-pygnome::Makefile.in To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 5:47: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 35AC237B41F; Thu, 7 Feb 2002 05:46:49 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17DknQ94208; Thu, 7 Feb 2002 05:46:49 -0800 (PST) (envelope-from sobomax) Message-Id: <200202071346.g17DknQ94208@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 7 Feb 2002 05:46:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/gnomecontrolcenter Makefile distinfo pkg-plist ports/sysutils/gnomecontrolcenter/files patch-Makefile.in patch-ltmain.sh patch-po::Makefile.in.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/07 05:46:49 PST Modified files: sysutils/gnomecontrolcenter Makefile distinfo pkg-plist Added files: sysutils/gnomecontrolcenter/files patch-Makefile.in patch-ltmain.sh patch-po::Makefile.in.in Log: Update to 1.4.0.3. Revision Changes Path 1.36 +4 -5 ports/sysutils/gnomecontrolcenter/Makefile 1.14 +1 -1 ports/sysutils/gnomecontrolcenter/distinfo 1.1 +14 -0 ports/sysutils/gnomecontrolcenter/files/patch-Makefile.in (new) 1.1 +45 -0 ports/sysutils/gnomecontrolcenter/files/patch-ltmain.sh (new) 1.1 +14 -0 ports/sysutils/gnomecontrolcenter/files/patch-po::Makefile.in.in (new) 1.17 +6 -13 ports/sysutils/gnomecontrolcenter/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 6: 3:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3707637B41A; Thu, 7 Feb 2002 06:03:17 -0800 (PST) Received: (from patrick@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17E3HV05077; Thu, 7 Feb 2002 06:03:17 -0800 (PST) (envelope-from patrick) Message-Id: <200202071403.g17E3HV05077@freefall.freebsd.org> From: "Patrick S. Gardella" Date: Thu, 7 Feb 2002 06:03:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/tinycobol Makefile ports/lang/tinycobol/files getopt.h patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG patrick 2002/02/07 06:03:17 PST Modified files: lang/tinycobol Makefile lang/tinycobol/files patch-aa Removed files: lang/tinycobol/files getopt.h Log: Modify the port to use gnugetopt. Our standard getopt does not work. The developers are working to fix that. Revision Changes Path 1.10 +4 -5 ports/lang/tinycobol/Makefile 1.2 +0 -129 ports/lang/tinycobol/files/getopt.h (dead) 1.4 +14 -13 ports/lang/tinycobol/files/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 6:14:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 28BE437B431; Thu, 7 Feb 2002 06:13:57 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17EDuw16842; Thu, 7 Feb 2002 06:13:56 -0800 (PST) (envelope-from sobomax) Message-Id: <200202071413.g17EDuw16842@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 7 Feb 2002 06:13:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/glimmer Makefile distinfo ports/editors/glimmer/files patch-configure patch-po::Makefile.in.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/07 06:13:56 PST Modified files: editors/glimmer Makefile distinfo editors/glimmer/files patch-configure Added files: editors/glimmer/files patch-po::Makefile.in.in Log: Update to 1.2.1. PR: 34573 Submitted by: Joe Clarke Revision Changes Path 1.28 +3 -2 ports/editors/glimmer/Makefile 1.17 +1 -1 ports/editors/glimmer/distinfo 1.3 +72 -3 ports/editors/glimmer/files/patch-configure 1.1 +14 -0 ports/editors/glimmer/files/patch-po::Makefile.in.in (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 6:17:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4FFF237B41B; Thu, 7 Feb 2002 06:17:10 -0800 (PST) Received: (from fjoe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17EH9517692; Thu, 7 Feb 2002 06:17:10 -0800 (PST) (envelope-from fjoe) Message-Id: <200202071417.g17EH9517692@freefall.freebsd.org> From: Max Khon Date: Thu, 7 Feb 2002 06:17:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/licq-devel Makefile Makefile.inc distinfo pkg-message pkg-plist ports/net/licq-devel/files patch-ad X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG fjoe 2002/02/07 06:17:09 PST Modified files: net Makefile net/licq-devel Makefile Makefile.inc distinfo pkg-message pkg-plist net/licq-devel/files patch-ad Log: Port for licq 1.1.0 devel 2002-01-28 snapshot (repo-copied from `licq' port). Most important new feature is ICQv8 support (works for me). `licq-qt-gui' and `licq-console' ports will be altered soon to add ability to build with this port instead of `licq'. Revision Changes Path 1.707 +1 -0 ports/net/Makefile 1.40 +9 -3 ports/net/licq-devel/Makefile 1.3 +33 -12 ports/net/licq-devel/Makefile.inc 1.13 +1 -1 ports/net/licq-devel/distinfo 1.9 +19 -27 ports/net/licq-devel/files/patch-ad 1.2 +2 -1 ports/net/licq-devel/pkg-message 1.15 +1 -0 ports/net/licq-devel/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 6:58: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E247B37B41B; Thu, 7 Feb 2002 06:57:58 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17EvwF86794; Thu, 7 Feb 2002 06:57:58 -0800 (PST) (envelope-from roam) Message-Id: <200202071457.g17EvwF86794@freefall.freebsd.org> From: Peter Pentchev Date: Thu, 7 Feb 2002 06:57:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/daemontools Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2002/02/07 06:57:58 PST Modified files: sysutils/daemontools Makefile distinfo pkg-plist Log: Install Gerritt Pape's manual pages unless WITHOUT_MAN is defined. Properly remove the sample svscan.sh script at deinstall time. Revision Changes Path 1.12 +17 -1 ports/sysutils/daemontools/Makefile 1.4 +1 -0 ports/sysutils/daemontools/distinfo 1.5 +2 -0 ports/sysutils/daemontools/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 7: 4:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 90D7137B405; Thu, 7 Feb 2002 07:04:37 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17F4bX99991; Thu, 7 Feb 2002 07:04:37 -0800 (PST) (envelope-from sobomax) Message-Id: <200202071504.g17F4bX99991@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 7 Feb 2002 07:04:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/glade Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/07 07:04:37 PST Modified files: devel/glade Makefile distinfo pkg-plist Log: Update to 0.6.4. Revision Changes Path 1.34 +1 -1 ports/devel/glade/Makefile 1.16 +1 -1 ports/devel/glade/distinfo 1.16 +16 -0 ports/devel/glade/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 7:13:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 30F3C37B41B; Thu, 7 Feb 2002 07:12:54 -0800 (PST) Received: (from ambrisko@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17FCsQ18692; Thu, 7 Feb 2002 07:12:54 -0800 (PST) (envelope-from ambrisko) Message-Id: <200202071512.g17FCsQ18692@freefall.freebsd.org> From: Doug Ambrisko Date: Thu, 7 Feb 2002 07:12:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys sockio.h src/sbin/ifconfig ifieee80211.c src/include Makefile src/etc/mtree BSD.include.dist src/sys/dev/an if_aironet_ieee.h if_an.c if_anreg.h src/sys/compat/linux linux_ioctl.c src/usr.sbin/ancontrol Makefile ancontrol.8 ... X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ambrisko 2002/02/07 07:12:54 PST Modified files: (Branch: RELENG_4) sys/sys sockio.h sbin/ifconfig ifieee80211.c include Makefile etc/mtree BSD.include.dist sys/dev/an if_aironet_ieee.h if_an.c if_anreg.h sys/compat/linux linux_ioctl.c usr.sbin/ancontrol Makefile ancontrol.8 ancontrol.c Log: MFC: LEAP, support for Linux "acu" private ioctls, fix 802.11 RFMON gap problem, support for Home key, add support for multiple SSIDs via ifmedia and some minor bug fixes, install header files in /usr/include/dev/an and in general sync with -current. Reviewed by: imp, David Wolfskill Revision Changes Path 1.32.2.7 +3 -1 src/etc/mtree/BSD.include.dist 1.109.2.18 +1 -1 src/include/Makefile 1.1.2.3 +18 -1 src/sbin/ifconfig/ifieee80211.c 1.55.2.9 +14 -0 src/sys/compat/linux/linux_ioctl.c 1.1.2.6 +118 -2 src/sys/dev/an/if_aironet_ieee.h 1.2.2.9 +656 -78 src/sys/dev/an/if_an.c 1.1.2.6 +4 -27 src/sys/dev/an/if_anreg.h 1.14.2.6 +3 -0 src/sys/sys/sockio.h 1.1.2.4 +2 -1 src/usr.sbin/ancontrol/Makefile 1.3.2.12 +35 -19 src/usr.sbin/ancontrol/ancontrol.8 1.1.2.8 +163 -16 src/usr.sbin/ancontrol/ancontrol.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 7:28:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DAE2437B405; Thu, 7 Feb 2002 07:28:17 -0800 (PST) Received: (from matusita@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17FSHF27835; Thu, 7 Feb 2002 07:28:17 -0800 (PST) (envelope-from matusita) Message-Id: <200202071528.g17FSHF27835@freefall.freebsd.org> From: Makoto MATSUSHITA Date: Thu, 7 Feb 2002 07:28:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG matusita 2002/02/07 07:28:17 PST Modified files: (Branch: RELENG_4) release Makefile Log: Change 'BASE' to '4.5'. We should note that this file should be changed after making a branch for the new release. PR: 34689 Submitted by: Udo Schweigert Revision Changes Path 1.536.2.72 +2 -2 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 7:37:27 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1548C37B405; Thu, 7 Feb 2002 07:37:25 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17FbPE29202; Thu, 7 Feb 2002 07:37:25 -0800 (PST) (envelope-from bmah) Message-Id: <200202071537.g17FbPE29202@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 7 Feb 2002 07:37:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/releng article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/07 07:37:24 PST Modified files: en_US.ISO8859-1/articles/releng article.sgml Log: Add src/release/Makefile to the version number bump list. PR: 34689 Revision Changes Path 1.10 +4 -0 doc/en_US.ISO8859-1/articles/releng/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 7:38: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id 2A6B037B419; Thu, 7 Feb 2002 07:37:57 -0800 (PST) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020207153751.CMRK2951.rwcrmhc53.attbi.com@bmah.dyndns.org>; Thu, 7 Feb 2002 15:37:51 +0000 Received: (from bmah@localhost) by bmah.dyndns.org (8.11.6/8.11.6) id g17FboQ99398; Thu, 7 Feb 2002 07:37:50 -0800 (PST) (envelope-from bmah) Message-Id: <200202071537.g17FboQ99398@bmah.dyndns.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Makoto MATSUSHITA Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release Makefile In-reply-to: <200202071528.g17FSHF27835@freefall.freebsd.org> References: <200202071528.g17FSHF27835@freefall.freebsd.org> Comments: In-reply-to Makoto MATSUSHITA message dated "Thu, 07 Feb 2002 07:28:17 -0800." From: "Bruce A. Mah" Reply-To: bmah@FreeBSD.org X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 07 Feb 2002 07:37:50 -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG If memory serves me right, Makoto MATSUSHITA wrote: > matusita 2002/02/07 07:28:17 PST > > Modified files: (Branch: RELENG_4) > release Makefile > Log: > Change 'BASE' to '4.5'. > > We should note that this file should be changed after making a branch > for the new release. Thanks, I've just modified the releng document to reflect this. Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 7:42:26 2002 Delivered-To: cvs-all@freebsd.org Received: from mail11.speakeasy.net (mail11.speakeasy.net [216.254.0.211]) by hub.freebsd.org (Postfix) with ESMTP id 9539A37B425 for ; Thu, 7 Feb 2002 07:42:16 -0800 (PST) Received: (qmail 16125 invoked from network); 7 Feb 2002 15:42:14 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([65.91.155.38]) (envelope-sender ) by mail11.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 7 Feb 2002 15:42:14 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20020207140004.A52452@sunbay.com> Date: Thu, 07 Feb 2002 10:42:12 -0500 (EST) From: John Baldwin To: Ruslan Ermilov Subject: Re: cvs commit: CVSROOT access Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Will Andrews , Maxim Sobolev Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 07-Feb-02 Ruslan Ermilov wrote: > On Thu, Feb 07, 2002 at 01:32:56PM +0200, Maxim Sobolev wrote: >> Will Andrews wrote: >> > >> > On Thu, Feb 07, 2002 at 12:25:19AM -0800, Ruslan Ermilov wrote: >> > > Log: >> > > Add Maxim Konovalov (maxim) to committers. Welcome, Maxim! >> > >> > I assume he is a src or doc committer. Could you clarify? >> > Please read his introductory email. > >> As well as what he will be working at and who his mentor is (ru?). >> > He will continue working on FreeBSD, and I'll be his mentor. This info is supposed to be in the commit log for access as we have discusssed several times. Just a note for the future. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 7:51:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 04FF337B417; Thu, 7 Feb 2002 07:51:25 -0800 (PST) Received: (from gallatin@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17FpP239226; Thu, 7 Feb 2002 07:51:25 -0800 (PST) (envelope-from gallatin) Message-Id: <200202071551.g17FpP239226@freefall.freebsd.org> From: Andrew Gallatin Date: Thu, 7 Feb 2002 07:51:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT access X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gallatin 2002/02/07 07:51:25 PST Modified files: . access Log: Add Bernd Walter as a src committer. He's been submitting high quality fixes for the alpha port for far too long. It is time for him to be a committer in his own right. Mentored by: gallatin Approved by: core Revision Changes Path 1.283 +1 -0 CVSROOT/access To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 7:55:57 2002 Delivered-To: cvs-all@freebsd.org Received: from castle.jp.FreeBSD.org (castle.jp.FreeBSD.org [210.226.20.15]) by hub.freebsd.org (Postfix) with ESMTP id 3186737B427; Thu, 7 Feb 2002 07:55:45 -0800 (PST) Received: from localhost (localhost [::1]) by castle.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) with ESMTP/inet6 id g17Fth652543; Fri, 8 Feb 2002 00:55:43 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) In-Reply-To: <200202071537.g17FboQ99398@bmah.dyndns.org> References: <200202071528.g17FSHF27835@freefall.freebsd.org> <200202071537.g17FboQ99398@bmah.dyndns.org> X-User-Agent: Mew/1.94.2 XEmacs/21.5 (alfalfa) X-FaceAnim: (-O_O-)(O_O- )(_O- )(O- )(- -)( -O)( -O_)( -O_O)(-O_O-) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Dispatcher: imput version 20000228(IM140) Lines: 7 From: Makoto Matsushita To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release Makefile Date: Fri, 08 Feb 2002 00:55:31 +0900 Message-Id: <20020208005531T.matusita@jp.FreeBSD.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah> Thanks, I've just modified the releng document to reflect this. I'm now just writing a email to you and re about this... thank you! -- - Makoto `MAR' Matsushita To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 8:37: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6170B37B405; Thu, 7 Feb 2002 08:37:03 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17Gb3v65749; Thu, 7 Feb 2002 08:37:03 -0800 (PST) (envelope-from bmah) Message-Id: <200202071637.g17Gb3v65749@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 7 Feb 2002 08:37:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/07 08:37:03 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml Log: New errata entry: Accidental omission of some optional KDE packages and the samba package from the official ISO images. Reviewed by: murray, will Revision Changes Path 1.1.2.51 +32 -1 src/release/doc/en_US.ISO8859-1/errata/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 8:40:17 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3663537B41A; Thu, 7 Feb 2002 08:40:11 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17GeBv68685; Thu, 7 Feb 2002 08:40:11 -0800 (PST) (envelope-from bmah) Message-Id: <200202071640.g17GeBv68685@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 7 Feb 2002 08:40:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/07 08:40:10 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml Log: Whitespace/wordwrap fixes, no content changes. Revision Changes Path 1.1.2.52 +31 -32 src/release/doc/en_US.ISO8859-1/errata/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 8:43: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DF92037B419; Thu, 7 Feb 2002 08:42:57 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17GgvE74849; Thu, 7 Feb 2002 08:42:57 -0800 (PST) (envelope-from bmah) Message-Id: <200202071642.g17GgvE74849@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 7 Feb 2002 08:42:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/4.5R errata.html X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/07 08:42:55 PST Modified files: en/releases/4.5R errata.html Log: Regen from errata/article.sgml 1.1.2.52. Revision Changes Path 1.6 +62 -1 www/en/releases/4.5R/errata.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 8:47:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 33ED337B400; Thu, 7 Feb 2002 08:47:22 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17GlM680473; Thu, 7 Feb 2002 08:47:22 -0800 (PST) (envelope-from maxim) Message-Id: <200202071647.g17GlM680473@freefall.freebsd.org> From: Maxim Konovalov Date: Thu, 7 Feb 2002 08:47:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ping ping.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG maxim 2002/02/07 08:47:22 PST Modified files: sbin/ping ping.8 Log: Document ping(8) reaction to SIGINFO. PR: doc/33639 Reviewed by: ru Approved by: ru MFC after: 1 week Revision Changes Path 1.34 +14 -2 src/sbin/ping/ping.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 8:50: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 895DD37B400; Thu, 7 Feb 2002 08:50:02 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17Go2380904; Thu, 7 Feb 2002 08:50:02 -0800 (PST) (envelope-from maxim) Message-Id: <200202071650.g17Go2380904@freefall.freebsd.org> From: Maxim Konovalov Date: Thu, 7 Feb 2002 08:50:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ping6 ping6.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG maxim 2002/02/07 08:50:02 PST Modified files: sbin/ping6 ping6.8 Log: Document ping6(8) reaction to SIGINFO. PR: doc/33639 Reviewed by: ru Approved by: ru MFC after: 1 week Revision Changes Path 1.16 +14 -2 src/sbin/ping6/ping6.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 9: 1:27 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 35E0037B400; Thu, 7 Feb 2002 09:01:24 -0800 (PST) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17H1Og83641; Thu, 7 Feb 2002 09:01:24 -0800 (PST) (envelope-from dwcjr) Message-Id: <200202071701.g17H1Og83641@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Thu, 7 Feb 2002 09:01:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/samba Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2002/02/07 09:01:23 PST Modified files: net/samba Makefile distinfo Log: Update to 2.2.3a Finally settle on a fix for CUPS dependency PR: 34683 Submitted by: maintainer, ports@geeksrus.net Revision Changes Path 1.72 +8 -6 ports/net/samba/Makefile 1.34 +1 -1 ports/net/samba/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 9:35:53 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 194D937B41E; Thu, 7 Feb 2002 09:35:50 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17HZov06215; Thu, 7 Feb 2002 09:35:50 -0800 (PST) (envelope-from obrien) Message-Id: <200202071735.g17HZov06215@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 7 Feb 2002 09:35:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils Makefile.inc0 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/07 09:35:50 PST Modified files: gnu/usr.bin/binutils Makefile.inc0 Log: We do not need to use -I- any longer. Presumably the issue was with arparse.[ch]. Those are now in FREEBSD-Xlist and FREEBSD-deletelist. So we do not import the Bison produced files that was causing the problem. Submitted by: ru Revision Changes Path 1.23 +1 -3 src/gnu/usr.bin/binutils/Makefile.inc0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 9:53:52 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE95337B41D; Thu, 7 Feb 2002 09:53:46 -0800 (PST) Received: (from archie@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17HrkE18479; Thu, 7 Feb 2002 09:53:46 -0800 (PST) (envelope-from archie) Message-Id: <200202071753.g17HrkE18479@freefall.freebsd.org> From: Archie Cobbs Date: Thu, 7 Feb 2002 09:53:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_parse.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG archie 2002/02/07 09:53:46 PST Modified files: (Branch: RELENG_4) sys/netgraph ng_parse.c Log: MFC: (rev. 1.14) Provide a valid header when generating default values. Revision Changes Path 1.3.2.6 +16 -9 src/sys/netgraph/ng_parse.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 10: 4:50 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 53AB437B434; Thu, 7 Feb 2002 10:03:27 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17I3R422508; Thu, 7 Feb 2002 10:03:27 -0800 (PST) (envelope-from phantom) Message-Id: <200202071803.g17I3R422508@freefall.freebsd.org> From: Alexey Zelkin Date: Thu, 7 Feb 2002 10:03:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/07 10:03:27 PST Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Cleanup authors.ent phase I. Expand entities of people who has no account at freefall or not used in english documentation anymore (i.e. translation should not use them also after synchronization) Revision Changes Path 1.94 +10 -10 doc/en_US.ISO8859-1/articles/contributors/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 10: 5:11 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C962537B489; Thu, 7 Feb 2002 10:04:40 -0800 (PST) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17I4eO23434; Thu, 7 Feb 2002 10:04:40 -0800 (PST) (envelope-from joe) Message-Id: <200202071804.g17I4eO23434@freefall.freebsd.org> From: Josef Karthauser Date: Thu, 7 Feb 2002 10:04:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/releng article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2002/02/07 10:04:40 PST Modified files: en_US.ISO8859-1/articles/releng article.sgml Log: Fix some typos and spelling mistakes. Submitted by: Hiten Pandya Revision Changes Path 1.11 +18 -19 doc/en_US.ISO8859-1/articles/releng/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 10: 7:17 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CB1C837B4BF; Thu, 7 Feb 2002 10:06:07 -0800 (PST) Received: (from fenner@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17I67M29369; Thu, 7 Feb 2002 10:06:07 -0800 (PST) (envelope-from fenner) Message-Id: <200202071806.g17I67M29369@freefall.freebsd.org> From: Bill Fenner Date: Thu, 7 Feb 2002 10:06:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/icukrell Makefile ports/lang/p5-Error Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG fenner 2002/02/07 10:06:07 PST Modified files: net/icukrell Makefile lang/p5-Error Makefile Log: Update MAINTAINER's email address based upon bounce message. Revision Changes Path 1.4 +1 -1 ports/lang/p5-Error/Makefile 1.2 +1 -1 ports/net/icukrell/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 10: 8:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D7CC37B422; Thu, 7 Feb 2002 10:07:58 -0800 (PST) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17I7vG31816; Thu, 7 Feb 2002 10:07:57 -0800 (PST) (envelope-from joe) Message-Id: <200202071807.g17I7vG31816@freefall.freebsd.org> From: Josef Karthauser Date: Thu, 7 Feb 2002 10:07:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/releng article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2002/02/07 10:07:57 PST Modified files: en_US.ISO8859-1/articles/releng article.sgml Log: Mark up the URLs as 's instead of . Submitted by: Hiten Pandya Revision Changes Path 1.12 +27 -28 doc/en_US.ISO8859-1/articles/releng/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 10:16:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0BDE637B421; Thu, 7 Feb 2002 10:16:44 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17IGix39484; Thu, 7 Feb 2002 10:16:44 -0800 (PST) (envelope-from phantom) Message-Id: <200202071816.g17IGix39484@freefall.freebsd.org> From: Alexey Zelkin Date: Thu, 7 Feb 2002 10:16:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/07 10:16:43 PST Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Remove trailing spaces + some whitespace fixes. Revision Changes Path 1.95 +477 -477 doc/en_US.ISO8859-1/articles/contributors/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 10:30:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9484037B400; Thu, 7 Feb 2002 10:30:18 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17IUI842400; Thu, 7 Feb 2002 10:30:18 -0800 (PST) (envelope-from phantom) Message-Id: <200202071830.g17IUI842400@freefall.freebsd.org> From: Alexey Zelkin Date: Thu, 7 Feb 2002 10:30:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/fr_FR.ISO8859-1/books/handbook/advanced-networking chapter.sgml doc/fr_FR.ISO8859-1/books/handbook/contrib chapter.sgml doc/fr_FR.ISO8859-1/books/handbook/linuxemu chapter.sgml doc/fr_FR.ISO8859-1/books/handbook/mail chapter.sgml doc/fr_FR.ISO8859-1/books/handbook/ports chapter.sgml doc/fr_FR.ISO8859-1/books/handbook/ppp-and-slip chapter.sgml ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/07 10:30:18 PST Modified files: fr_FR.ISO8859-1/books/handbook/advanced-networking chapter.sgml fr_FR.ISO8859-1/books/handbook/contrib chapter.sgml fr_FR.ISO8859-1/books/handbook/linuxemu chapter.sgml fr_FR.ISO8859-1/books/handbook/mail chapter.sgml fr_FR.ISO8859-1/books/handbook/ports chapter.sgml fr_FR.ISO8859-1/books/handbook/ppp-and-slip chapter.sgml fr_FR.ISO8859-1/books/handbook/printing chapter.sgml fr_FR.ISO8859-1/books/handbook/security chapter.sgml fr_FR.ISO8859-1/books/handbook/serialcomms chapter.sgml fr_FR.ISO8859-1/books/handbook/staff chapter.sgml Log: Cleanup authors.ent phase I. Expand entities of people who has no account at freefall or not used in english documentation anymore (i.e. translation should not use them also after synchronization) Revision Changes Path 1.2 +4 -2 doc/fr_FR.ISO8859-1/books/handbook/advanced-networking/chapter.sgml 1.2 +2 -2 doc/fr_FR.ISO8859-1/books/handbook/contrib/chapter.sgml 1.2 +2 -2 doc/fr_FR.ISO8859-1/books/handbook/linuxemu/chapter.sgml 1.2 +1 -1 doc/fr_FR.ISO8859-1/books/handbook/mail/chapter.sgml 1.2 +1 -1 doc/fr_FR.ISO8859-1/books/handbook/ports/chapter.sgml 1.2 +4 -6 doc/fr_FR.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml 1.2 +1 -1 doc/fr_FR.ISO8859-1/books/handbook/printing/chapter.sgml 1.2 +1 -1 doc/fr_FR.ISO8859-1/books/handbook/security/chapter.sgml 1.2 +2 -2 doc/fr_FR.ISO8859-1/books/handbook/serialcomms/chapter.sgml 1.2 +0 -69 doc/fr_FR.ISO8859-1/books/handbook/staff/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 10:43:16 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7F91D37B41C; Thu, 7 Feb 2002 10:43:08 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17Ih8Y44398; Thu, 7 Feb 2002 10:43:08 -0800 (PST) (envelope-from phantom) Message-Id: <200202071843.g17Ih8Y44398@freefall.freebsd.org> From: Alexey Zelkin Date: Thu, 7 Feb 2002 10:43:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/articles/contributors article.sgml doc/ja_JP.eucJP/books/handbook/advanced-networking chapter.sgml doc/ja_JP.eucJP/books/handbook/linuxemu chapter.sgml doc/ja_JP.eucJP/books/handbook/mail chapter.sgml doc/ja_JP.eucJP/books/handbook/ppp-and-slip chapter.sgml doc/ja_JP.eucJP/books/handbook/printing chapter.sgml ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/07 10:43:08 PST Modified files: ja_JP.eucJP/articles/contributors article.sgml ja_JP.eucJP/books/handbook/advanced-networking chapter.sgml ja_JP.eucJP/books/handbook/linuxemu chapter.sgml ja_JP.eucJP/books/handbook/mail chapter.sgml ja_JP.eucJP/books/handbook/ppp-and-slip chapter.sgml ja_JP.eucJP/books/handbook/printing chapter.sgml ja_JP.eucJP/books/handbook/security chapter.sgml ja_JP.eucJP/books/handbook/serialcomms chapter.sgml Log: Cleanup authors.ent phase I. Expand entities of people who has no account at freefall or not used in english documentation anymore (i.e. translation should not use them also after synchronization) Revision Changes Path 1.3 +8 -7 doc/ja_JP.eucJP/articles/contributors/article.sgml 1.15 +3 -3 doc/ja_JP.eucJP/books/handbook/advanced-networking/chapter.sgml 1.19 +2 -2 doc/ja_JP.eucJP/books/handbook/linuxemu/chapter.sgml 1.9 +2 -2 doc/ja_JP.eucJP/books/handbook/mail/chapter.sgml 1.14 +6 -4 doc/ja_JP.eucJP/books/handbook/ppp-and-slip/chapter.sgml 1.16 +2 -2 doc/ja_JP.eucJP/books/handbook/printing/chapter.sgml 1.15 +3 -2 doc/ja_JP.eucJP/books/handbook/security/chapter.sgml 1.15 +2 -2 doc/ja_JP.eucJP/books/handbook/serialcomms/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 10:44:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 588F737B405; Thu, 7 Feb 2002 10:44:35 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17IiZI44555; Thu, 7 Feb 2002 10:44:35 -0800 (PST) (envelope-from phantom) Message-Id: <200202071844.g17IiZI44555@freefall.freebsd.org> From: Alexey Zelkin Date: Thu, 7 Feb 2002 10:44:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/share/sgml authors.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/07 10:44:35 PST Modified files: en_US.ISO8859-1/share/sgml authors.ent Log: Cleanup authors.ent phase II. Remove unused entities. Revision Changes Path 1.210 +0 -38 doc/en_US.ISO8859-1/share/sgml/authors.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 11: 7:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 285D037B421; Thu, 7 Feb 2002 11:07:37 -0800 (PST) Received: (from green@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17J7bi52406; Thu, 7 Feb 2002 11:07:37 -0800 (PST) (envelope-from green) Message-Id: <200202071907.g17J7bi52406@freefall.freebsd.org> From: Brian Feldman Date: Thu, 7 Feb 2002 11:07:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 VOP_REVOKE.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG green 2002/02/07 11:07:37 PST Modified files: share/man/man9 VOP_REVOKE.9 Log: Correct copyright. Revision Changes Path 1.2 +19 -12 src/share/man/man9/VOP_REVOKE.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 11: 9:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E5C2737B405; Thu, 7 Feb 2002 11:09:49 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17J9n352703; Thu, 7 Feb 2002 11:09:49 -0800 (PST) (envelope-from phantom) Message-Id: <200202071909.g17J9n352703@freefall.freebsd.org> From: Alexey Zelkin Date: Thu, 7 Feb 2002 11:09:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/diag/ac cknames.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/07 11:09:49 PST Added files: tools/diag/ac cknames.pl Log: Add script to check integrity between access/authors.ent/passwd@freefall Revision Changes Path 1.1 +68 -0 src/tools/diag/ac/cknames.pl (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 11:13:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A8A2037B419; Thu, 7 Feb 2002 11:13:06 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17JD6r53189; Thu, 7 Feb 2002 11:13:06 -0800 (PST) (envelope-from phantom) Message-Id: <200202071913.g17JD6r53189@freefall.freebsd.org> From: Alexey Zelkin Date: Thu, 7 Feb 2002 11:13:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/diag/ac ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/07 11:13:06 PST Removed files: tools/diag/ac ac Log: This script has served its purpose. Now its function is one of subfunctions of recently added cknames.pl. Revision Changes Path 1.6 +0 -27 src/tools/diag/ac/ac (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 11:27:33 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7CD5337B41C; Thu, 7 Feb 2002 11:27:29 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17JRTJ55015; Thu, 7 Feb 2002 11:27:29 -0800 (PST) (envelope-from phantom) Message-Id: <200202071927.g17JRTJ55015@freefall.freebsd.org> From: Alexey Zelkin Date: Thu, 7 Feb 2002 11:27:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/diag/ac cknames.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/07 11:27:29 PST Modified files: tools/diag/ac cknames.pl Log: . add a hack dedicated to n_himba (or correctly to say problem with his nick in docbook environment) . clarify comments . mention that this script is dedicated to freefall's environment . add bsd style copyright Revision Changes Path 1.2 +30 -2 src/tools/diag/ac/cknames.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 11:32:44 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 43AD737B421; Thu, 7 Feb 2002 11:32:40 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17JWe857157; Thu, 7 Feb 2002 11:32:40 -0800 (PST) (envelope-from phantom) Message-Id: <200202071932.g17JWe857157@freefall.freebsd.org> From: Alexey Zelkin Date: Thu, 7 Feb 2002 11:32:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/diag/ac cknames.pl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/07 11:32:40 PST Modified files: tools/diag/ac cknames.pl Log: Complete '_' hack. Revision Changes Path 1.3 +1 -0 src/tools/diag/ac/cknames.pl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 12: 0:11 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0008E37B423; Thu, 7 Feb 2002 12:00:06 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17K06k61197; Thu, 7 Feb 2002 12:00:06 -0800 (PST) (envelope-from phantom) Message-Id: <200202072000.g17K06k61197@freefall.freebsd.org> From: Alexey Zelkin Date: Thu, 7 Feb 2002 12:00:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/share/sgml authors.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/07 12:00:06 PST Modified files: en_US.ISO8859-1/share/sgml authors.ent Log: Convert committers' addresses to @FreeBSD.org form Revision Changes Path 1.211 +12 -12 doc/en_US.ISO8859-1/share/sgml/authors.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 12:15:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B5B2E37B416; Thu, 7 Feb 2002 12:15:22 -0800 (PST) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17KFMG67004; Thu, 7 Feb 2002 12:15:22 -0800 (PST) (envelope-from keramida) Message-Id: <200202072015.g17KFMG67004@freefall.freebsd.org> From: Giorgos Keramidas Date: Thu, 7 Feb 2002 12:15:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG keramida 2002/02/07 12:15:22 PST Modified files: . modules Log: Change fdisk -> src/sbin/fdisk. This no longer lives in src/sbin/i386/fdisk. Reviewed by: joe Revision Changes Path 1.4664 +1 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 12:27:59 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id E29AC37B419; Thu, 7 Feb 2002 12:27:51 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.6/8.11.5) with ESMTP id g17KRgQ63474; Thu, 7 Feb 2002 15:27:44 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200202072027.g17KRgQ63474@aldan.algebra.com> Date: Thu, 7 Feb 2002 15:27:40 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: doc/en_US.ISO8859-1/share/sgml authors.ent To: phantom@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200202072000.g17K06k61197@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 7 Feb, Alexey Zelkin wrote: > phantom 2002/02/07 12:00:06 PST > > Modified files: > en_US.ISO8859-1/share/sgml authors.ent > Log: > Convert committers' addresses to @FreeBSD.org form Is that a requirement? I prefer using the address, that I've used since 1994... There is some history in it for me... Yours, -mi (mi@aldan.algebra.com) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 12:28:44 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 852C337B41E; Thu, 7 Feb 2002 12:28:25 -0800 (PST) Received: (from julian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17KSPt69170; Thu, 7 Feb 2002 12:28:25 -0800 (PST) (envelope-from julian) Message-Id: <200202072028.g17KSPt69170@freefall.freebsd.org> From: Julian Elischer Date: Thu, 7 Feb 2002 12:28:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libkvm kvm_proc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG julian 2002/02/07 12:28:25 PST Modified files: lib/libkvm kvm_proc.c Log: pre-emptively fix a KSE/M3 problem. Make a slight change so that libkvm reaches the main thread via the linked list, rather than assuming it is in the proc structure. Both conditions are true in -current but only the first will be true in the KSE M3 world. Revision Changes Path 1.42 +14 -7 src/lib/libkvm/kvm_proc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 12:52:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 840E237B41C; Thu, 7 Feb 2002 12:52:33 -0800 (PST) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17KqXk72806; Thu, 7 Feb 2002 12:52:33 -0800 (PST) (envelope-from olgeni) Message-Id: <200202072052.g17KqXk72806@freefall.freebsd.org> From: Jimmy Olgeni Date: Thu, 7 Feb 2002 12:52:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/erlang/files patch-al X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2002/02/07 12:52:33 PST Added files: lang/erlang/files patch-al Log: Fix strerror_r conflict. Revision Changes Path 1.1 +18 -0 ports/lang/erlang/files/patch-al (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 12:55: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 60E3237B419; Thu, 7 Feb 2002 12:54:59 -0800 (PST) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17KsxW73167; Thu, 7 Feb 2002 12:54:59 -0800 (PST) (envelope-from jedgar) Message-Id: <200202072054.g17KsxW73167@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Thu, 7 Feb 2002 12:54:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/gnuls Makefile ports/misc/gnuls/files patch-ai X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jedgar 2002/02/07 12:54:59 PST Modified files: misc/gnuls Makefile Added files: misc/gnuls/files patch-ai Log: strerror_r() returns an exit code, not the error string. This fixes: $ gnuls blah gnuls: blah: (null) $ on recent -stable and -current builds after strerror_r() was implemented. Revision Changes Path 1.17 +2 -1 ports/misc/gnuls/Makefile 1.1 +12 -0 ports/misc/gnuls/files/patch-ai (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 12:59: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 18CD737B416; Thu, 7 Feb 2002 12:58:48 -0800 (PST) Received: (from julian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17Kwmm74296; Thu, 7 Feb 2002 12:58:48 -0800 (PST) (envelope-from julian) Message-Id: <200202072058.g17Kwmm74296@freefall.freebsd.org> From: Julian Elischer Date: Thu, 7 Feb 2002 12:58:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha db_trace.c locore.s machdep.c pmap.c prom.c sys_machdep.c vm_machdep.c src/sys/alpha/linux linux_machdep.c linux_sysvec.c src/sys/alpha/osf1 imgact_osf1.c src/sys/compat/pecoff imgact_pecoff.c src/sys/ddb db_ps.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG julian 2002/02/07 12:58:48 PST Modified files: sys/alpha/alpha db_trace.c locore.s machdep.c pmap.c prom.c sys_machdep.c vm_machdep.c sys/alpha/linux linux_machdep.c linux_sysvec.c sys/alpha/osf1 imgact_osf1.c sys/compat/pecoff imgact_pecoff.c sys/ddb db_ps.c sys/fs/procfs procfs_ctl.c procfs_dbregs.c procfs_fpregs.c procfs_ioctl.c procfs_regs.c procfs_status.c sys/i386/i386 db_trace.c machdep.c swtch.s vm_machdep.c sys/i386/ibcs2 imgact_coff.c sys/i386/linux linux_machdep.c linux_sysvec.c sys/ia64/ia64 locore.s machdep.c pmap.c vm_machdep.c sys/kern init_main.c kern_exec.c kern_fork.c kern_idle.c kern_intr.c kern_kthread.c kern_proc.c kern_shutdown.c kern_sig.c subr_witness.c sys_process.c tty.c vfs_aio.c vfs_subr.c vfs_syscalls.c sys/netgraph ng_ksocket.c sys/netinet tcp_syncache.c sys/netipx spx_usrreq.c sys/nfsclient nfs_socket.c sys/pc98/i386 machdep.c sys/posix4 p1003_1b.c sys/powerpc/powerpc machdep.c vm_machdep.c sys/security/lomac kernel_util.c sys/sparc64/sparc64 db_trace.c machdep.c vm_machdep.c sys/sys proc.h vnode.h sys/vm vm_extern.h vm_glue.c Log: Pre-KSE/M3 commit. this is a low-functionality change that changes the kernel to access the main thread of a process via the linked list of threads rather than assuming that it is embedded in the process. It IS still embeded there but remove all teh code that assumes that in preparation for the next commit which will actually move it out. Reviewed by: peter@freebsd.org, gallatin@cs.duke.edu, benno rice, Revision Changes Path 1.11 +2 -2 src/sys/alpha/alpha/db_trace.c 1.21 +1 -1 src/sys/alpha/alpha/locore.s 1.162 +12 -13 src/sys/alpha/alpha/machdep.c 1.83 +2 -2 src/sys/alpha/alpha/pmap.c 1.21 +2 -2 src/sys/alpha/alpha/prom.c 1.13 +4 -4 src/sys/alpha/alpha/sys_machdep.c 1.64 +3 -4 src/sys/alpha/alpha/vm_machdep.c 1.19 +2 -2 src/sys/alpha/linux/linux_machdep.c 1.80 +1 -1 src/sys/alpha/linux/linux_sysvec.c 1.9 +4 -4 src/sys/alpha/osf1/imgact_osf1.c 1.11 +18 -12 src/sys/compat/pecoff/imgact_pecoff.c 1.27 +1 -1 src/sys/ddb/db_ps.c 1.35 +8 -5 src/sys/fs/procfs/procfs_ctl.c 1.16 +2 -2 src/sys/fs/procfs/procfs_dbregs.c 1.23 +2 -2 src/sys/fs/procfs/procfs_fpregs.c 1.3 +1 -1 src/sys/fs/procfs/procfs_ioctl.c 1.22 +2 -2 src/sys/fs/procfs/procfs_regs.c 1.39 +4 -2 src/sys/fs/procfs/procfs_status.c 1.45 +2 -2 src/sys/i386/i386/db_trace.c 1.493 +18 -12 src/sys/i386/i386/machdep.c 1.127 +16 -13 src/sys/i386/i386/swtch.s 1.180 +2 -3 src/sys/i386/i386/vm_machdep.c 1.48 +5 -3 src/sys/i386/ibcs2/imgact_coff.c 1.23 +4 -3 src/sys/i386/linux/linux_machdep.c 1.95 +1 -1 src/sys/i386/linux/linux_sysvec.c 1.21 +0 -2 src/sys/ia64/ia64/locore.s 1.75 +9 -10 src/sys/ia64/ia64/machdep.c 1.43 +1 -1 src/sys/ia64/ia64/pmap.c 1.34 +2 -3 src/sys/ia64/ia64/vm_machdep.c 1.183 +12 -11 src/sys/kern/init_main.c 1.150 +1 -1 src/sys/kern/kern_exec.c 1.129 +33 -30 src/sys/kern/kern_fork.c 1.22 +2 -2 src/sys/kern/kern_idle.c 1.67 +1 -1 src/sys/kern/kern_intr.c 1.21 +3 -3 src/sys/kern/kern_kthread.c 1.106 +86 -66 src/sys/kern/kern_proc.c 1.118 +2 -3 src/sys/kern/kern_shutdown.c 1.145 +2 -2 src/sys/kern/kern_sig.c 1.97 +4 -2 src/sys/kern/subr_witness.c 1.77 +10 -10 src/sys/kern/sys_process.c 1.161 +5 -1 src/sys/kern/tty.c 1.114 +4 -4 src/sys/kern/vfs_aio.c 1.341 +6 -5 src/sys/kern/vfs_subr.c 1.221 +0 -2 src/sys/kern/vfs_syscalls.c 1.27 +3 -3 src/sys/netgraph/ng_ksocket.c 1.10 +2 -2 src/sys/netinet/tcp_syncache.c 1.32 +2 -2 src/sys/netipx/spx_usrreq.c 1.76 +2 -2 src/sys/nfsclient/nfs_socket.c 1.258 +11 -12 src/sys/pc98/i386/machdep.c 1.18 +6 -6 src/sys/posix4/p1003_1b.c 1.20 +8 -9 src/sys/powerpc/powerpc/machdep.c 1.65 +1 -3 src/sys/powerpc/powerpc/vm_machdep.c 1.2 +1 -1 src/sys/security/lomac/kernel_util.c 1.9 +1 -1 src/sys/sparc64/sparc64/db_trace.c 1.32 +8 -9 src/sys/sparc64/sparc64/machdep.c 1.19 +2 -4 src/sys/sparc64/sparc64/vm_machdep.c 1.200 +12 -4 src/sys/sys/proc.h 1.167 +1 -1 src/sys/sys/vnode.h 1.52 +1 -1 src/sys/vm/vm_extern.h 1.124 +5 -4 src/sys/vm/vm_glue.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 13: 1: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from columbus.cris.net (columbus.cris.net [212.110.128.65]) by hub.freebsd.org (Postfix) with ESMTP id F3F9237B420; Thu, 7 Feb 2002 13:00:50 -0800 (PST) Received: from ark.cris.net (root@ark.cris.net [212.110.128.68]) by columbus.cris.net (8.9.3/8.9.3) with ESMTP id XAA26146; Thu, 7 Feb 2002 23:00:46 +0200 (EET) Received: (from phantom@localhost) by ark.cris.net (8.11.1/8.11.1) id g17L0jx94309; Thu, 7 Feb 2002 23:00:45 +0200 (EET) Date: Thu, 7 Feb 2002 23:00:45 +0200 From: Alexey Zelkin To: Mikhail Teterin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/share/sgml authors.ent Message-ID: <20020207230045.A93910@ark.cris.net> References: <200202072000.g17K06k61197@freefall.freebsd.org> <200202072027.g17KRgQ63474@aldan.algebra.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200202072027.g17KRgQ63474@aldan.algebra.com>; from mi@aldan.algebra.com on Thu, Feb 07, 2002 at 03:27:40PM -0500 X-Operating-System: FreeBSD 3.5-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi, On Thu, Feb 07, 2002 at 03:27:40PM -0500, Mikhail Teterin wrote: > > phantom 2002/02/07 12:00:06 PST > > > > Modified files: > > en_US.ISO8859-1/share/sgml authors.ent > > Log: > > Convert committers' addresses to @FreeBSD.org form > > Is that a requirement? I prefer using the address, that I've used since > 1994... There is some history in it for me... I only changed e-mail addresses which are using in FreeBSD handbook and articles. Almost all people were listed there have FreeBSD.org addresses, but with few exceptions. This is more style commit than declaring new policy :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 13: 3: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C25B37B421; Thu, 7 Feb 2002 13:02:57 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17L2vw74999; Thu, 7 Feb 2002 13:02:57 -0800 (PST) (envelope-from pat) Message-Id: <200202072102.g17L2vw74999@freefall.freebsd.org> From: Patrick Li Date: Thu, 7 Feb 2002 13:02:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/xawtv Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/07 13:02:57 PST Modified files: graphics/xawtv Makefile distinfo Log: Update to 3.70 PR: 34707 Submitted by: maintainer Revision Changes Path 1.7 +2 -1 ports/graphics/xawtv/Makefile 1.5 +1 -1 ports/graphics/xawtv/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 13: 4:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EFEB437B419; Thu, 7 Feb 2002 13:04:40 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17L4ex75379; Thu, 7 Feb 2002 13:04:40 -0800 (PST) (envelope-from pat) Message-Id: <200202072104.g17L4ex75379@freefall.freebsd.org> From: Patrick Li Date: Thu, 7 Feb 2002 13:04:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/icqmail Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/07 13:04:40 PST Modified files: mail/icqmail Makefile Log: - Remove extra dependency - Make default paths correct in config file PR: 34708 Submitted by: maintainer Revision Changes Path 1.7 +6 -3 ports/mail/icqmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 13:11:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B6EAC37B405; Thu, 7 Feb 2002 13:11:10 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17LBAa80376; Thu, 7 Feb 2002 13:11:10 -0800 (PST) (envelope-from pat) Message-Id: <200202072111.g17LBAa80376@freefall.freebsd.org> From: Patrick Li Date: Thu, 7 Feb 2002 13:11:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/clisp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/07 13:11:10 PST Modified files: lang/clisp Makefile Log: Remove dead MASTER_SITES PR: 34703 Submitted by: maintainer Revision Changes Path 1.9 +1 -2 ports/lang/clisp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 13:22: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7EBF237B423; Thu, 7 Feb 2002 13:21:55 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17LLtc82112; Thu, 7 Feb 2002 13:21:55 -0800 (PST) (envelope-from phk) Message-Id: <200202072121.g17LLtc82112@freefall.freebsd.org> From: Poul-Henning Kamp Date: Thu, 7 Feb 2002 13:21:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys time.h timetc.h src/sys/kern kern_ntptime.c kern_tc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/02/07 13:21:55 PST Modified files: sys/sys time.h timetc.h sys/kern kern_ntptime.c kern_tc.c Log: Revise timercounters to use binary fixed point format internally. The binary format "bintime" is a 32.64 format, it will go to 64.64 when time_t does. The bintime format is available to consumers of time in the kernel, and is preferable where timeintervals needs to be accumulated. This change simplifies much of the magic math inside the timecounters and improves the frequency and time precision by a couple of bits. I have not been able to measure a performance difference which was not a tiny fraction of the standard deviation on the measurements. Revision Changes Path 1.41 +2 -2 src/sys/kern/kern_ntptime.c 1.113 +60 -108 src/sys/kern/kern_tc.c 1.48 +109 -1 src/sys/sys/time.h 1.45 +2 -6 src/sys/sys/timetc.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 13:23:11 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3F7F537B422; Thu, 7 Feb 2002 13:23:02 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17LN2o82277; Thu, 7 Feb 2002 13:23:02 -0800 (PST) (envelope-from pat) Message-Id: <200202072123.g17LN2o82277@freefall.freebsd.org> From: Patrick Li Date: Thu, 7 Feb 2002 13:23:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/alephone Makefile distinfo pkg-message ports/games/alephone/files patch-Source_Files::Misc::screen_sdl.cpp patch-aa patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/07 13:23:02 PST Modified files: games/alephone Makefile distinfo pkg-message Added files: games/alephone/files patch-aa patch-ab Removed files: games/alephone/files patch-Source_Files::Misc::screen_sdl.cpp Log: Update to 0.12.0 PR: 34706 Submitted by: maintainer Revision Changes Path 1.6 +2 -3 ports/games/alephone/Makefile 1.3 +1 -1 ports/games/alephone/distinfo 1.2 +0 -11 ports/games/alephone/files/patch-Source_Files::Misc::screen_sdl.cpp (dead) 1.1 +10 -0 ports/games/alephone/files/patch-aa (new) 1.1 +10 -0 ports/games/alephone/files/patch-ab (new) 1.3 +2 -4 ports/games/alephone/pkg-message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 13:26:39 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id E18A037B417; Thu, 7 Feb 2002 13:26:33 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.6/8.11.5) with ESMTP id g17LQNQ79587; Thu, 7 Feb 2002 16:26:24 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200202072126.g17LQNQ79587@aldan.algebra.com> Date: Thu, 7 Feb 2002 16:26:20 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: doc/en_US.ISO8859-1/share/sgml authors.ent To: phantom@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20020207230045.A93910@ark.cris.net> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 7 Feb, Alexey Zelkin wrote: >> > phantom 2002/02/07 12:00:06 PST >> > >> > Modified files: >> > en_US.ISO8859-1/share/sgml authors.ent >> > Log: >> > Convert committers' addresses to @FreeBSD.org form >> >> Is that a requirement? I prefer using the address, that I've used >> since 1994... There is some history in it for me... > > I only changed e-mail addresses which are using in FreeBSD handbook > and articles. Well, yeah, and I'd like my real address to be used in those documents... Why can't such a thing be left up to the person? > Almost all people were listed there have FreeBSD.org addresses, but > with few exceptions. This is more style commit than declaring new > policy :-) Khmm, style? -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 13:45:33 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6FFDD37B422; Thu, 7 Feb 2002 13:45:19 -0800 (PST) Received: (from sada@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17LjJP85884; Thu, 7 Feb 2002 13:45:19 -0800 (PST) (envelope-from sada) Message-Id: <200202072145.g17LjJP85884@freefall.freebsd.org> From: SADA Kenji Date: Thu, 7 Feb 2002 13:45:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/ppp-nt Makefile distinfo pkg-comment pkg-descr pkg-plist ports/net/ppp-nt/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sada 2002/02/07 13:45:19 PST Modified files: net Makefile Removed files: net/ppp-nt Makefile distinfo pkg-comment pkg-descr pkg-plist net/ppp-nt/files patch-aa Log: This should be obsolete. - multi-protocol nat patch is already applied on FreeBSD base system. Revision Changes Path 1.708 +0 -1 ports/net/Makefile 1.12 +0 -36 ports/net/ppp-nt/Makefile (dead) 1.4 +0 -3 ports/net/ppp-nt/distinfo (dead) 1.2 +0 -11 ports/net/ppp-nt/files/patch-aa (dead) 1.3 +0 -1 ports/net/ppp-nt/pkg-comment (dead) 1.5 +0 -13 ports/net/ppp-nt/pkg-descr (dead) 1.2 +0 -1 ports/net/ppp-nt/pkg-plist (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 13:54:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B9DF837B421; Thu, 7 Feb 2002 13:54:16 -0800 (PST) Received: (from sada@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17LsGQ87409; Thu, 7 Feb 2002 13:54:16 -0800 (PST) (envelope-from sada) Message-Id: <200202072154.g17LsGQ87409@freefall.freebsd.org> From: SADA Kenji Date: Thu, 7 Feb 2002 13:54:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/cvs2html Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sada 2002/02/07 13:54:16 PST Modified files: devel/cvs2html Makefile distinfo Log: Upgrade to version 1.91. Revision Changes Path 1.11 +2 -2 ports/devel/cvs2html/Makefile 1.11 +1 -1 ports/devel/cvs2html/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 13:57:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7762037B41C; Thu, 7 Feb 2002 13:57:28 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17LvS088017; Thu, 7 Feb 2002 13:57:28 -0800 (PST) (envelope-from phk) Message-Id: <200202072157.g17LvS088017@freefall.freebsd.org> From: Poul-Henning Kamp Date: Thu, 7 Feb 2002 13:57:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys time.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/02/07 13:57:28 PST Modified files: sys/sys time.h Log: Remove the inline assembly optimized versins of bintime_*() functions, they have no measurable effect and they don't belong in an MI header even if they did. Revision Changes Path 1.49 +0 -30 src/sys/sys/time.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 14: 6: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C03837B421; Thu, 7 Feb 2002 14:05:57 -0800 (PST) Received: (from sada@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17M5v294841; Thu, 7 Feb 2002 14:05:57 -0800 (PST) (envelope-from sada) Message-Id: <200202072205.g17M5v294841@freefall.freebsd.org> From: SADA Kenji Date: Thu, 7 Feb 2002 14:05:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/checkpassword Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sada 2002/02/07 14:05:57 PST Modified files: security/checkpassword Makefile Log: MASTER_SITE_SUBDIR is needless now. Revision Changes Path 1.14 +0 -1 ports/security/checkpassword/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 14: 6:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A46637B41A; Thu, 7 Feb 2002 14:06:24 -0800 (PST) Received: (from mjacob@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17M6OC94890; Thu, 7 Feb 2002 14:06:24 -0800 (PST) (envelope-from mjacob) Message-Id: <200202072206.g17M6OC94890@freefall.freebsd.org> From: Matt Jacob Date: Thu, 7 Feb 2002 14:06:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/osf1 osf1_misc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mjacob 2002/02/07 14:06:23 PST Modified files: sys/alpha/osf1 osf1_misc.c Log: You cannot take the address of a variable with the 'register' qualifier. MFC after: 1 day Revision Changes Path 1.25 +1 -1 src/sys/alpha/osf1/osf1_misc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 14: 8:42 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2259337B41C; Thu, 7 Feb 2002 14:08:33 -0800 (PST) Received: (from mjacob@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17M8XH95530; Thu, 7 Feb 2002 14:08:33 -0800 (PST) (envelope-from mjacob) Message-Id: <200202072208.g17M8XH95530@freefall.freebsd.org> From: Matt Jacob Date: Thu, 7 Feb 2002 14:08:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netatm port.h src/sys/security/lomac kernel_socket.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mjacob 2002/02/07 14:08:33 PST Modified files: sys/netatm port.h sys/security/lomac kernel_socket.c Log: Replace a few more lines of code orphaned by MFREE going away. MFC after: 1 day Revision Changes Path 1.6 +9 -5 src/sys/netatm/port.h 1.4 +2 -2 src/sys/security/lomac/kernel_socket.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 14:14: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ABAF037B41B; Thu, 7 Feb 2002 14:13:56 -0800 (PST) Received: (from mckusick@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17MDuW98705; Thu, 7 Feb 2002 14:13:56 -0800 (PST) (envelope-from mckusick) Message-Id: <200202072213.g17MDuW98705@freefall.freebsd.org> From: Kirk McKusick Date: Thu, 7 Feb 2002 14:13:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ffs ffs_alloc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mckusick 2002/02/07 14:13:56 PST Modified files: sys/ufs/ffs ffs_alloc.c Log: Occationally background fsck would cause a spurious ``freeing free inode'' panic. This change corrects that problem by setting the fs_active flag when the inode map changes to notify the snapshot code that the cylinder group must be rescanned. Submitted by: Robert Watson Revision Changes Path 1.87 +4 -0 src/sys/ufs/ffs/ffs_alloc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 14:17:47 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc54.attbi.com (rwcrmhc54.attbi.com [216.148.227.87]) by hub.freebsd.org (Postfix) with ESMTP id 3D2E737B404; Thu, 7 Feb 2002 14:17:43 -0800 (PST) Received: from peter3.wemm.org ([12.232.27.13]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020207221742.LFPU1214.rwcrmhc54.attbi.com@peter3.wemm.org>; Thu, 7 Feb 2002 22:17:42 +0000 Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id g17MHgs87322; Thu, 7 Feb 2002 14:17:42 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id ACA9539F1; Thu, 7 Feb 2002 14:17:42 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Julian Elischer Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha db_trace.c locore.s machdep.c pmap.c prom.c sys_machdep.c vm_machdep.c src/sys/alpha/linux linux_machdep.c linux_sysvec.c src/sys/alpha/osf1 imgact_osf1.c src/sys/compat/pecoff imgact_pecoff.c src/sys/ddb db_ps.c ... In-Reply-To: <200202072058.g17Kwmm74296@freefall.freebsd.org> Date: Thu, 07 Feb 2002 14:17:42 -0800 From: Peter Wemm Message-Id: <20020207221742.ACA9539F1@overcee.wemm.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Julian Elischer wrote: > julian 2002/02/07 12:58:48 PST > Reviewed by: peter@freebsd.org, gallatin@cs.duke.edu, benno rice, NO! This was *NOT* reviewed by me. I haven't even *seen* it! Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 14:21:18 2002 Delivered-To: cvs-all@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 67BFF37B419; Thu, 7 Feb 2002 14:21:13 -0800 (PST) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.6/8.11.5) with SMTP id g17ML9D04126; Thu, 7 Feb 2002 17:21:09 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Thu, 7 Feb 2002 17:21:08 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Matt Jacob Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netatm port.h src/sys/security/lomac kernel_socket.c In-Reply-To: <200202072208.g17M8XH95530@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG No need to MFC the lomac changes, lomac isn't in -stable and won't be. Robert N M Watson FreeBSD Core Team, TrustedBSD Project robert@fledge.watson.org NAI Labs, Safeport Network Services On Thu, 7 Feb 2002, Matt Jacob wrote: > mjacob 2002/02/07 14:08:33 PST > > Modified files: > sys/netatm port.h > sys/security/lomac kernel_socket.c > Log: > Replace a few more lines of code orphaned by MFREE going away. > > MFC after: 1 day > > Revision Changes Path > 1.6 +9 -5 src/sys/netatm/port.h > 1.4 +2 -2 src/sys/security/lomac/kernel_socket.c > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 14:26:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 67D1A37B41D; Thu, 7 Feb 2002 14:26:07 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17MQ7r01373; Thu, 7 Feb 2002 14:26:07 -0800 (PST) (envelope-from peter) Message-Id: <200202072226.g17MQ7r01373@freefall.freebsd.org> From: Peter Wemm Date: Thu, 7 Feb 2002 14:26:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/07 14:26:07 PST Modified files: sys/alpha/alpha machdep.c Log: Fix style bug introduced in previous commit. Revision Changes Path 1.163 +1 -1 src/sys/alpha/alpha/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 14:26:42 2002 Delivered-To: cvs-all@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id 57D9E37B417; Thu, 7 Feb 2002 14:26:17 -0800 (PST) Received: from mailhost.feral.com (mjacob@mailhost.feral.com [192.67.166.1]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id g17MQGV14931; Thu, 7 Feb 2002 14:26:16 -0800 (PST) (envelope-from mjacob@feral.com) Date: Thu, 7 Feb 2002 14:26:16 -0800 (PST) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: Robert Watson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netatm port.h src/sys/security/lomac kernel_socket.c In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Okay- thx. I put the MFC in as a matter of course but would have undoubtedly discovered this when I got the reminder mail. On Thu, 7 Feb 2002, Robert Watson wrote: > No need to MFC the lomac changes, lomac isn't in -stable and won't be. > > Robert N M Watson FreeBSD Core Team, TrustedBSD Project > robert@fledge.watson.org NAI Labs, Safeport Network Services > > On Thu, 7 Feb 2002, Matt Jacob wrote: > > > mjacob 2002/02/07 14:08:33 PST > > > > Modified files: > > sys/netatm port.h > > sys/security/lomac kernel_socket.c > > Log: > > Replace a few more lines of code orphaned by MFREE going away. > > > > MFC after: 1 day > > > > Revision Changes Path > > 1.6 +9 -5 src/sys/netatm/port.h > > 1.4 +2 -2 src/sys/security/lomac/kernel_socket.c > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 14:27:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 482F337B431; Thu, 7 Feb 2002 14:26:52 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17MQpY01522; Thu, 7 Feb 2002 14:26:51 -0800 (PST) (envelope-from peter) Message-Id: <200202072226.g17MQpY01522@freefall.freebsd.org> From: Peter Wemm Date: Thu, 7 Feb 2002 14:26:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha sys_machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/07 14:26:51 PST Modified files: sys/alpha/alpha sys_machdep.c Log: Patch up some long lines introduced in previous commit. Revision Changes Path 1.14 +7 -3 src/sys/alpha/alpha/sys_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 14:28:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 912B637B446; Thu, 7 Feb 2002 14:28:24 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17MSOY01754; Thu, 7 Feb 2002 14:28:24 -0800 (PST) (envelope-from peter) Message-Id: <200202072228.g17MSOY01754@freefall.freebsd.org> From: Peter Wemm Date: Thu, 7 Feb 2002 14:28:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/linux linux_machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/07 14:28:24 PST Modified files: sys/alpha/linux linux_machdep.c Log: Fix long line added in previous commit. Revision Changes Path 1.20 +3 -1 src/sys/alpha/linux/linux_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 14:29:39 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9498137B47C; Thu, 7 Feb 2002 14:28:37 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17MSbk01832; Thu, 7 Feb 2002 14:28:37 -0800 (PST) (envelope-from trevor) Message-Id: <200202072228.g17MSbk01832@freefall.freebsd.org> From: Trevor Johnson Date: Thu, 7 Feb 2002 14:28:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/cvslines Makefile distinfo pkg-comment pkg-descr ports/devel/cvslines/files patch-aa patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2002/02/07 14:28:37 PST Added files: devel/cvslines Makefile distinfo pkg-comment pkg-descr devel/cvslines/files patch-aa patch-ab Log: "It has been established that persons who have recently died have been returning to life and committing acts of murder." -- Night of the Living Dead (1968) Update to new layout. Update master sites. Update link to home page. Fix path to perl5 (fixes a bug reported in PR 14353). Use system rcs by default (same fix as in PR 14353). Correct several instances of doubled word "the the" in man page. Take over maintainership. Missing repository files replaced by: joe Permissions problem fixed by: the unknown cvsmeister PR: 14353, 34530, and 34702 Revision Changes Path 1.5 +35 -0 ports/devel/cvslines/Makefile (new) 1.1 +1 -0 ports/devel/cvslines/distinfo (new) 1.3 +32 -0 ports/devel/cvslines/files/patch-aa (new) 1.3 +32 -0 ports/devel/cvslines/files/patch-ab (new) 1.4 +1 -0 ports/devel/cvslines/pkg-comment (new) 1.4 +8 -0 ports/devel/cvslines/pkg-descr (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 14:30: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E18337B47E; Thu, 7 Feb 2002 14:29:41 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17MTfB02018; Thu, 7 Feb 2002 14:29:41 -0800 (PST) (envelope-from peter) Message-Id: <200202072229.g17MTfB02018@freefall.freebsd.org> From: Peter Wemm Date: Thu, 7 Feb 2002 14:29:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/osf1 imgact_osf1.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/07 14:29:41 PST Modified files: sys/alpha/osf1 imgact_osf1.c Log: Fix a long line introduced in previous commit. Revision Changes Path 1.10 +2 -1 src/sys/alpha/osf1/imgact_osf1.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 14:36:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F9E837B405; Thu, 7 Feb 2002 14:36:19 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17MaJC03601; Thu, 7 Feb 2002 14:36:19 -0800 (PST) (envelope-from peter) Message-Id: <200202072236.g17MaJC03601@freefall.freebsd.org> From: Peter Wemm Date: Thu, 7 Feb 2002 14:36:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/pecoff imgact_pecoff.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/07 14:36:19 PST Modified files: sys/compat/pecoff imgact_pecoff.c Log: Attempt to unmangle some code touched in the previous commit. Revision Changes Path 1.12 +8 -11 src/sys/compat/pecoff/imgact_pecoff.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 14:40:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DB5CA37B422; Thu, 7 Feb 2002 14:40:34 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17MeYq04307; Thu, 7 Feb 2002 14:40:34 -0800 (PST) (envelope-from peter) Message-Id: <200202072240.g17MeYq04307@freefall.freebsd.org> From: Peter Wemm Date: Thu, 7 Feb 2002 14:40:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 machdep.c swtch.s X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/07 14:40:34 PST Modified files: sys/i386/i386 machdep.c swtch.s Log: Attempt to patch up some style bugs introduced in the previous commit Revision Changes Path 1.494 +2 -4 src/sys/i386/i386/machdep.c 1.128 +9 -5 src/sys/i386/i386/swtch.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 14:44: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 27C1537B41F; Thu, 7 Feb 2002 14:43:58 -0800 (PST) Received: (from naddy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17MhwY04809; Thu, 7 Feb 2002 14:43:58 -0800 (PST) (envelope-from naddy) Message-Id: <200202072243.g17MhwY04809@freefall.freebsd.org> From: Christian Weisgerber Date: Thu, 7 Feb 2002 14:43:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/cdrdao Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2002/02/07 14:43:58 PST Modified files: audio/cdrdao Makefile Log: MAINTAINER resigns. Submitted by: David Lebel Revision Changes Path 1.26 +2 -2 ports/audio/cdrdao/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 15: 3:44 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 37EE837B419; Thu, 7 Feb 2002 15:03:41 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17N3fL08061; Thu, 7 Feb 2002 15:03:41 -0800 (PST) (envelope-from peter) Message-Id: <200202072303.g17N3fL08061@freefall.freebsd.org> From: Peter Wemm Date: Thu, 7 Feb 2002 15:03:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfsclient nfs_socket.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/07 15:03:41 PST Modified files: sys/nfsclient nfs_socket.c Log: Fix a long line touched in previous commit (but not caused by previous commit) Revision Changes Path 1.77 +2 -1 src/sys/nfsclient/nfs_socket.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 15: 5:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E50C37B400; Thu, 7 Feb 2002 15:05:41 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17N5fx11805; Thu, 7 Feb 2002 15:05:41 -0800 (PST) (envelope-from peter) Message-Id: <200202072305.g17N5fx11805@freefall.freebsd.org> From: Peter Wemm Date: Thu, 7 Feb 2002 15:05:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern sys_process.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/07 15:05:40 PST Modified files: sys/kern sys_process.c Log: Fix a whole bunch of long lines introduced by previous commit by using td = FIRST_THREAD_IN_PROC(p) once, after we have identified the process that we are operating on. Revision Changes Path 1.78 +15 -11 src/sys/kern/sys_process.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 15: 6:34 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ACF2537B400; Thu, 7 Feb 2002 15:06:26 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17N6Qr12002; Thu, 7 Feb 2002 15:06:26 -0800 (PST) (envelope-from peter) Message-Id: <200202072306.g17N6Qr12002@freefall.freebsd.org> From: Peter Wemm Date: Thu, 7 Feb 2002 15:06:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_fork.c kern_kthread.c kern_proc.c tty.c vfs_subr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/07 15:06:26 PST Modified files: sys/kern kern_fork.c kern_kthread.c kern_proc.c tty.c vfs_subr.c Log: Fix a couple of style bugs introduced (or touched by) previous commit. Revision Changes Path 1.130 +0 -1 src/sys/kern/kern_fork.c 1.22 +2 -1 src/sys/kern/kern_kthread.c 1.107 +2 -0 src/sys/kern/kern_proc.c 1.162 +0 -2 src/sys/kern/tty.c 1.342 +1 -2 src/sys/kern/vfs_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 15:14:45 2002 Delivered-To: cvs-all@freebsd.org Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by hub.freebsd.org (Postfix) with ESMTP id B587C37B41F; Thu, 7 Feb 2002 15:14:30 -0800 (PST) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.9.3/8.9.3) with ESMTP id SAA27489; Thu, 7 Feb 2002 18:14:30 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id g17NE0M32164; Thu, 7 Feb 2002 18:14:00 -0500 (EST) (envelope-from gallatin@cs.duke.edu) Date: Thu, 7 Feb 2002 18:14:00 -0500 From: Andrew Gallatin To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha db_trace.c locore.s machdep.c pmap.c prom.c sys_machdep.c vm_machdep.c src/sys/alpha/linux linux_machdep.c linux_sysvec.c src/sys/alpha/osf1 imgact_osf1.c src/sys/compat/pecoff imgact_pecoff.c src/sys/ddb db_ps.c ... Message-ID: <20020207181400.A32131@grasshopper.cs.duke.edu> References: <200202072058.g17Kwmm74296@freefall.freebsd.org> <20020207221742.ACA9539F1@overcee.wemm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020207221742.ACA9539F1@overcee.wemm.org>; from peter@wemm.org on Thu, Feb 07, 2002 at 02:17:42PM -0800 X-Operating-System: FreeBSD 4.3-RELEASE on an i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Peter Wemm [peter@wemm.org] wrote: > Julian Elischer wrote: > > julian 2002/02/07 12:58:48 PST > > > Reviewed by: peter@freebsd.org, gallatin@cs.duke.edu, benno rice, > > NO! This was *NOT* reviewed by me. I haven't even *seen* it! > I'd qualify my own involvement more as "tested by".. I didn't even look at any code outside sys/alpha.. Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 15:20:32 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by hub.freebsd.org (Postfix) with ESMTP id 011FB37B427; Thu, 7 Feb 2002 15:20:21 -0800 (PST) Received: from InterJet.elischer.org ([12.232.206.8]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020207232020.NROM1672.rwcrmhc51.attbi.com@InterJet.elischer.org>; Thu, 7 Feb 2002 23:20:20 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id PAA98424; Thu, 7 Feb 2002 15:18:53 -0800 (PST) Date: Thu, 7 Feb 2002 15:18:53 -0800 (PST) From: Julian Elischer To: Andrew Gallatin Cc: Peter Wemm , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha db_trace.c locore.s machdep.c pmap.c prom.c sys_machdep.c vm_machdep.c src/sys/alpha/linux linux_machdep.c linux_sysvec.c src/sys/alpha/osf1 imgact_osf1.c src/sys/compat/pecoff imgact_pecoff.c src/sys/ddb db_ps.c ... In-Reply-To: <20020207181400.A32131@grasshopper.cs.duke.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 7 Feb 2002, Andrew Gallatin wrote: > > > Peter Wemm [peter@wemm.org] wrote: > > Julian Elischer wrote: > > > julian 2002/02/07 12:58:48 PST > > > > > Reviewed by: peter@freebsd.org, gallatin@cs.duke.edu, benno rice, > > > > NO! This was *NOT* reviewed by me. I haven't even *seen* it! Ummm we spent two hours together on the phone going through these changes... > > > > I'd qualify my own involvement more as "tested by".. I didn't even > look at any code outside sys/alpha.. > > Drew > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 15:20:42 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by hub.freebsd.org (Postfix) with ESMTP id B7AA937B423; Thu, 7 Feb 2002 15:20:30 -0800 (PST) Received: from InterJet.elischer.org ([12.232.206.8]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020207232030.NRRN1672.rwcrmhc51.attbi.com@InterJet.elischer.org>; Thu, 7 Feb 2002 23:20:30 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id PAA98382; Thu, 7 Feb 2002 15:05:22 -0800 (PST) Date: Thu, 7 Feb 2002 15:05:21 -0800 (PST) From: Julian Elischer To: Peter Wemm Cc: Julian Elischer , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha db_trace.c locore.s machdep.c pmap.c prom.c sys_machdep.c vm_machdep.c src/sys/alpha/linux linux_machdep.c linux_sysvec.c src/sys/alpha/osf1 imgact_osf1.c src/sys/compat/pecoff imgact_pecoff.c src/sys/ddb db_ps.c ... In-Reply-To: <20020207221742.ACA9539F1@overcee.wemm.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG you DID look at it.. we went through it together.. your comment was "yeah this is just the renaming stuff.. get that committed first so we can look at the real stuff" On Thu, 7 Feb 2002, Peter Wemm wrote: > Julian Elischer wrote: > > julian 2002/02/07 12:58:48 PST > > > Reviewed by: peter@freebsd.org, gallatin@cs.duke.edu, benno rice, > > NO! This was *NOT* reviewed by me. I haven't even *seen* it! > > Cheers, > -Peter > -- > Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au > "All of this is for nothing if we don't go to the stars" - JMS/B5 > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 15:39: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id 790A937B404; Thu, 7 Feb 2002 15:38:56 -0800 (PST) Received: from peter3.wemm.org ([12.232.27.13]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020207233856.NVNH2951.rwcrmhc53.attbi.com@peter3.wemm.org>; Thu, 7 Feb 2002 23:38:56 +0000 Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id g17Ncus87638; Thu, 7 Feb 2002 15:38:56 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id C793239F1; Thu, 7 Feb 2002 15:38:55 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Julian Elischer Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha db_trace.c locore.s machdep.c pmap.c prom.c sys_machdep.c vm_machdep.c src/sys/alpha/linux linux_machdep.c linux_sysvec.c src/sys/alpha/osf1 imgact_osf1.c src/sys/compat/pecoff imgact_pecoff.c src/sys/ddb db_ps.c ... In-Reply-To: Date: Thu, 07 Feb 2002 15:38:55 -0800 From: Peter Wemm Message-Id: <20020207233855.C793239F1@overcee.wemm.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Julian Elischer wrote: > > > On Thu, 7 Feb 2002, Andrew Gallatin wrote: > > > > > > > Peter Wemm [peter@wemm.org] wrote: > > > Julian Elischer wrote: > > > > julian 2002/02/07 12:58:48 PST > > > > > > > Reviewed by: peter@freebsd.org, gallatin@cs.duke.edu, benno rice, > > > > > > NO! This was *NOT* reviewed by me. I haven't even *seen* it! > > Ummm we spent two hours together on the phone going through these > changes... No, that was the kse diff, on sunday.. You had not even started this diff then. I said on many occasions during that readthrough that there were problems that should be fixed before committing, and that both you and I would read through the diff before it was committed, since it is blatently obvious where the mistakes are. This kind of thing stands out like a sore thumb: @@ -2331,15 +2332,18 @@ ttyprintf(tp, "empty foreground process group\n"); else { mtx_lock_spin(&sched_lock); + /* Pick interesting process. */ for (pick = NULL; p != 0; p = LIST_NEXT(p, p_pglist)) if (proc_compare(pick, p)) pick = p; Maybe I overreacted. Dealing with pacbell is not a good way to calm the nerves. But I also don't appreciate being listed as a reviewer when I haven't even seen the actual change, and when I explicitly said "let me read it first". Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 15:40:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DF0A737B41D; Thu, 7 Feb 2002 15:40:09 -0800 (PST) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17Ne5C16288; Thu, 7 Feb 2002 15:40:05 -0800 (PST) (envelope-from iedowse) Message-Id: <200202072340.g17Ne5C16288@freefall.freebsd.org> From: Ian Dowse Date: Thu, 7 Feb 2002 15:40:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/fsdb fsdb.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG iedowse 2002/02/07 15:40:05 PST Modified files: (Branch: RELENG_4) sbin/fsdb fsdb.c Log: MFC: 1.18; don't allow IFMT bits in the `chmod' argument. Revision Changes Path 1.13.2.2 +1 -1 src/sbin/fsdb/fsdb.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 15:57:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C622137B425; Thu, 7 Feb 2002 15:57:01 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g17Nv1H19643; Thu, 7 Feb 2002 15:57:01 -0800 (PST) (envelope-from imp) Message-Id: <200202072357.g17Nv1H19643@freefall.freebsd.org> From: Warner Losh Date: Thu, 7 Feb 2002 15:57:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rbootd bpf.c defs.h parseconf.c rbootd.c rmpproto.c utils.c src/libexec/revnetgroup hash.c hash.h parse_netgroup.c revnetgroup.c src/libexec/rexecd rexecd.c src/libexec/rlogind rlogind.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/07 15:57:01 PST Modified files: libexec/rbootd bpf.c defs.h parseconf.c rbootd.c rmpproto.c utils.c libexec/revnetgroup hash.c hash.h parse_netgroup.c revnetgroup.c libexec/rexecd rexecd.c libexec/rlogind rlogind.c Log: o __P removal o register removal o use new style prototypes and function definitions Revision Changes Path 1.11 +5 -9 src/libexec/rbootd/bpf.c 1.4 +33 -33 src/libexec/rbootd/defs.h 1.11 +4 -5 src/libexec/rbootd/parseconf.c 1.13 +10 -17 src/libexec/rbootd/rbootd.c 1.8 +8 -20 src/libexec/rbootd/rmpproto.c 1.7 +13 -25 src/libexec/rbootd/utils.c 1.7 +12 -17 src/libexec/revnetgroup/hash.c 1.7 +6 -6 src/libexec/revnetgroup/hash.h 1.8 +14 -20 src/libexec/revnetgroup/parse_netgroup.c 1.12 +3 -5 src/libexec/revnetgroup/revnetgroup.c 1.25 +21 -28 src/libexec/rexecd/rexecd.c 1.38 +23 -40 src/libexec/rlogind/rlogind.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 16: 0:29 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id B3BF837B41A; Thu, 7 Feb 2002 16:00:14 -0800 (PST) Received: from InterJet.elischer.org ([12.232.206.8]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020208000014.OKBB2951.rwcrmhc53.attbi.com@InterJet.elischer.org>; Fri, 8 Feb 2002 00:00:14 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id PAA98582; Thu, 7 Feb 2002 15:52:06 -0800 (PST) Date: Thu, 7 Feb 2002 15:52:04 -0800 (PST) From: Julian Elischer To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha db_trace.c locore.s machdep.c pmap.c prom.c sys_machdep.c vm_machdep.c src/sys/alpha/linux linux_machdep.c linux_sysvec.c src/sys/alpha/osf1 imgact_osf1.c src/sys/compat/pecoff imgact_pecoff.c src/sys/ddb db_ps.c ... In-Reply-To: <20020207233855.C793239F1@overcee.wemm.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 7 Feb 2002, Peter Wemm wrote: > Julian Elischer wrote: > > > > > > On Thu, 7 Feb 2002, Andrew Gallatin wrote: > > > > > > > > > > > Peter Wemm [peter@wemm.org] wrote: > > > > Julian Elischer wrote: > > > > > julian 2002/02/07 12:58:48 PST > > > > > > > > > Reviewed by: peter@freebsd.org, gallatin@cs.duke.edu, benno rice, > > > > > > > > NO! This was *NOT* reviewed by me. I haven't even *seen* it! > > > > Ummm we spent two hours together on the phone going through these > > changes... > > No, that was the kse diff, on sunday.. You had not even started this diff > then. This diff IS that diff with the bigger changes backed out. I generated it from the other one, and sent you a pointer to it on Monday at 9pm. > I said on many occasions during that readthrough that there were > problems that should be fixed before committing, and that both you and I > would read through the diff before it was committed, since it is blatently > obvious where the mistakes are. > > This kind of thing stands out like a sore thumb: > > @@ -2331,15 +2332,18 @@ > ttyprintf(tp, "empty foreground process group\n"); > else { > mtx_lock_spin(&sched_lock); > > + > /* Pick interesting process. */ > for (pick = NULL; p != 0; p = LIST_NEXT(p, p_pglist)) > if (proc_compare(pick, p)) > pick = p; > > Maybe I overreacted. Dealing with pacbell is not a good way to calm the > nerves. But I also don't appreciate being listed as a reviewer when I > haven't even seen the actual change, and when I explicitly said "let me > read it first". Ok maybe my frustration at having sent you the diff on Monday and heard nothing from you by thursday afternoon was getting to me.. I still think you are accuratly described as a reviewer because there is NOTHING in this diff that was not part of the bigger diff we went over on Sunday. It is a pure subset of that diff, so we DID look at it together. I presumed that since others had looked at it, (e.g. Benno said that he had some issues with PPC but that he would rather I commit it so he could fix it after) and it had actually been tested on other machines than my own, (e.g. Andrew's alpha), that since there wasn't anything you saw worth really complainign about, that waiting for you further was not really that important. After all it IS CVS and we can always fix things. > > Cheers, > -Peter > -- > Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au > "All of this is for nothing if we don't go to the stars" - JMS/B5 > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 17:38:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C6FC537B421; Thu, 7 Feb 2002 17:38:32 -0800 (PST) Received: (from julian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g181cWD47310; Thu, 7 Feb 2002 17:38:32 -0800 (PST) (envelope-from julian) Message-Id: <200202080138.g181cWD47310@freefall.freebsd.org> From: Julian Elischer Date: Thu, 7 Feb 2002 17:38:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_proc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG julian 2002/02/07 17:38:32 PST Modified files: sys/kern kern_proc.c Log: remove superfluous blank line Revision Changes Path 1.108 +0 -1 src/sys/kern/kern_proc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 17:56:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3563637B405; Thu, 7 Feb 2002 17:56:26 -0800 (PST) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g181uQv50067; Thu, 7 Feb 2002 17:56:26 -0800 (PST) (envelope-from anders) Message-Id: <200202080156.g181uQv50067@freefall.freebsd.org> From: Anders Nordby Date: Thu, 7 Feb 2002 17:56:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/majordomo Makefile ports/mail/majordomo/files post-install-notes ports/mail/majordomo/scripts adaptwrapper createuser X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anders 2002/02/07 17:56:26 PST Modified files: mail/majordomo Makefile mail/majordomo/files post-install-notes mail/majordomo/scripts createuser Added files: mail/majordomo/scripts adaptwrapper Log: Add wrapper permissions dialog(1) to make it easier for users to have their majordomo wrapper program executed from their MDA. Remove old instructions for how this could be done manually. This also fixes the new majordomo/mailnull issue. Correct typo in post-install-notes (spotted by Dan Pelleg). PR: 30170 Revision Changes Path 1.31 +3 -2 ports/mail/majordomo/Makefile 1.8 +1 -13 ports/mail/majordomo/files/post-install-notes 1.1 +68 -0 ports/mail/majordomo/scripts/adaptwrapper (new) 1.5 +0 -8 ports/mail/majordomo/scripts/createuser To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 18: 3:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DC94837B41D; Thu, 7 Feb 2002 18:03:14 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1823EH51550; Thu, 7 Feb 2002 18:03:14 -0800 (PST) (envelope-from sobomax) Message-Id: <200202080203.g1823EH51550@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 7 Feb 2002 18:03:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/gnomelibs Makefile ports/x11/gnomelibs/files patch-ltmain.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/07 18:03:14 PST Modified files: x11/gnomelibs Makefile x11/gnomelibs/files patch-ltmain.sh Log: Prevent libc from being explicitly linked into shared libs. Bump PORTREVISION. Revision Changes Path 1.95 +1 -0 ports/x11/gnomelibs/Makefile 1.2 +13 -13 ports/x11/gnomelibs/files/patch-ltmain.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 18: 5:38 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8446E37B405; Thu, 7 Feb 2002 18:05:32 -0800 (PST) Received: (from mike@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1825WV55438; Thu, 7 Feb 2002 18:05:32 -0800 (PST) (envelope-from mike) Message-Id: <200202080205.g1825WV55438@freefall.freebsd.org> From: Mike Barcroft Date: Thu, 7 Feb 2002 18:05:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/patch patch.1 patch.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mike 2002/02/07 18:05:32 PST Modified files: gnu/usr.bin/patch patch.1 patch.c Log: Add -i option (SUSv3) to patch(1). This allows one to specify a patch file on command line instead of stdin. Submitted by: Joseph Mallett MFC after: 1 month Revision Changes Path 1.13 +13 -2 src/gnu/usr.bin/patch/patch.1 1.19 +6 -3 src/gnu/usr.bin/patch/patch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 18:16:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 41A7937B41E; Thu, 7 Feb 2002 18:16:45 -0800 (PST) Received: (from msmith@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g182Gjo57002; Thu, 7 Feb 2002 18:16:45 -0800 (PST) (envelope-from msmith) Message-Id: <200202080216.g182Gjo57002@freefall.freebsd.org> From: Mike Smith Date: Thu, 7 Feb 2002 18:16:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/contrib/dev/acpica acpica_prep.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG msmith 2002/02/07 18:16:45 PST Added files: sys/contrib/dev/acpica acpica_prep.sh Log: Add a helper script used to take an Intel-supplied ACPI CA drop and make it ready for importing. This should save me from my own over-cleanliness. Revision Changes Path 1.1 +42 -0 src/sys/contrib/dev/acpica/acpica_prep.sh (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 18:56:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 916E437B400; Thu, 7 Feb 2002 18:56:10 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g182uAj61466; Thu, 7 Feb 2002 18:56:10 -0800 (PST) (envelope-from peter) Message-Id: <200202080256.g182uAj61466@freefall.freebsd.org> From: Peter Wemm Date: Thu, 7 Feb 2002 18:56:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_proc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/07 18:56:10 PST Modified files: sys/kern kern_proc.c Log: Fix a fatal trap when using ksched_setscheduler() (eg: mozilla, netscape etc) which use: td->td_last_kse->ke_flags |= KEF_NEEDRESCHED; Revision Changes Path 1.109 +1 -1 src/sys/kern/kern_proc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 18:56:58 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id EC94637B41A; Thu, 7 Feb 2002 18:56:50 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id NAA16763; Fri, 8 Feb 2002 13:56:47 +1100 Date: Fri, 8 Feb 2002 13:59:23 +1100 (EST) From: Bruce Evans X-X-Sender: To: Mark Murray Cc: , Subject: Re: cvs commit: src/share/man Makefile In-Reply-To: <200202062158.g16LwUk59397@freefall.freebsd.org> Message-ID: <20020208135736.M8656-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 6 Feb 2002, Mark Murray wrote: > markm 2002/02/06 13:58:30 PST > > Modified files: > share/man Makefile > Log: > Allow local tweaks when messing with manpages. > > Revision Changes Path > 1.12 +4 -2 src/share/man/Makefile This bogotifies installworld by hard-coding an absolute path to makewhatis. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 19: 1: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9912537B41B; Thu, 7 Feb 2002 19:01:03 -0800 (PST) Received: (from gallatin@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18313N62227; Thu, 7 Feb 2002 19:01:03 -0800 (PST) (envelope-from gallatin) Message-Id: <200202080301.g18313N62227@freefall.freebsd.org> From: Andrew Gallatin Date: Thu, 7 Feb 2002 19:01:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/ctags fortran.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gallatin 2002/02/07 19:01:03 PST Modified files: usr.bin/ctags fortran.c Log: add missing to give strcpy() a prototype Revision Changes Path 1.9 +1 -0 src/usr.bin/ctags/fortran.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 19:13:21 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 2D14037B41E; Thu, 7 Feb 2002 19:13:16 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id OAA18817; Fri, 8 Feb 2002 14:13:04 +1100 Date: Fri, 8 Feb 2002 14:15:40 +1100 (EST) From: Bruce Evans X-X-Sender: To: Julian Elischer Cc: Julian Elischer , , Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-raid.c ata-raid.h src/sys/dev/usb uhci.c src/sys/sys syscall.h syscall.mk sysproto.h In-Reply-To: Message-ID: <20020208141407.M8656-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 6 Feb 2002, Julian Elischer wrote: > On Wed, 6 Feb 2002, Julian Elischer wrote: > [...] > > > 1.100 +0 -0 src/sys/sys/syscall.h > > 1.55 +0 -0 src/sys/sys/syscall.mk > > 1.91 +0 -0 src/sys/sys/sysproto.h > > HUH? > > there were no changes in these files! Maybe a forced commit. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 19:14:36 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id B9EAD37B416; Thu, 7 Feb 2002 19:14:29 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id OAA18949; Fri, 8 Feb 2002 14:14:19 +1100 Date: Fri, 8 Feb 2002 14:16:55 +1100 (EST) From: Bruce Evans X-X-Sender: To: =?X-UNKNOWN?Q?S=F8ren_Schmidt?= Cc: Julian Elischer , , Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-raid.c ata-raid.h src/sys/dev/usb uhci.c src/sys/sys syscall.h syscall.mk sysproto.h In-Reply-To: <200202062027.g16KR1O00501@freebsd.dk> Message-ID: <20020208141546.I8656-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 6 Feb 2002, S=F8ren Schmidt wrote: > It seems Julian Elischer wrote: > > julian 2002/02/06 11:35:37 PST > > > > Modified files: > > sys/dev/ata ata-all.c ata-raid.c ata-raid.h > > sys/dev/usb uhci.c > > sys/sys syscall.h syscall.mk sysproto.h > > Log: > > Make LINT compile after fruitless attempts to get the authors > > to fix their code. > > WHAT? I havn't seen a single mail from you on that matter, hrmpf! You should have been getting mail about it from your automated checking for LINT breakage if you don't check LINT manually. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 19:20: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B8DA37B404; Thu, 7 Feb 2002 19:20:03 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g183K3068337; Thu, 7 Feb 2002 19:20:03 -0800 (PST) (envelope-from peter) Message-Id: <200202080320.g183K3068337@freefall.freebsd.org> From: Peter Wemm Date: Thu, 7 Feb 2002 19:20:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/gdb/i386 kvm-fbsd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/07 19:20:00 PST Modified files: gnu/usr.bin/binutils/gdb/i386 kvm-fbsd.c Log: Make this part compile and try and use the p_threads tailq. It might work but I am not sure, I haven't been able to compile the rest of gdb yet. Revision Changes Path 1.34 +7 -2 src/gnu/usr.bin/binutils/gdb/i386/kvm-fbsd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 19:20:33 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id 3927337B43F; Thu, 7 Feb 2002 19:20:17 -0800 (PST) Received: from InterJet.elischer.org ([12.232.206.8]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020208032016.TLEI2951.rwcrmhc53.attbi.com@InterJet.elischer.org>; Fri, 8 Feb 2002 03:20:16 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id TAA99295; Thu, 7 Feb 2002 19:11:19 -0800 (PST) Date: Thu, 7 Feb 2002 19:11:17 -0800 (PST) From: Julian Elischer To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_proc.c In-Reply-To: <200202080256.g182uAj61466@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG I think this is the wrong fix.. you should use td->td_kse->ke_flags instead as the field td_last_kse is possibly scheduled for demolition. I suspect that td->td_kse should be valid for all threads being tested.. (is it always curthread()?) On Thu, 7 Feb 2002, Peter Wemm wrote: > peter 2002/02/07 18:56:10 PST > > Modified files: > sys/kern kern_proc.c > Log: > Fix a fatal trap when using ksched_setscheduler() (eg: mozilla, netscape > etc) which use: td->td_last_kse->ke_flags |= KEF_NEEDRESCHED; > > Revision Changes Path > 1.109 +1 -1 src/sys/kern/kern_proc.c > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 19:20:39 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id C080A37B431; Thu, 7 Feb 2002 19:20:18 -0800 (PST) Received: from InterJet.elischer.org ([12.232.206.8]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020208032018.TLEV2951.rwcrmhc53.attbi.com@InterJet.elischer.org>; Fri, 8 Feb 2002 03:20:18 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id TAA99333; Thu, 7 Feb 2002 19:15:27 -0800 (PST) Date: Thu, 7 Feb 2002 19:15:26 -0800 (PST) From: Julian Elischer To: Bruce Evans Cc: Julian Elischer , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-raid.c ata-raid.h src/sys/dev/usb uhci.c src/sys/sys syscall.h syscall.mk sysproto.h In-Reply-To: <20020208141407.M8656-100000@gamplex.bde.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 8 Feb 2002, Bruce Evans wrote: > On Wed, 6 Feb 2002, Julian Elischer wrote: > > > On Wed, 6 Feb 2002, Julian Elischer wrote: > > [...] > > > > > 1.100 +0 -0 src/sys/sys/syscall.h > > > 1.55 +0 -0 src/sys/sys/syscall.mk > > > 1.91 +0 -0 src/sys/sys/sysproto.h > > > > HUH? > > > > there were no changes in these files! > > Maybe a forced commit. Nope I didn't do that.. I later figured out that there was a change in the $FreeBSD: line which is not reflected here.. > > Bruce > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 19:35:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3CE9837B41B; Thu, 7 Feb 2002 19:35:12 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g183ZC171110; Thu, 7 Feb 2002 19:35:12 -0800 (PST) (envelope-from pat) Message-Id: <200202080335.g183ZC171110@freefall.freebsd.org> From: Patrick Li Date: Thu, 7 Feb 2002 19:35:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/xmms-fc Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/07 19:35:12 PST Modified files: audio/xmms-fc Makefile distinfo Log: Update to 0.5.2 PR: 34721 Submitted by: maintainer Revision Changes Path 1.2 +3 -3 ports/audio/xmms-fc/Makefile 1.2 +1 -1 ports/audio/xmms-fc/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 19:49:52 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 186AD37B41D; Thu, 7 Feb 2002 19:49:48 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g183nlv73202; Thu, 7 Feb 2002 19:49:47 -0800 (PST) (envelope-from pat) Message-Id: <200202080349.g183nlv73202@freefall.freebsd.org> From: Patrick Li Date: Thu, 7 Feb 2002 19:49:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/freeamp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/07 19:49:47 PST Modified files: audio/freeamp Makefile Log: Autodetect port depends PR: 34724 Submitted by: maintainer Revision Changes Path 1.15 +6 -5 ports/audio/freeamp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 19:55:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 24E1237B405; Thu, 7 Feb 2002 19:55:13 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g183tDV74186; Thu, 7 Feb 2002 19:55:13 -0800 (PST) (envelope-from pat) Message-Id: <200202080355.g183tDV74186@freefall.freebsd.org> From: Patrick Li Date: Thu, 7 Feb 2002 19:55:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/openslp Makefile distinfo ports/net/openslp/files patch-aa patch-ltmain.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/07 19:55:13 PST Modified files: net/openslp Makefile distinfo net/openslp/files patch-aa Added files: net/openslp/files patch-ltmain.sh Log: Update to 1.0.7 PR: 34704 Submitted by: maintainer Revision Changes Path 1.3 +2 -4 ports/net/openslp/Makefile 1.3 +1 -1 ports/net/openslp/distinfo 1.3 +4 -4 ports/net/openslp/files/patch-aa 1.1 +25 -0 ports/net/openslp/files/patch-ltmain.sh (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 19:55:45 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 09D8537B419; Thu, 7 Feb 2002 19:55:38 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g183tcx74361; Thu, 7 Feb 2002 19:55:38 -0800 (PST) (envelope-from peter) Message-Id: <200202080355.g183tcx74361@freefall.freebsd.org> From: Peter Wemm Date: Thu, 7 Feb 2002 19:55:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys time.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/07 19:55:37 PST Modified files: sys/sys time.h Log: Fix world breakage (compiling libstdc++): sys/time.h:137: integer constant out of range sys/time.h:137: warning: decimal integer constant is so large that it is unsigned sys/time.h:153: integer constant out of range sys/time.h:153: warning: decimal integer constant is so large that it is unsigned Revision Changes Path 1.50 +2 -2 src/sys/sys/time.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 20: 8: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 57F7E37B416; Thu, 7 Feb 2002 20:08:02 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18482T81530; Thu, 7 Feb 2002 20:08:02 -0800 (PST) (envelope-from pat) Message-Id: <200202080408.g18482T81530@freefall.freebsd.org> From: Patrick Li Date: Thu, 7 Feb 2002 20:08:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/tmda Makefile distinfo pkg-plist pkg-req X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/07 20:08:02 PST Modified files: mail/tmda Makefile distinfo pkg-plist Added files: mail/tmda pkg-req Log: Update to 0.46 PR: 34701 Submitted by: maintainer Revision Changes Path 1.9 +6 -3 ports/mail/tmda/Makefile 1.9 +1 -1 ports/mail/tmda/distinfo 1.9 +1 -1 ports/mail/tmda/pkg-plist 1.1 +17 -0 ports/mail/tmda/pkg-req (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 20: 9: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0449A37B41F; Thu, 7 Feb 2002 20:08:58 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1848vA81837; Thu, 7 Feb 2002 20:08:57 -0800 (PST) (envelope-from sobomax) Message-Id: <200202080408.g1848vA81837@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 7 Feb 2002 20:08:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/ldd ldd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/07 20:08:57 PST Modified files: usr.bin/ldd ldd.c Log: Inspect ELF header and reject any non-FreeBSD shared objects. MFC after: 2 weeks Revision Changes Path 1.27 +7 -1 src/usr.bin/ldd/ldd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 20:12:53 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C31C137B41C; Thu, 7 Feb 2002 20:12:50 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g184CoX82474; Thu, 7 Feb 2002 20:12:50 -0800 (PST) (envelope-from pat) Message-Id: <200202080412.g184CoX82474@freefall.freebsd.org> From: Patrick Li Date: Thu, 7 Feb 2002 20:12:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/ion Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/07 20:12:50 PST Modified files: x11-wm/ion Makefile distinfo Log: Update to 20020207 PR: 34687 Submitted by: maintainer Revision Changes Path 1.9 +1 -1 ports/x11-wm/ion/Makefile 1.9 +1 -1 ports/x11-wm/ion/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 20:16:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2144837B41C; Thu, 7 Feb 2002 20:16:22 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g184GMl84561; Thu, 7 Feb 2002 20:16:22 -0800 (PST) (envelope-from pat) Message-Id: <200202080416.g184GMl84561@freefall.freebsd.org> From: Patrick Li Date: Thu, 7 Feb 2002 20:16:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/xmame Makefile distinfo ports/emulators/xmame/files patch-ak X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/07 20:16:22 PST Modified files: emulators/xmame Makefile distinfo Added files: emulators/xmame/files patch-ak Log: Update to 0.58.1 PR: 34696 Submitted by: maintainer Revision Changes Path 1.42 +1 -1 ports/emulators/xmame/Makefile 1.27 +1 -1 ports/emulators/xmame/distinfo 1.1 +10 -0 ports/emulators/xmame/files/patch-ak (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 20:17:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 505A137B425; Thu, 7 Feb 2002 20:17:33 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g184HXr85750; Thu, 7 Feb 2002 20:17:33 -0800 (PST) (envelope-from peter) Message-Id: <200202080417.g184HXr85750@freefall.freebsd.org> From: Peter Wemm Date: Thu, 7 Feb 2002 20:17:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/gdb/i386 kvm-fbsd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/07 20:17:33 PST Modified files: gnu/usr.bin/binutils/gdb/i386 kvm-fbsd.c Log: Add missing & Revision Changes Path 1.35 +1 -1 src/gnu/usr.bin/binutils/gdb/i386/kvm-fbsd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 20:19:33 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 85BCB37B41A; Thu, 7 Feb 2002 20:19:27 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g184JRt86972; Thu, 7 Feb 2002 20:19:27 -0800 (PST) (envelope-from pat) Message-Id: <200202080419.g184JRt86972@freefall.freebsd.org> From: Patrick Li Date: Thu, 7 Feb 2002 20:19:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/fcgi Makefile distinfo pkg-plist ports/www/fcgi/files patch-aa patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/07 20:19:27 PST Modified files: www/fcgi Makefile distinfo pkg-plist Removed files: www/fcgi/files patch-aa patch-ab Log: Update to 2.2.2 Reviewed by: maintainer Approved by: maintainer Revision Changes Path 1.9 +19 -15 ports/www/fcgi/Makefile 1.3 +1 -1 ports/www/fcgi/distinfo 1.3 +0 -45 ports/www/fcgi/files/patch-aa (dead) 1.3 +0 -64 ports/www/fcgi/files/patch-ab (dead) 1.4 +36 -19 ports/www/fcgi/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 20:26:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5B69A37B41B; Thu, 7 Feb 2002 20:26:44 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g184QiJ92315; Thu, 7 Feb 2002 20:26:44 -0800 (PST) (envelope-from pat) Message-Id: <200202080426.g184QiJ92315@freefall.freebsd.org> From: Patrick Li Date: Thu, 7 Feb 2002 20:26:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mbone/rat30 Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/07 20:26:44 PST Modified files: mbone/rat30 Makefile distinfo Log: Fix MASTER_SITES and remove redundant distinfo entry PR: 34726 Submitted by: maintainer Revision Changes Path 1.3 +1 -1 ports/mbone/rat30/Makefile 1.2 +0 -1 ports/mbone/rat30/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 20:32:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EFB2537B422; Thu, 7 Feb 2002 20:32:33 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g184WXl95597; Thu, 7 Feb 2002 20:32:33 -0800 (PST) (envelope-from petef) Message-Id: <200202080432.g184WXl95597@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 7 Feb 2002 20:32:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/ripmime Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/07 20:32:33 PST Modified files: mail/ripmime Makefile distinfo Log: Update to 1.2.8 PR: 34367 Submitted by: Tim J. Robbins Approved by: maintainer Revision Changes Path 1.7 +1 -1 ports/mail/ripmime/Makefile 1.7 +1 -1 ports/mail/ripmime/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 21: 5:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F1A437B41A; Thu, 7 Feb 2002 21:05:37 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1855bb10225; Thu, 7 Feb 2002 21:05:37 -0800 (PST) (envelope-from pat) Message-Id: <200202080505.g1855bb10225@freefall.freebsd.org> From: Patrick Li Date: Thu, 7 Feb 2002 21:05:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/apache13-modssl Makefile distinfo pkg-plist ports/www/apache13-modssl/files patch-ab patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/07 21:05:37 PST Modified files: www/apache13-modssl Makefile distinfo pkg-plist www/apache13-modssl/files patch-ab patch-ac Log: Update to 1.3.23+2.8.6 Revision Changes Path 1.95 +2 -3 ports/www/apache13-modssl/Makefile 1.62 +2 -2 ports/www/apache13-modssl/distinfo 1.3 +4 -9 ports/www/apache13-modssl/files/patch-ab 1.7 +2 -24 ports/www/apache13-modssl/files/patch-ac 1.27 +6 -1 ports/www/apache13-modssl/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 21: 9:45 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 9FA0437B41A; Thu, 7 Feb 2002 21:09:39 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id QAA02124; Fri, 8 Feb 2002 16:09:34 +1100 Date: Fri, 8 Feb 2002 16:12:09 +1100 (EST) From: Bruce Evans X-X-Sender: To: Julian Elischer Cc: Julian Elischer , , Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-raid.c ata-raid.h src/sys/dev/usb uhci.c src/sys/sys syscall.h syscall.mk sysproto.h In-Reply-To: Message-ID: <20020208160911.L9215-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, 7 Feb 2002, Julian Elischer wrote: > On Fri, 8 Feb 2002, Bruce Evans wrote: > > > On Wed, 6 Feb 2002, Julian Elischer wrote: > > > > > On Wed, 6 Feb 2002, Julian Elischer wrote: > > > [...] > > > > > > > 1.100 +0 -0 src/sys/sys/syscall.h > > > > 1.55 +0 -0 src/sys/sys/syscall.mk > > > > 1.91 +0 -0 src/sys/sys/sysproto.h > > > > > > HUH? > > > > > > there were no changes in these files! > > > > Maybe a forced commit. > > Nope I didn't do that.. > I later figured out that there was a change in the $FreeBSD: line > which is not reflected here.. Maybe a too-global commit. Running "make init_sysent.h" in kern would change the $FreeBSD$ lines. You must be careful not to commit these changes, just as if you had edited the files. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 21:58:45 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8188237B41A; Thu, 7 Feb 2002 21:58:41 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g185wfl18189; Thu, 7 Feb 2002 21:58:41 -0800 (PST) (envelope-from rwatson) Message-Id: <200202080558.g185wfl18189@freefall.freebsd.org> From: Robert Watson Date: Thu, 7 Feb 2002 21:58:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_syscalls.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/02/07 21:58:41 PST Modified files: sys/kern vfs_syscalls.c Log: o Merge various recent fixes from the MAC branch relating to extattrctl(): - Fix null-pointer dereference introduced when snapshotting was introduced. This occured because unlike the previous code, vn_start_write() doesn't always return a non-NULL mp, as filesystems may not support the VOP_GETWRITEMOUNT() call. For now, rely on two pointers, so that vn_finished_write() works properly. - Fix locking problems on exit, introduced at some past time, some when snapshots came in, where a vnode might not be unlocked before being vrele'd in various error situations. Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs Revision Changes Path 1.222 +10 -6 src/sys/kern/vfs_syscalls.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 22: 3:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E90CD37B436; Thu, 7 Feb 2002 22:03:13 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1863Dc18895; Thu, 7 Feb 2002 22:03:13 -0800 (PST) (envelope-from petef) Message-Id: <200202080603.g1863Dc18895@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 7 Feb 2002 22:03:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/07 22:03:13 PST Modified files: . modules Log: p5-Array-RefElem --> ports/misc/p5-Array-RefElem Revision Changes Path 1.4665 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 22: 3:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 68F4337B41B; Thu, 7 Feb 2002 22:03:08 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18638418855; Thu, 7 Feb 2002 22:03:08 -0800 (PST) (envelope-from petef) Message-Id: <200202080603.g18638418855@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 7 Feb 2002 22:03:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc Makefile ports/misc/p5-Array-RefElem Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/07 22:03:08 PST Modified files: misc Makefile Added files: misc/p5-Array-RefElem Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add p5-Array-RefElem 0.02, set up array elements as aliases. PR: 33410 Submitted by: Seamus Venasse Revision Changes Path 1.418 +1 -0 ports/misc/Makefile 1.1 +22 -0 ports/misc/p5-Array-RefElem/Makefile (new) 1.1 +1 -0 ports/misc/p5-Array-RefElem/distinfo (new) 1.1 +1 -0 ports/misc/p5-Array-RefElem/pkg-comment (new) 1.1 +6 -0 ports/misc/p5-Array-RefElem/pkg-descr (new) 1.1 +7 -0 ports/misc/p5-Array-RefElem/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 22: 9:56 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E56237B419; Thu, 7 Feb 2002 22:09:53 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1869rL23327; Thu, 7 Feb 2002 22:09:53 -0800 (PST) (envelope-from petef) Message-Id: <200202080609.g1869rL23327@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 7 Feb 2002 22:09:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases Makefile ports/databases/p5-CDB_File-Generator Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/07 22:09:53 PST Modified files: databases Makefile Added files: databases/p5-CDB_File-Generator Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add p5-CDB_File-Generator 0.030, generate massive sorted CDB files simply. PR: 33411 Submitted by: Seamus Venasse Revision Changes Path 1.162 +1 -0 ports/databases/Makefile 1.1 +27 -0 ports/databases/p5-CDB_File-Generator/Makefile (new) 1.1 +1 -0 ports/databases/p5-CDB_File-Generator/distinfo (new) 1.1 +1 -0 ports/databases/p5-CDB_File-Generator/pkg-comment (new) 1.1 +7 -0 ports/databases/p5-CDB_File-Generator/pkg-descr (new) 1.1 +5 -0 ports/databases/p5-CDB_File-Generator/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 22:10:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BCAA37B422; Thu, 7 Feb 2002 22:09:57 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1869va23373; Thu, 7 Feb 2002 22:09:57 -0800 (PST) (envelope-from petef) Message-Id: <200202080609.g1869va23373@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 7 Feb 2002 22:09:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/07 22:09:57 PST Modified files: . modules Log: p5-CDB_File-Generator --> ports/databases/p5-CDB_File-Generator Revision Changes Path 1.4666 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 22:15:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E383037B417; Thu, 7 Feb 2002 22:15:14 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g186FEl24419; Thu, 7 Feb 2002 22:15:14 -0800 (PST) (envelope-from petef) Message-Id: <200202080615.g186FEl24419@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 7 Feb 2002 22:15:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/science Makefile ports/science/p5-Chemistry-Elements Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/07 22:15:14 PST Modified files: science Makefile Added files: science/p5-Chemistry-Elements Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add p5-Chemistry-Elements 0.91, perl extension for working with Chemical Elements. PR: 33412 Submitted by: Seamus Venasse Revision Changes Path 1.10 +1 -0 ports/science/Makefile 1.1 +22 -0 ports/science/p5-Chemistry-Elements/Makefile (new) 1.1 +1 -0 ports/science/p5-Chemistry-Elements/distinfo (new) 1.1 +1 -0 ports/science/p5-Chemistry-Elements/pkg-comment (new) 1.1 +7 -0 ports/science/p5-Chemistry-Elements/pkg-descr (new) 1.1 +5 -0 ports/science/p5-Chemistry-Elements/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 22:15:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7559237B425; Thu, 7 Feb 2002 22:15:20 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g186FKs24476; Thu, 7 Feb 2002 22:15:20 -0800 (PST) (envelope-from petef) Message-Id: <200202080615.g186FKs24476@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 7 Feb 2002 22:15:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/07 22:15:20 PST Modified files: . modules Log: p5-Chemistry-Elements --> ports/science/p5-Chemistry-Elements Revision Changes Path 1.4667 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 22:20:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 24FC237B41E; Thu, 7 Feb 2002 22:20:37 -0800 (PST) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g186KbW25664; Thu, 7 Feb 2002 22:20:37 -0800 (PST) (envelope-from jkoshy) Message-Id: <200202080620.g186KbW25664@freefall.freebsd.org> From: Joseph Koshy Date: Thu, 7 Feb 2002 22:20:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ctags Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jkoshy 2002/02/07 22:20:37 PST Modified files: devel/ctags Makefile distinfo Log: Upgrade to v5.2.1. Revision Changes Path 1.20 +1 -1 ports/devel/ctags/Makefile 1.11 +1 -1 ports/devel/ctags/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 22:40: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BD2DA37B41C; Thu, 7 Feb 2002 22:39:54 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g186dsE31833; Thu, 7 Feb 2002 22:39:54 -0800 (PST) (envelope-from ijliao) Message-Id: <200202080639.g186dsE31833@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 7 Feb 2002 22:39:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/filepp Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/07 22:39:54 PST Modified files: textproc/filepp Makefile distinfo pkg-plist Log: upgrade to 1.4.2 Revision Changes Path 1.4 +2 -2 ports/textproc/filepp/Makefile 1.4 +1 -1 ports/textproc/filepp/distinfo 1.3 +4 -0 ports/textproc/filepp/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 23:31: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 732CF37B41A; Thu, 7 Feb 2002 23:31:02 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g187V2142787; Thu, 7 Feb 2002 23:31:02 -0800 (PST) (envelope-from imp) Message-Id: <200202080731.g187V2142787@freefall.freebsd.org> From: Warner Losh Date: Thu, 7 Feb 2002 23:31:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pci pci_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/07 23:31:02 PST Modified files: sys/dev/pci pci_pci.c Log: Remove bogus range restrictions that attempted to restrict the range of I/O in 1.5. It looks like I got it right only for some of the cases. Instead, allow ISA addresses as a special case. Most PCI bridges decode this range. I need to investigate PCI bridges better to know if this is always true or not, but for now assume that it is since that seems to be the most common case. # We need to allocate addresses better for the pccard stuff... Submitted by: phk, mitsunaga-san Revision Changes Path 1.7 +30 -14 src/sys/dev/pci/pci_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 23:43:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9FF3037B417; Thu, 7 Feb 2002 23:43:14 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g187hEV45708; Thu, 7 Feb 2002 23:43:14 -0800 (PST) (envelope-from petef) Message-Id: <200202080743.g187hEV45708@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 7 Feb 2002 23:43:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases Makefile ports/databases/p5-DBIx-AnyDBD Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/07 23:43:14 PST Modified files: databases Makefile Added files: databases/p5-DBIx-AnyDBD Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add p5-DBIx-AnyDBD 2.00, dBD independant class. PR: 33413 Submitted by: Seamus Venasse Revision Changes Path 1.163 +1 -0 ports/databases/Makefile 1.1 +26 -0 ports/databases/p5-DBIx-AnyDBD/Makefile (new) 1.1 +1 -0 ports/databases/p5-DBIx-AnyDBD/distinfo (new) 1.1 +1 -0 ports/databases/p5-DBIx-AnyDBD/pkg-comment (new) 1.1 +10 -0 ports/databases/p5-DBIx-AnyDBD/pkg-descr (new) 1.1 +5 -0 ports/databases/p5-DBIx-AnyDBD/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 23:43:34 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A82DC37B425; Thu, 7 Feb 2002 23:43:18 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g187hIB45742; Thu, 7 Feb 2002 23:43:18 -0800 (PST) (envelope-from petef) Message-Id: <200202080743.g187hIB45742@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 7 Feb 2002 23:43:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/07 23:43:18 PST Modified files: . modules Log: p5-DBIx-AnyDBD --> ports/databases/p5-DBIx-AnyDBD Revision Changes Path 1.4668 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 23:47: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B4E8737B41E; Thu, 7 Feb 2002 23:46:59 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g187kxK46641; Thu, 7 Feb 2002 23:46:59 -0800 (PST) (envelope-from petef) Message-Id: <200202080746.g187kxK46641@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 7 Feb 2002 23:46:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/07 23:46:59 PST Modified files: . modules Log: p5-DBIx-XHTML_Table --> ports/databases/p5-DBIx-XHTML_Table Revision Changes Path 1.4669 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 23:47: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B3EA937B417; Thu, 7 Feb 2002 23:46:55 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g187ktH46600; Thu, 7 Feb 2002 23:46:55 -0800 (PST) (envelope-from petef) Message-Id: <200202080746.g187ktH46600@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 7 Feb 2002 23:46:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases Makefile ports/databases/p5-DBIx-XHTML_Table Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/07 23:46:55 PST Modified files: databases Makefile Added files: databases/p5-DBIx-XHTML_Table Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add p5-DBIx-XHTML_Table 0.97, create XHTML tables from SQL queries. PR: 33414 Submitted by: Seamus Venasse Revision Changes Path 1.164 +1 -0 ports/databases/Makefile 1.1 +26 -0 ports/databases/p5-DBIx-XHTML_Table/Makefile (new) 1.1 +1 -0 ports/databases/p5-DBIx-XHTML_Table/distinfo (new) 1.1 +1 -0 ports/databases/p5-DBIx-XHTML_Table/pkg-comment (new) 1.1 +12 -0 ports/databases/p5-DBIx-XHTML_Table/pkg-descr (new) 1.1 +5 -0 ports/databases/p5-DBIx-XHTML_Table/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 23:49:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4061337B41B; Thu, 7 Feb 2002 23:49:13 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g187nDQ47158; Thu, 7 Feb 2002 23:49:13 -0800 (PST) (envelope-from peter) Message-Id: <200202080749.g187nDQ47158@freefall.freebsd.org> From: Peter Wemm Date: Thu, 7 Feb 2002 23:49:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/du du.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/07 23:49:13 PST Modified files: usr.bin/du du.c Log: GRR. This was not WARNS=2 clean. You cannot printf a 'long' with '%qd'. usr.bin/du/du.c:288: warning: long long int format, long int arg (arg 2) Pointy hat to: markm Revision Changes Path 1.23 +1 -1 src/usr.bin/du/du.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 23:53: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 148E337B400; Thu, 7 Feb 2002 23:52:52 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g187qqH47994; Thu, 7 Feb 2002 23:52:52 -0800 (PST) (envelope-from peter) Message-Id: <200202080752.g187qqH47994@freefall.freebsd.org> From: Peter Wemm Date: Thu, 7 Feb 2002 23:52:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/finger lprint.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/07 23:52:52 PST Modified files: usr.bin/finger lprint.c Log: GRR. Unbreak WARNS=2. cc1: warnings being treated as errors usr.bin/finger/lprint.c: In function `lprint': usr.bin/finger/lprint.c:191: warning: precision is not type int (arg 2) *** Error code 1 Pointy hat to: markm Revision Changes Path 1.19 +1 -1 src/usr.bin/finger/lprint.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 23:54:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8E61A37B41B; Thu, 7 Feb 2002 23:54:28 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g187sSc48256; Thu, 7 Feb 2002 23:54:28 -0800 (PST) (envelope-from petef) Message-Id: <200202080754.g187sSc48256@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 7 Feb 2002 23:54:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/p5-Data-DumpXML Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/07 23:54:28 PST Modified files: devel Makefile Added files: devel/p5-Data-DumpXML Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add p5-Data-DumpXML 1.03, dump arbitrary data structures as XML. PR: 33415 Submitted by: Seamus Venasse Revision Changes Path 1.747 +1 -0 ports/devel/Makefile 1.1 +28 -0 ports/devel/p5-Data-DumpXML/Makefile (new) 1.1 +1 -0 ports/devel/p5-Data-DumpXML/distinfo (new) 1.1 +1 -0 ports/devel/p5-Data-DumpXML/pkg-comment (new) 1.1 +8 -0 ports/devel/p5-Data-DumpXML/pkg-descr (new) 1.1 +7 -0 ports/devel/p5-Data-DumpXML/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Feb 7 23:54:45 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E3EF037B43B; Thu, 7 Feb 2002 23:54:32 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g187sWG48337; Thu, 7 Feb 2002 23:54:32 -0800 (PST) (envelope-from petef) Message-Id: <200202080754.g187sWG48337@freefall.freebsd.org> From: Pete Fritchman Date: Thu, 7 Feb 2002 23:54:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/07 23:54:32 PST Modified files: . modules Log: p5-Data-DumpXML --> ports/devel/p5-Data-DumpXML Revision Changes Path 1.4670 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 0:10: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B007B37B41E; Fri, 8 Feb 2002 00:09:54 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1889sr54216; Fri, 8 Feb 2002 00:09:54 -0800 (PST) (envelope-from petef) Message-Id: <200202080809.g1889sr54216@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 8 Feb 2002 00:09:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/p5-FAQ-OMatic Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/08 00:09:54 PST Modified files: www Makefile Added files: www/p5-FAQ-OMatic Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add p5-FAQ-OMatic 2.712, perl API to manipulate FAQ-O-Matics. PR: 33416 Submitted by: Seamus Venasse Revision Changes Path 1.466 +1 -0 ports/www/Makefile 1.1 +24 -0 ports/www/p5-FAQ-OMatic/Makefile (new) 1.1 +1 -0 ports/www/p5-FAQ-OMatic/distinfo (new) 1.1 +1 -0 ports/www/p5-FAQ-OMatic/pkg-comment (new) 1.1 +9 -0 ports/www/p5-FAQ-OMatic/pkg-descr (new) 1.1 +62 -0 ports/www/p5-FAQ-OMatic/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 0:10:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A8A237B43C; Fri, 8 Feb 2002 00:10:01 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g188A1S54296; Fri, 8 Feb 2002 00:10:01 -0800 (PST) (envelope-from petef) Message-Id: <200202080810.g188A1S54296@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 8 Feb 2002 00:10:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/08 00:10:01 PST Modified files: . modules Log: p5-FAQ-OMatic --> ports/www/p5-FAQ-OMatic Revision Changes Path 1.4671 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 0:12:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A919737B41E; Fri, 8 Feb 2002 00:12:24 -0800 (PST) Received: (from vanilla@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g188COP54872; Fri, 8 Feb 2002 00:12:24 -0800 (PST) (envelope-from vanilla) Message-Id: <200202080812.g188COP54872@freefall.freebsd.org> From: "Vanilla I. Shu" Date: Fri, 8 Feb 2002 00:12:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/xinetd/files patch-xinetd::reconfig.c patch-xinetd::service.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG vanilla 2002/02/08 00:12:24 PST Added files: security/xinetd/files patch-xinetd::reconfig.c patch-xinetd::service.c Log: Fix breakage on current. Obtained from: bento Revision Changes Path 1.1 +21 -0 ports/security/xinetd/files/patch-xinetd::reconfig.c (new) 1.1 +22 -0 ports/security/xinetd/files/patch-xinetd::service.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 0:34:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5547337B41F; Fri, 8 Feb 2002 00:34:28 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g188YS158626; Fri, 8 Feb 2002 00:34:28 -0800 (PST) (envelope-from ijliao) Message-Id: <200202080834.g188YS158626@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 8 Feb 2002 00:34:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/cgicc Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/08 00:34:28 PST Modified files: www/cgicc Makefile distinfo pkg-plist Log: upgrade to 3.2 drop maintainership Revision Changes Path 1.3 +5 -3 ports/www/cgicc/Makefile 1.2 +1 -1 ports/www/cgicc/distinfo 1.2 +167 -10 ports/www/cgicc/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 0:42:42 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 10A2537B41C; Fri, 8 Feb 2002 00:42:36 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g188gaS60184; Fri, 8 Feb 2002 00:42:36 -0800 (PST) (envelope-from petef) Message-Id: <200202080842.g188gaS60184@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 8 Feb 2002 00:42:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/p5-Getargs-Long Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/08 00:42:36 PST Modified files: devel Makefile Added files: devel/p5-Getargs-Long Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add p5-Getargs-Long 0.1.3, parse routine arguments. PR: 33417 Submitted by: Seamus Venasse Revision Changes Path 1.748 +1 -0 ports/devel/Makefile 1.1 +26 -0 ports/devel/p5-Getargs-Long/Makefile (new) 1.1 +1 -0 ports/devel/p5-Getargs-Long/distinfo (new) 1.1 +1 -0 ports/devel/p5-Getargs-Long/pkg-comment (new) 1.1 +9 -0 ports/devel/p5-Getargs-Long/pkg-descr (new) 1.1 +5 -0 ports/devel/p5-Getargs-Long/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 0:42:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0112337B41E; Fri, 8 Feb 2002 00:42:40 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g188gd960218; Fri, 8 Feb 2002 00:42:39 -0800 (PST) (envelope-from petef) Message-Id: <200202080842.g188gd960218@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 8 Feb 2002 00:42:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/08 00:42:39 PST Modified files: . modules Log: p5-Getargs-Long --> ports/devel/p5-Getargs-Long Revision Changes Path 1.4672 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 0:56: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BFF437B419; Fri, 8 Feb 2002 00:56:01 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g188u1d62776; Fri, 8 Feb 2002 00:56:01 -0800 (PST) (envelope-from peter) Message-Id: <200202080856.g188u1d62776@freefall.freebsd.org> From: Peter Wemm Date: Fri, 8 Feb 2002 00:56:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha sys_machdep.c src/sys/alpha/linux linux_machdep.c src/sys/kern sys_process.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/08 00:56:01 PST Modified files: sys/alpha/alpha sys_machdep.c sys/alpha/linux linux_machdep.c sys/kern sys_process.c Log: Bah, I managed to turn cosmetic things into real bugs. Fix shadowed variable declarations. :-( Definately not my day today. Revision Changes Path 1.15 +7 -7 src/sys/alpha/alpha/sys_machdep.c 1.21 +3 -3 src/sys/alpha/linux/linux_machdep.c 1.79 +12 -12 src/sys/kern/sys_process.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 0:56: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0418537B41E; Fri, 8 Feb 2002 00:56:01 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g188u1k62826; Fri, 8 Feb 2002 00:56:01 -0800 (PST) (envelope-from petef) Message-Id: <200202080856.g188u1k62826@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 8 Feb 2002 00:56:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases Makefile ports/databases/p5-Metadata Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/08 00:56:01 PST Modified files: databases Makefile Added files: databases/p5-Metadata Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add p5-Metadata 0.24, perl implementation of Dublin Core compatible metadata. PR: 33419 Submitted by: Seamus Venasse Revision Changes Path 1.165 +1 -0 ports/databases/Makefile 1.1 +29 -0 ports/databases/p5-Metadata/Makefile (new) 1.1 +1 -0 ports/databases/p5-Metadata/distinfo (new) 1.1 +1 -0 ports/databases/p5-Metadata/pkg-comment (new) 1.1 +8 -0 ports/databases/p5-Metadata/pkg-descr (new) 1.1 +7 -0 ports/databases/p5-Metadata/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 0:56:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 977C237B417; Fri, 8 Feb 2002 00:56:05 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g188u5462861; Fri, 8 Feb 2002 00:56:05 -0800 (PST) (envelope-from petef) Message-Id: <200202080856.g188u5462861@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 8 Feb 2002 00:56:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/08 00:56:05 PST Modified files: . modules Log: p5-Metadata --> ports/databases/p5-Metadata Revision Changes Path 1.4673 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 1: 8:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ECC7E37B41F; Fri, 8 Feb 2002 01:08:39 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1898d768598; Fri, 8 Feb 2002 01:08:39 -0800 (PST) (envelope-from sobomax) Message-Id: <200202080908.g1898d768598@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 8 Feb 2002 01:08:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/evolution Makefile distinfo pkg-plist ports/mail/evolution/files patch-ltmain.sh patch-po::Makefile.in.in patch-shell::Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/08 01:08:39 PST Modified files: mail/evolution Makefile distinfo pkg-plist mail/evolution/files patch-ltmain.sh patch-po::Makefile.in.in patch-shell::Makefile.in Log: Update to 1.0.2. PR: 34580 Submitted by: Joe Marcus Clarke Revision Changes Path 1.52 +4 -4 ports/mail/evolution/Makefile 1.20 +1 -1 ports/mail/evolution/distinfo 1.6 +17 -8 ports/mail/evolution/files/patch-ltmain.sh 1.5 +10 -10 ports/mail/evolution/files/patch-po::Makefile.in.in 1.2 +8 -8 ports/mail/evolution/files/patch-shell::Makefile.in 1.23 +55 -0 ports/mail/evolution/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 1:17: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A535037B405; Fri, 8 Feb 2002 01:16:57 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g189GvI70475; Fri, 8 Feb 2002 01:16:57 -0800 (PST) (envelope-from peter) Message-Id: <200202080916.g189GvI70475@freefall.freebsd.org> From: Peter Wemm Date: Fri, 8 Feb 2002 01:16:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_descrip.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/08 01:16:57 PST Modified files: sys/kern kern_descrip.c Log: Fix broken Giant locking protocol introduced in rev 1.114. You cannot unlock Giant if it is not locked in the first place. This make the nfstat(2) syscall (#278) a nice panic(2) implementation. Revision Changes Path 1.125 +1 -0 src/sys/kern/kern_descrip.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 1:20:54 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by hub.freebsd.org (Postfix) with ESMTP id 7867737B481; Fri, 8 Feb 2002 01:20:31 -0800 (PST) Received: from peter3.wemm.org ([12.232.27.13]) by rwcrmhc52.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020208092031.BCKI1147.rwcrmhc52.attbi.com@peter3.wemm.org>; Fri, 8 Feb 2002 09:20:31 +0000 Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id g189KUs89158; Fri, 8 Feb 2002 01:20:30 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id A3E0C3BAD; Fri, 8 Feb 2002 01:20:30 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: "Crist J. Clark" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, ps@mu.org Subject: Re: cvs commit: src/etc rc.network src/etc/defaults rc.conf src/share/man/man5 rc.conf.5 In-Reply-To: <200202042229.g14MTMX08809@freefall.freebsd.org> Date: Fri, 08 Feb 2002 01:20:30 -0800 From: Peter Wemm Message-Id: <20020208092030.A3E0C3BAD@overcee.wemm.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Crist J. Clark" wrote: > cjc 2002/02/04 14:29:22 PST > > Modified files: (Branch: RELENG_4) > etc rc.network > etc/defaults rc.conf > share/man/man5 rc.conf.5 > Log: > MFC: Make the rc.conf(5) 'log_in_vain' knob an integer. > > PR: bin/32953 This is *very bad*. It now overrides a previous setting in /etc/sysctl.conf and turns log_in_vain *off* if you'd already turned it on. Please fix this ASAP. You have removed the ability to set *only* tcp log_in_vain. "NO" means "do not touch", not "set to zero" - that is what "0" is for. Cheers, -Peter -- Peter Wemm - peter@FreeBSD.org; peter@yahoo-inc.com; peter@netplex.com.au "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 1:34:23 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3256137B41C; Fri, 8 Feb 2002 01:34:17 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g189YHg73636; Fri, 8 Feb 2002 01:34:17 -0800 (PST) (envelope-from ru) Message-Id: <200202080934.g189YHg73636@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 8 Feb 2002 01:34:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen getobjformat.c strtofflags.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/02/08 01:34:17 PST Modified files: lib/libc/gen getobjformat.c strtofflags.c Log: FreeBSD 4.1 bootstrapping aid (__FBSDID is not there). Revision Changes Path 1.5 +2 -0 src/lib/libc/gen/getobjformat.c 1.20 +2 -0 src/lib/libc/gen/strtofflags.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 1:37:17 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2EB9A37B405; Fri, 8 Feb 2002 01:37:13 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g189bDn74062; Fri, 8 Feb 2002 01:37:13 -0800 (PST) (envelope-from ru) Message-Id: <200202080937.g189bDn74062@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 8 Feb 2002 01:37:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/kbdcontrol kbdcontrol.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/02/08 01:37:13 PST Modified files: usr.sbin/kbdcontrol kbdcontrol.c Log: FreeBSD 4.1 bootstrapping aid (HALT and PDWN are not defined there). Revision Changes Path 1.43 +9 -3 src/usr.sbin/kbdcontrol/kbdcontrol.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 1:48:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D32D837B420; Fri, 8 Feb 2002 01:48:34 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g189mYL75828; Fri, 8 Feb 2002 01:48:34 -0800 (PST) (envelope-from ru) Message-Id: <200202080948.g189mYL75828@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 8 Feb 2002 01:48:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/02/08 01:48:34 PST Modified files: . Makefile Log: FreeBSD 4.1 bootstrapping aid (``:C'' make(1) modifier used by gnu/usr.bin/binutils/as/Makefile.inc0 is not there). XXX: make(1) should return with a non-zero exit status here. Revision Changes Path 1.247 +6 -1 src/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 1:54: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 35A1037B405; Fri, 8 Feb 2002 01:53:59 -0800 (PST) Received: (from clive@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g189rxs76722; Fri, 8 Feb 2002 01:53:59 -0800 (PST) (envelope-from clive) Message-Id: <200202080953.g189rxs76722@freefall.freebsd.org> From: Clive Lin Date: Fri, 8 Feb 2002 01:53:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/bind8 distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG clive 2002/02/08 01:53:59 PST Modified files: chinese/bind8 distinfo Log: Chasing net/bind8 update. Submitted by: MAINTAINER Revision Changes Path 1.2 +3 -3 ports/chinese/bind8/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 2: 5:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F0FC537B400; Fri, 8 Feb 2002 02:05:11 -0800 (PST) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18A5Ba79153; Fri, 8 Feb 2002 02:05:11 -0800 (PST) (envelope-from olgeni) Message-Id: <200202081005.g18A5Ba79153@freefall.freebsd.org> From: Jimmy Olgeni Date: Fri, 8 Feb 2002 02:05:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/webmin Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2002/02/08 02:05:11 PST Modified files: sysutils/webmin Makefile distinfo pkg-plist Log: * Update modules: postgresql, mysql, proftpd. * Update the MSC theme. * Stop the webmin service when the port is deinstalled, and restart it properly when it is update (if BATCH is set then nothing happens, so sysinstall will be happy at install time). Also, fix a $BATCH -> ${BATCH} error in Makefile. Revision Changes Path 1.85 +10 -4 ports/sysutils/webmin/Makefile 1.59 +4 -0 ports/sysutils/webmin/distinfo 1.18 +4 -0 ports/sysutils/webmin/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 2:10:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D035237B423; Fri, 8 Feb 2002 02:10:39 -0800 (PST) Received: (from fjoe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18AAde83187; Fri, 8 Feb 2002 02:10:39 -0800 (PST) (envelope-from fjoe) Message-Id: <200202081010.g18AAde83187@freefall.freebsd.org> From: Max Khon Date: Fri, 8 Feb 2002 02:10:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/licq Makefile.inc ports/net/licq-console Makefile ports/net/licq-devel Makefile.inc ports/net/licq-qt-gui Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG fjoe 2002/02/08 02:10:39 PST Modified files: net/licq Makefile.inc net/licq-console Makefile net/licq-devel Makefile.inc net/licq-qt-gui Makefile pkg-plist Log: Add an ability to build licq plugins using licq-devel port: - licq-console, licq-qt-gui: conditionally include licq-devel/Makefile.inc instead of licq/Makefile.inc if -DWITH_LICQ_DEVEL is specified - dynamically generated plists (currently used in licq-qt-gui port only) Revision Changes Path 1.4 +4 -0 ports/net/licq-console/Makefile 1.4 +3 -1 ports/net/licq-devel/Makefile.inc 1.9 +4 -0 ports/net/licq-qt-gui/Makefile 1.4 +1 -0 ports/net/licq-qt-gui/pkg-plist 1.3 +2 -1 ports/net/licq/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 2:11:55 2002 Delivered-To: cvs-all@freebsd.org Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by hub.freebsd.org (Postfix) with SMTP id 32AD937B419; Fri, 8 Feb 2002 02:11:52 -0800 (PST) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 8 Feb 2002 10:11:51 +0000 (GMT) Date: Fri, 8 Feb 2002 10:11:50 +0000 From: David Malone To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/finger lprint.c Message-ID: <20020208101150.GA74534@walton.maths.tcd.ie> References: <200202080752.g187qqH47994@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202080752.g187qqH47994@freefall.freebsd.org> User-Agent: Mutt/1.3.25i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Feb 07, 2002 at 11:52:52PM -0800, Peter Wemm wrote: > peter 2002/02/07 23:52:52 PST > > Modified files: > usr.bin/finger lprint.c > Log: > GRR. Unbreak WARNS=2. > cc1: warnings being treated as errors > usr.bin/finger/lprint.c: In function `lprint': > usr.bin/finger/lprint.c:191: warning: precision is not type int (arg 2) > *** Error code 1 Was it a header file change which caused this? I'm pretty sure it compiled when I last committed to it. (Or maybe bug you only see on the alpha). David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 2:12:22 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D0D4E37B436; Fri, 8 Feb 2002 02:11:59 -0800 (PST) Received: (from fjoe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18ABxc83730; Fri, 8 Feb 2002 02:11:59 -0800 (PST) (envelope-from fjoe) Message-Id: <200202081011.g18ABxc83730@freefall.freebsd.org> From: Max Khon Date: Fri, 8 Feb 2002 02:11:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/licq-devel pkg-message X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG fjoe 2002/02/08 02:11:59 PST Modified files: net/licq-devel pkg-message Log: Reword phrase about -DWITH_LICQ_DEVEL usage. Revision Changes Path 1.3 +2 -2 ports/net/licq-devel/pkg-message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 2:44:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A8CE937B419; Fri, 8 Feb 2002 02:44:10 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18AiAX89050; Fri, 8 Feb 2002 02:44:10 -0800 (PST) (envelope-from des) Message-Id: <200202081044.g18AiAX89050@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 8 Feb 2002 02:44:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/diablo Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/08 02:44:10 PST Modified files: news/diablo Makefile Log: Unmaintain. Revision Changes Path 1.15 +2 -2 ports/news/diablo/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 2:50:39 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id BCBB937B419; Fri, 8 Feb 2002 02:50:36 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id A93825341; Fri, 8 Feb 2002 11:50:34 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Kirk McKusick Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs ffs_alloc.c References: <200202072213.g17MDuW98705@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 08 Feb 2002 11:50:34 +0100 In-Reply-To: <200202072213.g17MDuW98705@freefall.freebsd.org> Message-ID: Lines: 16 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Kirk McKusick writes: > Log: > Occationally background fsck would cause a spurious ``freeing free > inode'' panic. This change corrects that problem by setting the > fs_active flag when the inode map changes to notify the snapshot > code that the cylinder group must be rescanned. BTW - not really related to this, but I occasionally get "mount pending errors" when I mount a filesystem that has just gone through 'fsck -y' after a crash. I don't use background fsck, so I shouldn't ever get "mount pending errors", and especially not on a (presumably) clean filesystem! DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 3: 4:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6F6F737B416; Fri, 8 Feb 2002 03:04:51 -0800 (PST) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18B4pF92509; Fri, 8 Feb 2002 03:04:51 -0800 (PST) (envelope-from sheldonh) Message-Id: <200202081104.g18B4pF92509@freefall.freebsd.org> From: Sheldon Hearn Date: Fri, 8 Feb 2002 03:04:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/misc pci_vendors X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sheldonh 2002/02/08 03:04:51 PST Modified files: share/misc pci_vendors Log: Regen. Revision Changes Path 1.11 +7 -2 src/share/misc/pci_vendors To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 3: 7: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 61F2C37B437; Fri, 8 Feb 2002 03:06:40 -0800 (PST) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18B6eF96268; Fri, 8 Feb 2002 03:06:40 -0800 (PST) (envelope-from sheldonh) Message-Id: <200202081106.g18B6eF96268@freefall.freebsd.org> From: Sheldon Hearn Date: Fri, 8 Feb 2002 03:06:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/misc pci_vendors X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sheldonh 2002/02/08 03:06:40 PST Modified files: (Branch: RELENG_4) share/misc pci_vendors Log: MFC rev 1.11: regen Revision Changes Path 1.6.2.5 +7 -2 src/share/misc/pci_vendors To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 3:14:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7607437B41A; Fri, 8 Feb 2002 03:14:16 -0800 (PST) Received: (from nyan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18BEGI97230; Fri, 8 Feb 2002 03:14:16 -0800 (PST) (envelope-from nyan) Message-Id: <200202081114.g18BEGI97230@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Fri, 8 Feb 2002 03:14:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/i386 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/02/08 03:14:16 PST Modified files: sys/pc98/i386 machdep.c Log: MFi386: revisions 1.493 and 1.494. Revision Changes Path 1.259 +6 -1 src/sys/pc98/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 3:17:39 2002 Delivered-To: cvs-all@freebsd.org Received: from columbus.cris.net (columbus.cris.net [212.110.128.65]) by hub.freebsd.org (Postfix) with ESMTP id 12FD837B421; Fri, 8 Feb 2002 03:17:31 -0800 (PST) Received: from ark.cris.net (root@ns2.cris.net [212.110.128.68]) by columbus.cris.net (8.9.3/8.9.3) with ESMTP id NAA59059; Fri, 8 Feb 2002 13:17:26 +0200 (EET) Received: (from phantom@localhost) by ark.cris.net (8.11.1/8.11.1) id g18BHOt06957; Fri, 8 Feb 2002 13:17:24 +0200 (EET) Date: Fri, 8 Feb 2002 13:17:24 +0200 From: Alexey Zelkin To: Mikhail Teterin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/share/sgml authors.ent Message-ID: <20020208131724.A4400@ark.cris.net> References: <20020207230045.A93910@ark.cris.net> <200202072126.g17LQNQ79587@aldan.algebra.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200202072126.g17LQNQ79587@aldan.algebra.com>; from mi@aldan.algebra.com on Thu, Feb 07, 2002 at 04:26:20PM -0500 X-Operating-System: FreeBSD 3.5-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi, On Thu, Feb 07, 2002 at 04:26:20PM -0500, Mikhail Teterin wrote: > >> > phantom 2002/02/07 12:00:06 PST > >> > > >> > Modified files: > >> > en_US.ISO8859-1/share/sgml authors.ent > >> > Log: > >> > Convert committers' addresses to @FreeBSD.org form > >> > >> Is that a requirement? I prefer using the address, that I've used > >> since 1994... There is some history in it for me... > > > > I only changed e-mail addresses which are using in FreeBSD handbook > > and articles. > > Well, yeah, and I'd like my real address to be used in those documents... > Why can't such a thing be left up to the person? I don't really understand problem. In rev 1.144 you've added entity &a.mi; with address mi@FreeBSD.org. It was ok for 1 year 2 days and just now become a problem ? > > Almost all people were listed there have FreeBSD.org addresses, but > > with few exceptions. This is more style commit than declaring new > > policy :-) > > Khmm, style? authors.ent contains 322 entities now. I've fixed 12 of them to be in same style as others. Please take a look on comment in begining of file. There're still few exceptions in this file (contributors to doc/en_US.ISO8859-1/*). But some day they entinties should be moved into separate .ent file. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 3:57:50 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9615837B41E; Fri, 8 Feb 2002 03:57:44 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18BviP04639; Fri, 8 Feb 2002 03:57:44 -0800 (PST) (envelope-from ru) Message-Id: <200202081157.g18BviP04639@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 8 Feb 2002 03:57:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/rcs/lib rcskeys.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/02/08 03:57:44 PST Modified files: gnu/usr.bin/rcs/lib rcskeys.c Log: Fixed RCSLOCALID buffer overflow (by making an overflow condition fatal). Spotted by: John Johnson Revision Changes Path 1.13 +1 -1 src/gnu/usr.bin/rcs/lib/rcskeys.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 3:58:41 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F250C37B429; Fri, 8 Feb 2002 03:58:35 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18BwZh04859; Fri, 8 Feb 2002 03:58:35 -0800 (PST) (envelope-from ru) Message-Id: <200202081158.g18BwZh04859@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 8 Feb 2002 03:58:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/rcs/lib rcskeys.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/02/08 03:58:35 PST Modified files: (Branch: RELENG_4) gnu/usr.bin/rcs/lib rcskeys.c Log: MFC: RCSLOCALID buffer overflow fix. Revision Changes Path 1.12.2.1 +1 -1 src/gnu/usr.bin/rcs/lib/rcskeys.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 4:42:58 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E181837B41E; Fri, 8 Feb 2002 04:42:55 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18CgtW22413; Fri, 8 Feb 2002 04:42:55 -0800 (PST) (envelope-from des) Message-Id: <200202081242.g18CgtW22413@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 8 Feb 2002 04:42:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/truss main.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/08 04:42:55 PST Modified files: usr.bin/truss main.c Log: Fix the code that selects the default binary type if the actual type can't be determined. PR: bin/34698 Submitted by: (in part) Stefan Farfeleder MFC after: 1 weeks Revision Changes Path 1.20 +3 -3 src/usr.bin/truss/main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5: 9:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BCA7337B41A; Fri, 8 Feb 2002 05:09:08 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18D98w30908; Fri, 8 Feb 2002 05:09:08 -0800 (PST) (envelope-from ru) Message-Id: <200202081309.g18D98w30908@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 8 Feb 2002 05:09:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 src/gnu/usr.bin/perl/miniperl Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/02/08 05:09:08 PST Modified files: . Makefile.inc1 gnu/usr.bin/perl/miniperl Makefile Log: FreeBSD 4.1 bootstrapping aid (setproctitle(3) is in -lutil). This backs out (sort of) delta 1.18 to perl/miniperl/Makefile. Update to the ld(1) comment by peter in this revision: ld(1) built as part of the cross-tools stage of buildworld has been fixed to look for dynamic dependencies in the right place, ${WORLDTMP}/usr/lib, effective binutils/ld/Makefile,v 1.20. Approved by: markm Revision Changes Path 1.236 +1 -1 src/Makefile.inc1 1.21 +8 -1 src/gnu/usr.bin/perl/miniperl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5:11:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A522C37B419; Fri, 8 Feb 2002 05:11:43 -0800 (PST) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18DBhM31344; Fri, 8 Feb 2002 05:11:43 -0800 (PST) (envelope-from olgeni) Message-Id: <200202081311.g18DBhM31344@freefall.freebsd.org> From: Jimmy Olgeni Date: Fri, 8 Feb 2002 05:11:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/erlang/files patch-al X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG olgeni 2002/02/08 05:11:43 PST Modified files: lang/erlang/files patch-al Log: Fix diff path in patch-al. Submitted by: Tomasz Szymczak Revision Changes Path 1.2 +3 -2 ports/lang/erlang/files/patch-al To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5:19:39 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ADB4937B41D; Fri, 8 Feb 2002 05:19:35 -0800 (PST) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18DJZN32873; Fri, 8 Feb 2002 05:19:35 -0800 (PST) (envelope-from skv) Message-Id: <200202081319.g18DJZN32873@freefall.freebsd.org> From: Sergey Skvortsov Date: Fri, 8 Feb 2002 05:19:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/p5-XML-SAX-Writer Makefile distinfo pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG skv 2002/02/08 05:19:35 PST Modified files: textproc/p5-XML-SAX-Writer Makefile distinfo pkg-descr Log: Updated to 0.39 Approved by: tobez Revision Changes Path 1.2 +2 -2 ports/textproc/p5-XML-SAX-Writer/Makefile 1.2 +1 -1 ports/textproc/p5-XML-SAX-Writer/distinfo 1.2 +1 -1 ports/textproc/p5-XML-SAX-Writer/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5:20:33 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EFBBF37B41D; Fri, 8 Feb 2002 05:20:26 -0800 (PST) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18DKQW33224; Fri, 8 Feb 2002 05:20:26 -0800 (PST) (envelope-from skv) Message-Id: <200202081320.g18DKQW33224@freefall.freebsd.org> From: Sergey Skvortsov Date: Fri, 8 Feb 2002 05:20:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/p5-DBD-InterBase pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG skv 2002/02/08 05:20:26 PST Modified files: databases/p5-DBD-InterBase pkg-plist Log: Minor fixes. Approved by: tobez Revision Changes Path 1.2 +4 -0 ports/databases/p5-DBD-InterBase/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5:23:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A2A3D37B404; Fri, 8 Feb 2002 05:23:09 -0800 (PST) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18DN9j33863; Fri, 8 Feb 2002 05:23:09 -0800 (PST) (envelope-from skv) Message-Id: <200202081323.g18DN9j33863@freefall.freebsd.org> From: Sergey Skvortsov Date: Fri, 8 Feb 2002 05:23:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/p5-DBD-mysql Makefile distinfo pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG skv 2002/02/08 05:23:09 PST Modified files: databases/p5-DBD-mysql Makefile distinfo pkg-descr pkg-plist Log: Updated to 2.1010 Approved by: tobez Revision Changes Path 1.38 +5 -5 ports/databases/p5-DBD-mysql/Makefile 1.16 +1 -1 ports/databases/p5-DBD-mysql/distinfo 1.6 +9 -8 ports/databases/p5-DBD-mysql/pkg-descr 1.13 +1 -0 ports/databases/p5-DBD-mysql/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5:23:41 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id A217637B430; Fri, 8 Feb 2002 05:23:28 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.6/8.11.5) with ESMTP id g18DNLb95000; Fri, 8 Feb 2002 08:23:22 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200202081323.g18DNLb95000@aldan.algebra.com> Date: Fri, 8 Feb 2002 08:23:18 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: doc/en_US.ISO8859-1/share/sgml authors.ent To: phantom@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20020208131724.A4400@ark.cris.net> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 8 Feb, Alexey Zelkin wrote: >> Well, yeah, and I'd like my real address to be used in those >> Wdocuments... hy can't such a thing be left up to the person? > I don't really understand problem. In rev 1.144 you've added entity > &a.mi; with address mi@FreeBSD.org. It was ok for 1 year 2 days and > just now become a problem ? Oh, I see... Sorry, I thought, for some reason, I was listed differently there before. I guess, I'll change it myself at some point. Sorry... > There're still few exceptions in this file (contributors to > doc/en_US.ISO8859-1/*). But some day they entinties should be moved > into separate .ent file. -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5:24:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EAB1437B423; Fri, 8 Feb 2002 05:24:52 -0800 (PST) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18DOqh34274; Fri, 8 Feb 2002 05:24:52 -0800 (PST) (envelope-from skv) Message-Id: <200202081324.g18DOqh34274@freefall.freebsd.org> From: Sergey Skvortsov Date: Fri, 8 Feb 2002 05:24:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/p5-DBIx-Recordset Makefile distinfo pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG skv 2002/02/08 05:24:52 PST Modified files: databases/p5-DBIx-Recordset Makefile distinfo pkg-descr Log: Updated to 0.24 Approved by: tobez Revision Changes Path 1.2 +10 -4 ports/databases/p5-DBIx-Recordset/Makefile 1.2 +1 -1 ports/databases/p5-DBIx-Recordset/distinfo 1.2 +13 -7 ports/databases/p5-DBIx-Recordset/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5:25:38 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3734837B41B; Fri, 8 Feb 2002 05:25:34 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18DPYN34407; Fri, 8 Feb 2002 05:25:34 -0800 (PST) (envelope-from cjc) Message-Id: <200202081325.g18DPYN34407@freefall.freebsd.org> From: "Crist J. Clark" Date: Fri, 8 Feb 2002 05:25:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc.network X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjc 2002/02/08 05:25:34 PST Modified files: etc rc.network Log: peter points out that we probably should not mess with the sysctl(8) values at all if they are not purposefully set. What if the administrator messed with them in /etc/sysctl.conf? We don't want to overwrite them. If 'log_in_vain' is zero, do not force the issue. If it is non-zero, set it. Revision Changes Path 1.123 +6 -5 src/etc/rc.network To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5:27:42 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4CCD537B400; Fri, 8 Feb 2002 05:27:36 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18DRas34825; Fri, 8 Feb 2002 05:27:36 -0800 (PST) (envelope-from sobomax) Message-Id: <200202081327.g18DRas34825@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 8 Feb 2002 05:27:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/gnomeapplets Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/08 05:27:36 PST Modified files: x11/gnomeapplets Makefile distinfo pkg-plist Log: Update to 1.4.0.5. Revision Changes Path 1.19 +11 -2 ports/x11/gnomeapplets/Makefile 1.10 +1 -1 ports/x11/gnomeapplets/distinfo 1.9 +14 -9 ports/x11/gnomeapplets/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5:29:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BA0EC37B421; Fri, 8 Feb 2002 05:29:20 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18DTKi35229; Fri, 8 Feb 2002 05:29:20 -0800 (PST) (envelope-from sobomax) Message-Id: <200202081329.g18DTKi35229@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 8 Feb 2002 05:29:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/gnomeutils Makefile distinfo pkg-plist ports/misc/gnomeutils/files patch-configure X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/08 05:29:20 PST Modified files: misc/gnomeutils Makefile distinfo pkg-plist misc/gnomeutils/files patch-configure Log: Update to 1.4.1.2. Revision Changes Path 1.36 +2 -1 ports/misc/gnomeutils/Makefile 1.15 +1 -1 ports/misc/gnomeutils/distinfo 1.2 +43 -20 ports/misc/gnomeutils/files/patch-configure 1.14 +2 -0 ports/misc/gnomeutils/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5:30: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 039D237B405; Fri, 8 Feb 2002 05:29:45 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18DTix35314; Fri, 8 Feb 2002 05:29:44 -0800 (PST) (envelope-from des) Message-Id: <200202081329.g18DTix35314@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 8 Feb 2002 05:29:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/inn-stable Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/08 05:29:44 PST Modified files: news/inn-stable Makefile distinfo Log: Upgrade to 2.3.20020208. Revision Changes Path 1.79 +1 -1 ports/news/inn-stable/Makefile 1.36 +1 -1 ports/news/inn-stable/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5:31:33 2002 Delivered-To: cvs-all@freebsd.org Received: from snipe.prod.itd.earthlink.net (snipe.mail.pas.earthlink.net [207.217.120.62]) by hub.freebsd.org (Postfix) with ESMTP id 14A6937B4E9; Fri, 8 Feb 2002 05:31:08 -0800 (PST) Received: from dialup-209.245.141.124.dial1.sanjose1.level3.net ([209.245.141.124] helo=blossom.cjclark.org) by snipe.prod.itd.earthlink.net with esmtp (Exim 3.33 #1) id 16ZB7J-0001O5-00; Fri, 08 Feb 2002 05:31:06 -0800 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.3) id g18DV0A09339; Fri, 8 Feb 2002 05:31:00 -0800 (PST) (envelope-from cjc) Date: Fri, 8 Feb 2002 05:31:00 -0800 From: "Crist J. Clark" To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, ps@mu.org Subject: Re: cvs commit: src/etc rc.network src/etc/defaults rc.conf src/share/man/man5 rc.conf.5 Message-ID: <20020208053100.A8507@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <200202042229.g14MTMX08809@freefall.freebsd.org> <20020208092030.A3E0C3BAD@overcee.wemm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020208092030.A3E0C3BAD@overcee.wemm.org>; from peter@wemm.org on Fri, Feb 08, 2002 at 01:20:30AM -0800 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Feb 08, 2002 at 01:20:30AM -0800, Peter Wemm wrote: > "Crist J. Clark" wrote: > > cjc 2002/02/04 14:29:22 PST > > > > Modified files: (Branch: RELENG_4) > > etc rc.network > > etc/defaults rc.conf > > share/man/man5 rc.conf.5 > > Log: > > MFC: Make the rc.conf(5) 'log_in_vain' knob an integer. > > > > PR: bin/32953 > > This is *very bad*. It now overrides a previous setting in /etc/sysctl.conf > and turns log_in_vain *off* if you'd already turned it on. > > Please fix this ASAP. You have removed the ability to set *only* tcp > log_in_vain. "NO" means "do not touch", not "set to zero" - that is what > "0" is for. This revives the whole ugly thread dealing with how friggin' ugly it is to have sysctl's stuck out in the middle of rc.conf. Does "NO" mean "not YES" or does it mean "NO?" Ugh. I wish someone had complained when the change was made to -CURRENT, I hate messing with something like this in -STABLE. It seems like the best way to "fix" this is to simple nuke the whole 'log_in_vain' rc.conf knob. It was extraneous in the first place, and it is only making more problems now. Anyway, here is a quick fix for this issue, if 'log_in_vain' evaluates to '0' or "NO," the sysctl(8) is not actually touched. One may tinker with log_in_vain in /etc/sysctl.conf and set 'log_in_vain' to "NO" or "0," and it will not be messed with. But this should fix your complaint, Peter? Is this satisfacotry? I'll MFC this immediately (tomorrow) if this patch provides the desired behavior. This is still suboptimal. The whole 'log_in_vain' rc.conf knob should be terminated. Terminate? Terminate the rc.conf knob? Terminate, with extreme predudice. (Don't fear the bikeshed.) --- etc/rc.network 28 Jan 2002 11:06:02 -0000 1.122 +++ etc/rc.network 8 Feb 2002 13:25:33 -0000 1.123 @@ -24,7 +24,7 @@ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF # SUCH DAMAGE. # -# $FreeBSD: src/etc/rc.network,v 1.122 2002/01/28 11:06:02 sheldonh Exp $ +# $FreeBSD: src/etc/rc.network,v 1.123 2002/02/08 13:25:33 cjc Exp $ # From: @(#)netstart 5.9 (Berkeley) 3/30/91 # @@ -874,10 +874,11 @@ ;; esac - [ "${log_in_vain}" -ne 0 ] && echo -n " log_in_vain=${log_in_vain}" - sysctl net.inet.tcp.log_in_vain="${log_in_vain}" >/dev/null - sysctl net.inet.udp.log_in_vain="${log_in_vain}" >/dev/null - + [ "${log_in_vain}" -ne 0 ] && ( + echo -n " log_in_vain=${log_in_vain}" + sysctl net.inet.tcp.log_in_vain="${log_in_vain}" >/dev/null + sysctl net.inet.udp.log_in_vain="${log_in_vain}" >/dev/null + ) echo '.' network_pass4_done=YES } This just shows how having rc.conf messing sysctl(8) knobs is begging for problems. I will look at the whole issue some more. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5:36:41 2002 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-40.dsl.lsan03.pacbell.net [64.165.226.40]) by hub.freebsd.org (Postfix) with ESMTP id 12C1E37B4E8; Fri, 8 Feb 2002 05:35:34 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 1AF3666C76; Fri, 8 Feb 2002 05:35:33 -0800 (PST) Date: Fri, 8 Feb 2002 05:35:32 -0800 From: Kris Kennaway To: Peter Pentchev Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/sysutils/daemontools Makefile distinfo pkg-plist Message-ID: <20020208053532.A80500@xor.obsecurity.org> References: <200202071457.g17EvwF86794@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="SLDf9lqlvOQaIe6s" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200202071457.g17EvwF86794@freefall.freebsd.org>; from roam@FreeBSD.org on Thu, Feb 07, 2002 at 06:57:58AM -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --SLDf9lqlvOQaIe6s Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Feb 07, 2002 at 06:57:58AM -0800, Peter Pentchev wrote: > roam 2002/02/07 06:57:58 PST >=20 > Modified files: > sysutils/daemontools Makefile distinfo pkg-plist=20 > Log: > Install Gerritt Pape's manual pages unless WITHOUT_MAN is defined. Also known in the base system as NOMAN. Kris --SLDf9lqlvOQaIe6s Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8Y9QkWry0BWjoQKURAnYqAJsGl+QzcwCnqj19rpz/OoWMqmQnjwCcChbT 0DOlKO/a8JpSXYxhvEui3GQ= =bQOS -----END PGP SIGNATURE----- --SLDf9lqlvOQaIe6s-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5:42:42 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A90BC37B417; Fri, 8 Feb 2002 05:42:35 -0800 (PST) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18DgZJ46372; Fri, 8 Feb 2002 05:42:35 -0800 (PST) (envelope-from brian) Message-Id: <200202081342.g18DgZJ46372@freefall.freebsd.org> From: Brian Somers Date: Fri, 8 Feb 2002 05:42:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall install.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2002/02/08 05:42:35 PST Modified files: usr.sbin/sysinstall install.c Log: Reword the ``Please remove the FreeBSD fixit CDROM now.'' to ``Please remove the FreeBSD fixit CDROM/DVD now.''. MFC after: 2 weeks Revision Changes Path 1.319 +1 -1 src/usr.sbin/sysinstall/install.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5:43:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5109C37B437; Fri, 8 Feb 2002 05:42:58 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18DgwN46817; Fri, 8 Feb 2002 05:42:58 -0800 (PST) (envelope-from ru) Message-Id: <200202081342.g18DgwN46817@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 8 Feb 2002 05:42:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 src/lib/libpam/modules/pam_ssh Makefile src/secure/lib/libssh Makefile src/secure/libexec/sftp-server Makefile src/secure/usr.bin/scp Makefile src/secure/usr.bin/sftp Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/02/08 05:42:58 PST Modified files: . Makefile.inc1 lib/libpam/modules/pam_ssh Makefile secure/lib/libssh Makefile secure/libexec/sftp-server Makefile secure/usr.bin/scp Makefile secure/usr.bin/sftp Makefile secure/usr.bin/ssh-add Makefile secure/usr.bin/ssh-agent Makefile secure/usr.bin/ssh-keygen Makefile secure/usr.bin/ssh-keyscan Makefile Log: Now that cross-tools ld(1) has been fixed to look for dynamic dependencies in the correct place, record the fact that -lssh depends on -lcrypto and -lz. Removed false dependencies on -lz (except ssh(1) and sshd(8)). Removed false dependencies on -lcrypto and -lutil for scp(1). Reviewed by: markm Revision Changes Path 1.237 +8 -4 src/Makefile.inc1 1.11 +2 -2 src/lib/libpam/modules/pam_ssh/Makefile 1.13 +3 -0 src/secure/lib/libssh/Makefile 1.5 +2 -2 src/secure/libexec/sftp-server/Makefile 1.7 +2 -2 src/secure/usr.bin/scp/Makefile 1.3 +2 -2 src/secure/usr.bin/sftp/Makefile 1.7 +2 -2 src/secure/usr.bin/ssh-add/Makefile 1.7 +2 -2 src/secure/usr.bin/ssh-agent/Makefile 1.8 +2 -2 src/secure/usr.bin/ssh-keygen/Makefile 1.3 +2 -2 src/secure/usr.bin/ssh-keyscan/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5:57:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E70A337B421; Fri, 8 Feb 2002 05:57:27 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18DvRU49202; Fri, 8 Feb 2002 05:57:27 -0800 (PST) (envelope-from phantom) Message-Id: <200202081357.g18DvRU49202@freefall.freebsd.org> From: Alexey Zelkin Date: Fri, 8 Feb 2002 05:57:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phantom 2002/02/08 05:57:27 PST Modified files: . Makefile Log: Enable build of Serbian docs (sr_YU.ISO8859-2). We have already few completely translated documents there. Revision Changes Path 1.25 +1 -0 doc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 5:59:44 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3471437B421; Fri, 8 Feb 2002 05:59:41 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18Dxf549771; Fri, 8 Feb 2002 05:59:41 -0800 (PST) (envelope-from sobomax) Message-Id: <200202081359.g18Dxf549771@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 8 Feb 2002 05:59:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/projects projects.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/08 05:59:41 PST Modified files: en/projects projects.sgml Log: GC hopefully the last reference to Mozilla/FreeBSD project. Revision Changes Path 1.119 +1 -6 www/en/projects/projects.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 6: 4:42 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B35CA37B416; Fri, 8 Feb 2002 06:04:37 -0800 (PST) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18E4b450368; Fri, 8 Feb 2002 06:04:37 -0800 (PST) (envelope-from wjv) Message-Id: <200202081404.g18E4b450368@freefall.freebsd.org> From: Johann Visagie Date: Fri, 8 Feb 2002 06:04:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/mailman Makefile pkg-install pkg-plist ports/mail/mailman/files configure.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2002/02/08 06:04:37 PST Modified files: mail/mailman Makefile pkg-plist Added files: mail/mailman pkg-install Removed files: mail/mailman/files configure.sh Log: - Cleaning up the Mailman port, Step 2. - Move creation of user/group from $FILESDIR/config.sh to $PKGINSTALL to ensure they are created if installed from package. - Switch to using uid/gid which are not yet registered in section 15.15 of Porter's Handbook. - Add @exec statements to $PLIST to ensure all necessary directories are created with the correct modes if installed from package. - Bump PORTREVISION. - More to follow... Partially stolen from: net/cvsup-mirror (PKGINSTALL) PR: 34654 (uid/gid change) Submitted by: Sean Chittenden (uid/gid change) Revision Changes Path 1.20 +32 -15 ports/mail/mailman/Makefile 1.4 +0 -36 ports/mail/mailman/files/configure.sh (dead) 1.1 +73 -0 ports/mail/mailman/pkg-install (new) 1.7 +309 -285 ports/mail/mailman/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 6: 6:59 2002 Delivered-To: cvs-all@freebsd.org Received: from fling.sanbi.ac.za (fling.sanbi.ac.za [196.38.142.119]) by hub.freebsd.org (Postfix) with ESMTP id 3FE7B37B41A; Fri, 8 Feb 2002 06:06:54 -0800 (PST) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 16ZBfu-000CUv-00; Fri, 08 Feb 2002 16:06:50 +0200 Date: Fri, 8 Feb 2002 16:06:50 +0200 From: Johann Visagie To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/mail/mailman Makefile pkg-install pkg-plist ports/mail/mailman/files configure.sh Message-ID: <20020208140650.GD43300@fling.sanbi.ac.za> References: <200202081404.g18E4b450368@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202081404.g18E4b450368@freefall.freebsd.org> User-Agent: Mutt/1.3.25i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Johann Visagie on 2002-02-08 (Fri) at 06:04:37 -0800: > > PR: 34654 (uid/gid change) > Submitted by: Sean Chittenden (uid/gid change) Apologies. That should be PR ports/34655. -- V To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 6:12:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1281A37B41C; Fri, 8 Feb 2002 06:12:50 -0800 (PST) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18ECoF55098; Fri, 8 Feb 2002 06:12:50 -0800 (PST) (envelope-from wjv) Message-Id: <200202081412.g18ECoF55098@freefall.freebsd.org> From: Johann Visagie Date: Fri, 8 Feb 2002 06:12:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/porters-handbook book.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wjv 2002/02/08 06:12:49 PST Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: - "Register" Mailman (mail/mailman)'s UID and GID in section 15.15 PR: 34654, 34655 Submitted by: Sean Chittenden Revision Changes Path 1.192 +1 -0 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 6:38:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F94A37B41B; Fri, 8 Feb 2002 06:38:10 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18EcAU59421; Fri, 8 Feb 2002 06:38:10 -0800 (PST) (envelope-from sobomax) Message-Id: <200202081438.g18EcAU59421@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 8 Feb 2002 06:38:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/pan Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/02/08 06:38:10 PST Modified files: news/pan Makefile distinfo Log: Update to 0.11.1.94. PR: 34572 Submitted by: Joe Marcus Clarke Revision Changes Path 1.56 +1 -1 ports/news/pan/Makefile 1.39 +1 -1 ports/news/pan/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 7: 7: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 9253F37B41C; Fri, 8 Feb 2002 07:06:28 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g18F4GT97772; Fri, 8 Feb 2002 17:04:16 +0200 (EET) (envelope-from ru) Date: Fri, 8 Feb 2002 17:04:16 +0200 From: Ruslan Ermilov To: David Malone Cc: Peter Wemm , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/finger lprint.c Message-ID: <20020208170416.E78163@sunbay.com> References: <200202080752.g187qqH47994@freefall.freebsd.org> <20020208101150.GA74534@walton.maths.tcd.ie> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020208101150.GA74534@walton.maths.tcd.ie> User-Agent: Mutt/1.3.23i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Feb 08, 2002 at 10:11:50AM +0000, David Malone wrote: > On Thu, Feb 07, 2002 at 11:52:52PM -0800, Peter Wemm wrote: > > peter 2002/02/07 23:52:52 PST > > > > Modified files: > > usr.bin/finger lprint.c > > Log: > > GRR. Unbreak WARNS=2. > > cc1: warnings being treated as errors > > usr.bin/finger/lprint.c: In function `lprint': > > usr.bin/finger/lprint.c:191: warning: precision is not type int (arg 2) > > *** Error code 1 > > Was it a header file change which caused this? I'm pretty sure it > compiled when I last committed to it. (Or maybe bug you only see > on the alpha). > Yes, TARGET_ARCH=alpha only. Perhaps, other 64-bit platforms as well. Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 7:35:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 12D8837B419; Fri, 8 Feb 2002 07:35:11 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18FZBQ75169; Fri, 8 Feb 2002 07:35:11 -0800 (PST) (envelope-from kevlo) Message-Id: <200202081535.g18FZBQ75169@freefall.freebsd.org> From: Kevin Lo Date: Fri, 8 Feb 2002 07:35:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/jabber/files jabberd.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/08 07:35:10 PST Modified files: net/jabber/files jabberd.sh Log: Fix pth is in the library path. PR: 34681 Submitted by: MAINTAINER Revision Changes Path 1.4 +3 -0 ports/net/jabber/files/jabberd.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 7:38:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D9F6737B417; Fri, 8 Feb 2002 07:38:05 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18Fc5075681; Fri, 8 Feb 2002 07:38:05 -0800 (PST) (envelope-from kevlo) Message-Id: <200202081538.g18Fc5075681@freefall.freebsd.org> From: Kevin Lo Date: Fri, 8 Feb 2002 07:38:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/wmlj Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/08 07:38:05 PST Modified files: net/wmlj Makefile distinfo Log: Update to version 0.3.2 PR: 34731 Submitted by: MAINTAINER Revision Changes Path 1.4 +1 -1 ports/net/wmlj/Makefile 1.4 +1 -1 ports/net/wmlj/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 7:40:43 2002 Delivered-To: cvs-all@freebsd.org Received: from straylight.ringlet.net (support.nanolink.com [217.75.134.33]) by hub.freebsd.org (Postfix) with SMTP id 5319337B405 for ; Fri, 8 Feb 2002 07:40:31 -0800 (PST) Received: (qmail 952 invoked by uid 1000); 8 Feb 2002 15:41:07 -0000 Date: Fri, 8 Feb 2002 17:41:07 +0200 From: Peter Pentchev To: Kris Kennaway Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/sysutils/daemontools Makefile distinfo pkg-plist Message-ID: <20020208174107.A909@straylight.oblivion.bg> Mail-Followup-To: Kris Kennaway , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200202071457.g17EvwF86794@freefall.freebsd.org> <20020208053532.A80500@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="8t9RHnE3ZwKMSgU+" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020208053532.A80500@xor.obsecurity.org>; from kris@obsecurity.org on Fri, Feb 08, 2002 at 05:35:32AM -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --8t9RHnE3ZwKMSgU+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Feb 08, 2002 at 05:35:32AM -0800, Kris Kennaway wrote: > On Thu, Feb 07, 2002 at 06:57:58AM -0800, Peter Pentchev wrote: > > roam 2002/02/07 06:57:58 PST > >=20 > > Modified files: > > sysutils/daemontools Makefile distinfo pkg-plist=20 > > Log: > > Install Gerritt Pape's manual pages unless WITHOUT_MAN is defined. >=20 > Also known in the base system as NOMAN. In the base system, yes; I thought for ports, WITH_ and WITHOUT_ knobs were common? At least, that seemed to be the outcome of the NO_X vs NO_X11 vs WITHOUT_X vs WITHOUT_GUI debate a while ago for the editors/vim port.. G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 I had to translate this sentence into English because I could not read the = original Sanskrit. --8t9RHnE3ZwKMSgU+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjxj8ZMACgkQ7Ri2jRYZRVMWNACgojBzZNwvrU+dQezjmhE/vTRh RrAAn3o+99dt9kKLRYqGYqasJ/V4l9c2 =uPu6 -----END PGP SIGNATURE----- --8t9RHnE3ZwKMSgU+-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 7:42: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CEF137B432; Fri, 8 Feb 2002 07:41:54 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18Ffss76768; Fri, 8 Feb 2002 07:41:54 -0800 (PST) (envelope-from kevlo) Message-Id: <200202081541.g18Ffss76768@freefall.freebsd.org> From: Kevin Lo Date: Fri, 8 Feb 2002 07:41:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gnat-doc-html Makefile distinfo pkg-plist_html pkg-plist_info pkg-plist_ps pkg-plist_texi pkg-plist_txt X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/08 07:41:54 PST Modified files: lang/gnat-doc-html Makefile distinfo pkg-plist_html pkg-plist_info pkg-plist_ps pkg-plist_texi pkg-plist_txt Log: Update to version 3.14p PR: 34716 Submitted by: MAINTAINER Revision Changes Path 1.3 +6 -2 ports/lang/gnat-doc-html/Makefile 1.3 +1 -1 ports/lang/gnat-doc-html/distinfo 1.3 +11 -1 ports/lang/gnat-doc-html/pkg-plist_html 1.3 +9 -2 ports/lang/gnat-doc-html/pkg-plist_info 1.3 +1 -1 ports/lang/gnat-doc-html/pkg-plist_ps 1.3 +1 -1 ports/lang/gnat-doc-html/pkg-plist_texi 1.3 +1 -1 ports/lang/gnat-doc-html/pkg-plist_txt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 8:28:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E3AED37B404; Fri, 8 Feb 2002 08:28:29 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18GSTT87462; Fri, 8 Feb 2002 08:28:29 -0800 (PST) (envelope-from petef) Message-Id: <200202081628.g18GSTT87462@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 8 Feb 2002 08:28:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/p5-Sort-ArrayOfArrays Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/08 08:28:29 PST Modified files: devel Makefile Added files: devel/p5-Sort-ArrayOfArrays Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add p5-Sort-ArrayOfArrays 1.00, sort an arbitrary array of arrays. PR: 33420 Submitted by: Seamus Venasse Revision Changes Path 1.749 +1 -0 ports/devel/Makefile 1.1 +22 -0 ports/devel/p5-Sort-ArrayOfArrays/Makefile (new) 1.1 +1 -0 ports/devel/p5-Sort-ArrayOfArrays/distinfo (new) 1.1 +1 -0 ports/devel/p5-Sort-ArrayOfArrays/pkg-comment (new) 1.1 +6 -0 ports/devel/p5-Sort-ArrayOfArrays/pkg-descr (new) 1.1 +5 -0 ports/devel/p5-Sort-ArrayOfArrays/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 8:28:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C64B37B422; Fri, 8 Feb 2002 08:28:35 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18GSZK87522; Fri, 8 Feb 2002 08:28:35 -0800 (PST) (envelope-from petef) Message-Id: <200202081628.g18GSZK87522@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 8 Feb 2002 08:28:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/08 08:28:34 PST Modified files: . modules Log: p5-Sort-ArrayOfArrays --> ports/devel/p5-Sort-ArrayOfArrays Revision Changes Path 1.4674 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 8:33:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E5DDE37B419; Fri, 8 Feb 2002 08:33:19 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18GXJn88611; Fri, 8 Feb 2002 08:33:19 -0800 (PST) (envelope-from petef) Message-Id: <200202081633.g18GXJn88611@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 8 Feb 2002 08:33:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/p5-Tree-DAG_Node Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/08 08:33:19 PST Modified files: devel Makefile Added files: devel/p5-Tree-DAG_Node Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add p5-Tree-DAG_Node 1.04, super class for representing nodes in a tree. PR: 33421 Submitted by: Seamus Venasse Revision Changes Path 1.750 +1 -0 ports/devel/Makefile 1.1 +22 -0 ports/devel/p5-Tree-DAG_Node/Makefile (new) 1.1 +1 -0 ports/devel/p5-Tree-DAG_Node/distinfo (new) 1.1 +1 -0 ports/devel/p5-Tree-DAG_Node/pkg-comment (new) 1.1 +11 -0 ports/devel/p5-Tree-DAG_Node/pkg-descr (new) 1.1 +5 -0 ports/devel/p5-Tree-DAG_Node/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 8:33:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 51A3237B416; Fri, 8 Feb 2002 08:33:26 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18GXQO88671; Fri, 8 Feb 2002 08:33:26 -0800 (PST) (envelope-from petef) Message-Id: <200202081633.g18GXQO88671@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 8 Feb 2002 08:33:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/08 08:33:26 PST Modified files: . modules Log: p5-Tree-DAG_Node --> ports/devel/p5-Tree-DAG_Node Revision Changes Path 1.4675 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 8:49: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 37CA037B419; Fri, 8 Feb 2002 08:49:01 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18Gn1291675; Fri, 8 Feb 2002 08:49:01 -0800 (PST) (envelope-from petef) Message-Id: <200202081649.g18Gn1291675@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 8 Feb 2002 08:49:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/p5-WWW-Link Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/08 08:49:01 PST Modified files: www Makefile Added files: www/p5-WWW-Link Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add p5-WWW-Link 0.030, maintain information about the state of links. PR: 33422 Submitted by: Seamus Venasse Revision Changes Path 1.467 +1 -0 ports/www/Makefile 1.1 +41 -0 ports/www/p5-WWW-Link/Makefile (new) 1.1 +1 -0 ports/www/p5-WWW-Link/distinfo (new) 1.1 +1 -0 ports/www/p5-WWW-Link/pkg-comment (new) 1.1 +11 -0 ports/www/p5-WWW-Link/pkg-descr (new) 1.1 +30 -0 ports/www/p5-WWW-Link/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 8:49:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA5C837B433; Fri, 8 Feb 2002 08:49:05 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18Gn5o91748; Fri, 8 Feb 2002 08:49:05 -0800 (PST) (envelope-from petef) Message-Id: <200202081649.g18Gn5o91748@freefall.freebsd.org> From: Pete Fritchman Date: Fri, 8 Feb 2002 08:49:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/08 08:49:05 PST Modified files: . modules Log: p5-WWW-Link --> ports/www/p5-WWW-Link Revision Changes Path 1.4676 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 9: 0:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1390937B404; Fri, 8 Feb 2002 09:00:30 -0800 (PST) Received: (from matusita@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18H0UQ93694; Fri, 8 Feb 2002 09:00:30 -0800 (PST) (envelope-from matusita) Message-Id: <200202081700.g18H0UQ93694@freefall.freebsd.org> From: Makoto MATSUSHITA Date: Fri, 8 Feb 2002 09:00:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG matusita 2002/02/08 09:00:29 PST Modified files: (Branch: RELENG_4) release Makefile Log: MFC 1.655: exclude ports/distfiles/* by tar(1) option instead of removing it. Revision Changes Path 1.536.2.73 +3 -3 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 9: 2:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AF11B37B41F; Fri, 8 Feb 2002 09:02:30 -0800 (PST) Received: (from matusita@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18H2Um94020; Fri, 8 Feb 2002 09:02:30 -0800 (PST) (envelope-from matusita) Message-Id: <200202081702.g18H2Um94020@freefall.freebsd.org> From: Makoto MATSUSHITA Date: Fri, 8 Feb 2002 09:02:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG matusita 2002/02/08 09:02:30 PST Modified files: (Branch: RELENG_4) release Makefile Log: MFC 1.656: s/DOCDISTFILES/RELEASEDISTFILES/, but respect DOCDISTFILES for backward compatibility. Revision Changes Path 1.536.2.74 +10 -5 src/release/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 9: 3:39 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C170237B426; Fri, 8 Feb 2002 09:03:15 -0800 (PST) Received: (from clive@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18H3FM94155; Fri, 8 Feb 2002 09:03:15 -0800 (PST) (envelope-from clive) Message-Id: <200202081703.g18H3FM94155@freefall.freebsd.org> From: Clive Lin Date: Fri, 8 Feb 2002 09:03:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/bind8 distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG clive 2002/02/08 09:03:15 PST Modified files: chinese/bind8 distinfo Log: Wrong checksum in previous version. Fix it. Submitted by: MAINTAINER Revision Changes Path 1.3 +3 -3 ports/chinese/bind8/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 9:51:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 98AD037B405; Fri, 8 Feb 2002 09:51:15 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18HpFQ03983; Fri, 8 Feb 2002 09:51:15 -0800 (PST) (envelope-from ijliao) Message-Id: <200202081751.g18HpFQ03983@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 8 Feb 2002 09:51:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/happydoc Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/08 09:51:15 PST Modified files: devel/happydoc Makefile distinfo Log: upgrade to 2.0.1 Revision Changes Path 1.7 +1 -1 ports/devel/happydoc/Makefile 1.7 +1 -1 ports/devel/happydoc/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 10: 3:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 719AD37B41C; Fri, 8 Feb 2002 10:03:38 -0800 (PST) Received: (from sumikawa@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18I3cD05820; Fri, 8 Feb 2002 10:03:38 -0800 (PST) (envelope-from sumikawa) Message-Id: <200202081803.g18I3cD05820@freefall.freebsd.org> From: Munechika SUMIKAWA Date: Fri, 8 Feb 2002 10:03:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mozilla+ipv6/files patch-ak X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sumikawa 2002/02/08 10:03:38 PST Modified files: www/mozilla+ipv6/files patch-ak Log: Wrap INET6 enabling block by OS version checking. Revision Changes Path 1.6 +8 -5 ports/www/mozilla+ipv6/files/patch-ak To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 10: 8:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E05637B41A; Fri, 8 Feb 2002 10:08:44 -0800 (PST) Received: (from sumikawa@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18I8iR10121; Fri, 8 Feb 2002 10:08:44 -0800 (PST) (envelope-from sumikawa) Message-Id: <200202081808.g18I8iR10121@freefall.freebsd.org> From: Munechika SUMIKAWA Date: Fri, 8 Feb 2002 10:08:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mozilla+ipv6 Makefile ports/www/mozilla+ipv6/files patch-netwerk::base::src::nsSocketTransport.cpp patch-netwerk::base::src::nsSocketTransport.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sumikawa 2002/02/08 10:08:43 PST Modified files: www/mozilla+ipv6 Makefile Added files: www/mozilla+ipv6/files patch-netwerk::base::src::nsSocketTransport.cpp patch-netwerk::base::src::nsSocketTransport.h Log: IPv6->iPv4 fallback patches from mozilla-current. These were not include in 0.9.8. Revision Changes Path 1.75 +5 -3 ports/www/mozilla+ipv6/Makefile 1.1 +329 -0 ports/www/mozilla+ipv6/files/patch-netwerk::base::src::nsSocketTransport.cpp (new) 1.1 +57 -0 ports/www/mozilla+ipv6/files/patch-netwerk::base::src::nsSocketTransport.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 10:23:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 660CF37B417; Fri, 8 Feb 2002 10:23:46 -0800 (PST) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18INkT12158; Fri, 8 Feb 2002 10:23:46 -0800 (PST) (envelope-from jhb) Message-Id: <200202081823.g18INkT12158@freefall.freebsd.org> From: John Baldwin Date: Fri, 8 Feb 2002 10:23:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha interrupt.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2002/02/08 10:23:46 PST Modified files: sys/alpha/alpha interrupt.c Log: Turn interrupt thread preemption back on on the alpha. Tested by: mjacob Revision Changes Path 1.61 +1 -1 src/sys/alpha/alpha/interrupt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 10:25:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0295537B419; Fri, 8 Feb 2002 10:25:08 -0800 (PST) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18IP7Y12367; Fri, 8 Feb 2002 10:25:07 -0800 (PST) (envelope-from jhb) Message-Id: <200202081825.g18IP7Y12367@freefall.freebsd.org> From: John Baldwin Date: Fri, 8 Feb 2002 10:25:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/conf GENERIC X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2002/02/08 10:25:07 PST Modified files: sys/alpha/conf GENERIC Log: Turn SMP back on by default in GENERIC on the Alpha. Revision Changes Path 1.131 +1 -1 src/sys/alpha/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 10:30:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 59D6F37B402; Fri, 8 Feb 2002 10:30:36 -0800 (PST) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18IUal13079; Fri, 8 Feb 2002 10:30:36 -0800 (PST) (envelope-from jhb) Message-Id: <200202081830.g18IUal13079@freefall.freebsd.org> From: John Baldwin Date: Fri, 8 Feb 2002 10:30:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa intr_machdep.c src/sys/alpha/isa isa.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2002/02/08 10:30:36 PST Modified files: sys/i386/isa intr_machdep.c sys/alpha/isa isa.c Log: Don't grab the ICU lock while reading the current pending interrupts and current masked interrupts from the AT PIC. Requested by: bde Revision Changes Path 1.29 +0 -4 src/sys/alpha/isa/isa.c 1.65 +0 -2 src/sys/i386/isa/intr_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 11: 3:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5903C37B422; Fri, 8 Feb 2002 11:03:10 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18J3AH17638; Fri, 8 Feb 2002 11:03:10 -0800 (PST) (envelope-from ade) Message-Id: <200202081903.g18J3AH17638@freefall.freebsd.org> From: Ade Lovett Date: Fri, 8 Feb 2002 11:03:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/glib13 Makefile ports/devel/glib13/files patch-ag X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ade 2002/02/08 11:03:10 PST Modified files: devel/glib13 Makefile devel/glib13/files patch-ag Log: glibconfig.h was getting installed in /, rather than below PREFIX and was being compensated for by a post-install target. Fix the underlying problem, bumping PORTREVISION. Revision Changes Path 1.48 +1 -3 ports/devel/glib13/Makefile 1.7 +6 -15 ports/devel/glib13/files/patch-ag To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 11:10:17 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 6C33337B400; Fri, 8 Feb 2002 11:10:04 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id GAA24402; Sat, 9 Feb 2002 06:09:55 +1100 Date: Sat, 9 Feb 2002 06:12:34 +1100 (EST) From: Bruce Evans X-X-Sender: To: David Malone Cc: Peter Wemm , , Subject: Re: cvs commit: src/usr.bin/finger lprint.c In-Reply-To: <20020208101150.GA74534@walton.maths.tcd.ie> Message-ID: <20020209060237.U776-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 8 Feb 2002, David Malone wrote: > On Thu, Feb 07, 2002 at 11:52:52PM -0800, Peter Wemm wrote: > > peter 2002/02/07 23:52:52 PST > > > > Modified files: > > usr.bin/finger lprint.c > > Log: > > GRR. Unbreak WARNS=2. > > cc1: warnings being treated as errors > > usr.bin/finger/lprint.c: In function `lprint': > > usr.bin/finger/lprint.c:191: warning: precision is not type int (arg 2) > > *** Error code 1 > > Was it a header file change which caused this? I'm pretty sure it > compiled when I last committed to it. (Or maybe bug you only see > on the alpha). Yes, the bug is only detected on machines where size_t is larger than int. The precision is given by the expression: maxlen - strlen(w->tty) + 1 Here maxlen has type int and strlen() has type size_t. size_t is normally no larger than int, so the type of max_len is normally promoted to the type of strlen() in the binary operation '-' instead of vice versa, and the expression has type size_t. gcc should probably warn about mixing signed variables with unsigned variables like this, but it doesn't. gcc should warn that the precision is not of type int on 386's too (precision has type size_t == unsigned), but it doesn't. Thus the bug is only detected if size_t is larger than int. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 11:16:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B5C637B41D; Fri, 8 Feb 2002 11:16:47 -0800 (PST) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18JGl823219; Fri, 8 Feb 2002 11:16:47 -0800 (PST) (envelope-from jhb) Message-Id: <200202081916.g18JGl823219@freefall.freebsd.org> From: John Baldwin Date: Fri, 8 Feb 2002 11:16:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/include md_var.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2002/02/08 11:16:47 PST Modified files: sys/i386/include md_var.h Log: Apparently during the KSE M2 commit bzero() on the i386 was changed so that it's first parameter was volatile. Catch i486_bzero() and i586_bzero()'s prototypes up to this to quiet warnings. Revision Changes Path 1.45 +2 -2 src/sys/i386/include/md_var.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 11:27:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6275437B41F; Fri, 8 Feb 2002 11:27:11 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18JRBw24888; Fri, 8 Feb 2002 11:27:11 -0800 (PST) (envelope-from ijliao) Message-Id: <200202081927.g18JRBw24888@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 8 Feb 2002 11:27:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/swftools Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/08 11:27:11 PST Modified files: graphics Makefile Added files: graphics/swftools Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add swftools 0.2.2 SWF manipulation and generation utilities Revision Changes Path 1.400 +1 -0 ports/graphics/Makefile 1.1 +26 -0 ports/graphics/swftools/Makefile (new) 1.1 +1 -0 ports/graphics/swftools/distinfo (new) 1.1 +1 -0 ports/graphics/swftools/pkg-comment (new) 1.1 +14 -0 ports/graphics/swftools/pkg-descr (new) 1.1 +44 -0 ports/graphics/swftools/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 11:27:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 447C637B41E; Fri, 8 Feb 2002 11:27:15 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18JRF324924; Fri, 8 Feb 2002 11:27:15 -0800 (PST) (envelope-from ijliao) Message-Id: <200202081927.g18JRF324924@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 8 Feb 2002 11:27:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/08 11:27:15 PST Modified files: . modules Log: swftools --> ports/graphics/swftools Revision Changes Path 1.4677 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 11:46: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ECD0637B41C; Fri, 8 Feb 2002 11:45:58 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18Jjwv30284; Fri, 8 Feb 2002 11:45:58 -0800 (PST) (envelope-from obrien) Message-Id: <200202081945.g18Jjwv30284@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 8 Feb 2002 11:45:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/libpcap FREEBSD-upgrade X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/08 11:45:58 PST Modified files: contrib/libpcap FREEBSD-upgrade Log: Correct email address for bug reports and patch submissions. Submitted by: Marco Molteni Revision Changes Path 1.5 +3 -1 src/contrib/libpcap/FREEBSD-upgrade To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 11:52:59 2002 Delivered-To: cvs-all@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id 9A9BE37B41B; Fri, 8 Feb 2002 11:52:51 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id VAA98430; Fri, 8 Feb 2002 21:52:48 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h37.228.dialup.iptcom.net [212.9.228.37]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id VAA39920; Fri, 8 Feb 2002 21:52:47 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id g18JqGd69948; Fri, 8 Feb 2002 21:52:16 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C642C7C.9B0AA596@FreeBSD.org> Date: Fri, 08 Feb 2002 21:52:28 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Ade Lovett Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/devel/glib13 Makefile ports/devel/glib13/filespatch-ag References: <200202081903.g18J3AH17638@freefall.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ade Lovett wrote: > > ade 2002/02/08 11:03:10 PST > > Modified files: > devel/glib13 Makefile > devel/glib13/files patch-ag > Log: > glibconfig.h was getting installed in /, rather than below PREFIX > and was being compensated for by a post-install target. > > Fix the underlying problem, bumping PORTREVISION. . o O Ade, big GNOME is back! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 11:55:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 477E037B420; Fri, 8 Feb 2002 11:55:12 -0800 (PST) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18JtCr31522; Fri, 8 Feb 2002 11:55:12 -0800 (PST) (envelope-from yoichi) Message-Id: <200202081955.g18JtCr31522@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Fri, 8 Feb 2002 11:55:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/lacheck Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yoichi 2002/02/08 11:55:12 PST Modified files: textproc Makefile Added files: textproc/lacheck Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add LaCheck, a consistency checker for LaTeX documents. PR: ports/34736 Submitted by: Uwe Pierau Revision Changes Path 1.317 +1 -0 ports/textproc/Makefile 1.1 +23 -0 ports/textproc/lacheck/Makefile (new) 1.1 +1 -0 ports/textproc/lacheck/distinfo (new) 1.1 +1 -0 ports/textproc/lacheck/pkg-comment (new) 1.1 +4 -0 ports/textproc/lacheck/pkg-descr (new) 1.1 +1 -0 ports/textproc/lacheck/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 11:55:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DE5E537B426; Fri, 8 Feb 2002 11:55:14 -0800 (PST) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18JtEw31568; Fri, 8 Feb 2002 11:55:14 -0800 (PST) (envelope-from yoichi) Message-Id: <200202081955.g18JtEw31568@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Fri, 8 Feb 2002 11:55:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yoichi 2002/02/08 11:55:14 PST Modified files: . modules Log: lacheck --> ports/textproc/lacheck Revision Changes Path 1.4678 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 12:19:53 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BFAF37B41B; Fri, 8 Feb 2002 12:19:44 -0800 (PST) Received: (from tmm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18KJi838127; Fri, 8 Feb 2002 12:19:44 -0800 (PST) (envelope-from tmm) Message-Id: <200202082019.g18KJi838127@freefall.freebsd.org> From: Thomas Moestl Date: Fri, 8 Feb 2002 12:19:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_subr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tmm 2002/02/08 12:19:44 PST Modified files: sys/kern kern_subr.c Log: Fix a bug introduced in r. 1.28: when copy{in,out} would fail for an iovec that was not the last one in the uio, the error would be ignored silently. Bug found and fix proposed by: jhb Revision Changes Path 1.50 +2 -1 src/sys/kern/kern_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 12:24:26 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B694137B433; Fri, 8 Feb 2002 12:24:13 -0800 (PST) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18KODu38697; Fri, 8 Feb 2002 12:24:13 -0800 (PST) (envelope-from yoichi) Message-Id: <200202082024.g18KODu38697@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Fri, 8 Feb 2002 12:24:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yoichi 2002/02/08 12:24:13 PST Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Add Uwe Pierau for his textproc/lacheck port. Revision Changes Path 1.96 +4 -0 doc/en_US.ISO8859-1/articles/contributors/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 13: 3:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3181C37B42F; Fri, 8 Feb 2002 13:03:46 -0800 (PST) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18L3kx44992; Fri, 8 Feb 2002 13:03:46 -0800 (PST) (envelope-from dwcjr) Message-Id: <200202082103.g18L3kx44992@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Fri, 8 Feb 2002 13:03:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/samba Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2002/02/08 13:03:46 PST Modified files: net/samba Makefile distinfo Log: Update recycle bin patches to latest version Submitted by: neil@darlow.co.uk, delta@lackas.net Revision Changes Path 1.73 +1 -1 ports/net/samba/Makefile 1.35 +3 -3 ports/net/samba/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 13: 8:33 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E41D637B402; Fri, 8 Feb 2002 13:08:28 -0800 (PST) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18L8SK49578; Fri, 8 Feb 2002 13:08:28 -0800 (PST) (envelope-from yoichi) Message-Id: <200202082108.g18L8SK49578@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Fri, 8 Feb 2002 13:08:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/xslide.el Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yoichi 2002/02/08 13:08:28 PST Modified files: textproc Makefile Added files: textproc/xslide.el Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist Log: Add xslide.el, Emacs major mode for editing XSL stylesheets. PR: ports/33876 Submitted by: Leo Kim Revision Changes Path 1.318 +1 -0 ports/textproc/Makefile 1.1 +43 -0 ports/textproc/xslide.el/Makefile (new) 1.1 +1 -0 ports/textproc/xslide.el/distinfo (new) 1.1 +1 -0 ports/textproc/xslide.el/pkg-comment (new) 1.1 +22 -0 ports/textproc/xslide.el/pkg-descr (new) 1.1 +20 -0 ports/textproc/xslide.el/pkg-message (new) 1.1 +9 -0 ports/textproc/xslide.el/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 13: 8:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DB3E237B41B; Fri, 8 Feb 2002 13:08:30 -0800 (PST) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18L8U549609; Fri, 8 Feb 2002 13:08:30 -0800 (PST) (envelope-from yoichi) Message-Id: <200202082108.g18L8U549609@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Fri, 8 Feb 2002 13:08:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yoichi 2002/02/08 13:08:30 PST Modified files: . modules Log: xslide.el --> ports/textproc/xslide.el Revision Changes Path 1.4679 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 13:25:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A47E237B41D; Fri, 8 Feb 2002 13:25:10 -0800 (PST) Received: (from nbm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18LPAr53023; Fri, 8 Feb 2002 13:25:10 -0800 (PST) (envelope-from nbm) Message-Id: <200202082125.g18LPAr53023@freefall.freebsd.org> From: Neil Blakey-Milner Date: Fri, 8 Feb 2002 13:25:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/zope pkg-deinstall pkg-install X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nbm 2002/02/08 13:25:10 PST Added files: www/zope pkg-deinstall pkg-install Log: Add install and deinstall scripts I forgot to commit last time. Submitted by: HAYASHI Yasushi Revision Changes Path 1.1 +15 -0 ports/www/zope/pkg-deinstall (new) 1.1 +34 -0 ports/www/zope/pkg-install (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 13:25:32 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id 922DF37B402; Fri, 8 Feb 2002 13:25:14 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g18LPEA07738; Fri, 8 Feb 2002 21:25:14 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id E6D96B9; Fri, 8 Feb 2002 21:22:14 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g18LBcc59493; Fri, 8 Feb 2002 21:11:39 GMT (envelope-from mark@grondar.za) Message-Id: <200202082111.g18LBcc59493@greenpeace.grondar.org> To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/du du.c References: <200202080749.g187nDQ47158@freefall.freebsd.org> In-Reply-To: <200202080749.g187nDQ47158@freefall.freebsd.org> ; from Peter Wemm "Thu, 07 Feb 2002 23:49:13 PST." From: markm@FreeBSD.org Date: Fri, 08 Feb 2002 21:11:33 +0000 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > GRR. This was not WARNS=2 clean. You cannot printf a 'long' with > '%qd'. > > usr.bin/du/du.c:288: warning: long long int format, long int arg (arg 2) > > Pointy hat to: markm Oops! Sorry :-( M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 13:28:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3EDB437B400; Fri, 8 Feb 2002 13:28:07 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18LS7P53474; Fri, 8 Feb 2002 13:28:07 -0800 (PST) (envelope-from markm) Message-Id: <200202082128.g18LS7P53474@freefall.freebsd.org> From: Mark Murray Date: Fri, 8 Feb 2002 13:28:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/08 13:28:07 PST Modified files: share/man Makefile Log: Don't hardcode paths. This is generally silly, and in this case breaks custom installworlds. Pointed out by: bde Revision Changes Path 1.13 +1 -1 src/share/man/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 13:30:14 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id AE95B37B41B; Fri, 8 Feb 2002 13:30:09 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g18LU8K07757; Fri, 8 Feb 2002 21:30:08 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id CD4EC93; Fri, 8 Feb 2002 21:29:17 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g18LTGc59716; Fri, 8 Feb 2002 21:29:16 GMT (envelope-from mark@grondar.za) Message-Id: <200202082129.g18LTGc59716@greenpeace.grondar.org> To: Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man Makefile References: <20020208135736.M8656-100000@gamplex.bde.org> In-Reply-To: <20020208135736.M8656-100000@gamplex.bde.org> ; from Bruce Evans "Fri, 08 Feb 2002 13:59:23 +1100." From: markm@FreeBSD.org Date: Fri, 08 Feb 2002 21:29:11 +0000 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > This bogotifies installworld by hard-coding an absolute path to makewhatis. Fixed. Thanks! M -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 14:32:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 11DB937B402; Fri, 8 Feb 2002 14:31:44 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18MVit71986; Fri, 8 Feb 2002 14:31:44 -0800 (PST) (envelope-from markm) Message-Id: <200202082231.g18MVit71986@freefall.freebsd.org> From: Mark Murray Date: Fri, 8 Feb 2002 14:31:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/apply Makefile src/usr.bin/ar Makefile src/usr.bin/at Makefile src/usr.bin/banner Makefile src/usr.bin/basename Makefile src/usr.bin/biff Makefile src/usr.bin/brandelf Makefile src/usr.bin/c89 Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/08 14:31:44 PST Modified files: usr.bin/apply Makefile usr.bin/ar Makefile usr.bin/at Makefile usr.bin/banner Makefile usr.bin/basename Makefile usr.bin/biff Makefile usr.bin/brandelf Makefile usr.bin/c89 Makefile usr.bin/calendar Makefile usr.bin/cap_mkdb Makefile usr.bin/chflags Makefile usr.bin/chkey Makefile usr.bin/cksum Makefile usr.bin/cmp Makefile usr.bin/col Makefile usr.bin/colcrt Makefile usr.bin/colldef Makefile usr.bin/colrm Makefile usr.bin/column Makefile usr.bin/comm Makefile usr.bin/compress Makefile usr.bin/ctags Makefile usr.bin/cut Makefile usr.bin/dirname Makefile usr.bin/du Makefile usr.bin/enigma Makefile usr.bin/env Makefile usr.bin/expand Makefile usr.bin/false Makefile usr.bin/fetch Makefile usr.bin/file2c Makefile usr.bin/finger Makefile usr.bin/fmt Makefile usr.bin/fold Makefile usr.bin/from Makefile usr.bin/fsync Makefile usr.bin/gencat Makefile usr.bin/getopt Makefile usr.bin/hesinfo Makefile usr.bin/hexdump Makefile usr.bin/id Makefile usr.bin/ipcrm Makefile usr.bin/jot Makefile usr.bin/lam Makefile usr.bin/last Makefile usr.bin/lastcomm Makefile usr.bin/leave Makefile usr.bin/lock Makefile usr.bin/lockf Makefile usr.bin/logname Makefile usr.bin/lsvfs Makefile usr.bin/mesg Makefile usr.bin/mkfifo Makefile usr.bin/mkstr Makefile usr.bin/mktemp Makefile usr.bin/msgs Makefile usr.bin/ncplogin Makefile usr.bin/newkey Makefile usr.bin/nice Makefile usr.bin/nohup Makefile usr.bin/objformat Makefile usr.bin/printenv Makefile usr.bin/printf Makefile usr.bin/renice Makefile usr.bin/rev Makefile Log: Remove leaf node WARNS?=2 (that mainly I added). This should help the GCC3 transition and CURRENT in general. Revision Changes Path 1.6 +0 -1 src/usr.bin/apply/Makefile 1.12 +0 -1 src/usr.bin/ar/Makefile 1.15 +0 -1 src/usr.bin/at/Makefile 1.8 +0 -1 src/usr.bin/banner/Makefile 1.4 +0 -1 src/usr.bin/basename/Makefile 1.4 +0 -1 src/usr.bin/biff/Makefile 1.6 +1 -2 src/usr.bin/brandelf/Makefile 1.6 +0 -1 src/usr.bin/c89/Makefile 1.19 +0 -1 src/usr.bin/calendar/Makefile 1.4 +0 -1 src/usr.bin/cap_mkdb/Makefile 1.14 +0 -1 src/usr.bin/chflags/Makefile 1.7 +0 -1 src/usr.bin/chkey/Makefile 1.5 +0 -1 src/usr.bin/cksum/Makefile 1.6 +0 -1 src/usr.bin/cmp/Makefile 1.4 +0 -1 src/usr.bin/col/Makefile 1.4 +0 -1 src/usr.bin/colcrt/Makefile 1.20 +0 -1 src/usr.bin/colldef/Makefile 1.4 +0 -1 src/usr.bin/colrm/Makefile 1.4 +0 -1 src/usr.bin/column/Makefile 1.4 +0 -1 src/usr.bin/comm/Makefile 1.7 +0 -1 src/usr.bin/compress/Makefile 1.5 +0 -1 src/usr.bin/ctags/Makefile 1.5 +0 -1 src/usr.bin/cut/Makefile 1.4 +0 -1 src/usr.bin/dirname/Makefile 1.7 +0 -1 src/usr.bin/du/Makefile 1.7 +1 -2 src/usr.bin/enigma/Makefile 1.4 +0 -1 src/usr.bin/env/Makefile 1.4 +0 -1 src/usr.bin/expand/Makefile 1.3 +0 -1 src/usr.bin/false/Makefile 1.6 +1 -2 src/usr.bin/fetch/Makefile 1.7 +1 -2 src/usr.bin/file2c/Makefile 1.5 +0 -1 src/usr.bin/finger/Makefile 1.6 +1 -2 src/usr.bin/fmt/Makefile 1.3 +0 -1 src/usr.bin/fold/Makefile 1.3 +0 -1 src/usr.bin/from/Makefile 1.4 +1 -2 src/usr.bin/fsync/Makefile 1.7 +1 -2 src/usr.bin/gencat/Makefile 1.5 +0 -1 src/usr.bin/getopt/Makefile 1.3 +0 -1 src/usr.bin/hesinfo/Makefile 1.6 +0 -1 src/usr.bin/hexdump/Makefile 1.10 +1 -2 src/usr.bin/id/Makefile 1.6 +0 -1 src/usr.bin/ipcrm/Makefile 1.4 +0 -1 src/usr.bin/jot/Makefile 1.3 +0 -1 src/usr.bin/lam/Makefile 1.3 +0 -1 src/usr.bin/last/Makefile 1.3 +0 -1 src/usr.bin/lastcomm/Makefile 1.5 +1 -2 src/usr.bin/leave/Makefile 1.9 +0 -1 src/usr.bin/lock/Makefile 1.6 +0 -1 src/usr.bin/lockf/Makefile 1.4 +0 -1 src/usr.bin/logname/Makefile 1.6 +1 -2 src/usr.bin/lsvfs/Makefile 1.3 +0 -1 src/usr.bin/mesg/Makefile 1.3 +0 -1 src/usr.bin/mkfifo/Makefile 1.4 +0 -1 src/usr.bin/mkstr/Makefile 1.3 +0 -1 src/usr.bin/mktemp/Makefile 1.8 +1 -2 src/usr.bin/msgs/Makefile 1.5 +0 -1 src/usr.bin/ncplogin/Makefile 1.9 +0 -1 src/usr.bin/newkey/Makefile 1.4 +0 -1 src/usr.bin/nice/Makefile 1.4 +0 -1 src/usr.bin/nohup/Makefile 1.17 +0 -1 src/usr.bin/objformat/Makefile 1.4 +0 -1 src/usr.bin/printenv/Makefile 1.4 +0 -1 src/usr.bin/printf/Makefile 1.5 +0 -1 src/usr.bin/renice/Makefile 1.4 +0 -1 src/usr.bin/rev/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 15: 7:53 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7611237B422; Fri, 8 Feb 2002 15:07:37 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18N7bE85194; Fri, 8 Feb 2002 15:07:37 -0800 (PST) (envelope-from markm) Message-Id: <200202082307.g18N7bE85194@freefall.freebsd.org> From: Mark Murray Date: Fri, 8 Feb 2002 15:07:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/calendar Makefile src/usr.bin/colldef Makefile src/usr.bin/login Makefile src/usr.bin/mail Makefile src/usr.bin/sed Makefile src/usr.bin/systat Makefile src/usr.bin/talk Makefile src/usr.bin/tcopy Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/02/08 15:07:37 PST Modified files: usr.bin/calendar Makefile usr.bin/colldef Makefile usr.bin/login Makefile usr.bin/mail Makefile usr.bin/sed Makefile usr.bin/systat Makefile usr.bin/talk Makefile usr.bin/tcopy Makefile usr.bin/tftp Makefile usr.bin/top Makefile usr.bin/truss Makefile usr.bin/vacation Makefile usr.bin/vgrind Makefile usr.bin/vi Makefile usr.bin/vmstat Makefile usr.bin/window Makefile usr.bin/xinstall Makefile usr.bin/yacc Makefile usr.bin/ypcat Makefile usr.bin/ypmatch Makefile usr.bin/ypwhich Makefile Log: Remove NO_WERRORs and WARNS=n's. To be revisited after GCC3. Revision Changes Path 1.20 +0 -1 src/usr.bin/calendar/Makefile 1.21 +0 -1 src/usr.bin/colldef/Makefile 1.41 +0 -2 src/usr.bin/login/Makefile 1.9 +0 -1 src/usr.bin/mail/Makefile 1.4 +0 -1 src/usr.bin/sed/Makefile 1.12 +0 -1 src/usr.bin/systat/Makefile 1.10 +0 -1 src/usr.bin/talk/Makefile 1.3 +0 -1 src/usr.bin/tcopy/Makefile 1.5 +0 -1 src/usr.bin/tftp/Makefile 1.10 +0 -2 src/usr.bin/top/Makefile 1.15 +0 -3 src/usr.bin/truss/Makefile 1.11 +0 -1 src/usr.bin/vacation/Makefile 1.12 +0 -1 src/usr.bin/vgrind/Makefile 1.35 +0 -1 src/usr.bin/vi/Makefile 1.9 +0 -1 src/usr.bin/vmstat/Makefile 1.11 +0 -1 src/usr.bin/window/Makefile 1.19 +0 -1 src/usr.bin/xinstall/Makefile 1.13 +0 -1 src/usr.bin/yacc/Makefile 1.6 +0 -1 src/usr.bin/ypcat/Makefile 1.6 +0 -1 src/usr.bin/ypmatch/Makefile 1.7 +0 -1 src/usr.bin/ypwhich/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 15:27:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8036F37B41D; Fri, 8 Feb 2002 15:27:22 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g18NRMc87059; Fri, 8 Feb 2002 15:27:22 -0800 (PST) (envelope-from des) Message-Id: <200202082327.g18NRMc87059@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 8 Feb 2002 15:27:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/pam.d login X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/08 15:27:22 PST Modified files: etc/pam.d login Log: Add missing "nullok" option to pam_unix. Revision Changes Path 1.8 +2 -2 src/etc/pam.d/login To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 16: 9:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 939A537B405; Fri, 8 Feb 2002 16:09:48 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1909m995001; Fri, 8 Feb 2002 16:09:48 -0800 (PST) (envelope-from trevor) Message-Id: <200202090009.g1909m995001@freefall.freebsd.org> From: Trevor Johnson Date: Fri, 8 Feb 2002 16:09:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules ports/devel Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2002/02/08 16:09:48 PST Modified files: . modules devel Makefile Log: Add ports/devel/cvslines. Revision Changes Path 1.4680 +1 -0 CVSROOT/modules 1.751 +1 -0 ports/devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 16:13: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B67C37B404; Fri, 8 Feb 2002 16:12:54 -0800 (PST) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g190Csr95498; Fri, 8 Feb 2002 16:12:54 -0800 (PST) (envelope-from jhb) Message-Id: <200202090012.g190Csr95498@freefall.freebsd.org> From: John Baldwin Date: Fri, 8 Feb 2002 16:12:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_mutex.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2002/02/08 16:12:53 PST Modified files: sys/kern kern_mutex.c Log: Use the mtx_owner() macro in one spot in _mtx_lock_sleep() to make the code easier to read. Revision Changes Path 1.78 +1 -1 src/sys/kern/kern_mutex.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 17:26:23 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 120C837B400; Fri, 8 Feb 2002 17:26:19 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g191QJd06551; Fri, 8 Feb 2002 17:26:19 -0800 (PST) (envelope-from luigi) Message-Id: <200202090126.g191QJd06551@freefall.freebsd.org> From: Luigi Rizzo Date: Fri, 8 Feb 2002 17:26:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_sisreg.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG luigi 2002/02/08 17:26:18 PST Modified files: (Branch: RELENG_4) sys/pci if_sisreg.h Log: MFC: compute the correct payload length on received packets, excluding CRC. This apparently gave problems when bridging large packets, because the code would attempt to send frames exceeding the maximum ether size. Revision Changes Path 1.1.4.8 +1 -1 src/sys/pci/if_sisreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 17:38:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C71437B417; Fri, 8 Feb 2002 17:38:17 -0800 (PST) Received: (from julian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g191cHM12882; Fri, 8 Feb 2002 17:38:17 -0800 (PST) (envelope-from julian) Message-Id: <200202090138.g191cHM12882@freefall.freebsd.org> From: Julian Elischer Date: Fri, 8 Feb 2002 17:38:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_shutdown.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG julian 2002/02/08 17:38:17 PST Modified files: sys/kern kern_shutdown.c Log: Replace accidentally removed setrunqueue() solves problem with machines failing to sync in booting. Submitted by: Tor.Egge@cvsup.no.freebsd.org Revision Changes Path 1.119 +1 -0 src/sys/kern/kern_shutdown.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 17:38:45 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3A1D637B423; Fri, 8 Feb 2002 17:38:24 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g191cOi12911; Fri, 8 Feb 2002 17:38:24 -0800 (PST) (envelope-from bmah) Message-Id: <200202090138.g191cOi12911@freefall.freebsd.org> From: "Bruce A. Mah" Date: Fri, 8 Feb 2002 17:38:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/08 17:38:24 PST Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC noted: an(4) LEAP, Home key, and Linux utility support. Revision Changes Path 1.276 +2 -2 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 17:38:50 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A48637B489; Fri, 8 Feb 2002 17:38:37 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g191cbf13024; Fri, 8 Feb 2002 17:38:37 -0800 (PST) (envelope-from bmah) Message-Id: <200202090138.g191cbf13024@freefall.freebsd.org> From: "Bruce A. Mah" Date: Fri, 8 Feb 2002 17:38:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/02/08 17:38:37 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: an(4) LEAP, Home key, and Linux utility support. Revision Changes Path 1.22.2.195 +4 -2 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 17:45:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A18137B41A; Fri, 8 Feb 2002 17:45:09 -0800 (PST) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g191j9Z13942; Fri, 8 Feb 2002 17:45:09 -0800 (PST) (envelope-from keramida) Message-Id: <200202090145.g191j9Z13942@freefall.freebsd.org> From: Giorgos Keramidas Date: Fri, 8 Feb 2002 17:45:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/multi-os article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG keramida 2002/02/08 17:45:09 PST Modified files: en_US.ISO8859-1/articles/multi-os article.sgml Log: We're long past FAT32 being used in OEM computers. Reflect that to this article, which talked about FAT32 as a future thing. Revision Changes Path 1.21 +2 -2 doc/en_US.ISO8859-1/articles/multi-os/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 19: 6:26 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DB45637B417; Fri, 8 Feb 2002 19:06:21 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1936Lq29210; Fri, 8 Feb 2002 19:06:21 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202090306.g1936Lq29210@freefall.freebsd.org> From: Jun Kuriyama Date: Fri, 8 Feb 2002 19:06:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mozilla+ipv6 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/08 19:06:21 PST Modified files: www/mozilla+ipv6 Makefile Log: Fix typo (s/PORTREVION/PORTREVISION/). Revision Changes Path 1.76 +3 -3 ports/www/mozilla+ipv6/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 19:11:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A6DE337B405; Fri, 8 Feb 2002 19:11:30 -0800 (PST) Received: (from nyan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g193BUj29912; Fri, 8 Feb 2002 19:11:30 -0800 (PST) (envelope-from nyan) Message-Id: <200202090311.g193BUj29912@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Fri, 8 Feb 2002 19:11:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/02/08 19:11:30 PST Modified files: (Branch: RELENG_4) etc rc Log: MFC: Use MACHINE_ARCH instead of MACHINE. Revision Changes Path 1.212.2.39 +3 -3 src/etc/rc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 19:12:33 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5CB1337B41A; Fri, 8 Feb 2002 19:12:27 -0800 (PST) Received: (from nyan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g193CRO30044; Fri, 8 Feb 2002 19:12:27 -0800 (PST) (envelope-from nyan) Message-Id: <200202090312.g193CRO30044@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Fri, 8 Feb 2002 19:12:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/fe if_fe_cbus.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/02/08 19:12:27 PST Modified files: (Branch: RELENG_4) sys/dev/fe if_fe_cbus.c Log: MFC: Supported C-NET(98)P2 PnP mode. Revision Changes Path 1.2.2.5 +28 -16 src/sys/dev/fe/if_fe_cbus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 19:57:13 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 80F7937B400; Fri, 8 Feb 2002 19:57:02 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.6/8.11.5) with ESMTP id g193v3b08699; Fri, 8 Feb 2002 22:57:04 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200202090357.g193v3b08699@aldan.algebra.com> Date: Fri, 8 Feb 2002 22:57:00 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: ports/devel/glib13 Makefile ports/devel/glib13/files patch-ag To: ade@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200202081903.g18J3AH17638@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 8 Feb, Ade Lovett wrote: > ade 2002/02/08 11:03:10 PST > > Modified files: > devel/glib13 Makefile > devel/glib13/files patch-ag > Log: > glibconfig.h was getting installed in /, rather than below PREFIX > and was being compensated for by a post-install target. > > Fix the underlying problem, bumping PORTREVISION. Sounds like the resulting package did not change, so the revision bump was not needed. Or am I confused? -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 21:18: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD36737B419; Fri, 8 Feb 2002 21:18:01 -0800 (PST) Received: (from kato@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g195I1448233; Fri, 8 Feb 2002 21:18:01 -0800 (PST) (envelope-from kato) Message-Id: <200202090518.g195I1448233@freefall.freebsd.org> From: KATO Takenori Date: Fri, 8 Feb 2002 21:18:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 identcpu.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kato 2002/02/08 21:18:01 PST Modified files: sys/i386/i386 identcpu.c Log: Recognize VIA C3 Samuel 2. MFC after: 3 days Revision Changes Path 1.99 +6 -4 src/sys/i386/i386/identcpu.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 21:28: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1BFF537B417; Fri, 8 Feb 2002 21:28:03 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g195S3l49360; Fri, 8 Feb 2002 21:28:03 -0800 (PST) (envelope-from kuriyama) Message-Id: <200202090528.g195S3l49360@freefall.freebsd.org> From: Jun Kuriyama Date: Fri, 8 Feb 2002 21:28:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mozilla+ipv6 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/02/08 21:28:03 PST Modified files: www/mozilla+ipv6 Makefile Log: Oops, I committed my local changes accidentally. Also more typo is fixed. Pointy hat to: kuriyama Revision Changes Path 1.77 +3 -3 ports/www/mozilla+ipv6/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 21:43: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8312837B417; Fri, 8 Feb 2002 21:43:04 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g195h4550666; Fri, 8 Feb 2002 21:43:04 -0800 (PST) (envelope-from peter) Message-Id: <200202090543.g195h4550666@freefall.freebsd.org> From: Peter Wemm Date: Fri, 8 Feb 2002 21:43:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 mp_machdep.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/02/08 21:43:04 PST Modified files: (Branch: RELENG_4) sys/i386/i386 mp_machdep.c Log: MFC: 1.172: fix pentium SMP by initializing all of %cr0 (ie: turn on cpu cache etc) Revision Changes Path 1.115.2.11 +11 -1 src/sys/i386/i386/mp_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 22:29: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3FA7037B416; Fri, 8 Feb 2002 22:29:01 -0800 (PST) Received: (from mharo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g196T1V58299; Fri, 8 Feb 2002 22:29:01 -0800 (PST) (envelope-from mharo) Message-Id: <200202090629.g196T1V58299@freefall.freebsd.org> From: Michael Haro Date: Fri, 8 Feb 2002 22:29:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/naim Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mharo 2002/02/08 22:29:01 PST Modified files: net/naim Makefile distinfo Log: update to 0.11.2 Revision Changes Path 1.19 +1 -1 ports/net/naim/Makefile 1.8 +1 -1 ports/net/naim/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 23:30:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D71AD37B41B; Fri, 8 Feb 2002 23:30:17 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g197UHJ67231; Fri, 8 Feb 2002 23:30:17 -0800 (PST) (envelope-from ijliao) Message-Id: <200202090730.g197UHJ67231@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 8 Feb 2002 23:30:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/08 23:30:17 PST Modified files: . modules Log: slffea --> ports/cad/slffea Revision Changes Path 1.4681 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 23:30:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A0DB837B402; Fri, 8 Feb 2002 23:30:11 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g197UBU67196; Fri, 8 Feb 2002 23:30:11 -0800 (PST) (envelope-from ijliao) Message-Id: <200202090730.g197UBU67196@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 8 Feb 2002 23:30:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/cad Makefile ports/cad/slffea Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/08 23:30:11 PST Modified files: cad Makefile Added files: cad/slffea Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add slffea 1.25 San Le's Free Finite Element Analysis Revision Changes Path 1.31 +1 -0 ports/cad/Makefile 1.1 +49 -0 ports/cad/slffea/Makefile (new) 1.1 +1 -0 ports/cad/slffea/distinfo (new) 1.1 +1 -0 ports/cad/slffea/pkg-comment (new) 1.1 +5 -0 ports/cad/slffea/pkg-descr (new) 1.1 +15 -0 ports/cad/slffea/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Feb 8 23:49:28 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E62637B404; Fri, 8 Feb 2002 23:49:25 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g197nOn70627; Fri, 8 Feb 2002 23:49:24 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090749.g197nOn70627@freefall.freebsd.org> From: Kevin Lo Date: Fri, 8 Feb 2002 23:49:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/vicq distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/08 23:49:24 PST Modified files: net/vicq distinfo Log: Update checksum. Security fix $HOME/.vicq will have 0700 permissions while creating. Revision Changes Path 1.4 +1 -1 ports/net/vicq/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 0: 1:16 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1732937B419; Sat, 9 Feb 2002 00:01:11 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1981BM72013; Sat, 9 Feb 2002 00:01:11 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090801.g1981BM72013@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 00:01:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/saxon Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 00:01:10 PST Modified files: textproc/saxon Makefile distinfo pkg-plist Log: - Update to 6.5.1 - Sort @dirrm listing PR: 34745 Submitted by: MAINTAINER Revision Changes Path 1.2 +2 -2 ports/textproc/saxon/Makefile 1.2 +1 -1 ports/textproc/saxon/distinfo 1.2 +38 -39 ports/textproc/saxon/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 0:15:42 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4E5D437B405; Sat, 9 Feb 2002 00:15:38 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g198Fcc77441; Sat, 9 Feb 2002 00:15:38 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090815.g198Fcc77441@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 00:15:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/bgpq Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 00:15:38 PST Modified files: net Makefile Added files: net/bgpq Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Initial import of bgpq 1.0.7.1 This program is a lightweight access- and prefix-list generator for Cisco routers and GateD/Zebra. Access lists are generated based on RADB/RIPE data. PR: 34732 Submitted by: Alexander Snarskii Revision Changes Path 1.709 +1 -0 ports/net/Makefile 1.1 +21 -0 ports/net/bgpq/Makefile (new) 1.1 +1 -0 ports/net/bgpq/distinfo (new) 1.1 +1 -0 ports/net/bgpq/pkg-comment (new) 1.1 +9 -0 ports/net/bgpq/pkg-descr (new) 1.1 +1 -0 ports/net/bgpq/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 0:15:44 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6E98E37B41B; Sat, 9 Feb 2002 00:15:41 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g198FfA77472; Sat, 9 Feb 2002 00:15:41 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090815.g198FfA77472@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 00:15:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 00:15:41 PST Modified files: . modules Log: bgpq --> ports/net/bgpq Revision Changes Path 1.4682 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 0:20:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E0E2F37B41C; Sat, 9 Feb 2002 00:20:42 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g198Kgd78276; Sat, 9 Feb 2002 00:20:42 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090820.g198Kgd78276@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 00:20:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/jgnat Makefile pkg-message pkg-plist ports/lang/jgnat/files patch-a-chahan.adb patch-bindgen.adb patch-exp_ch4.adb patch-gnatbind.adb patch-gnatls.adb patch-make.adb patch-par-ch3.adb patch-par-ch5.adb ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 00:20:42 PST Modified files: lang/jgnat Makefile pkg-message pkg-plist Added files: lang/jgnat/files patch-a-chahan.adb patch-bindgen.adb patch-exp_ch4.adb patch-gnatbind.adb patch-gnatls.adb patch-make.adb patch-par-ch3.adb patch-par-ch5.adb patch-s-imgenu.adb patch-s-imgenu.ads patch-sem_dist.adb patch-sem_res.adb patch-sem_util.adb Log: Update jgnat so it will continue to build with the new compiler which has much stricter Ada 95 style checking. PR: 34749 Submitted by: MAINTAINER Revision Changes Path 1.5 +4 -2 ports/lang/jgnat/Makefile 1.1 +10 -0 ports/lang/jgnat/files/patch-a-chahan.adb (new) 1.1 +15 -0 ports/lang/jgnat/files/patch-bindgen.adb (new) 1.1 +11 -0 ports/lang/jgnat/files/patch-exp_ch4.adb (new) 1.1 +11 -0 ports/lang/jgnat/files/patch-gnatbind.adb (new) 1.1 +11 -0 ports/lang/jgnat/files/patch-gnatls.adb (new) 1.1 +11 -0 ports/lang/jgnat/files/patch-make.adb (new) 1.1 +11 -0 ports/lang/jgnat/files/patch-par-ch3.adb (new) 1.1 +11 -0 ports/lang/jgnat/files/patch-par-ch5.adb (new) 1.1 +133 -0 ports/lang/jgnat/files/patch-s-imgenu.adb (new) 1.1 +81 -0 ports/lang/jgnat/files/patch-s-imgenu.ads (new) 1.1 +20 -0 ports/lang/jgnat/files/patch-sem_dist.adb (new) 1.1 +11 -0 ports/lang/jgnat/files/patch-sem_res.adb (new) 1.1 +11 -0 ports/lang/jgnat/files/patch-sem_util.adb (new) 1.2 +1 -1 ports/lang/jgnat/pkg-message 1.4 +1 -1 ports/lang/jgnat/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 0:40:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BBB3637B41C; Sat, 9 Feb 2002 00:40:30 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g198eUH80607; Sat, 9 Feb 2002 00:40:30 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090840.g198eUH80607@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 00:40:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gnat Makefile distinfo pkg-plist ports/lang/gnat/files patch-ac patch-ah patch-am patch-ao X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 00:40:30 PST Modified files: lang/gnat Makefile distinfo pkg-plist lang/gnat/files patch-ac patch-ah patch-am Added files: lang/gnat/files patch-ao Log: Update to version 3.14p PR: 34670 Submitted by: Joe Marcus Clarke Revision Changes Path 1.28 +10 -2 ports/lang/gnat/Makefile 1.8 +1 -1 ports/lang/gnat/distinfo 1.6 +37 -49 ports/lang/gnat/files/patch-ac 1.2 +11 -19 ports/lang/gnat/files/patch-ah 1.2 +5 -4 ports/lang/gnat/files/patch-am 1.1 +29 -0 ports/lang/gnat/files/patch-ao (new) 1.15 +1115 -1031 ports/lang/gnat/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 0:50:38 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A3BE637B417; Sat, 9 Feb 2002 00:50:34 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g198oYM82021; Sat, 9 Feb 2002 00:50:34 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090850.g198oYM82021@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 00:50:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 00:50:34 PST Modified files: . modules Log: chora --> ports/devel/chora Revision Changes Path 1.4683 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 0:50:39 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A957F37B41A; Sat, 9 Feb 2002 00:50:32 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g198oW781990; Sat, 9 Feb 2002 00:50:32 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090850.g198oW781990@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 00:50:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/chora Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist ports/devel/chora/files httpd.conf.chora patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 00:50:32 PST Modified files: devel Makefile Added files: devel/chora Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist devel/chora/files httpd.conf.chora patch-aa Log: Initial imort of chora 1.0 Chora is the Horde CVS web-viewer. PR: 34651 Submitted by: Thierry Thomas Revision Changes Path 1.752 +1 -0 ports/devel/Makefile 1.1 +75 -0 ports/devel/chora/Makefile (new) 1.1 +1 -0 ports/devel/chora/distinfo (new) 1.1 +27 -0 ports/devel/chora/files/httpd.conf.chora (new) 1.1 +25 -0 ports/devel/chora/files/patch-aa (new) 1.1 +1 -0 ports/devel/chora/pkg-comment (new) 1.1 +16 -0 ports/devel/chora/pkg-descr (new) 1.1 +13 -0 ports/devel/chora/pkg-message (new) 1.1 +147 -0 ports/devel/chora/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 0:57: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E43BD37B405; Sat, 9 Feb 2002 00:56:58 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g198uw883028; Sat, 9 Feb 2002 00:56:58 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090856.g198uw883028@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 00:56:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/palm/jpilot Makefile distinfo pkg-plist ports/palm/jpilot/files patch-Expense_Makefile.in patch-KeyRing_Makefile.in patch-Makefile.in patch-SyncTime_Makefile.in patch-address.c patch-configure patch-configure.in patch-datebook.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 00:56:58 PST Modified files: palm/jpilot Makefile distinfo pkg-plist palm/jpilot/files patch-Expense_Makefile.in patch-Makefile.in patch-SyncTime_Makefile.in patch-configure Added files: palm/jpilot/files patch-KeyRing_Makefile.in Removed files: palm/jpilot/files patch-address.c patch-configure.in patch-datebook.c patch-datebook_gui.c patch-japanese.c patch-memo.c patch-sync.c patch-todo_gui.c patch-utils.c patch-utils.h Log: Update to version 0.99.2 PR: 34679 Submitted by: MAINTAINER Revision Changes Path 1.19 +24 -6 ports/palm/jpilot/Makefile 1.10 +1 -1 ports/palm/jpilot/distinfo 1.2 +11 -17 ports/palm/jpilot/files/patch-Expense_Makefile.in 1.1 +10 -0 ports/palm/jpilot/files/patch-KeyRing_Makefile.in (new) 1.2 +48 -30 ports/palm/jpilot/files/patch-Makefile.in 1.2 +11 -17 ports/palm/jpilot/files/patch-SyncTime_Makefile.in 1.2 +0 -97 ports/palm/jpilot/files/patch-address.c (dead) 1.2 +18 -200 ports/palm/jpilot/files/patch-configure 1.3 +0 -28 ports/palm/jpilot/files/patch-configure.in (dead) 1.2 +0 -120 ports/palm/jpilot/files/patch-datebook.c (dead) 1.2 +0 -47 ports/palm/jpilot/files/patch-datebook_gui.c (dead) 1.2 +0 -157 ports/palm/jpilot/files/patch-japanese.c (dead) 1.2 +0 -86 ports/palm/jpilot/files/patch-memo.c (dead) 1.2 +0 -155 ports/palm/jpilot/files/patch-sync.c (dead) 1.2 +0 -21 ports/palm/jpilot/files/patch-todo_gui.c (dead) 1.2 +0 -70 ports/palm/jpilot/files/patch-utils.c (dead) 1.2 +0 -23 ports/palm/jpilot/files/patch-utils.h (dead) 1.9 +33 -0 ports/palm/jpilot/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 1: 3:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D031437B420; Sat, 9 Feb 2002 01:03:40 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1993ew84107; Sat, 9 Feb 2002 01:03:40 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090903.g1993ew84107@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 01:03:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/bluej Makefile distinfo pkg-plist ports/java/bluej/files bluej.diff X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 01:03:40 PST Modified files: java/bluej Makefile distinfo pkg-plist Added files: java/bluej/files bluej.diff Log: Update to version 1.1.6 PR: 34630 Submitted by: MAINTAINER Revision Changes Path 1.5 +5 -3 ports/java/bluej/Makefile 1.3 +1 -1 ports/java/bluej/distinfo 1.1 +8 -0 ports/java/bluej/files/bluej.diff (new) 1.2 +84 -68 ports/java/bluej/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 1:16: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9EF6E37B421; Sat, 9 Feb 2002 01:16:00 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g199G0A88833; Sat, 9 Feb 2002 01:16:00 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090916.g199G0A88833@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 01:16:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/yorick Makefile distinfo pkg-comment pkg-descr pkg-install pkg-plist ports/lang/yorick/files patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 01:16:00 PST Modified files: lang/yorick Makefile distinfo pkg-comment pkg-descr pkg-plist Added files: lang/yorick pkg-install Removed files: lang/yorick/files patch-ab Log: - Update to 1.5.08 - Takeover maintainership PR: 34616 Submitted by: David H. Munro Revision Changes Path 1.10 +50 -10 ports/lang/yorick/Makefile 1.11 +2 -1 ports/lang/yorick/distinfo 1.2 +0 -18 ports/lang/yorick/files/patch-ab (dead) 1.2 +1 -1 ports/lang/yorick/pkg-comment 1.4 +15 -15 ports/lang/yorick/pkg-descr 1.1 +19 -0 ports/lang/yorick/pkg-install (new) 1.5 +16 -0 ports/lang/yorick/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 1:21:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9EC8537B423; Sat, 9 Feb 2002 01:21:10 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g199LA989565; Sat, 9 Feb 2002 01:21:10 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090921.g199LA989565@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 01:21:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/p5-Config-IniFiles Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 01:21:10 PST Modified files: devel/p5-Config-IniFiles Makefile distinfo Log: Update to vesion 2.27 PR: 34750 Submitted by: Yen-Ming Lee Revision Changes Path 1.21 +2 -2 ports/devel/p5-Config-IniFiles/Makefile 1.8 +1 -1 ports/devel/p5-Config-IniFiles/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 1:21:44 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 75B2137B41A; Sat, 9 Feb 2002 01:21:36 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g199Lau89683; Sat, 9 Feb 2002 01:21:36 -0800 (PST) (envelope-from ijliao) Message-Id: <200202090921.g199Lau89683@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sat, 9 Feb 2002 01:21:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc Makefile ports/misc/cfe Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/09 01:21:36 PST Modified files: misc Makefile Added files: misc/cfe Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add cfe 0.12 Console font editor Revision Changes Path 1.419 +1 -0 ports/misc/Makefile 1.1 +21 -0 ports/misc/cfe/Makefile (new) 1.1 +1 -0 ports/misc/cfe/distinfo (new) 1.1 +1 -0 ports/misc/cfe/pkg-comment (new) 1.1 +7 -0 ports/misc/cfe/pkg-descr (new) 1.1 +1 -0 ports/misc/cfe/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 1:21:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E0C837B416; Sat, 9 Feb 2002 01:21:38 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g199Lc989714; Sat, 9 Feb 2002 01:21:38 -0800 (PST) (envelope-from ijliao) Message-Id: <200202090921.g199Lc989714@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sat, 9 Feb 2002 01:21:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/09 01:21:38 PST Modified files: . modules Log: cfe --> ports/misc/cfe Revision Changes Path 1.4684 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 1:30:41 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AAE7837B423; Sat, 9 Feb 2002 01:30:38 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g199UcX90965; Sat, 9 Feb 2002 01:30:38 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090930.g199UcX90965@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 01:30:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 01:30:38 PST Modified files: . modules Log: jing --> ports/textproc/jing Revision Changes Path 1.4685 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 1:31:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AC11837B405; Sat, 9 Feb 2002 01:30:35 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g199UZX90930; Sat, 9 Feb 2002 01:30:35 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090930.g199UZX90930@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 01:30:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/jing Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 01:30:35 PST Modified files: textproc Makefile Added files: textproc/jing Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Initial import of jing. Jing is a RELAX NG validator in Java. PR: 34581 Submitted by: Kimura Fuyuki Revision Changes Path 1.319 +1 -0 ports/textproc/Makefile 1.1 +43 -0 ports/textproc/jing/Makefile (new) 1.1 +3 -0 ports/textproc/jing/distinfo (new) 1.1 +1 -0 ports/textproc/jing/pkg-comment (new) 1.1 +8 -0 ports/textproc/jing/pkg-descr (new) 1.1 +4 -0 ports/textproc/jing/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 1:38:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A757037B41A; Sat, 9 Feb 2002 01:38:49 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g199cnn92258; Sat, 9 Feb 2002 01:38:49 -0800 (PST) (envelope-from ijliao) Message-Id: <200202090938.g199cnn92258@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sat, 9 Feb 2002 01:38:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/cvsps Makefile distinfo pkg-comment pkg-descr pkg-plist ports/devel/cvsps/files patch-Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/09 01:38:49 PST Modified files: devel Makefile Added files: devel/cvsps Makefile distinfo pkg-comment pkg-descr pkg-plist devel/cvsps/files patch-Makefile Log: add cvsps 1.3 CVS patchsets Revision Changes Path 1.753 +1 -0 ports/devel/Makefile 1.1 +22 -0 ports/devel/cvsps/Makefile (new) 1.1 +1 -0 ports/devel/cvsps/distinfo (new) 1.1 +21 -0 ports/devel/cvsps/files/patch-Makefile (new) 1.1 +1 -0 ports/devel/cvsps/pkg-comment (new) 1.1 +9 -0 ports/devel/cvsps/pkg-descr (new) 1.1 +1 -0 ports/devel/cvsps/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 1:39: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5499437B43E; Sat, 9 Feb 2002 01:38:55 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g199ctX92300; Sat, 9 Feb 2002 01:38:55 -0800 (PST) (envelope-from ijliao) Message-Id: <200202090938.g199ctX92300@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sat, 9 Feb 2002 01:38:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/09 01:38:55 PST Modified files: . modules Log: cvsps --> ports/devel/cvsps Revision Changes Path 1.4686 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 1:45:46 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E6E537B405; Sat, 9 Feb 2002 01:45:41 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g199jfY93470; Sat, 9 Feb 2002 01:45:41 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090945.g199jfY93470@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 01:45:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio Makefile ports/audio/baudline Makefile distinfo pkg-comment pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 01:45:40 PST Modified files: audio Makefile Added files: audio/baudline Makefile distinfo pkg-comment pkg-descr Log: Initial import of baudline 0.88 Baudline is a real-time signal analysis tool and an offline time-frequency browser. PR: 34484 Submitted by: David Yeske Revision Changes Path 1.283 +1 -0 ports/audio/Makefile 1.1 +65 -0 ports/audio/baudline/Makefile (new) 1.1 +1 -0 ports/audio/baudline/distinfo (new) 1.1 +1 -0 ports/audio/baudline/pkg-comment (new) 1.1 +13 -0 ports/audio/baudline/pkg-descr (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 1:45:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 97A8837B416; Sat, 9 Feb 2002 01:45:42 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g199jgi93501; Sat, 9 Feb 2002 01:45:42 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090945.g199jgi93501@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 01:45:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 01:45:42 PST Modified files: . modules Log: baudline --> ports/audio/baudline Revision Changes Path 1.4687 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 1:48:34 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5322337B402; Sat, 9 Feb 2002 01:48:28 -0800 (PST) Received: (from marcel@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g199mSu94125; Sat, 9 Feb 2002 01:48:28 -0800 (PST) (envelope-from marcel) Message-Id: <200202090948.g199mSu94125@freefall.freebsd.org> From: Marcel Moolenaar Date: Sat, 9 Feb 2002 01:48:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml marcel.key pgpkeys.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcel 2002/02/09 01:48:28 PST Modified files: en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml pgpkeys.ent Added files: en_US.ISO8859-1/books/handbook/pgpkeys marcel.key Log: Add my freshly created PGP key. I guess I'd better get used to it :-) Revision Changes Path 1.147 +5 -0 doc/en_US.ISO8859-1/books/handbook/pgpkeys/chapter.sgml 1.1 +36 -0 doc/en_US.ISO8859-1/books/handbook/pgpkeys/marcel.key (new) 1.23 +1 -0 doc/en_US.ISO8859-1/books/handbook/pgpkeys/pgpkeys.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 1:53:58 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D374637B402; Sat, 9 Feb 2002 01:53:54 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g199rsB94696; Sat, 9 Feb 2002 01:53:54 -0800 (PST) (envelope-from kevlo) Message-Id: <200202090953.g199rsB94696@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 01:53:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/jwhois Makefile distinfo pkg-plist ports/net/jwhois/files patch-3.1.0-fix patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 01:53:54 PST Modified files: net/jwhois Makefile distinfo pkg-plist Added files: net/jwhois/files patch-3.1.0-fix patch-ac Log: Update to version 3.1.0 PR: 34751 Submitted by: MAINTAINER Revision Changes Path 1.6 +2 -1 ports/net/jwhois/Makefile 1.4 +1 -1 ports/net/jwhois/distinfo 1.1 +48 -0 ports/net/jwhois/files/patch-3.1.0-fix (new) 1.1 +11 -0 ports/net/jwhois/files/patch-ac (new) 1.4 +3 -0 ports/net/jwhois/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 2: 3:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BDE937B402; Sat, 9 Feb 2002 02:03:44 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19A3iA95831; Sat, 9 Feb 2002 02:03:44 -0800 (PST) (envelope-from kevlo) Message-Id: <200202091003.g19A3iA95831@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 02:03:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 02:03:44 PST Modified files: . modules Log: ngspice_rework --> ports/cad/ngspice_rework Revision Changes Path 1.4688 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 2: 3:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A8C8B37B419; Sat, 9 Feb 2002 02:03:42 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19A3g695782; Sat, 9 Feb 2002 02:03:42 -0800 (PST) (envelope-from kevlo) Message-Id: <200202091003.g19A3g695782@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 02:03:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/cad Makefile ports/cad/ngspice_rework Makefile distinfo pkg-comment pkg-descr pkg-plist ports/cad/ngspice_rework/files patch-configure.in patch-doc:Makefile.in patch-doc:ngspice.texi patch-src:frontend:parser:complete.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 02:03:42 PST Modified files: cad Makefile Added files: cad/ngspice_rework Makefile distinfo pkg-comment pkg-descr pkg-plist cad/ngspice_rework/files patch-configure.in patch-doc:Makefile.in patch-doc:ngspice.texi patch-src:frontend:parser:complete.c Log: Initial import of ngspice_rework Ngspice_rework is a circuit simulator derived from spice3f5. PR: 34589 Submitted by: AMAKAWA Shuhei Revision Changes Path 1.32 +1 -0 ports/cad/Makefile 1.1 +22 -0 ports/cad/ngspice_rework/Makefile (new) 1.1 +1 -0 ports/cad/ngspice_rework/distinfo (new) 1.1 +11 -0 ports/cad/ngspice_rework/files/patch-configure.in (new) 1.1 +11 -0 ports/cad/ngspice_rework/files/patch-doc:Makefile.in (new) 1.1 +14 -0 ports/cad/ngspice_rework/files/patch-doc:ngspice.texi (new) 1.1 +48 -0 ports/cad/ngspice_rework/files/patch-src:frontend:parser:complete.c (new) 1.1 +1 -0 ports/cad/ngspice_rework/pkg-comment (new) 1.1 +9 -0 ports/cad/ngspice_rework/pkg-descr (new) 1.1 +171 -0 ports/cad/ngspice_rework/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 2:11:59 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF03737B402; Sat, 9 Feb 2002 02:11:52 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19ABqU00737; Sat, 9 Feb 2002 02:11:52 -0800 (PST) (envelope-from ijliao) Message-Id: <200202091011.g19ABqU00737@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sat, 9 Feb 2002 02:11:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/09 02:11:52 PST Modified files: . modules Log: googolplex --> ports/net/googolplex Revision Changes Path 1.4689 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 2:12: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E6C237B42A; Sat, 9 Feb 2002 02:11:50 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19ABoO00692; Sat, 9 Feb 2002 02:11:50 -0800 (PST) (envelope-from ijliao) Message-Id: <200202091011.g19ABoO00692@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sat, 9 Feb 2002 02:11:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/googolplex Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/09 02:11:50 PST Modified files: net Makefile Added files: net/googolplex Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add googolplex 0.1.0 Query Google, parse it and returns the result as a list Revision Changes Path 1.710 +1 -0 ports/net/Makefile 1.1 +22 -0 ports/net/googolplex/Makefile (new) 1.1 +1 -0 ports/net/googolplex/distinfo (new) 1.1 +1 -0 ports/net/googolplex/pkg-comment (new) 1.1 +3 -0 ports/net/googolplex/pkg-descr (new) 1.1 +1 -0 ports/net/googolplex/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 2:38:46 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BF5A37B41A; Sat, 9 Feb 2002 02:38:43 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19AchR03213; Sat, 9 Feb 2002 02:38:43 -0800 (PST) (envelope-from cjc) Message-Id: <200202091038.g19AchR03213@freefall.freebsd.org> From: "Crist J. Clark" Date: Sat, 9 Feb 2002 02:38:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc.network X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjc 2002/02/09 02:38:43 PST Modified files: (Branch: RELENG_4) etc rc.network Log: MFC 1.123: peter points out that we probably should not mess with the sysctl(8) values at all if they are not purposefully set. What if the administrator messed with them in /etc/sysctl.conf? We don't want to overwrite them. If 'log_in_vain' is zero, do not force the issue. If it is non-zero, set it. Revision Changes Path 1.74.2.30 +6 -4 src/etc/rc.network To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 2:48:27 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DDA837B402; Sat, 9 Feb 2002 02:48:24 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19AmOg03966; Sat, 9 Feb 2002 02:48:24 -0800 (PST) (envelope-from cjc) Message-Id: <200202091048.g19AmOg03966@freefall.freebsd.org> From: "Crist J. Clark" Date: Sat, 9 Feb 2002 02:48:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet ip_input.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjc 2002/02/09 02:48:24 PST Modified files: (Branch: RELENG_4) sys/netinet ip_input.c Log: MFC 1.190: The ipfw(8) 'tee' action simply hasn't worked on incoming packets for some time. _All_ packets, regardless of destination, were accepted by the machine as if addressed to it. Jump back to 'pass' processing for a teed packet instead of falling through as if it was ours. PR: kern/31130 Revision Changes Path 1.130.2.32 +3 -0 src/sys/netinet/ip_input.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 4: 7: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DCAAA37B41F; Sat, 9 Feb 2002 04:06:58 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19C6wH25180; Sat, 9 Feb 2002 04:06:58 -0800 (PST) (envelope-from dinoex) Message-Id: <200202091206.g19C6wH25180@freefall.freebsd.org> From: Dirk Meyer Date: Sat, 9 Feb 2002 04:06:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gcvs pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/02/09 04:06:58 PST Modified files: devel/gcvs pkg-plist Log: - Add missing files in share/gcvs/ Revision Changes Path 1.2 +7 -0 ports/devel/gcvs/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 4:17:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B7E837B402; Sat, 9 Feb 2002 04:17:38 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19CHcR26290; Sat, 9 Feb 2002 04:17:38 -0800 (PST) (envelope-from dinoex) Message-Id: <200202091217.g19CHcR26290@freefall.freebsd.org> From: Dirk Meyer Date: Sat, 9 Feb 2002 04:17:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/raysfilter Makefile ports/mail/sendmail Makefile ports/mail/sendmail-old Makefile ports/mail/vbsfilter Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/02/09 04:17:38 PST Modified files: mail/raysfilter Makefile mail/sendmail Makefile mail/sendmail-old Makefile mail/vbsfilter Makefile Log: - Change SENDMAIL_WIT_MILTER to SENDMAIL_WITHOUT_MILTER MILTER is build by default in any case now, previosly only when defined in "BATCH". - Add CFLAGS awareness to build, Submitted by: mi P: Revision Changes Path 1.2 +2 -6 ports/mail/raysfilter/Makefile 1.29 +6 -10 ports/mail/sendmail-old/Makefile 1.35 +7 -10 ports/mail/sendmail/Makefile 1.10 +2 -6 ports/mail/vbsfilter/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 4:27:42 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id EDF6337B402; Sat, 9 Feb 2002 04:27:34 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g19CR5S54752; Sat, 9 Feb 2002 15:27:06 +0300 (MSK) (envelope-from ache) Date: Sat, 9 Feb 2002 15:27:04 +0300 From: "Andrey A. Chernov" To: Mark Murray Cc: Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c Message-ID: <20020209122703.GA54722@nagual.pp.ru> References: <200202052336.g15Nals34566@greenpeace.grondar.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200202052336.g15Nals34566@greenpeace.grondar.org> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Feb 05, 2002 at 23:36:42 +0000, Mark Murray wrote: > OK. I have a local patch. As soon as I se that it survives the usual > build, I'll commit it. Mark, where is it? I think about 4 days for usual build is far enough... -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 4:40:27 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D632137B41F; Sat, 9 Feb 2002 04:40:22 -0800 (PST) Received: (from naddy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19CeMN29185; Sat, 9 Feb 2002 04:40:22 -0800 (PST) (envelope-from naddy) Message-Id: <200202091240.g19CeMN29185@freefall.freebsd.org> From: Christian Weisgerber Date: Sat, 9 Feb 2002 04:40:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms/kermit Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2002/02/09 04:40:22 PST Modified files: comms/kermit Makefile Log: Enable HTTP support. Submitted by: olgeni Revision Changes Path 1.26 +2 -1 ports/comms/kermit/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 4:54: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B696437B417; Sat, 9 Feb 2002 04:53:53 -0800 (PST) Received: (from naddy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19CrrM30461; Sat, 9 Feb 2002 04:53:53 -0800 (PST) (envelope-from naddy) Message-Id: <200202091253.g19CrrM30461@freefall.freebsd.org> From: Christian Weisgerber Date: Sat, 9 Feb 2002 04:53:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/calcoo Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2002/02/09 04:53:53 PST Modified files: math/calcoo Makefile distinfo Log: Update to 1.3.6. User-visible changes in this release: * Added option to choose between infinite and four-element stack in RPN mode. * Added option to disable autorelease of arc and hyp buttons. * RPN-related options are now grayed out when the algebraic mode is chosen. * Added shortcut ctrl-q for exit. Revision Changes Path 1.3 +1 -1 ports/math/calcoo/Makefile 1.3 +1 -1 ports/math/calcoo/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 4:57: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DBBBD37B400; Sat, 9 Feb 2002 04:57:01 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19Cv1031186; Sat, 9 Feb 2002 04:57:01 -0800 (PST) (envelope-from ijliao) Message-Id: <200202091257.g19Cv1031186@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sat, 9 Feb 2002 04:57:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/09 04:57:01 PST Modified files: . modules Log: py-twofish --> ports/security/py-twofish Revision Changes Path 1.4690 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 4:57: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AAF0337B41F; Sat, 9 Feb 2002 04:56:58 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19Cuwe31150; Sat, 9 Feb 2002 04:56:58 -0800 (PST) (envelope-from ijliao) Message-Id: <200202091256.g19Cuwe31150@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sat, 9 Feb 2002 04:56:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile ports/security/py-twofish Makefile distinfo pkg-comment pkg-descr pkg-plist ports/security/py-twofish/files patch-Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/09 04:56:58 PST Modified files: security Makefile Added files: security/py-twofish Makefile distinfo pkg-comment pkg-descr pkg-plist security/py-twofish/files patch-Makefile.in Log: add py-twofish 0.7 Twofish cryptographic module for Python Revision Changes Path 1.269 +1 -0 ports/security/Makefile 1.1 +30 -0 ports/security/py-twofish/Makefile (new) 1.1 +1 -0 ports/security/py-twofish/distinfo (new) 1.1 +11 -0 ports/security/py-twofish/files/patch-Makefile.in (new) 1.1 +1 -0 ports/security/py-twofish/pkg-comment (new) 1.1 +5 -0 ports/security/py-twofish/pkg-descr (new) 1.1 +8 -0 ports/security/py-twofish/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 6:12:16 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED28437B41B; Sat, 9 Feb 2002 06:12:09 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19EC9r56962; Sat, 9 Feb 2002 06:12:09 -0800 (PST) (envelope-from des) Message-Id: <200202091412.g19EC9r56962@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 9 Feb 2002 06:12:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/09 06:12:09 PST Modified files: lib/libpam/modules/pam_unix pam_unix.c Log: This file needs . Sponsored by: DARPA, NAI Labs Revision Changes Path 1.22 +1 -0 src/lib/libpam/modules/pam_unix/pam_unix.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 6:40: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.pcnet.com (pcnet1.pcnet.com [204.213.232.3]) by hub.freebsd.org (Postfix) with ESMTP id 5E43237B41A; Sat, 9 Feb 2002 06:40:03 -0800 (PST) Received: from localhost (eischen@localhost) by mail.pcnet.com (8.12.1/8.12.1) with ESMTP id g19Ee2Ho022248; Sat, 9 Feb 2002 09:40:02 -0500 (EST) Date: Sat, 9 Feb 2002 09:40:02 -0500 (EST) From: Daniel Eischen To: Kevin Lo Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/lang/gnat Makefile distinfo pkg-plist ports/lang/gnat/files patch-ac patch-ah patch-am patch-ao In-Reply-To: <200202090840.g198eUH80607@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sat, 9 Feb 2002, Kevin Lo wrote: > kevlo 2002/02/09 00:40:30 PST > > Modified files: > lang/gnat Makefile distinfo pkg-plist > lang/gnat/files patch-ac patch-ah patch-am > Added files: > lang/gnat/files patch-ao > Log: > Update to version 3.14p > > PR: 34670 > Submitted by: Joe Marcus Clarke Umm, I'm the maintainer and I've been updating this myself. I would have appreciated a note saying you were going to do this. The diff that I was going to apply within the next day is at: http://people.freebsd.org/~deischen/gnat-3.14.diff Please see that the above is what gets committed. -- Dan Eischen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 6:42: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D3B537B41B; Sat, 9 Feb 2002 06:41:54 -0800 (PST) Received: (from nsouch@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19Efr134601; Sat, 9 Feb 2002 06:41:53 -0800 (PST) (envelope-from nsouch) Message-Id: <200202091441.g19Efr134601@freefall.freebsd.org> From: Nicolas Souchu Date: Sat, 9 Feb 2002 06:41:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml nsouch.key pgpkeys.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nsouch 2002/02/09 06:41:51 PST Modified files: en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml pgpkeys.ent Added files: en_US.ISO8859-1/books/handbook/pgpkeys nsouch.key Log: Add myself. Revision Changes Path 1.148 +5 -0 doc/en_US.ISO8859-1/books/handbook/pgpkeys/chapter.sgml 1.1 +23 -0 doc/en_US.ISO8859-1/books/handbook/pgpkeys/nsouch.key (new) 1.24 +1 -0 doc/en_US.ISO8859-1/books/handbook/pgpkeys/pgpkeys.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 7: 4:12 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 895C537B416; Sat, 9 Feb 2002 07:04:02 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id CAA19492; Sun, 10 Feb 2002 02:03:59 +1100 Date: Sun, 10 Feb 2002 02:06:41 +1100 (EST) From: Bruce Evans X-X-Sender: To: Mark Murray Cc: , Subject: Re: cvs commit: src/usr.bin/apply Makefile src/usr.bin/ar Makefile src/usr.bin/at Makefile src/usr.bin/banner Makefile src/usr.bin/basename Makefile src/usr.bin/biff Makefile src/u In-Reply-To: <200202082231.g18MVit71986@freefall.freebsd.org> Message-ID: <20020210020103.O3434-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, 8 Feb 2002, Mark Murray wrote: > markm 2002/02/08 14:31:44 PST > > Modified files: > usr.bin/apply Makefile > usr.bin/ar Makefile > usr.bin/at Makefile > usr.bin/banner Makefile > usr.bin/basename Makefile > usr.bin/biff Makefile > usr.bin/brandelf Makefile > usr.bin/c89 Makefile > usr.bin/calendar Makefile > usr.bin/cap_mkdb Makefile > usr.bin/chflags Makefile > usr.bin/chkey Makefile > usr.bin/cksum Makefile > usr.bin/cmp Makefile > usr.bin/col Makefile > usr.bin/colcrt Makefile > usr.bin/colldef Makefile > usr.bin/colrm Makefile > usr.bin/column Makefile > usr.bin/comm Makefile > usr.bin/compress Makefile > usr.bin/ctags Makefile > usr.bin/cut Makefile > usr.bin/dirname Makefile > usr.bin/du Makefile > usr.bin/enigma Makefile > usr.bin/env Makefile > usr.bin/expand Makefile > usr.bin/false Makefile > usr.bin/fetch Makefile > usr.bin/file2c Makefile > usr.bin/finger Makefile > usr.bin/fmt Makefile > usr.bin/fold Makefile > usr.bin/from Makefile > usr.bin/fsync Makefile > usr.bin/gencat Makefile > usr.bin/getopt Makefile > usr.bin/hesinfo Makefile > usr.bin/hexdump Makefile > usr.bin/id Makefile > usr.bin/ipcrm Makefile > usr.bin/jot Makefile > usr.bin/lam Makefile > usr.bin/last Makefile > usr.bin/lastcomm Makefile > usr.bin/leave Makefile > usr.bin/lock Makefile > usr.bin/lockf Makefile > usr.bin/logname Makefile > usr.bin/lsvfs Makefile > usr.bin/mesg Makefile > usr.bin/mkfifo Makefile > usr.bin/mkstr Makefile > usr.bin/mktemp Makefile > usr.bin/msgs Makefile > usr.bin/ncplogin Makefile > usr.bin/newkey Makefile > usr.bin/nice Makefile > usr.bin/nohup Makefile > usr.bin/objformat Makefile > usr.bin/printenv Makefile > usr.bin/printf Makefile > usr.bin/renice Makefile > usr.bin/rev Makefile > Log: > Remove leaf node WARNS?=2 (that mainly I added). This should > help the GCC3 transition and CURRENT in general. Er, I hate WARNS?=any in leaf makefiles, but how do that make any difference for the GCC3 transition. For the transition, you just set WARNS to some harmless value and WARNS?=any doesn't change it. WARNS?=2 is also bogus because someone changed 2 to 4. It's even harder to change 2 to 4 correctly when a lot of places know that it is 2 :-). WARNS=any is not so good. We have a lot of WARNS=0's in leaf makefiles from a previous wrong workaround for GCC3 problems. WARNS=0 mainly breaks setting WARNS to a different value to see if you have got through the transition period. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 7:27:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EFB1D37B41F; Sat, 9 Feb 2002 07:27:17 -0800 (PST) Received: (from demon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19FRHv74857; Sat, 9 Feb 2002 07:27:17 -0800 (PST) (envelope-from demon) Message-Id: <200202091527.g19FRHv74857@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sat, 9 Feb 2002 07:27:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/yaz Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2002/02/09 07:27:17 PST Modified files: net/yaz Makefile distinfo Log: Update to version 1.8.5 Revision Changes Path 1.10 +1 -1 ports/net/yaz/Makefile 1.5 +1 -1 ports/net/yaz/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 7:35:54 2002 Delivered-To: cvs-all@freebsd.org Received: from omega.lovett.com (omega.lovett.com [209.249.90.123]) by hub.freebsd.org (Postfix) with ESMTP id 6576737B400; Sat, 9 Feb 2002 07:35:46 -0800 (PST) Received: from [24.243.55.247] (helo=[10.0.0.2] ident=ident) by omega.lovett.com with asmtp (Exim 3.33 #1) id 16ZZXN-0004G2-00; Sat, 09 Feb 2002 07:35:37 -0800 User-Agent: Microsoft-Entourage/10.0.0.1331 Date: Sat, 09 Feb 2002 09:36:29 -0600 Subject: Re: cvs commit: ports/devel/glib13 Makefile ports/devel/glib13/files patch-ag From: Ade Lovett To: Mikhail Teterin Cc: , Message-ID: In-Reply-To: <200202090357.g193v3b08699@aldan.algebra.com> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 02/08/02 21:57, "Mikhail Teterin" wrote: > On 8 Feb, Ade Lovett wrote: >> ade 2002/02/08 11:03:10 PST >> >> Modified files: >> devel/glib13 Makefile >> devel/glib13/files patch-ag >> Log: >> glibconfig.h was getting installed in /, rather than below PREFIX >> and was being compensated for by a post-install target. >> >> Fix the underlying problem, bumping PORTREVISION. > > Sounds like the resulting package did not change, so the revision bump > was not needed. Or am I confused? The package hasn't changed. The port has (it doesn't leave a /glibconfig.h turd lying around any more). The PORTREVISION bump, and the associated commit message should be a heads-up to those that compile from source. -aDe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 7:51:19 2002 Delivered-To: cvs-all@freebsd.org Received: from mail11.speakeasy.net (mail11.speakeasy.net [216.254.0.211]) by hub.freebsd.org (Postfix) with ESMTP id E38AE37B41A for ; Sat, 9 Feb 2002 07:50:58 -0800 (PST) Received: (qmail 5176 invoked from network); 9 Feb 2002 15:50:58 -0000 Received: from unknown (HELO laptop.baldwin.cx) ([65.91.153.195]) (envelope-sender ) by mail11.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 9 Feb 2002 15:50:58 -0000 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200202090543.g195h4550666@freefall.freebsd.org> Date: Sat, 09 Feb 2002 10:50:56 -0500 (EST) From: John Baldwin To: Peter Wemm Subject: RE: cvs commit: src/sys/i386/i386 mp_machdep.c Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 09-Feb-02 Peter Wemm wrote: > peter 2002/02/08 21:43:04 PST > > Modified files: (Branch: RELENG_4) > sys/i386/i386 mp_machdep.c > Log: > MFC: 1.172: fix pentium SMP by initializing all of %cr0 (ie: turn on > cpu cache etc) Ouch, wish we could have gotten this into 4.5. :-P Perhaps an errata entry with the patch would be appropriate? -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 7:55:26 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id 1E87437B419; Sat, 9 Feb 2002 07:55:09 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g19Ft8819917; Sat, 9 Feb 2002 15:55:08 GMT (envelope-from mark@grondar.za) Received: from greenpeace.grondar.org (greenpeace [192.168.42.2]) by gratis.grondar.org (Postfix) with ESMTP id D214D7B; Sat, 9 Feb 2002 15:54:58 +0000 (GMT) Received: from grondar.za (localhost [127.0.0.1]) by greenpeace.grondar.org (8.11.6/8.11.6) with ESMTP id g19Fsuc44683; Sat, 9 Feb 2002 15:54:57 GMT (envelope-from mark@grondar.za) Message-Id: <200202091554.g19Fsuc44683@greenpeace.grondar.org> To: "Andrey A. Chernov" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c References: <20020209122703.GA54722@nagual.pp.ru> In-Reply-To: <20020209122703.GA54722@nagual.pp.ru> ; from "Andrey A. Chernov" "Sat, 09 Feb 2002 15:27:04 +0300." From: markm@FreeBSD.org Date: Sat, 09 Feb 2002 15:54:51 +0000 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > On Tue, Feb 05, 2002 at 23:36:42 +0000, Mark Murray wrote: > > > OK. I have a local patch. As soon as I se that it survives the usual > > build, I'll commit it. > > Mark, where is it? I think about 4 days for usual build is far enough... Slow down. :-) CURRENT is not being released for months. Carry a local diff if you have a problem. I have other diffs to that file[1], a conference to prepare for and a life to live. It is coming. M [1] I'm now convinced that arc4random is OK (although serious overkill), so I've done a tidy-up to encapsulate it neatly. -- o Mark Murray \_ FreeBSD Services Limited O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 8: 3:26 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ADBC637B419; Sat, 9 Feb 2002 08:03:22 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19G3ML79227; Sat, 9 Feb 2002 08:03:22 -0800 (PST) (envelope-from trevor) Message-Id: <200202091603.g19G3ML79227@freefall.freebsd.org> From: Trevor Johnson Date: Sat, 9 Feb 2002 08:03:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/diffstat Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2002/02/09 08:03:22 PST Modified files: textproc/diffstat Makefile distinfo Log: Update to 1.29. This version supports for bzip2-compressed diffs and is supposed to work better on RCS diffs. Revision Changes Path 1.8 +2 -2 ports/textproc/diffstat/Makefile 1.4 +1 -1 ports/textproc/diffstat/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 8: 4:39 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DAD8137B416; Sat, 9 Feb 2002 08:04:35 -0800 (PST) Received: (from gioria@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19G4Zh79561; Sat, 9 Feb 2002 08:04:35 -0800 (PST) (envelope-from gioria) Message-Id: <200202091604.g19G4Zh79561@freefall.freebsd.org> From: Sebastien Gioria Date: Sat, 9 Feb 2002 08:04:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml gioria.key pgpkeys.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gioria 2002/02/09 08:04:35 PST Modified files: en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml pgpkeys.ent Added files: en_US.ISO8859-1/books/handbook/pgpkeys gioria.key Log: Add myself. Revision Changes Path 1.149 +6 -0 doc/en_US.ISO8859-1/books/handbook/pgpkeys/chapter.sgml 1.1 +63 -0 doc/en_US.ISO8859-1/books/handbook/pgpkeys/gioria.key (new) 1.25 +1 -0 doc/en_US.ISO8859-1/books/handbook/pgpkeys/pgpkeys.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 8:11:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B012D37B416; Sat, 9 Feb 2002 08:11:45 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19GBjZ83811; Sat, 9 Feb 2002 08:11:45 -0800 (PST) (envelope-from des) Message-Id: <200202091611.g19GBjZ83811@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 9 Feb 2002 08:11:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/pgpkeys security-officer.key X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/02/09 08:11:45 PST Modified files: en_US.ISO8859-1/books/handbook/pgpkeys security-officer.key Log: Replace with a copy that has a valid self-signature, and more third-party signatures. Approved by: nectar Revision Changes Path 1.2 +77 -68 doc/en_US.ISO8859-1/books/handbook/pgpkeys/security-officer.key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 8:14:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 411B637B417; Sat, 9 Feb 2002 08:14:25 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19GEPb84212; Sat, 9 Feb 2002 08:14:25 -0800 (PST) (envelope-from dinoex) Message-Id: <200202091614.g19GEPb84212@freefall.freebsd.org> From: Dirk Meyer Date: Sat, 9 Feb 2002 08:14:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/xpcd Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/02/09 08:14:25 PST Modified files: graphics Makefile Added files: graphics/xpcd Makefile distinfo pkg-comment pkg-descr pkg-plist Log: This is a PhotoCD tool collection. This packages core application is a command line tool which can read so-called PhotoCD (*.pcd) images and convert them to PPM or JPEG (pcdtoppm). Also included is a PhotoCD viewing frontend for X (xpcd). Main benefit in this package is that it is capable to open PhotoCD pictures in 3072x2048 pixels resolution and convert them to JPEG, while most of the other applications that I've seen don't go beyond 768x512. This application is also packaged (by other people) into Debian (http://packages.debian.org/stable/graphics/xpcd.html) - Fix pkg-plist, ports installed more files. - set manpages in Makefile - Fix Head of makefile PR: 31539 Submitted by: juha.o.ylitalo@nokia.com Revision Changes Path 1.401 +1 -0 ports/graphics/Makefile 1.1 +29 -0 ports/graphics/xpcd/Makefile (new) 1.1 +1 -0 ports/graphics/xpcd/distinfo (new) 1.1 +1 -0 ports/graphics/xpcd/pkg-comment (new) 1.1 +5 -0 ports/graphics/xpcd/pkg-descr (new) 1.1 +12 -0 ports/graphics/xpcd/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 8:14:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E28D037B41C; Sat, 9 Feb 2002 08:14:28 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19GESL84255; Sat, 9 Feb 2002 08:14:28 -0800 (PST) (envelope-from dinoex) Message-Id: <200202091614.g19GESL84255@freefall.freebsd.org> From: Dirk Meyer Date: Sat, 9 Feb 2002 08:14:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/02/09 08:14:28 PST Modified files: . modules Log: xpcd --> ports/graphics/xpcd Revision Changes Path 1.4691 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 8:39:46 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E0A7F37B404; Sat, 9 Feb 2002 08:39:41 -0800 (PST) Received: (from cy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19GdfT88018; Sat, 9 Feb 2002 08:39:41 -0800 (PST) (envelope-from cy) Message-Id: <200202091639.g19GdfT88018@freefall.freebsd.org> From: Cy Schubert Date: Sat, 9 Feb 2002 08:39:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/squidguard Makefile distinfo pkg-plist pkg-plist.blacklist ports/www/squidguard/files patch-ab patch-ac sgcfg.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cy 2002/02/09 08:39:41 PST Modified files: www/squidguard Makefile distinfo pkg-plist www/squidguard/files patch-ab Added files: www/squidguard pkg-plist.blacklist www/squidguard/files sgcfg.in Removed files: www/squidguard/files patch-ac Log: Update squidguard 1.1.4 -> 1.2.0. PR: ports/33636 Submitted by: MAINTAINER: Dan Larsson Reviewed by: nectar Approved by: MAINTAINER: Dan Larsson Revision Changes Path 1.5 +81 -61 ports/www/squidguard/Makefile 1.2 +1 -1 ports/www/squidguard/distinfo 1.2 +18 -28 ports/www/squidguard/files/patch-ab 1.2 +0 -15 ports/www/squidguard/files/patch-ac (dead) 1.1 +41 -0 ports/www/squidguard/files/sgcfg.in (new) 1.2 +1 -29 ports/www/squidguard/pkg-plist 1.1 +58 -0 ports/www/squidguard/pkg-plist.blacklist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 9:48:35 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 74D7337B405; Sat, 9 Feb 2002 09:48:26 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.11.6/8.11.5) with ESMTP id g19HmUb13945; Sat, 9 Feb 2002 12:48:31 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200202091748.g19HmUb13945@aldan.algebra.com> Date: Sat, 9 Feb 2002 12:48:27 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: ports/devel/glib13 Makefile ports/devel/glib13/files patch-ag To: ade@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: MIME-Version: 1.0 Content-Type: TEXT/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 9 Feb, Ade Lovett wrote: > On 02/08/02 21:57, "Mikhail Teterin" wrote: > >> On 8 Feb, Ade Lovett wrote: >>> ade 2002/02/08 11:03:10 PST >>> >>> Modified files: >>> devel/glib13 Makefile >>> devel/glib13/files patch-ag >>> Log: >>> glibconfig.h was getting installed in /, rather than below PREFIX >>> and was being compensated for by a post-install target. >>> >>> Fix the underlying problem, bumping PORTREVISION. >> Sounds like the resulting package did not change, so the revision >> bump was not needed. Or am I confused? > The package hasn't changed. The port has (it doesn't leave a > /glibconfig.h turd lying around any more). The PORTREVISION bump, and > the associated commit message should be a heads-up to those that > compile from source. It was my understanding, that the PORTREVISION bump is only warranted, when the content of the package, built by default, changes. Trouble with such bumps, is that they can not be safely backed out :-) I don't know, how much value there is in such a heads up -- if I already built the port from source -- I already have the "turd". If not -- I will not after I built from the freshest port. Now a whole lot of people will be upgrading (using portupgrade, which is going to notice the new revision, or whatever) for no reason :-\ -- your update did not change a thing for run-time... Please, be more careful the next time. Thanks, :-) -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 10:17:44 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2028837B402; Sat, 9 Feb 2002 10:17:42 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19IHfJ07323; Sat, 9 Feb 2002 10:17:41 -0800 (PST) (envelope-from petef) Message-Id: <200202091817.g19IHfJ07323@freefall.freebsd.org> From: Pete Fritchman Date: Sat, 9 Feb 2002 10:17:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/napster Makefile distinfo pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/02/09 10:17:41 PST Modified files: audio/napster Makefile distinfo pkg-descr Log: - update to 1.4.8 - update WWW: tag to new homepage - use my FreeBSD.org email address in pkg-descr PR: 34748 Submitted by: Vladimir Savichev Revision Changes Path 1.19 +1 -1 ports/audio/napster/Makefile 1.9 +1 -1 ports/audio/napster/distinfo 1.6 +2 -4 ports/audio/napster/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 10:31:32 2002 Delivered-To: cvs-all@freebsd.org Received: from omega.lovett.com (omega.lovett.com [209.249.90.123]) by hub.freebsd.org (Postfix) with ESMTP id C62B137B41C; Sat, 9 Feb 2002 10:31:28 -0800 (PST) Received: from [24.243.55.247] (helo=[10.0.0.2] ident=ident) by omega.lovett.com with asmtp (Exim 3.33 #1) id 16ZcHQ-0004RG-00; Sat, 09 Feb 2002 10:31:20 -0800 User-Agent: Microsoft-Entourage/10.0.0.1331 Date: Sat, 09 Feb 2002 12:32:03 -0600 Subject: Re: cvs commit: ports/devel/glib13 Makefile ports/devel/glib13/files patch-ag From: Ade Lovett To: Mikhail Teterin Cc: , Message-ID: In-Reply-To: <200202091748.g19HmUb13945@aldan.algebra.com> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 02/09/02 11:48, "Mikhail Teterin" wrote: > Now a whole lot of people will be upgrading (using portupgrade, which is > going to notice the new revision, or whatever) for no reason :-\ -- your > update did not change a thing for run-time... Yup. Users of all 3 ports which depend on devel/glib13 (ie: x11-toolkits/gtk13 and dependencies) will indeed have to upgrade to get rid of the turd. Better now than when GNOME2 is in the tree -- it helps to have "clean" ports (no turds), especially the further down into the dependency chain, which can get absolutely huge. Now, please run along and find something more useful to do than your continual harassment of other committers over trivial issues. Thanks. -aDe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 10:33:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EA93437B41C; Sat, 9 Feb 2002 10:33:26 -0800 (PST) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19IXQG09029; Sat, 9 Feb 2002 10:33:26 -0800 (PST) (envelope-from anders) Message-Id: <200202091833.g19IXQG09029@freefall.freebsd.org> From: Anders Nordby Date: Sat, 9 Feb 2002 10:33:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gxanim Makefile distinfo pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anders 2002/02/09 10:33:26 PST Modified files: graphics/gxanim Makefile distinfo pkg-descr Log: Update maintainer e-mail address and MASTER_SITES. Add WWW: in pkg-descr. Submitted by: maintainer Revision Changes Path 1.6 +5 -4 ports/graphics/gxanim/Makefile 1.3 +1 -1 ports/graphics/gxanim/distinfo 1.3 +2 -0 ports/graphics/gxanim/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 10:40:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 25BC837B404; Sat, 9 Feb 2002 10:40:10 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19IeAp10062; Sat, 9 Feb 2002 10:40:10 -0800 (PST) (envelope-from ijliao) Message-Id: <200202091840.g19IeAp10062@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sat, 9 Feb 2002 10:40:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/py-ciphon Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/09 10:40:10 PST Modified files: devel Makefile Added files: devel/py-ciphon Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add py-ciphon 0.3.5 A module for python that adds cpan-like functionality Revision Changes Path 1.754 +1 -0 ports/devel/Makefile 1.1 +31 -0 ports/devel/py-ciphon/Makefile (new) 1.1 +1 -0 ports/devel/py-ciphon/distinfo (new) 1.1 +1 -0 ports/devel/py-ciphon/pkg-comment (new) 1.1 +1 -0 ports/devel/py-ciphon/pkg-descr (new) 1.1 +16 -0 ports/devel/py-ciphon/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 10:40:16 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EBA8637B416; Sat, 9 Feb 2002 10:40:11 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19IeBl10105; Sat, 9 Feb 2002 10:40:11 -0800 (PST) (envelope-from ijliao) Message-Id: <200202091840.g19IeBl10105@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sat, 9 Feb 2002 10:40:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/09 10:40:11 PST Modified files: . modules Log: py-ciphon --> ports/devel/py-ciphon Revision Changes Path 1.4692 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 11:19:50 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 43A9337B416; Sat, 9 Feb 2002 11:19:47 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19JJlW18583; Sat, 9 Feb 2002 11:19:47 -0800 (PST) (envelope-from ijliao) Message-Id: <200202091919.g19JJlW18583@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sat, 9 Feb 2002 11:19:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/netmap Makefile distinfo pkg-comment pkg-descr pkg-plist ports/net/netmap/files patch-netmap::lookup.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/09 11:19:47 PST Modified files: net Makefile Added files: net/netmap Makefile distinfo pkg-comment pkg-descr pkg-plist net/netmap/files patch-netmap::lookup.c Log: add netmap 0.1.2b Make a graphical representation of the surounding network Revision Changes Path 1.711 +1 -0 ports/net/Makefile 1.1 +25 -0 ports/net/netmap/Makefile (new) 1.1 +1 -0 ports/net/netmap/distinfo (new) 1.1 +11 -0 ports/net/netmap/files/patch-netmap::lookup.c (new) 1.1 +1 -0 ports/net/netmap/pkg-comment (new) 1.1 +5 -0 ports/net/netmap/pkg-descr (new) 1.1 +2 -0 ports/net/netmap/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 11:20:16 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D8DD37B43A; Sat, 9 Feb 2002 11:19:58 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19JJwD18666; Sat, 9 Feb 2002 11:19:58 -0800 (PST) (envelope-from ijliao) Message-Id: <200202091919.g19JJwD18666@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sat, 9 Feb 2002 11:19:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/09 11:19:57 PST Modified files: . modules Log: netmap --> ports/net/netmap Revision Changes Path 1.4693 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 11:49: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2FADA37B404; Sat, 9 Feb 2002 11:48:56 -0800 (PST) Received: (from deischen@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19JmuI24472; Sat, 9 Feb 2002 11:48:56 -0800 (PST) (envelope-from deischen) Message-Id: <200202091948.g19JmuI24472@freefall.freebsd.org> From: Daniel Eischen Date: Sat, 9 Feb 2002 11:48:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread uthread_sendfile.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG deischen 2002/02/09 11:48:56 PST Modified files: lib/libc_r/uthread uthread_sendfile.c Log: Silence a warning by initializing the return value. This wasn't set in the case of a short write, and I think returning 0 for this is what was intended. Revision Changes Path 1.8 +3 -2 src/lib/libc_r/uthread/uthread_sendfile.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 11:58:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B232E37B41B; Sat, 9 Feb 2002 11:58:41 -0800 (PST) Received: (from deischen@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19JwfU27026; Sat, 9 Feb 2002 11:58:41 -0800 (PST) (envelope-from deischen) Message-Id: <200202091958.g19JwfU27026@freefall.freebsd.org> From: Daniel Eischen Date: Sat, 9 Feb 2002 11:58:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread pthread_private.h uthread_create.c uthread_init.c uthread_kern.c uthread_sig.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG deischen 2002/02/09 11:58:41 PST Modified files: lib/libc_r/uthread pthread_private.h uthread_create.c uthread_init.c uthread_kern.c uthread_sig.c Log: This has been sitting in my local tree long enough. Remove the use of an alternate signal stack for handling signals. Let the kernel send signals on the stack of the current thread and teach the threads signal handler how to deliver signals to the current thread if it needs to. Also, always store a threads context as a jmp_buf. Eventually this will change to be a ucontext_t or mcontext_t. Other small nits. Use struct pthread * instead of pthread_t in internal library routines. The threads code wants struct pthread *, and pthread_t doesn't necessarily have to be the same. Reviewed by: jasone Revision Changes Path 1.66 +9 -46 src/lib/libc_r/uthread/pthread_private.h 1.32 +1 -9 src/lib/libc_r/uthread/uthread_create.c 1.37 +0 -12 src/lib/libc_r/uthread/uthread_init.c 1.40 +56 -84 src/lib/libc_r/uthread/uthread_kern.c 1.40 +102 -118 src/lib/libc_r/uthread/uthread_sig.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 12:12:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BB8C37B41C; Sat, 9 Feb 2002 12:12:29 -0800 (PST) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19KCTl32709; Sat, 9 Feb 2002 12:12:29 -0800 (PST) (envelope-from joe) Message-Id: <200202092012.g19KCTl32709@freefall.freebsd.org> From: Josef Karthauser Date: Sat, 9 Feb 2002 12:12:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2002/02/09 12:12:29 PST Modified files: (Branch: RELENG_4) sys/dev/usb usbdevs Log: MFC: revs 1.73 - 1.76 Sync with NetBSD's version, dropping all the 'ltd', 'corp', etc. Add some missing usb vendors. Update comments and product ideas so that they're the same as NetBSD's defintions. Revision Changes Path 1.11.2.18 +168 -152 src/sys/dev/usb/usbdevs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 12:42: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D01C37B404; Sat, 9 Feb 2002 12:41:59 -0800 (PST) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19KfxM36001; Sat, 9 Feb 2002 12:41:59 -0800 (PST) (envelope-from alc) Message-Id: <200202092041.g19KfxM36001@freefall.freebsd.org> From: Alan Cox Date: Sat, 9 Feb 2002 12:41:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_aio.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2002/02/09 12:41:59 PST Modified files: (Branch: RELENG_4) sys/kern vfs_aio.c Log: MFC o [Revision 1.113] Remove JOBST_JOBQPROC and the per-thread jobtorun queue. They're not used. Use TAILQ_EMPTY() instead of TAILQ_FIRST(...) == NULL. o [Revision 1.111] Eliminate an unused parameter from aio_fphysio(). o [Revision 1.104] Eliminate the unnecessary initialization of several static variables to zero. Revision Changes Path 1.70.2.14 +7 -21 src/sys/kern/vfs_aio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 13:16:58 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2F2FD37B405; Sat, 9 Feb 2002 13:16:55 -0800 (PST) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19LGtx44216; Sat, 9 Feb 2002 13:16:55 -0800 (PST) (envelope-from jhb) Message-Id: <200202092116.g19LGtx44216@freefall.freebsd.org> From: John Baldwin Date: Sat, 9 Feb 2002 13:16:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc MAKEDEV X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2002/02/09 13:16:55 PST Modified files: etc MAKEDEV Log: Fix MAKEDEV for RocketPort (rp(4)) cuaR* and ttyR* to work with the updated driver. The newer driver in current outputs a version string that contains a space, so we need to eat two words in between RocketPortX and the number of ports on the board. Revision Changes Path 1.321 +3 -3 src/etc/MAKEDEV To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 13:32: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 551CA37B400; Sat, 9 Feb 2002 13:32:02 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19LW2x45725; Sat, 9 Feb 2002 13:32:02 -0800 (PST) (envelope-from imp) Message-Id: <200202092132.g19LW2x45725@freefall.freebsd.org> From: Warner Losh Date: Sat, 9 Feb 2002 13:32:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pci pci_pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/09 13:32:02 PST Modified files: sys/dev/pci pci_pci.c Log: Make unsupported memory range message bootverbose only Revision Changes Path 1.8 +7 -4 src/sys/dev/pci/pci_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 13:34:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE7D337B41A; Sat, 9 Feb 2002 13:34:06 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19LY6A45926; Sat, 9 Feb 2002 13:34:06 -0800 (PST) (envelope-from imp) Message-Id: <200202092134.g19LY6A45926@freefall.freebsd.org> From: Warner Losh Date: Sat, 9 Feb 2002 13:34:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccard pccard.c pccard_cis_quirks.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/09 13:34:06 PST Modified files: sys/dev/pccard pccard.c pccard_cis_quirks.c Log: Boot verbosify printing the CIS, since we don't normally need to do that. Revision Changes Path 1.51 +1 -7 src/sys/dev/pccard/pccard.c 1.7 +1 -1 src/sys/dev/pccard/pccard_cis_quirks.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 14:42:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 39BAF37B417; Sat, 9 Feb 2002 14:42:45 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19MgjS56054; Sat, 9 Feb 2002 14:42:45 -0800 (PST) (envelope-from obrien) Message-Id: <200202092242.g19MgjS56054@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 9 Feb 2002 14:42:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/vim Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/02/09 14:42:45 PST Modified files: editors/vim Makefile distinfo Log: Update to Vim 6.0 patchlevel 204 Revision Changes Path 1.174 +2 -2 ports/editors/vim/Makefile 1.107 +18 -0 ports/editors/vim/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 15: 2:56 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3293737B400; Sat, 9 Feb 2002 15:02:41 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19N2f658919; Sat, 9 Feb 2002 15:02:41 -0800 (PST) (envelope-from luigi) Message-Id: <200202092302.g19N2f658919@freefall.freebsd.org> From: Luigi Rizzo Date: Sat, 9 Feb 2002 15:02:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_clock.c kern_poll.c src/sys/conf files.i386 options.i386 src/sys/i386/i386 swtch.s trap.c src/sys/i386/include asnames.h src/sys/net if.h if_var.h netisr.h src/sys/dev/fxp if_fxp.c if_fxpvar.h src/sys/pci if_dc.c ... X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG luigi 2002/02/09 15:02:41 PST Modified files: (Branch: RELENG_4) sys/kern kern_clock.c sys/conf files.i386 options.i386 sys/i386/i386 swtch.s trap.c sys/i386/include asnames.h sys/net if.h if_var.h netisr.h sys/dev/fxp if_fxp.c if_fxpvar.h sys/pci if_dc.c if_dcreg.h if_sis.c if_sisreg.h Added files: (Branch: RELENG_4) sys/kern kern_poll.c Log: MFC: device polling code for RELENG_4. Most of the code resides in kern_poll.c, plus device driver modifications to individual drivers to add the *_poll() handler, plus mostly one-line changes to a bunch of other files (listed at the end of this message) to define constants or call the appropriate functions. A device_poll(4) manpage is still missing. It should contain an explaination of what DEVICE_POLLING does, which you can find at http://info.iet.unipi.it/~luigi/polling/ To use this facility: add options DEVICE_POLLING to your kernel config file, and at runtime do sysctl kern.polling.enable=1 At the moment only the "dc", "fxp" and "sis" drivers have been modified to make use of this feature. More drivers will be modified as i have a chance to test them (patches welcome, look at the changes in the above drivers). Work supported by: the Xorp Project (www.xorp.org) sys/kern/kern_poll.c the core of the polling procedures sys/conf/files.i386 kern/kern_poll.c optional device_polling sys/conf/options.i386 DEVICE_POLLING opt_global.h sys/i386/i386/swtch.s hook to poll in the idle loop sys/i386/i386/trap.c hook to poll in traps sys/i386/include/asnames.h #define _idle_poll idle_poll sys/kern/kern_clock.c calls to init and periodic poll handlers sys/net/if.h #define IFF_POLLING 0x10000 sys/net/if_var.h prototypes for functions used in device drivers sys/net/netisr.h NETISR_POLL and NETISR_POLLMORE, renumber NETISR_NETGRAPH (not objected by julian) sys/dev/fxp/if_fxp.c sys/dev/fxp/if_fxpvar.h sys/pci/if_dc.c sys/pci/if_dcreg.h sys/pci/if_sis.c sys/pci/if_sisreg.h device driver modifications Revision Changes Path 1.307.2.20 +1 -0 src/sys/conf/files.i386 1.132.2.12 +5 -0 src/sys/conf/options.i386 1.110.2.17 +70 -2 src/sys/dev/fxp/if_fxp.c 1.17.2.5 +4 -0 src/sys/dev/fxp/if_fxpvar.h 1.89.2.7 +4 -0 src/sys/i386/i386/swtch.s 1.147.2.9 +10 -0 src/sys/i386/i386/trap.c 1.44.2.6 +1 -0 src/sys/i386/include/asnames.h 1.105.2.8 +13 -0 src/sys/kern/kern_clock.c 1.2.2.1 +487 -0 src/sys/kern/kern_poll.c (new) 1.58.2.7 +9 -0 src/sys/net/if.h 1.18.2.12 +8 -1 src/sys/net/if_var.h 1.21.2.5 +3 -1 src/sys/net/netisr.h 1.9.2.32 +83 -0 src/sys/pci/if_dc.c 1.4.2.15 +4 -0 src/sys/pci/if_dcreg.h 1.13.4.19 +80 -3 src/sys/pci/if_sis.c 1.1.4.9 +3 -0 src/sys/pci/if_sisreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 15: 5:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4E3F437B41A; Sat, 9 Feb 2002 15:05:09 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19N59U72899; Sat, 9 Feb 2002 15:05:09 -0800 (PST) (envelope-from pat) Message-Id: <200202092305.g19N59U72899@freefall.freebsd.org> From: Patrick Li Date: Sat, 9 Feb 2002 15:05:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/yabasic Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/09 15:05:09 PST Modified files: lang/yabasic Makefile distinfo Log: Update to 2.712 PR: 34772 Submitted by: KATO Tsuguru Revision Changes Path 1.14 +1 -1 ports/lang/yabasic/Makefile 1.13 +1 -1 ports/lang/yabasic/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 15: 6:23 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6EC4937B417; Sat, 9 Feb 2002 15:06:17 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19N6HA85406; Sat, 9 Feb 2002 15:06:17 -0800 (PST) (envelope-from pat) Message-Id: <200202092306.g19N6HA85406@freefall.freebsd.org> From: Patrick Li Date: Sat, 9 Feb 2002 15:06:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/smalltalk Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/09 15:06:17 PST Modified files: lang/smalltalk Makefile distinfo pkg-plist Log: Update to 1.95.10 PR: 34771 Submitted by: KATO Tsuguru Revision Changes Path 1.36 +1 -1 ports/lang/smalltalk/Makefile 1.13 +1 -1 ports/lang/smalltalk/distinfo 1.13 +0 -3 ports/lang/smalltalk/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 15:12:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 328B237B429; Sat, 9 Feb 2002 15:11:59 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19NBx738518; Sat, 9 Feb 2002 15:11:59 -0800 (PST) (envelope-from pat) Message-Id: <200202092311.g19NBx738518@freefall.freebsd.org> From: Patrick Li Date: Sat, 9 Feb 2002 15:11:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/q3server-ut Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/09 15:11:59 PST Modified files: games/q3server-ut Makefile distinfo pkg-plist Log: Update to 2.4 Revision Changes Path 1.4 +11 -12 ports/games/q3server-ut/Makefile 1.3 +1 -2 ports/games/q3server-ut/distinfo 1.3 +5 -4 ports/games/q3server-ut/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 15:27:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1EEEB37B419; Sat, 9 Feb 2002 15:27:52 -0800 (PST) Received: (from wosch@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19NRq664309; Sat, 9 Feb 2002 15:27:52 -0800 (PST) (envelope-from wosch) Message-Id: <200202092327.g19NRq664309@freefall.freebsd.org> From: Wolfram Schneider Date: Sat, 9 Feb 2002 15:27:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/search site.map X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wosch 2002/02/09 15:27:52 PST Modified files: en/search site.map Log: Fix link to Supported Hardware. Submitted by: Stacy Trippe Revision Changes Path 1.17 +2 -2 www/en/search/site.map To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 15:28:53 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 04FA237B416; Sat, 9 Feb 2002 15:28:48 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19NSlN73143; Sat, 9 Feb 2002 15:28:47 -0800 (PST) (envelope-from pat) Message-Id: <200202092328.g19NSlN73143@freefall.freebsd.org> From: Patrick Li Date: Sat, 9 Feb 2002 15:28:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/sane-backends Makefile distinfo pkg-plist ports/graphics/sane-backends/files patch-doc_Makefile.in ports/graphics/sane-frontends Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/09 15:28:47 PST Modified files: graphics/sane-backends Makefile distinfo pkg-plist graphics/sane-backends/files patch-doc_Makefile.in graphics/sane-frontends Makefile distinfo pkg-plist Log: Update to 1.07 PR: 34768, 34769 Submitted by: KATO Tsuguru Revision Changes Path 1.35 +15 -12 ports/graphics/sane-backends/Makefile 1.12 +1 -1 ports/graphics/sane-backends/distinfo 1.2 +22 -8 ports/graphics/sane-backends/files/patch-doc_Makefile.in 1.24 +7 -4 ports/graphics/sane-backends/pkg-plist 1.37 +2 -2 ports/graphics/sane-frontends/Makefile 1.12 +1 -1 ports/graphics/sane-frontends/distinfo 1.19 +1 -0 ports/graphics/sane-frontends/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 15:32: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 81CC937B41A; Sat, 9 Feb 2002 15:31:58 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19NVwm93834; Sat, 9 Feb 2002 15:31:58 -0800 (PST) (envelope-from pat) Message-Id: <200202092331.g19NVwm93834@freefall.freebsd.org> From: Patrick Li Date: Sat, 9 Feb 2002 15:31:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/epstool Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/09 15:31:58 PST Modified files: graphics/epstool Makefile distinfo Log: Update to 2.10 PR: 34767 Submitted by: KATO Tsuguru Revision Changes Path 1.10 +2 -2 ports/graphics/epstool/Makefile 1.7 +1 -1 ports/graphics/epstool/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 15:43:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D53FC37B402; Sat, 9 Feb 2002 15:43:40 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g19NheM59763; Sat, 9 Feb 2002 15:43:40 -0800 (PST) (envelope-from pat) Message-Id: <200202092343.g19NheM59763@freefall.freebsd.org> From: Patrick Li Date: Sat, 9 Feb 2002 15:43:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/unixODBC Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/09 15:43:40 PST Modified files: databases/unixODBC Makefile distinfo pkg-plist Log: Update to 2.2.0 PR: 34766 Submitted by: KATO Tsuguru Revision Changes Path 1.24 +1 -1 ports/databases/unixODBC/Makefile 1.13 +1 -1 ports/databases/unixODBC/distinfo 1.11 +0 -2 ports/databases/unixODBC/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 16:29:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 88EE037B417; Sat, 9 Feb 2002 16:29:29 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A0TTn19785; Sat, 9 Feb 2002 16:29:29 -0800 (PST) (envelope-from pat) Message-Id: <200202100029.g1A0TTn19785@freefall.freebsd.org> From: Patrick Li Date: Sat, 9 Feb 2002 16:29:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/delay Makefile distinfo pkg-descr ports/misc/delay/files patch-aa patch-ab patch-ac patch-ad X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/09 16:29:29 PST Modified files: misc/delay Makefile distinfo pkg-descr Removed files: misc/delay/files patch-aa patch-ab patch-ac patch-ad Log: Update to 1.5 PR: 34752, 34753 Submitted by: maintainer Revision Changes Path 1.9 +4 -4 ports/misc/delay/Makefile 1.4 +1 -1 ports/misc/delay/distinfo 1.2 +0 -19 ports/misc/delay/files/patch-aa (dead) 1.2 +0 -44 ports/misc/delay/files/patch-ab (dead) 1.2 +0 -13 ports/misc/delay/files/patch-ac (dead) 1.2 +0 -13 ports/misc/delay/files/patch-ad (dead) 1.3 +2 -5 ports/misc/delay/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 16:33:42 2002 Delivered-To: cvs-all@freebsd.org Received: from totem.fix.no (totem.fix.no [80.91.32.29]) by hub.freebsd.org (Postfix) with ESMTP id 319F537B416; Sat, 9 Feb 2002 16:33:39 -0800 (PST) Received: by totem.fix.no (Postfix, from userid 1000) id B6B603CCC; Sun, 10 Feb 2002 01:33:46 +0100 (CET) Date: Sun, 10 Feb 2002 01:33:46 +0100 From: Anders Nordby To: "Andrey A. Chernov" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc group master.passwd Message-ID: <20020210003346.GA88775@totem.fix.no> References: <200110250327.f9P3RGu93843@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200110250327.f9P3RGu93843@freefall.freebsd.org> User-Agent: Mutt/1.3.26i X-message-flag: Outlook : A program to spread viri, but it can do mail too. X-PGP-Key: http://anders.fix.no/pgp/ X-PGP-Key-FingerPrint: 1E0F C53C D8DF 6A8F EAAD 19C5 D12A BC9F 0083 5956 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Oct 24, 2001 at 08:27:16PM -0700, Andrey A. Chernov wrote: > Re-commit www:www > > Approved by: arch discussion from Oct 20 > MFC after: 3 days Could you please MFC or remove www:www? It would be nice to have this user and group in both -stable and -current (or not). Cheers, -- Anders. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 16:45: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C219837B404; Sat, 9 Feb 2002 16:44:59 -0800 (PST) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A0ixV78475; Sat, 9 Feb 2002 16:44:59 -0800 (PST) (envelope-from anders) Message-Id: <200202100044.g1A0ixV78475@freefall.freebsd.org> From: Anders Nordby Date: Sat, 9 Feb 2002 16:44:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail Makefile ports/mail/squirrelmail Makefile distinfo pkg-comment pkg-descr pkg-install pkg-message pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anders 2002/02/09 16:44:59 PST Modified files: mail Makefile Added files: mail/squirrelmail Makefile distinfo pkg-comment pkg-descr pkg-install pkg-message pkg-plist Log: Add squirrelmail, a PHP based webmail package. Submitted by: Simon Dick Revision Changes Path 1.284 +1 -0 ports/mail/Makefile 1.1 +33 -0 ports/mail/squirrelmail/Makefile (new) 1.1 +1 -0 ports/mail/squirrelmail/distinfo (new) 1.1 +1 -0 ports/mail/squirrelmail/pkg-comment (new) 1.1 +12 -0 ports/mail/squirrelmail/pkg-descr (new) 1.1 +37 -0 ports/mail/squirrelmail/pkg-install (new) 1.1 +9 -0 ports/mail/squirrelmail/pkg-message (new) 1.1 +561 -0 ports/mail/squirrelmail/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 16:45: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 06F0E37B41A; Sat, 9 Feb 2002 16:45:02 -0800 (PST) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A0j1F78589; Sat, 9 Feb 2002 16:45:01 -0800 (PST) (envelope-from anders) Message-Id: <200202100045.g1A0j1F78589@freefall.freebsd.org> From: Anders Nordby Date: Sat, 9 Feb 2002 16:45:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anders 2002/02/09 16:45:01 PST Modified files: . modules Log: squirrelmail --> ports/mail/squirrelmail Revision Changes Path 1.4694 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 16:55:53 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 80AE437B417; Sat, 9 Feb 2002 16:55:49 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A0tnI58732; Sat, 9 Feb 2002 16:55:49 -0800 (PST) (envelope-from phk) Message-Id: <200202100055.g1A0tnI58732@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sat, 9 Feb 2002 16:55:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ufs dinode.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/02/09 16:55:49 PST Modified files: sys/ufs/ufs dinode.h Log: Remove di_inumber since LFS is long gone. Revision Changes Path 1.8 +0 -2 src/sys/ufs/ufs/dinode.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 16:57: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 17A9537B416; Sat, 9 Feb 2002 16:56:58 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A0uw869103; Sat, 9 Feb 2002 16:56:58 -0800 (PST) (envelope-from pat) Message-Id: <200202100056.g1A0uw869103@freefall.freebsd.org> From: Patrick Li Date: Sat, 9 Feb 2002 16:56:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/pic2fig Makefile ports/print/pic2fig/files patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/09 16:56:58 PST Modified files: print/pic2fig Makefile print/pic2fig/files patch-ab Log: - Fix translation of dashed or dotted lines - Bump PORTREVISION PR: 34678 Submitted by: maintainer Revision Changes Path 1.3 +2 -1 ports/print/pic2fig/Makefile 1.2 +7 -8 ports/print/pic2fig/files/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 16:57:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1329037B41A; Sat, 9 Feb 2002 16:57:46 -0800 (PST) Received: (from deischen@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A0vk774302; Sat, 9 Feb 2002 16:57:46 -0800 (PST) (envelope-from deischen) Message-Id: <200202100057.g1A0vk774302@freefall.freebsd.org> From: Daniel Eischen Date: Sat, 9 Feb 2002 16:57:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gnat Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG deischen 2002/02/09 16:57:46 PST Modified files: lang/gnat Makefile pkg-plist Log: Always remove the .orig files from the examples directory; there's no sense in muddying up the Makefile with checks for NOPORTDOCS just to remove the copy of one patched file. Make the package list be in alphabetical order for directories with lots of files in them; this allows one to do `/bin/ls -1` to generate the package list and produce (hopefully) smaller diffs for subsequent versions. Revision Changes Path 1.29 +3 -4 ports/lang/gnat/Makefile 1.16 +1076 -1074 ports/lang/gnat/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 17: 5:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B99FA37B416; Sat, 9 Feb 2002 17:05:17 -0800 (PST) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A15Hf31764; Sat, 9 Feb 2002 17:05:17 -0800 (PST) (envelope-from alc) Message-Id: <200202100105.g1A15Hf31764@freefall.freebsd.org> From: Alan Cox Date: Sat, 9 Feb 2002 17:05:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_aio.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2002/02/09 17:05:17 PST Modified files: (Branch: RELENG_4) sys/kern vfs_aio.c Log: MFC: [Revision 1.107] o Properly check the file descriptor passed to aio_cancel(2). Eliminate some excessive white space from aio_cancel(2). Revision Changes Path 1.70.2.15 +3 -14 src/sys/kern/vfs_aio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 17:10:29 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4769C37B402; Sat, 9 Feb 2002 17:10:22 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A1AMb77525; Sat, 9 Feb 2002 17:10:22 -0800 (PST) (envelope-from pat) Message-Id: <200202100110.g1A1AMb77525@freefall.freebsd.org> From: Patrick Li Date: Sat, 9 Feb 2002 17:10:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/quakeforge Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/09 17:10:22 PST Modified files: games/quakeforge Makefile Log: Fix automake problems Caught by: bento PR: 33824 Submitted by: Oliver Lehmann Revision Changes Path 1.23 +1 -1 ports/games/quakeforge/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 17:18:45 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AB05A37B405; Sat, 9 Feb 2002 17:18:41 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A1IfA36480; Sat, 9 Feb 2002 17:18:41 -0800 (PST) (envelope-from pat) Message-Id: <200202100118.g1A1IfA36480@freefall.freebsd.org> From: Patrick Li Date: Sat, 9 Feb 2002 17:18:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/newmat distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/02/09 17:18:41 PST Modified files: math/newmat distinfo Log: Chase the checksum - Minor bug and documentation typos fixed PR: 33761 Submitted by: Oliver Lehmann Revision Changes Path 1.2 +1 -1 ports/math/newmat/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 17:34: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B4CD37B41A; Sat, 9 Feb 2002 17:34:05 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A1Y5M10342; Sat, 9 Feb 2002 17:34:05 -0800 (PST) (envelope-from rwatson) Message-Id: <200202100134.g1A1Y5M10342@freefall.freebsd.org> From: Robert Watson Date: Sat, 9 Feb 2002 17:34:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall config.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/02/09 17:34:05 PST Modified files: usr.sbin/sysinstall config.c Log: o No longer mount /proc by default on newly installed systems. Almost all facilities that previously relied on /proc have been rewritten to use ptrace(). procfs has presented a substantial security hazard for years, with several user->root compromises in the last few years. Procfs will continue to be available but will require administrator intervention to use. Reviewed by: scottl, jedgar, mike, tmm Revision Changes Path 1.199 +0 -4 src/usr.sbin/sysinstall/config.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 17:51:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 32ADC37B416; Sat, 9 Feb 2002 17:51:46 -0800 (PST) Received: (from jmz@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A1pkV41954; Sat, 9 Feb 2002 17:51:46 -0800 (PST) (envelope-from jmz) Message-Id: <200202100151.g1A1pkV41954@freefall.freebsd.org> From: Jean-Marc Zucconi Date: Sat, 9 Feb 2002 17:51:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jmz 2002/02/09 17:51:46 PST Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Add Vassili Tchersky for his net/6tunnel port. Revision Changes Path 1.97 +4 -0 doc/en_US.ISO8859-1/articles/contributors/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 18:24:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5756B37B416; Sat, 9 Feb 2002 18:24:07 -0800 (PST) Received: (from demon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A2O7637392; Sat, 9 Feb 2002 18:24:07 -0800 (PST) (envelope-from demon) Message-Id: <200202100224.g1A2O7637392@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sat, 9 Feb 2002 18:24:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/glpk Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2002/02/09 18:24:07 PST Modified files: math/glpk Makefile distinfo pkg-plist Log: Upgrade to 3.0.5 Revision Changes Path 1.10 +2 -2 ports/math/glpk/Makefile 1.8 +1 -1 ports/math/glpk/distinfo 1.7 +3 -1 ports/math/glpk/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 18:27:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DF7A437B400; Sat, 9 Feb 2002 18:27:18 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A2RI368941; Sat, 9 Feb 2002 18:27:18 -0800 (PST) (envelope-from murray) Message-Id: <200202100227.g1A2RI368941@freefall.freebsd.org> From: Murray Stokely Date: Sat, 9 Feb 2002 18:27:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/nasm Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2002/02/09 18:27:18 PST Modified files: devel/nasm Makefile distinfo pkg-plist Log: Revert nasm back to v0.98 and bump PORTEPOCH. The newer version breaks the audio/lame port. Revision Changes Path 1.12 +4 -3 ports/devel/nasm/Makefile 1.6 +1 -1 ports/devel/nasm/distinfo 1.7 +1 -1 ports/devel/nasm/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 18:30:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 11B7C37B405; Sat, 9 Feb 2002 18:30:54 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A2Usd99046; Sat, 9 Feb 2002 18:30:54 -0800 (PST) (envelope-from phk) Message-Id: <200202100230.g1A2Usd99046@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sat, 9 Feb 2002 18:30:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules/syscons/fire Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/02/09 18:30:53 PST Modified files: sys/modules/syscons/fire Makefile Log: It's OK to be pedantic, but long long literals are OK. Revision Changes Path 1.8 +1 -1 src/sys/modules/syscons/fire/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 18:58:16 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7362637B400; Sat, 9 Feb 2002 18:58:12 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A2wCj63297; Sat, 9 Feb 2002 18:58:12 -0800 (PST) (envelope-from ijliao) Message-Id: <200202100258.g1A2wCj63297@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sat, 9 Feb 2002 18:58:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/hp2xx Makefile distinfo pkg-descr ports/print/hp2xx/files patch-aa patch-ab patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/02/09 18:58:12 PST Modified files: print/hp2xx Makefile distinfo pkg-descr print/hp2xx/files patch-aa patch-ab Removed files: print/hp2xx/files patch-ac Log: upgrade to 3.4.1 PR: 34773 Submitted by: Ports Fury Revision Changes Path 1.10 +8 -7 ports/print/hp2xx/Makefile 1.2 +1 -1 ports/print/hp2xx/distinfo 1.4 +110 -87 ports/print/hp2xx/files/patch-aa 1.2 +29 -42 ports/print/hp2xx/files/patch-ab 1.2 +0 -44 ports/print/hp2xx/files/patch-ac (dead) 1.2 +2 -0 ports/print/hp2xx/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 19:12:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0A23737B405; Sat, 9 Feb 2002 19:12:34 -0800 (PST) Received: (from nyan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A3CYC83609; Sat, 9 Feb 2002 19:12:34 -0800 (PST) (envelope-from nyan) Message-Id: <200202100312.g1A3CYC83609@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Sat, 9 Feb 2002 19:12:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files.pc98 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/02/09 19:12:33 PST Modified files: (Branch: RELENG_4) sys/conf files.pc98 Log: MFi386: revision 1.307.2.20 Revision Changes Path 1.140.2.27 +1 -0 src/sys/conf/files.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 19:13: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9C0E437B405; Sat, 9 Feb 2002 19:13:00 -0800 (PST) Received: (from nyan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A3D0m89060; Sat, 9 Feb 2002 19:13:00 -0800 (PST) (envelope-from nyan) Message-Id: <200202100313.g1A3D0m89060@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Sat, 9 Feb 2002 19:13:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options.pc98 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/02/09 19:13:00 PST Modified files: (Branch: RELENG_4) sys/conf options.pc98 Log: MFi386: revision 1.132.2.12 Revision Changes Path 1.103.2.12 +5 -0 src/sys/conf/options.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 19:28:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 474CC37B400; Sat, 9 Feb 2002 19:28:37 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A3Sbr89640; Sat, 9 Feb 2002 19:28:37 -0800 (PST) (envelope-from imp) Message-Id: <200202100328.g1A3Sbr89640@freefall.freebsd.org> From: Warner Losh Date: Sat, 9 Feb 2002 19:28:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccbb pccbb.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/09 19:28:37 PST Modified files: sys/dev/pccbb pccbb.c Log: o Use INTR_TYPE_AV (the highest possible) rather than INTR_TYPE_BIO o Don't allow INTR_TYPE_FAST. Since we are sharing the interrupt between CSC and the functions, they can't be FAST because fast interrupts can't be shared. o Add the same workaround for resume that we have in OLDCARD. o Also, return the error from bus_generic_resume rather than ignoring it. Revision Changes Path 1.38 +51 -7 src/sys/dev/pccbb/pccbb.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 19:34:46 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 688D437B404; Sat, 9 Feb 2002 19:34:44 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A3Yi390073; Sat, 9 Feb 2002 19:34:44 -0800 (PST) (envelope-from imp) Message-Id: <200202100334.g1A3Yi390073@freefall.freebsd.org> From: Warner Losh Date: Sat, 9 Feb 2002 19:34:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccard pccard.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/09 19:34:44 PST Modified files: sys/dev/pccard pccard.c Log: o Use bus_generic_setup_intr instead of bus_setup_intr. o Call bus_generic_setup_intr and check its return value. Don't setup func until we successfully get the interrupt from our parent. o Add comments about some maybe questionable stuff so I can check later to make sure that it really is that way. Revision Changes Path 1.52 +8 -11 src/sys/dev/pccard/pccard.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 20:26: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0611C37B402; Sat, 9 Feb 2002 20:25:48 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A4Pls98625; Sat, 9 Feb 2002 20:25:47 -0800 (PST) (envelope-from will) Message-Id: <200202100425.g1A4Pls98625@freefall.freebsd.org> From: Will Andrews Date: Sat, 9 Feb 2002 20:25:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/qt23 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG will 2002/02/09 20:25:47 PST Modified files: x11-toolkits/qt23 Makefile Log: Remove -frerun-cse-after-loop, a vestige from the days when our compiler was slightly broken [1]. Allow alpha users to remove -O0 from CFLAGS if they so desire [2]. Replace -O2 in config with whatever ${CFLAGS} happens to be, with a perl regex. Submitted by: [1] sf [2] naddy Revision Changes Path 1.96 +3 -3 ports/x11-toolkits/qt23/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 20:40:28 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5AFD337B404; Sat, 9 Feb 2002 20:40:26 -0800 (PST) Received: (from mp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A4eQS00257; Sat, 9 Feb 2002 20:40:26 -0800 (PST) (envelope-from mp) Message-Id: <200202100440.g1A4eQS00257@freefall.freebsd.org> From: Mark Peek Date: Sat, 9 Feb 2002 20:40:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/tcsh sh.set.c tc.const.c X-FreeBSD-CVS-Branch: ZOULAS Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mp 2002/02/09 20:40:26 PST Modified files: (Branch: ZOULAS) contrib/tcsh sh.set.c tc.const.c Log: - Add support for autodetection of *.euc?? and *.EUC locales. - ja_JP.eucJP, ja_JP.EUC - ko_KR.eucKR, ko_KR.EUC - zn_CN.eucCN, zn_CN.EUC - Add support for zh_TW.Big5 - Add ja_JP.Shift_JIS alias for ja_JP.SJIS Submitted by: phantom Approved by: Christos Zoulas - TCSH maintainer Revision Changes Path 1.1.1.5 +2 -0 src/contrib/tcsh/sh.set.c 1.1.1.5 +25 -7 src/contrib/tcsh/tc.const.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 20:43:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C92237B41C; Sat, 9 Feb 2002 20:43:23 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A4hNN00572; Sat, 9 Feb 2002 20:43:23 -0800 (PST) (envelope-from rwatson) Message-Id: <200202100443.g1A4hNN00572@freefall.freebsd.org> From: Robert Watson Date: Sat, 9 Feb 2002 20:43:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/pseudofs pseudofs.h pseudofs_vnops.c src/sys/kern syscalls.master vfs_syscalls.c vfs_vnops.c vnode_if.src src/sys/security/lomac lomacfs_vnops.c src/sys/sys extattr.h src/sys/ufs/ufs ufs_extattr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/02/09 20:43:22 PST Modified files: sys/fs/pseudofs pseudofs.h pseudofs_vnops.c sys/kern syscalls.master vfs_syscalls.c vfs_vnops.c vnode_if.src sys/security/lomac lomacfs_vnops.c sys/sys extattr.h sys/ufs/ufs ufs_extattr.c Log: Part I: Update extended attribute API and ABI: o Modify the system call syntax for extattr_{get,set}_{fd,file}() so as not to use the scatter gather API (which appeared not to be used by any consumers, and be less portable), rather, accepts 'data' and 'nbytes' in the style of other simple read/write interfaces. This changes the API and ABI. o Modify system call semantics so that extattr_get_{fd,file}() return a size_t. When performing a read, the number of bytes read will be returned, unless the data pointer is NULL, in which case the number of bytes of data are returned. This changes the API only. o Modify the VOP_GETEXTATTR() vnode operation to accept a *size_t argument so as to return the size, if desirable. If set to NULL, the size will not be returned. o Update various filesystems (pseodofs, ufs) to DTRT. These changes should make extended attributes more useful and more portable. More commits to rebuild the system call files, as well as update userland utilities to follow. Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs Revision Changes Path 1.17 +1 -1 src/sys/fs/pseudofs/pseudofs.h 1.24 +1 -1 src/sys/fs/pseudofs/pseudofs_vnops.c 1.103 +7 -8 src/sys/kern/syscalls.master 1.223 +60 -81 src/sys/kern/vfs_syscalls.c 1.129 +2 -1 src/sys/kern/vfs_vnops.c 1.44 +2 -1 src/sys/kern/vnode_if.src 1.3 +2 -1 src/sys/security/lomac/lomacfs_vnops.c 1.8 +6 -6 src/sys/sys/extattr.h 1.42 +31 -20 src/sys/ufs/ufs/ufs_extattr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 20:44:46 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C582637B400; Sat, 9 Feb 2002 20:44:37 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A4ibd00815; Sat, 9 Feb 2002 20:44:37 -0800 (PST) (envelope-from rwatson) Message-Id: <200202100444.g1A4ibd00815@freefall.freebsd.org> From: Robert Watson Date: Sat, 9 Feb 2002 20:44:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern init_sysent.c syscalls.c src/sys/sys syscall.h syscall.mk sysproto.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/02/09 20:44:37 PST Modified files: sys/kern init_sysent.c syscalls.c sys/sys syscall.h syscall.mk sysproto.h Log: Part II: Update system calls for extended attributes. Rebuild of generated files. Revision Changes Path 1.115 +1 -1 src/sys/kern/init_sysent.c 1.102 +1 -1 src/sys/kern/syscalls.c 1.101 +1 -1 src/sys/sys/syscall.h 1.56 +1 -1 src/sys/sys/syscall.mk 1.92 +9 -9 src/sys/sys/sysproto.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 20:46:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 995FA37B400; Sat, 9 Feb 2002 20:46:28 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A4kS500988; Sat, 9 Feb 2002 20:46:28 -0800 (PST) (envelope-from rwatson) Message-Id: <200202100446.g1A4kS500988@freefall.freebsd.org> From: Robert Watson Date: Sat, 9 Feb 2002 20:46:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys extattr_get_file.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/02/09 20:46:28 PST Modified files: lib/libc/sys extattr_get_file.2 Log: Part III: Update extended attribute system call interface documentation. Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs Revision Changes Path 1.7 +40 -19 src/lib/libc/sys/extattr_get_file.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 20:48:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE94337B405; Sat, 9 Feb 2002 20:48:26 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A4mQi01268; Sat, 9 Feb 2002 20:48:26 -0800 (PST) (envelope-from rwatson) Message-Id: <200202100448.g1A4mQi01268@freefall.freebsd.org> From: Robert Watson Date: Sat, 9 Feb 2002 20:48:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/getextattr getextattr.c src/usr.sbin/setextattr setextattr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/02/09 20:48:26 PST Modified files: usr.sbin/getextattr getextattr.c usr.sbin/setextattr setextattr.c Log: Update userland tools to reflect extattr API changes. Note that getextattr has not yet been updated to dynamically allocate a read buffer, although that can now be done. Obtained from: TrustedBSD Project Sponsored by: NAI Labs Revision Changes Path 1.7 +6 -5 src/usr.sbin/getextattr/getextattr.c 1.6 +2 -5 src/usr.sbin/setextattr/setextattr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 20:50:29 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 298AD37B404; Sat, 9 Feb 2002 20:50:24 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A4oOQ01422; Sat, 9 Feb 2002 20:50:24 -0800 (PST) (envelope-from rwatson) Message-Id: <200202100450.g1A4oOQ01422@freefall.freebsd.org> From: Robert Watson Date: Sat, 9 Feb 2002 20:50:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ufs ufs_extattr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/02/09 20:50:24 PST Modified files: sys/ufs/ufs ufs_extattr.c Log: Copyright + license update. Revision Changes Path 1.43 +10 -1 src/sys/ufs/ufs/ufs_extattr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 20:53:32 2002 Delivered-To: cvs-all@freebsd.org Received: from leviathan.inethouston.net (leviathan.inethouston.net [66.64.12.249]) by hub.freebsd.org (Postfix) with ESMTP id F300937B400; Sat, 9 Feb 2002 20:53:27 -0800 (PST) Received: by leviathan.inethouston.net (Postfix, from userid 1001) id 53BA9319BD2; Sat, 9 Feb 2002 22:53:29 -0600 (CST) Date: Sat, 9 Feb 2002 22:53:29 -0600 From: "David W. Chapman Jr." To: Anders Nordby Cc: "Andrey A. Chernov" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc group master.passwd Message-ID: <20020210045329.GC784@leviathan.inethouston.net> Reply-To: "David W. Chapman Jr." Mail-Followup-To: Anders Nordby , "Andrey A. Chernov" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200110250327.f9P3RGu93843@freefall.freebsd.org> <20020210003346.GA88775@totem.fix.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020210003346.GA88775@totem.fix.no> User-Agent: Mutt/1.3.27i X-Operating-System: FreeBSD 4.5-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > Re-commit www:www > > > > Approved by: arch discussion from Oct 20 > > MFC after: 3 days > > Could you please MFC or remove www:www? It would be nice to have this > user and group in both -stable and -current (or not). > Doesn't it say he'll MFC in 3 days? -- David W. Chapman Jr. dwcjr@inethouston.net Raintree Network Services, Inc. dwcjr@freebsd.org FreeBSD Committer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 20:57:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D7F2937B41B; Sat, 9 Feb 2002 20:57:08 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A4v8Z01937; Sat, 9 Feb 2002 20:57:08 -0800 (PST) (envelope-from rwatson) Message-Id: <200202100457.g1A4v8Z01937@freefall.freebsd.org> From: Robert Watson Date: Sat, 9 Feb 2002 20:57:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ufs ufs_extattr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/02/09 20:57:08 PST Modified files: sys/ufs/ufs ufs_extattr.c Log: Minor style tweaks. Remove an unneeded comment and commented out code that won't be needed. Revision Changes Path 1.44 +15 -19 src/sys/ufs/ufs/ufs_extattr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 21: 4:23 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D24837B41B; Sat, 9 Feb 2002 21:04:20 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A54Ku02528; Sat, 9 Feb 2002 21:04:20 -0800 (PST) (envelope-from imp) Message-Id: <200202100504.g1A54Ku02528@freefall.freebsd.org> From: Warner Losh Date: Sat, 9 Feb 2002 21:04:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccard pccard.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/02/09 21:04:20 PST Modified files: sys/dev/pccard pccard.c Log: Null interrupt handlers should be OK, so if we don't have a function, just return. Revision Changes Path 1.53 +1 -6 src/sys/dev/pccard/pccard.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 21:31:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3EF0837B405; Sat, 9 Feb 2002 21:31:55 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A5VtR08256; Sat, 9 Feb 2002 21:31:55 -0800 (PST) (envelope-from rwatson) Message-Id: <200202100531.g1A5VtR08256@freefall.freebsd.org> From: Robert Watson Date: Sat, 9 Feb 2002 21:31:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_syscalls.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/02/09 21:31:55 PST Modified files: sys/kern vfs_syscalls.c Log: Remove a stray 'const' that slept into extattr_set_vp(), and could result in compiler warnings. Revision Changes Path 1.224 +1 -1 src/sys/kern/vfs_syscalls.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 21:45:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0133F37B404; Sat, 9 Feb 2002 21:45:41 -0800 (PST) Received: (from mike@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A5je609474; Sat, 9 Feb 2002 21:45:40 -0800 (PST) (envelope-from mike) Message-Id: <200202100545.g1A5je609474@freefall.freebsd.org> From: Mike Barcroft Date: Sat, 9 Feb 2002 21:45:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/whois whois.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mike 2002/02/09 21:45:40 PST Modified files: (Branch: RELENG_4) usr.bin/whois whois.c Log: MFC 1.28: Use new ID scheme. Fix a bug that caused .br domains to be queried twice, by only recursively following ARIN referrals when querying ARIN. Revision Changes Path 1.15.2.8 +20 -25 src/usr.bin/whois/whois.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 21:47: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8FF9737B41D; Sat, 9 Feb 2002 21:47:05 -0800 (PST) Received: (from mike@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A5l5n09641; Sat, 9 Feb 2002 21:47:05 -0800 (PST) (envelope-from mike) Message-Id: <200202100547.g1A5l5n09641@freefall.freebsd.org> From: Mike Barcroft Date: Sat, 9 Feb 2002 21:47:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/whois whois.1 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mike 2002/02/09 21:47:05 PST Modified files: (Branch: RELENG_4) usr.bin/whois whois.1 Log: MFC 1.26: Fix a typo. Don't call options flags. Remove some documentation that is no longer applicable to whois. Bump document date. Revision Changes Path 1.15.2.7 +6 -21 src/usr.bin/whois/whois.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 21:56:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 728C537B419; Sat, 9 Feb 2002 21:56:36 -0800 (PST) Received: (from mike@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A5uau10494; Sat, 9 Feb 2002 21:56:36 -0800 (PST) (envelope-from mike) Message-Id: <200202100556.g1A5uau10494@freefall.freebsd.org> From: Mike Barcroft Date: Sat, 9 Feb 2002 21:56:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/pwd pwd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mike 2002/02/09 21:56:36 PST Modified files: bin/pwd pwd.c Log: Use the getprogname(3) function instead of directly accessing `__progname'. Submitted by: dd Revision Changes Path 1.16 +2 -4 src/bin/pwd/pwd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 22: 4:50 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 83DC037B402; Sat, 9 Feb 2002 22:04:46 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A64kj11476; Sat, 9 Feb 2002 22:04:46 -0800 (PST) (envelope-from dinoex) Message-Id: <200202100604.g1A64kj11476@freefall.freebsd.org> From: Dirk Meyer Date: Sat, 9 Feb 2002 22:04:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail Makefile ports/mail/noattach Makefile distinfo pkg-comment pkg-descr pkg-plist ports/mail/noattach/files noattach.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/02/09 22:04:46 PST Modified files: mail Makefile Added files: mail/noattach Makefile distinfo pkg-comment pkg-descr pkg-plist mail/noattach/files noattach.sh Log: Add-Port: A attatchment filter for Sendmail There really isn't much to say, noattach is a milter that parses the body of email messages from sendmail and checks if the filename of attachments matches one of the regular expressions in a given pattern file and rejects those emails that match. Filenames are MIME decoded if needed. This program needs sendmail version 8.12.1 or newer to be compiled with libsm and libmilter. WWW: http://freshmeat.net/projects/noattach/ Revision Changes Path 1.285 +1 -0 ports/mail/Makefile 1.1 +52 -0 ports/mail/noattach/Makefile (new) 1.1 +1 -0 ports/mail/noattach/distinfo (new) 1.1 +23 -0 ports/mail/noattach/files/noattach.sh (new) 1.1 +1 -0 ports/mail/noattach/pkg-comment (new) 1.1 +10 -0 ports/mail/noattach/pkg-descr (new) 1.1 +14 -0 ports/mail/noattach/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 22: 5: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 178BD37B41B; Sat, 9 Feb 2002 22:04:53 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A64rv11509; Sat, 9 Feb 2002 22:04:53 -0800 (PST) (envelope-from dinoex) Message-Id: <200202100604.g1A64rv11509@freefall.freebsd.org> From: Dirk Meyer Date: Sat, 9 Feb 2002 22:04:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/02/09 22:04:52 PST Modified files: . modules Log: noattach --> ports/mail/noattach Revision Changes Path 1.4695 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 22:13:17 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 13C0E37B419; Sat, 9 Feb 2002 22:13:15 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A6DF715982; Sat, 9 Feb 2002 22:13:15 -0800 (PST) (envelope-from rwatson) Message-Id: <200202100613.g1A6DF715982@freefall.freebsd.org> From: Robert Watson Date: Sat, 9 Feb 2002 22:13:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/getextattr getextattr.8 getextattr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/02/09 22:13:15 PST Modified files: usr.sbin/getextattr getextattr.8 getextattr.c Log: Teach getextattr to query the EA size and allocate appropriate sized buffers before reading the memory. Arguably, the failure modes here are poor, but we can now read >2k EAs. Also, update the copyrights and licenses while I'm here. Revision Changes Path 1.13 +6 -4 src/usr.sbin/getextattr/getextattr.8 1.8 +31 -6 src/usr.sbin/getextattr/getextattr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 22:14: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7688837B41C; Sat, 9 Feb 2002 22:14:03 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A6E3G16075; Sat, 9 Feb 2002 22:14:03 -0800 (PST) (envelope-from rwatson) Message-Id: <200202100614.g1A6E3G16075@freefall.freebsd.org> From: Robert Watson Date: Sat, 9 Feb 2002 22:14:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/getextattr getextattr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/02/09 22:14:03 PST Modified files: usr.sbin/getextattr getextattr.c Log: Update license. Revision Changes Path 1.9 +3 -1 src/usr.sbin/getextattr/getextattr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 22:17:44 2002 Delivered-To: cvs-all@freebsd.org Received: from pr0n.kutulu.org (pr0n.kutulu.org [151.196.107.157]) by hub.freebsd.org (Postfix) with ESMTP id 0894B37B41A; Sat, 9 Feb 2002 22:17:36 -0800 (PST) Received: from cc191573g (beta.kutulu.org [68.50.102.129]) by pr0n.kutulu.org (Postfix) with SMTP id C88F1145; Sun, 10 Feb 2002 01:21:50 -0500 (EST) Message-ID: <007b01c1b212$3560b410$81663244@longhill1.md.home.com> From: "Kutulu" To: "David W. Chapman Jr." , "Anders Nordby" Cc: "Andrey A. Chernov" , , References: <200110250327.f9P3RGu93843@freefall.freebsd.org> <20020210003346.GA88775@totem.fix.no> <20020210045329.GC784@leviathan.inethouston.net> Subject: Re: cvs commit: src/etc group master.passwd Date: Sun, 10 Feb 2002 01:06:21 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG From: "David W. Chapman Jr." dwcjr@inethouston.net > > > Re-commit www:www > > > > > > Approved by: arch discussion from Oct 20 > > > MFC after: 3 days > > > > Could you please MFC or remove www:www? It would be nice to have this > > user and group in both -stable and -current (or not). > > > Doesn't it say he'll MFC in 3 days? Revision 1.28, Thu Oct 25 03:27:16 2001 UTC (3 months, 2 weeks ago) by ache I think he missed :) I guess most people who wanted to see this change MFC'd just went and added it themselves, so no one noticed when it never actually got done. --K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 22:55:57 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 52A0F37B404; Sat, 9 Feb 2002 22:55:52 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g1A6tPt63143; Sun, 10 Feb 2002 09:55:25 +0300 (MSK) (envelope-from ache) Date: Sun, 10 Feb 2002 09:55:24 +0300 From: "Andrey A. Chernov" To: Kutulu Cc: "David W. Chapman Jr." , Anders Nordby , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc group master.passwd Message-ID: <20020210065524.GA63085@nagual.pp.ru> References: <200110250327.f9P3RGu93843@freefall.freebsd.org> <20020210003346.GA88775@totem.fix.no> <20020210045329.GC784@leviathan.inethouston.net> <007b01c1b212$3560b410$81663244@longhill1.md.home.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <007b01c1b212$3560b410$81663244@longhill1.md.home.com> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 10, 2002 at 01:06:21 -0800, Kutulu wrote: > From: "David W. Chapman Jr." dwcjr@inethouston.net > > > > > > Re-commit www:www > > > > > > > > Approved by: arch discussion from Oct 20 > > > > MFC after: 3 days > > > > > > Could you please MFC or remove www:www? It would be nice to have this > > > user and group in both -stable and -current (or not). > > > > > Doesn't it say he'll MFC in 3 days? > > Revision 1.28, Thu Oct 25 03:27:16 2001 UTC (3 months, 2 weeks ago) by ache > > I think he missed :) I guess most people who wanted to see this change > MFC'd just went and added it themselves, so no one noticed when it never > actually got done. I remember strong opposition to this change. Somebody will going to remove it. Since I am tired to argue, there is no differences for me. If somebody want to MFC it, do it on your own, I prefer not touch this thing. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 22:56:30 2002 Delivered-To: cvs-all@freebsd.org Received: from leviathan.inethouston.net (leviathan.inethouston.net [66.64.12.249]) by hub.freebsd.org (Postfix) with ESMTP id 2D00E37B416; Sat, 9 Feb 2002 22:56:27 -0800 (PST) Received: from dwcjr (dwcjr [192.168.0.216]) by leviathan.inethouston.net (Postfix) with SMTP id 1015C319AAB; Sun, 10 Feb 2002 00:56:34 -0600 (CST) Message-ID: <00a601c1b200$10689cc0$d800a8c0@dwcjr> From: "David W. Chapman Jr." To: "Andrey A. Chernov" , "Kutulu" Cc: "Anders Nordby" , , References: <200110250327.f9P3RGu93843@freefall.freebsd.org> <20020210003346.GA88775@totem.fix.no> <20020210045329.GC784@leviathan.inethouston.net> <007b01c1b212$3560b410$81663244@longhill1.md.home.com> <20020210065524.GA63085@nagual.pp.ru> Subject: Re: cvs commit: src/etc group master.passwd Date: Sun, 10 Feb 2002 00:56:28 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > I think he missed :) I guess most people who wanted to see this change > > MFC'd just went and added it themselves, so no one noticed when it never > > actually got done. > > I remember strong opposition to this change. Somebody will going to > remove it. Since I am tired to argue, there is no differences for me. If > somebody want to MFC it, do it on your own, I prefer not touch this thing. > Then why did you put MFC after 3 days? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 22:58:12 2002 Delivered-To: cvs-all@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 8FC7537B419; Sat, 9 Feb 2002 22:58:07 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.6/8.11.6) id g1A6vuc63198; Sun, 10 Feb 2002 09:57:56 +0300 (MSK) (envelope-from ache) Date: Sun, 10 Feb 2002 09:57:55 +0300 From: "Andrey A. Chernov" To: "David W. Chapman Jr." Cc: Kutulu , Anders Nordby , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc group master.passwd Message-ID: <20020210065755.GA63150@nagual.pp.ru> References: <200110250327.f9P3RGu93843@freefall.freebsd.org> <20020210003346.GA88775@totem.fix.no> <20020210045329.GC784@leviathan.inethouston.net> <007b01c1b212$3560b410$81663244@longhill1.md.home.com> <20020210065524.GA63085@nagual.pp.ru> <00a601c1b200$10689cc0$d800a8c0@dwcjr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <00a601c1b200$10689cc0$d800a8c0@dwcjr> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Feb 10, 2002 at 00:56:28 -0600, David W. Chapman Jr. wrote: > > > I think he missed :) I guess most people who wanted to see this change > > > MFC'd just went and added it themselves, so no one noticed when it never > > > actually got done. > > > > I remember strong opposition to this change. Somebody will going to > > remove it. Since I am tired to argue, there is no differences for me. If > > somebody want to MFC it, do it on your own, I prefer not touch this thing. > > > > Then why did you put MFC after 3 days? It was done before oppisition indicated itself. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 23: 2:45 2002 Delivered-To: cvs-all@freebsd.org Received: from leviathan.inethouston.net (leviathan.inethouston.net [66.64.12.249]) by hub.freebsd.org (Postfix) with ESMTP id D103D37B400; Sat, 9 Feb 2002 23:02:41 -0800 (PST) Received: from dwcjr (dwcjr [192.168.0.216]) by leviathan.inethouston.net (Postfix) with SMTP id 033A5319AAB; Sun, 10 Feb 2002 01:02:49 -0600 (CST) Message-ID: <00ac01c1b200$efe5e650$d800a8c0@dwcjr> From: "David W. Chapman Jr." To: "Andrey A. Chernov" Cc: "Kutulu" , "Anders Nordby" , , References: <200110250327.f9P3RGu93843@freefall.freebsd.org> <20020210003346.GA88775@totem.fix.no> <20020210045329.GC784@leviathan.inethouston.net> <007b01c1b212$3560b410$81663244@longhill1.md.home.com> <20020210065524.GA63085@nagual.pp.ru> <00a601c1b200$10689cc0$d800a8c0@dwcjr> <20020210065755.GA63150@nagual.pp.ru> Subject: Re: cvs commit: src/etc group master.passwd Date: Sun, 10 Feb 2002 01:02:43 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > Then why did you put MFC after 3 days? > > It was done before oppisition indicated itself. > Nobody so far on this thread has opposed it, they would just like it to be MFC'd and stay there or keep it out of -current and -stable To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 23:23: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F171437B41B; Sat, 9 Feb 2002 23:23:04 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A7N4f34642; Sat, 9 Feb 2002 23:23:04 -0800 (PST) (envelope-from kevlo) Message-Id: <200202100723.g1A7N4f34642@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 23:23:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail Makefile ports/mail/openwebmail Makefile distinfo pkg-comment pkg-deinstall pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 23:23:04 PST Modified files: mail Makefile Added files: mail/openwebmail Makefile distinfo pkg-comment pkg-deinstall pkg-descr pkg-plist Log: Initial import of openwebmail 1.61 Openwebmail is a webmail system designed to manage very big mail folder files in a memory efficient way. PR: 34781 Submitted by: Yen-Ming Lee Revision Changes Path 1.286 +1 -0 ports/mail/Makefile 1.1 +38 -0 ports/mail/openwebmail/Makefile (new) 1.1 +1 -0 ports/mail/openwebmail/distinfo (new) 1.1 +1 -0 ports/mail/openwebmail/pkg-comment (new) 1.1 +2 -0 ports/mail/openwebmail/pkg-deinstall (new) 1.1 +10 -0 ports/mail/openwebmail/pkg-descr (new) 1.1 +1194 -0 ports/mail/openwebmail/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 23:23:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D64637B419; Sat, 9 Feb 2002 23:23:08 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A7N8K34675; Sat, 9 Feb 2002 23:23:08 -0800 (PST) (envelope-from kevlo) Message-Id: <200202100723.g1A7N8K34675@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 23:23:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 23:23:08 PST Modified files: . modules Log: openwebmail --> ports/mail/openwebmail Revision Changes Path 1.4696 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 23:24:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B86D937B405; Sat, 9 Feb 2002 23:24:08 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A7O8o34937; Sat, 9 Feb 2002 23:24:08 -0800 (PST) (envelope-from dd) Message-Id: <200202100724.g1A7O8o34937@freefall.freebsd.org> From: Dima Dorfman Date: Sat, 9 Feb 2002 23:24:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 ata.4 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2002/02/09 23:24:08 PST Modified files: (Branch: RELENG_4) share/man/man4 ata.4 Log: s/sysctl -w/sysctl/ (this is not an MFC because -current is not affected) PR: 34778 Submitted by: Nate Eldredge Revision Changes Path 1.3.2.14 +2 -2 src/share/man/man4/ata.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 23:30:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6073237B416; Sat, 9 Feb 2002 23:30:11 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A7UBP36185; Sat, 9 Feb 2002 23:30:11 -0800 (PST) (envelope-from kevlo) Message-Id: <200202100730.g1A7UBP36185@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 23:30:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors Makefile ports/editors/edith Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 23:30:10 PST Modified files: editors Makefile Added files: editors/edith Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Initial import of edith 1.58 Edith is a X11 GUI editor for binary and plain text files. PR: 34762 Submitted by: Christian Brueffer Revision Changes Path 1.186 +1 -0 ports/editors/Makefile 1.1 +42 -0 ports/editors/edith/Makefile (new) 1.1 +2 -0 ports/editors/edith/distinfo (new) 1.1 +1 -0 ports/editors/edith/pkg-comment (new) 1.1 +18 -0 ports/editors/edith/pkg-descr (new) 1.1 +78 -0 ports/editors/edith/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Feb 9 23:30:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E8C537B43A; Sat, 9 Feb 2002 23:30:18 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g1A7UIo36228; Sat, 9 Feb 2002 23:30:18 -0800 (PST) (envelope-from kevlo) Message-Id: <200202100730.g1A7UIo36228@freefall.freebsd.org> From: Kevin Lo Date: Sat, 9 Feb 2002 23:30:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/02/09 23:30:17 PST Modified files: . modules Log: edith --> ports/editors/edith Revision Changes Path 1.4697 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message