From owner-cvs-all Sun Apr 7 0: 2: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 DF15237B41A; Sun, 7 Apr 2002 00:01:42 -0800 (PST) Received: (from gad@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3781gK09300; Sun, 7 Apr 2002 00:01:42 -0800 (PST) (envelope-from gad) Message-Id: <200204070801.g3781gK09300@freefall.freebsd.org> From: Garance A Drosehn Date: Sun, 7 Apr 2002 00:01:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/lpr/lpd printjob.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 gad 2002/04/07 00:01:42 PST Modified files: usr.sbin/lpr/lpd printjob.c Log: Rename a variable from 'user' to 'userid' to avoid some compiler warnings. MFC after: 12 days Revision Changes Path 1.47 +5 -5 src/usr.sbin/lpr/lpd/printjob.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 0: 3: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 DCA5037B4DE; Sun, 7 Apr 2002 00:02:42 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3782gn09383; Sun, 7 Apr 2002 00:02:42 -0800 (PST) (envelope-from obrien) Message-Id: <200204070802.g3782gn09383@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 7 Apr 2002 00:02:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/cc/collect2 Makefile X-FreeBSD-CVS-Branch: WIP_GCC31 Sender: owner-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/04/07 00:02:42 PST Modified files: (Branch: WIP_GCC31) gnu/usr.bin/cc/collect2 Makefile Log: Fix search path. Revision Changes Path 1.2.2.2 +1 -1 src/gnu/usr.bin/cc/collect2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 0: 5: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 3EA5A37B400; Sun, 7 Apr 2002 00:05:33 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3785XH13139; Sun, 7 Apr 2002 00:05:33 -0800 (PST) (envelope-from obrien) Message-Id: <200204070805.g3785XH13139@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 7 Apr 2002 00:05:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/cc/protoize Makefile X-FreeBSD-CVS-Branch: WIP_GCC31 Sender: owner-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/04/07 00:05:33 PST Modified files: (Branch: WIP_GCC31) gnu/usr.bin/cc/protoize Makefile Log: Fix search path. Revision Changes Path 1.1.2.2 +1 -1 src/gnu/usr.bin/cc/protoize/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 0:12: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 C662937B417; Sun, 7 Apr 2002 00:12:39 -0800 (PST) Received: (from gad@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g378CdV14192; Sun, 7 Apr 2002 00:12:39 -0800 (PST) (envelope-from gad) Message-Id: <200204070812.g378CdV14192@freefall.freebsd.org> From: Garance A Drosehn Date: Sun, 7 Apr 2002 00:12:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/lpr/lpd printjob.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 gad 2002/04/07 00:12:39 PST Modified files: usr.sbin/lpr/lpd printjob.c Log: A variable had been unnecessarily assigned a bogus value because gcc was "confused" about it being unassigned. In fact, gcc was right. Fix the real problem by setting that variable before break-ing out of a select statement so gcc is happy, and then remove the unnecessary assignment. Reported by: a user wondering why lpd syslog-ed about "compiler confusion" MFC after: 12 days Revision Changes Path 1.48 +6 -7 src/usr.sbin/lpr/lpd/printjob.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 0:37:52 2002 Delivered-To: cvs-all@freebsd.org Received: from sdns.kv.ukrtel.net (sdns.kv.ukrtel.net [195.5.27.246]) by hub.freebsd.org (Postfix) with ESMTP id 9920337B404; Sun, 7 Apr 2002 00:37:43 -0800 (PST) Received: from vega.vega.com (195.5.51.243 [195.5.51.243]) by sdns.kv.ukrtel.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id 22TS0LYM; Sun, 7 Apr 2002 11:39:09 +0300 Received: (from max@localhost) by vega.vega.com (8.11.6/8.11.3) id g378bi240647; Sun, 7 Apr 2002 11:37:44 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200204070837.g378bi240647@vega.vega.com> Subject: Re: cvs commit: ports/x11/gnomelibs Makefile distinfo pkg-plist To: john_m_cooper@yahoo.com Date: Sun, 7 Apr 2002 11:37:43 +0300 (EEST) Cc: sobomax@FreeBSD.ORG (Maxim Sobolev), cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-Reply-To: <1018120204.91827.2.camel@johncoop.MSHOME> from "John Merryweather Cooper" at Apr 06, 2002 11:10:03 AM X-Mailer: ELM [version 2.5 PL5] 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 > > Note that make install fails if the gtk-doc port is installed. :( Known problem. Many GNOME ports will fail when gtk-doc is installed. There is even PR on this. -Maxim > > On Sat, 2002-04-06 at 09:31, Maxim Sobolev wrote: > > sobomax 2002/04/06 09:31:17 PST > > > > Modified files: > > x11/gnomelibs Makefile distinfo pkg-plist > > x11/gnomelibs/files patch-bg > > Log: > > Update to 1.4.1.5. > > > > Revision Changes Path > > 1.96 +3 -2 ports/x11/gnomelibs/Makefile > > 1.39 +1 -1 ports/x11/gnomelibs/distinfo > > 1.14 +15 -9 ports/x11/gnomelibs/files/patch-bg > > 1.33 +1 -1 ports/x11/gnomelibs/pkg-plist > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe cvs-all" in the body of the message > -- > _ > | |V| / ' || MacroHard -- \ > \_| | | \_, || the perfection of form over | > ----------------------------------|| substance, marketing over | > Web: http://www.borgsdemons.com || performance, and greed over | > AIM: johnmcooper || design . . . | > =====================================================================/ > Public Key: http://www.borgsdemons.com/Personal/pgpkey.asc | > =====================================================================\ > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 0:58: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 3C98937B404; Sun, 7 Apr 2002 00:58:32 -0800 (PST) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g378wWY18926; Sun, 7 Apr 2002 00:58:32 -0800 (PST) (envelope-from dwmalone) Message-Id: <200204070858.g378wWY18926@freefall.freebsd.org> From: David Malone Date: Sun, 7 Apr 2002 00:58:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_cache.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 dwmalone 2002/04/07 00:58:32 PST Modified files: sys/kern vfs_cache.c Log: Remove a comment which relates to the old name cache code, which was replaced in 1997. Approved by: phk Revision Changes Path 1.70 +0 -4 src/sys/kern/vfs_cache.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 1: 4: 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 4E66937B416; Sun, 7 Apr 2002 01:04:04 -0800 (PST) Received: (from gioria@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37944W19688; Sun, 7 Apr 2002 01:04:04 -0800 (PST) (envelope-from gioria) Message-Id: <200204070904.g37944W19688@freefall.freebsd.org> From: Sebastien Gioria Date: Sun, 7 Apr 2002 01:04:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/fr_FR.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 gioria 2002/04/07 01:04:04 PST Modified files: release/doc/fr_FR.ISO8859-1/relnotes/common new.sgml Log: First version of the translation of the Security section Revision Changes Path 1.13 +242 -3 src/release/doc/fr_FR.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 Sun Apr 7 1:14: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 6587937B404; Sun, 7 Apr 2002 01:14:32 -0800 (PST) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g379EWP24353; Sun, 7 Apr 2002 01:14:32 -0800 (PST) (envelope-from olgeni) Message-Id: <200204070914.g379EWP24353@freefall.freebsd.org> From: Jimmy Olgeni Date: Sun, 7 Apr 2002 01:14:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/webmin 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/04/07 01:14:32 PST Modified files: sysutils/webmin Makefile distinfo Log: Update module: mysql. Revision Changes Path 1.97 +2 -2 ports/sysutils/webmin/Makefile 1.70 +1 -0 ports/sysutils/webmin/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 1:30: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 18AC437B405; Sun, 7 Apr 2002 01:30:06 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g379U6Z26245; Sun, 7 Apr 2002 01:30:06 -0800 (PST) (envelope-from obrien) Message-Id: <200204070930.g379U6Z26245@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 7 Apr 2002 01:30:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/lib/libobjc Makefile X-FreeBSD-CVS-Branch: WIP_GCC31 Sender: owner-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/04/07 01:30:06 PST Modified files: (Branch: WIP_GCC31) gnu/lib/libobjc Makefile Log: Bmake bits for GCC 3.1. Sponsored by: bribe from peter Revision Changes Path 1.12.2.1 +9 -20 src/gnu/lib/libobjc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 1:52: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 7495537B419; Sun, 7 Apr 2002 01:52:49 -0800 (PST) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g379qnd28486; Sun, 7 Apr 2002 01:52:49 -0800 (PST) (envelope-from joe) Message-Id: <200204070952.g379qnd28486@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 01:52:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhci.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/04/07 01:52:49 PST Modified files: sys/dev/usb uhci.c Log: MFNetBSD: revision 1.141 date: 2001/10/24 21:04:04; author: augustss; Exp; lines: +20 -4 Some more paranoia tests when entering the interrupt routine. Revision Changes Path 1.105 +21 -4 src/sys/dev/usb/uhci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 1:54: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 6FD9D37B41B; Sun, 7 Apr 2002 01:54:12 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g379sCl28596; Sun, 7 Apr 2002 01:54:12 -0800 (PST) (envelope-from sos) Message-Id: <200204070954.g379sCl28596@freefall.freebsd.org> From: Søren Schmidt Date: Sun, 7 Apr 2002 01:54:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-all.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 sos 2002/04/07 01:54:12 PST Modified files: (Branch: RELENG_4) sys/dev/ata ata-all.c Log: MFC: Dont allow to detach twice. Unlock the channel again if an ata_reinit() fails. Revision Changes Path 1.50.2.36 +9 -4 src/sys/dev/ata/ata-all.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 1:57: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 4C49A37B41A; Sun, 7 Apr 2002 01:57:23 -0800 (PST) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g379vNH28974; Sun, 7 Apr 2002 01:57:23 -0800 (PST) (envelope-from joe) Message-Id: <200204070957.g379vNH28974@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 01:57:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhci.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/04/07 01:57:23 PST Modified files: sys/dev/usb uhci.c Log: MFNetBSD: revision 1.142 date: 2001/10/25 02:08:13; author: augustss; lines: +14 -16 Change reset sequence to get status change bits set right on startup. Revision Changes Path 1.106 +6 -7 src/sys/dev/usb/uhci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 1: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 9AC5C37B405; Sun, 7 Apr 2002 01:57:56 -0800 (PST) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g379vuS29050; Sun, 7 Apr 2002 01:57:56 -0800 (PST) (envelope-from yoichi) Message-Id: <200204070957.g379vuS29050@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Sun, 7 Apr 2002 01:57:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/xml-lite.el 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/04/07 01:57:56 PST Modified files: textproc/xml-lite.el Makefile distinfo Log: Update to 1.29. PR: ports/36771 Submitted by: maintainer Revision Changes Path 1.2 +1 -1 ports/textproc/xml-lite.el/Makefile 1.2 +1 -1 ports/textproc/xml-lite.el/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 1:58: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 4A4C437B419; Sun, 7 Apr 2002 01:58:28 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g379wS829195; Sun, 7 Apr 2002 01:58:28 -0800 (PST) (envelope-from phk) Message-Id: <200204070958.g379wS829195@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sun, 7 Apr 2002 01:58:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys disklabel.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/04/07 01:58:28 PST Modified files: sys/sys disklabel.h Log: Constify. Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.80 +2 -2 src/sys/sys/disklabel.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 3: 2: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 0FC1137B416; Sun, 7 Apr 2002 03:02:46 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37A2jD29931; Sun, 7 Apr 2002 03:02:46 -0700 (PDT) (envelope-from joe) Message-Id: <200204071002.g37A2jD29931@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 03:02:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.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/04/07 03:02:45 PDT Modified files: sys/dev/usb ohci.c Log: MFNetBSD: revision 1.102 date: 2001/04/01 15:00:29; author: augustss; state: Exp; lines: +3 -1 Add two missing splx() (inside DIAGNOSTIC). From OpenBSD. Revision Changes Path 1.80 +2 -1 src/sys/dev/usb/ohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 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 3122137B400; Sun, 7 Apr 2002 03:04:17 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37A4Hn30060; Sun, 7 Apr 2002 03:04:17 -0700 (PDT) (envelope-from joe) Message-Id: <200204071004.g37A4Hn30060@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 03:04:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.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/04/07 03:04:16 PDT Modified files: sys/dev/usb ohci.c Log: MFNetBSD: revision 1.103 date: 2001/09/11 07:00:19; author: augustss; state: Exp; lines: +4 -1 Don't go top mode OPERATIONAL (before reset) on startup even if BIOS claims to have initialized the controller. Revision Changes Path 1.81 +3 -0 src/sys/dev/usb/ohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 3: 9: 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 89A6B37B41B; Sun, 7 Apr 2002 03:08:55 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37A8tT34110; Sun, 7 Apr 2002 03:08:55 -0700 (PDT) (envelope-from obrien) Message-Id: <200204071008.g37A8tT34110@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 7 Apr 2002 03:08:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall package.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/04/07 03:08:55 PDT Modified files: usr.sbin/sysinstall package.c Log: Remove some last vestages of _interactiveHack. Also tie stderr to something for the invocation of pkg_add. Sponsored by: FreeBSD Mall, Inc. Revision Changes Path 1.99 +1 -6 src/usr.sbin/sysinstall/package.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 3: 9: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 73BFA37B42C; Sun, 7 Apr 2002 03:09:23 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37A9NM34165; Sun, 7 Apr 2002 03:09:23 -0700 (PDT) (envelope-from joe) Message-Id: <200204071009.g37A9NM34165@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 03:09:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.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/04/07 03:09:23 PDT Modified files: sys/dev/usb ohci.c Log: MFNetBSD: ohci.c (1.104), ohcireg.h (1.28) date: 2001/09/28 23:57:21; author: augustss; Reenable RHSC interrupt after one second so hot plugging works. (From OpenBSD.) Revision Changes Path 1.82 +15 -0 src/sys/dev/usb/ohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 3:12: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 4696B37B419; Sun, 7 Apr 2002 03:12:42 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37ACfn34652; Sun, 7 Apr 2002 03:12:42 -0700 (PDT) (envelope-from joe) Message-Id: <200204071012.g37ACfn34652@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 03:12:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.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/04/07 03:12:41 PDT Modified files: sys/dev/usb ohci.c Log: MFNetBSD: revision 1.105 date: 2001/11/07 02:55:04; author: augustss; state: Exp; lines: +17 -3 Improve some debug messages. Revision Changes Path 1.83 +16 -2 src/sys/dev/usb/ohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 3:21: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 EE0E537B405; Sun, 7 Apr 2002 03:21:16 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37ALGI35460; Sun, 7 Apr 2002 03:21:16 -0700 (PDT) (envelope-from joe) Message-Id: <200204071021.g37ALGI35460@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 03:21:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.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/04/07 03:21:16 PDT Modified files: sys/dev/usb ohci.c Log: MFNetBSD: revision 1.106 date: 2001/11/09 15:01:57; author: augustss; state: Exp; lines: +73 -57 Fix a bug in xfer abort processing when the HC executes ahead of what the driver aborts. Don't block RHSC interrupts. Revision Changes Path 1.84 +73 -53 src/sys/dev/usb/ohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 3: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 0593C37B400; Sun, 7 Apr 2002 03:24:53 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37AOqW35691; Sun, 7 Apr 2002 03:24:52 -0700 (PDT) (envelope-from joe) Message-Id: <200204071024.g37AOqW35691@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 03:24:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.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/04/07 03:24:52 PDT Modified files: sys/dev/usb ohci.c Log: MFNetBSD: revision 1.107 date: 2001/11/10 17:09:28; author: augustss; state: Exp; lines: +31 -26 Improve dump routines. Revision Changes Path 1.85 +30 -25 src/sys/dev/usb/ohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 3:27: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 0423037B420; Sun, 7 Apr 2002 03:27:25 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37AROq36064; Sun, 7 Apr 2002 03:27:24 -0700 (PDT) (envelope-from murray) Message-Id: <200204071027.g37AROq36064@freefall.freebsd.org> From: Murray Stokely Date: Sun, 7 Apr 2002 03:27:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall sysinstall.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 murray 2002/04/07 03:27:24 PDT Modified files: usr.sbin/sysinstall sysinstall.h Log: GCC >= 3 and C99 handle zero-length arrays differently than older versions of GCC. With this change, sysinstall compiles and works fine with GCC 3.1 or 2.95. Revision Changes Path 1.224 +6 -0 src/usr.sbin/sysinstall/sysinstall.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 3:29: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 AD24D37B404; Sun, 7 Apr 2002 03:29:48 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37ATm936289; Sun, 7 Apr 2002 03:29:48 -0700 (PDT) (envelope-from joe) Message-Id: <200204071029.g37ATm936289@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 03:29:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhub.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/04/07 03:29:48 PDT Modified files: sys/dev/usb uhub.c Log: MFNetBSD: revision 1.51 date: 2001/10/24 15:30:17; author: augustss; state: Exp; lines: +3 -3 Better debug message. Revision Changes Path 1.36 +3 -3 src/sys/dev/usb/uhub.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 3:31: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 BA57A37B405; Sun, 7 Apr 2002 03:31:39 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37AVdC36519; Sun, 7 Apr 2002 03:31:39 -0700 (PDT) (envelope-from joe) Message-Id: <200204071031.g37AVdC36519@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 03:31:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhub.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/04/07 03:31:39 PDT Modified files: sys/dev/usb uhub.c Log: MFNetBSD: revision 1.52 date: 2001/10/26 17:53:59; author: augustss; state: Exp; lines: +8 -2 Compare pointer with NULL instead of using them as a condition. Revision Changes Path 1.37 +8 -2 src/sys/dev/usb/uhub.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 3: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 9CDA037B404; Sun, 7 Apr 2002 03:36:16 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37AaGV36919; Sun, 7 Apr 2002 03:36:16 -0700 (PDT) (envelope-from joe) Message-Id: <200204071036.g37AaGV36919@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 03:36:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usb_subr.c usbdi.c usbdivar.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 joe 2002/04/07 03:36:16 PDT Modified files: sys/dev/usb usb_subr.c usbdi.c usbdivar.h Log: MFNetBSD: usb_subr.c (1.90), usbdi.c (1.83), usbdivar.h (1.65) date: 2001/11/10 17:11:38; author: augustss; state: Exp; lines: +1 -2 Get rid of unused abort_handle. Revision Changes Path 1.45 +1 -2 src/sys/dev/usb/usb_subr.c 1.59 +0 -6 src/sys/dev/usb/usbdi.c 1.31 +0 -2 src/sys/dev/usb/usbdivar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 3: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 E32D637B416; Sun, 7 Apr 2002 03:38:07 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Ac7r37107; Sun, 7 Apr 2002 03:38:07 -0700 (PDT) (envelope-from joe) Message-Id: <200204071038.g37Ac7r37107@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 03:38:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdi.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/04/07 03:38:07 PDT Modified files: sys/dev/usb usbdi.c Log: MFNetBSD: revision 1.81 date: 2001/04/17 00:05:33; author: augustss; state: Exp; lines: +7 -1 Add a DIAGNOSTIC. Revision Changes Path 1.60 +6 -0 src/sys/dev/usb/usbdi.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 3:39: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 2916737B41B; Sun, 7 Apr 2002 03:39:23 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37AdNF37181; Sun, 7 Apr 2002 03:39:23 -0700 (PDT) (envelope-from phk) Message-Id: <200204071039.g37AdNF37181@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sun, 7 Apr 2002 03:39:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/disklabel disklabel.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/04/07 03:39:23 PDT Modified files: sbin/disklabel disklabel.c Log: Nuke a totally pointless optional debug option Sponsored by: DARPA and NAI Labs. Revision Changes Path 1.48 +0 -15 src/sbin/disklabel/disklabel.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 3:40: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 3B84B37B404; Sun, 7 Apr 2002 03:40:32 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37AeWV37283; Sun, 7 Apr 2002 03:40:32 -0700 (PDT) (envelope-from murray) Message-Id: <200204071040.g37AeWV37283@freefall.freebsd.org> From: Murray Stokely Date: Sun, 7 Apr 2002 03:40:32 -0700 (PDT) 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 murray 2002/04/07 03:40:32 PDT Modified files: usr.sbin/sysinstall config.c Log: Add comment to supplement my last commit. Requested by: obrien Revision Changes Path 1.201 +8 -0 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 Sun Apr 7 3:41: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 3BE4437B417; Sun, 7 Apr 2002 03:41:52 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Afq237458; Sun, 7 Apr 2002 03:41:52 -0700 (PDT) (envelope-from joe) Message-Id: <200204071041.g37Afq237458@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 03:41:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdi.c usbdivar.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 joe 2002/04/07 03:41:52 PDT Modified files: sys/dev/usb usbdi.c usbdivar.h Log: MFNetBSD: usbdi.c (1.82), usbdivar.h (1.64) date: 2001/11/10 16:54:56; author: augustss; Add some dump routines for debugging. Revision Changes Path 1.61 +50 -1 src/sys/dev/usb/usbdi.c 1.32 +7 -1 src/sys/dev/usb/usbdivar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 3:48: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 3EC1837B400; Sun, 7 Apr 2002 03:48:12 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37AmCh38304; Sun, 7 Apr 2002 03:48:12 -0700 (PDT) (envelope-from obrien) Message-Id: <200204071048.g37AmCh38304@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 7 Apr 2002 03:48:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gcc32 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 obrien 2002/04/07 03:48:12 PDT Modified files: lang/gcc32 Makefile pkg-plist Log: Upgrade to a 06-April-2002 GCC 3.2 in-development checkout. Revision Changes Path 1.116 +5 -5 ports/lang/gcc32/Makefile 1.41 +26 -26 ports/lang/gcc32/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 Apr 7 3:50: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 E4B9637B416; Sun, 7 Apr 2002 03:50:41 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37AofL38840; Sun, 7 Apr 2002 03:50:41 -0700 (PDT) (envelope-from joe) Message-Id: <200204071050.g37AofL38840@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 03:50:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdi.c usbdi.h usbdi_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 joe 2002/04/07 03:50:41 PDT Modified files: sys/dev/usb usbdi.c usbdi.h usbdi_util.c Log: MFNetBSD: usbdi.c (1.85), usbdi.h (1.54), usbdi_util.c (1.37) date: 2001/11/15 15:15:59; author: augustss; usbd_interface2device_handle() cannot fail. Revision Changes Path 1.62 +1 -2 src/sys/dev/usb/usbdi.c 1.39 +1 -1 src/sys/dev/usb/usbdi.h 1.24 +7 -27 src/sys/dev/usb/usbdi_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 Apr 7 3: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 1254837B400; Sun, 7 Apr 2002 03:57:01 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Av1i39601; Sun, 7 Apr 2002 03:57:01 -0700 (PDT) (envelope-from phk) Message-Id: <200204071057.g37Av1i39601@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sun, 7 Apr 2002 03:57:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/disklabel Makefile disklabel.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/04/07 03:57:00 PDT Modified files: sbin/disklabel Makefile disklabel.c Log: Get us to WARNS=2 with a bit of constification and some printf fiddling. Pick up the c-partitions magicness from sys/disklabel.h instead of defining our own magicness for it, remove trivial comment. Sponsored by: DARPA and NAI Labs. Revision Changes Path 1.9 +1 -1 src/sbin/disklabel/Makefile 1.49 +18 -25 src/sbin/disklabel/disklabel.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 3:58: 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 949CC37B427; Sun, 7 Apr 2002 03:57:42 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Avgl39667; Sun, 7 Apr 2002 03:57:42 -0700 (PDT) (envelope-from joe) Message-Id: <200204071057.g37Avgl39667@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 03:57:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhub.c usb_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 joe 2002/04/07 03:57:42 PDT Modified files: sys/dev/usb uhub.c usb_subr.c Log: MFNetBSD: uhub.c (1.54), usb_subr.c (1.92) date: 2001/11/16 01:57:47; author: augustss; Handle devices that disappear during reset gracefully. Revision Changes Path 1.38 +18 -1 src/sys/dev/usb/uhub.c 1.46 +4 -1 src/sys/dev/usb/usb_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 3:59: 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 75F0A37B404; Sun, 7 Apr 2002 03:59:02 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Ax2D39782; Sun, 7 Apr 2002 03:59:02 -0700 (PDT) (envelope-from joe) Message-Id: <200204071059.g37Ax2D39782@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 03:59:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhub.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/04/07 03:59:02 PDT Modified files: sys/dev/usb uhub.c Log: MFNetBSD: revision 1.55 date: 2001/11/16 02:21:54; author: augustss; state: Exp; lines: +4 -4 Better error message. Revision Changes Path 1.39 +3 -3 src/sys/dev/usb/uhub.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 4:19: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 B6DBC37B416; Sun, 7 Apr 2002 04:19:11 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37BJB449519; Sun, 7 Apr 2002 04:19:11 -0700 (PDT) (envelope-from joe) Message-Id: <200204071119.g37BJB449519@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 04:19:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.c uhci.c uhub.c usb.c usbdi.c usbdivar.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 joe 2002/04/07 04:19:05 PDT Modified files: sys/dev/usb ohci.c uhci.c uhub.c usb.c usbdi.c usbdivar.h Log: MFNetBSD: ohci.c (1.109), uhci.c (1.144), uhub.c (1.56), usb.c (1.57), usbdi.c (1.86), usbdivar.h (1.66) [Some partial, because most of this was merged in a while ago] date: 2001/11/20 13:48:03; author: augustss; Keep track of device speed for USB 2.0. Revision Changes Path 1.86 +2 -2 src/sys/dev/usb/ohci.c 1.107 +1 -1 src/sys/dev/usb/uhci.c 1.40 +1 -1 src/sys/dev/usb/uhub.c 1.69 +14 -3 src/sys/dev/usb/usb.c 1.63 +3 -2 src/sys/dev/usb/usbdi.c 1.33 +4 -2 src/sys/dev/usb/usbdivar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 4:21: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 A351D37B405; Sun, 7 Apr 2002 04:20:41 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37BKfs49733; Sun, 7 Apr 2002 04:20:41 -0700 (PDT) (envelope-from joe) Message-Id: <200204071120.g37BKfs49733@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 04:20:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhub.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/04/07 04:20:41 PDT Modified files: sys/dev/usb uhub.c Log: MFNetBSD: revision 1.57 date: 2001/11/20 16:08:37; author: augustss; state: Exp; lines: +3 -2 Add a comment. Revision Changes Path 1.41 +2 -1 src/sys/dev/usb/uhub.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 4: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 B38C737B405; Sun, 7 Apr 2002 04:29:31 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37BTVi50779; Sun, 7 Apr 2002 04:29:31 -0700 (PDT) (envelope-from joe) Message-Id: <200204071129.g37BTVi50779@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 04:29:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhub.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/04/07 04:29:31 PDT Modified files: sys/dev/usb uhub.c Log: Reduce the difference between our version and NetBSD's. (No functional changes.) Revision Changes Path 1.42 +10 -11 src/sys/dev/usb/uhub.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 4:32: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 F03EF37B420; Sun, 7 Apr 2002 04:32:07 -0700 (PDT) Received: (from ceri@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37BW7k51157; Sun, 7 Apr 2002 04:32:07 -0700 (PDT) (envelope-from ceri) Message-Id: <200204071132.g37BW7k51157@freefall.freebsd.org> From: Ceri Davies Date: Sun, 7 Apr 2002 04:32:07 -0700 (PDT) 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 ceri 2002/04/07 04:32:07 PDT Modified files: en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml Log: Correct a typo. Approved by: murray Pointed out by: Benny Revision Changes Path 1.133 +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 Sun Apr 7 4:34: 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 1021037B416; Sun, 7 Apr 2002 04:33:56 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37BXum51367; Sun, 7 Apr 2002 04:33:56 -0700 (PDT) (envelope-from joe) Message-Id: <200204071133.g37BXum51367@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 04:33:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohcivar.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 joe 2002/04/07 04:33:55 PDT Modified files: sys/dev/usb ohcivar.h Log: MFNetBSD: ohci.c (1.104), ohcivar.h (1.28) date: 2001/09/28 23:57:21; author: augustss; Reenable RHSC interrupt after one second so hot plugging works. (From OpenBSD.) Revision Changes Path 1.27 +2 -0 src/sys/dev/usb/ohcivar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 4:42: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 4659137B417; Sun, 7 Apr 2002 04:42:40 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Bge352632; Sun, 7 Apr 2002 04:42:40 -0700 (PDT) (envelope-from joe) Message-Id: <200204071142.g37Bge352632@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 04:42:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.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/04/07 04:42:40 PDT Modified files: sys/dev/usb ohci.c Log: MFNetBSD: revision 1.110 date: 2001/11/20 16:08:10; author: augustss; state: Exp; lines: +5 -4 Use longer reset for root hubs (as told in the spec). Revision Changes Path 1.87 +2 -2 src/sys/dev/usb/ohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 4:45:59 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 4BC0137B405; Sun, 7 Apr 2002 04:45:50 -0700 (PDT) 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 OAA28808; Sun, 7 Apr 2002 14:45:45 +0300 (EEST) Received: (from phantom@localhost) by ark.cris.net (8.11.1/8.11.1) id g37Bjjb76544; Sun, 7 Apr 2002 14:45:45 +0300 (EEST) Date: Sun, 7 Apr 2002 14:45:45 +0300 From: Alexey Zelkin To: Giorgos Keramidas Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc Makefile Message-ID: <20020407144545.A75948@ark.cris.net> References: <200204061830.g36IUYI41213@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200204061830.g36IUYI41213@freefall.freebsd.org>; from keramida@FreeBSD.org on Sat, Apr 06, 2002 at 10:30:34AM -0800 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 On Sat, Apr 06, 2002 at 10:30:34AM -0800, Giorgos Keramidas wrote: > keramida 2002/04/06 10:30:34 PST > > Modified files: > . Makefile > Log: > Connect el_GR.ISO8859-7 to the build. It's been a while in the tree. > Having it on the web after the next www/ build sounds nice. To get it at the web you need to put manual hooks into www/ tree. English doc/ documents are built with hooks located in www/en/doc/Makefile and www/en/tutorials/Makefile. Take a look on these for more comments. Connecting to the build that you done allow to appear this package (with article) at ftp.FreeBSD.org/pub/FreeBSD/doc after next rebuild. Contact Nik for details how often this directory is updating. > Revision Changes Path > 1.26 +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 Sun Apr 7 4:56: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 A387E37B405; Sun, 7 Apr 2002 04:56:19 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37BuJd54037; Sun, 7 Apr 2002 04:56:19 -0700 (PDT) (envelope-from joe) Message-Id: <200204071156.g37BuJd54037@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 04:56:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdi.c usbdi.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 joe 2002/04/07 04:56:19 PDT Modified files: sys/dev/usb usbdi.c usbdi.h Log: MFNetBSD: usbdi.c (1.63), usbdi.h (1.41) date: 2000/03/02 12:37:51; author: augustss; Use ratecheck() to limit error messages on disconnect. Break out some common functionality. We don't have ratecheck() in our kernel yet, so I've hardcoded usb_ratecheck() to return true always. Revision Changes Path 1.64 +17 -0 src/sys/dev/usb/usbdi.c 1.40 +2 -0 src/sys/dev/usb/usbdi.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 5: 4: 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 5806737B419; Sun, 7 Apr 2002 05:04:02 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37C42355074; Sun, 7 Apr 2002 05:04:02 -0700 (PDT) (envelope-from joe) Message-Id: <200204071204.g37C42355074@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 05:04:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb if_aue.c if_auereg.h if_cue.c if_cuereg.h if_kue.c if_kuereg.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 joe 2002/04/07 05:04:02 PDT Modified files: sys/dev/usb if_aue.c if_auereg.h if_cue.c if_cuereg.h if_kue.c if_kuereg.h Log: MFNetBSD: if_aue.c (1.26), if_auereg.h (1.6), if_cue.c (1.10), if_cuereg.h (1.5), if_kue.c (1.11), if_kuereg.h (1.5) date: 2000/03/02 12:37:51; author: augustss; Use ratecheck() to limit error messages on disconnect. Break out some common functionality. Revision Changes Path 1.55 +7 -3 src/sys/dev/usb/if_aue.c 1.13 +1 -0 src/sys/dev/usb/if_auereg.h 1.27 +3 -2 src/sys/dev/usb/if_cue.c 1.10 +1 -0 src/sys/dev/usb/if_cuereg.h 1.39 +3 -2 src/sys/dev/usb/if_kue.c 1.10 +1 -0 src/sys/dev/usb/if_kuereg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 5: 5: 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 29BCA37B417; Sun, 7 Apr 2002 05:05:06 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37C56g55495; Sun, 7 Apr 2002 05:05:06 -0700 (PDT) (envelope-from murray) Message-Id: <200204071205.g37C56g55495@freefall.freebsd.org> From: Murray Stokely Date: Sun, 7 Apr 2002 05:05:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/arp arp.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 murray 2002/04/07 05:05:06 PDT Modified files: usr.sbin/arp arp.c Log: GCC 3.1 cleanup - add a break after default: at the end of a switch statement. Revision Changes Path 1.38 +1 -0 src/usr.sbin/arp/arp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 5:18: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 2586037B419; Sun, 7 Apr 2002 05:18:53 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37CIr960926; Sun, 7 Apr 2002 05:18:53 -0700 (PDT) (envelope-from joe) Message-Id: <200204071218.g37CIr960926@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 05:18:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdi.c usbdi.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 joe 2002/04/07 05:18:53 PDT Modified files: sys/dev/usb usbdi.c usbdi.h Log: MFNetBSD: usbdi.c (1.80), usbdi.h (1.51) date: 2001/04/13 11:19:58; author: augustss; Finally get rid of the UGLY and EVIL hack for avoiding tsleep(). Revision Changes Path 1.65 +2 -23 src/sys/dev/usb/usbdi.c 1.41 +1 -4 src/sys/dev/usb/usbdi.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 5:19: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 D5CB637B416; Sun, 7 Apr 2002 05:19:50 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37CJoq61031; Sun, 7 Apr 2002 05:19:50 -0700 (PDT) (envelope-from joe) Message-Id: <200204071219.g37CJoq61031@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 05:19:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb if_aue.c if_cue.c if_kue.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/04/07 05:19:50 PDT Modified files: sys/dev/usb if_aue.c if_cue.c if_kue.c Log: We not long need to use USBD_NO_TSLEEP. Revision Changes Path 1.56 +4 -8 src/sys/dev/usb/if_aue.c 1.28 +7 -15 src/sys/dev/usb/if_cue.c 1.40 +1 -1 src/sys/dev/usb/if_kue.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 5: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 E016637B405; Sun, 7 Apr 2002 05:24:55 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37COtW62129; Sun, 7 Apr 2002 05:24:55 -0700 (PDT) (envelope-from joe) Message-Id: <200204071224.g37COtW62129@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 05:24:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdi.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/04/07 05:24:55 PDT Modified files: sys/dev/usb usbdi.c Log: MFNetBSD: revision 1.87 date: 2001/11/21 15:37:41; author: augustss; state: Exp; lines: +5 -5 Fix indentation and typos. Revision Changes Path 1.66 +2 -2 src/sys/dev/usb/usbdi.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 5:25: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 B218637B416; Sun, 7 Apr 2002 05:25:55 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37CPtr62298; Sun, 7 Apr 2002 05:25:55 -0700 (PDT) (envelope-from joe) Message-Id: <200204071225.g37CPtr62298@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 05:25:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdi.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/04/07 05:25:55 PDT Modified files: sys/dev/usb usbdi.c Log: MFNetBSD: revision 1.88 date: 2001/11/22 04:31:01; author: augustss; state: Exp; lines: +3 -3 Improve dump routine slightly. Revision Changes Path 1.67 +2 -2 src/sys/dev/usb/usbdi.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 5:29: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 7157337B405; Sun, 7 Apr 2002 05:29:55 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37CTtt62765; Sun, 7 Apr 2002 05:29:55 -0700 (PDT) (envelope-from joe) Message-Id: <200204071229.g37CTtt62765@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 05:29:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdi.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 joe 2002/04/07 05:29:55 PDT Modified files: sys/dev/usb usbdi.h Log: Update $NetBSD$ ident. Revision Changes Path 1.42 +1 -1 src/sys/dev/usb/usbdi.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 5: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 E75C237B405; Sun, 7 Apr 2002 05:32:55 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37CWtE63247; Sun, 7 Apr 2002 05:32:55 -0700 (PDT) (envelope-from joe) Message-Id: <200204071232.g37CWtE63247@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 05:32:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdi.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/04/07 05:32:55 PDT Modified files: sys/dev/usb usbdi.c Log: Move a function to a different place in the source so that we match NetBSD. Revision Changes Path 1.68 +17 -17 src/sys/dev/usb/usbdi.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 5:38: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 1FBA837B400; Sun, 7 Apr 2002 05:38:17 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37CcH764813; Sun, 7 Apr 2002 05:38:17 -0700 (PDT) (envelope-from joe) Message-Id: <200204071238.g37CcH764813@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 05:38:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdi.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/04/07 05:38:17 PDT Modified files: sys/dev/usb usbdi.c Log: MFNetBSD: revision 1.92 date: 2001/12/12 15:38:58; author: augustss; state: Exp; lines: +7 -3 Some more paranoia checks when DIAGNOSTIC. Revision Changes Path 1.69 +6 -2 src/sys/dev/usb/usbdi.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 5:42: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 5094637B405; Sun, 7 Apr 2002 05:42:19 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37CgIM65554; Sun, 7 Apr 2002 05:42:18 -0700 (PDT) (envelope-from joe) Message-Id: <200204071242.g37CgIM65554@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 05:42:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdi.c usbdi.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 joe 2002/04/07 05:42:18 PDT Modified files: sys/dev/usb usbdi.c usbdi.h Log: MFNetBSD: usbdi.c (1.93), usbdi.h (1.59) date: 2001/12/24 21:36:15; author: augustss; Add some more DIAGNOSTIC tests. Make usb_match_device() match on USB_PRODUCT_ANY. Revision Changes Path 1.70 +21 -2 src/sys/dev/usb/usbdi.c 1.43 +2 -1 src/sys/dev/usb/usbdi.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 5:54: 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 82FBC37B41A; Sun, 7 Apr 2002 05:54:03 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Cs1C67409; Sun, 7 Apr 2002 05:54:01 -0700 (PDT) (envelope-from des) Message-Id: <200204071254.g37Cs1C67409@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 7 Apr 2002 05:54:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_kerberosIV 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/04/07 05:54:01 PDT Modified files: lib/libpam/modules/pam_kerberosIV Makefile Log: This one needs NO_WERROR too. Revision Changes Path 1.10 +1 -0 src/lib/libpam/modules/pam_kerberosIV/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 5: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 6267337B41B; Sun, 7 Apr 2002 05:57:30 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37CvUX68061; Sun, 7 Apr 2002 05:57:30 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204071257.g37CvUX68061@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sun, 7 Apr 2002 05:57:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa pcibus.c src/sys/pci pcisupport.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 asmodai 2002/04/07 05:57:30 PDT Modified files: (Branch: RELENG_4) sys/i386/isa pcibus.c sys/pci pcisupport.c Log: Add recognition code for the Intel 82845 chipset (as present on the ASUS P4B266). PR: 35077 Submitted by: David Xu Revision Changes Path 1.57.2.7 +3 -0 src/sys/i386/isa/pcibus.c 1.154.2.11 +2 -0 src/sys/pci/pcisupport.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 5:59: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 7482E37B404; Sun, 7 Apr 2002 05:59:18 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37CxIX68380; Sun, 7 Apr 2002 05:59:18 -0700 (PDT) (envelope-from des) Message-Id: <200204071259.g37CxIX68380@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 7 Apr 2002 05:59:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/send-pr send-pr.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 des 2002/04/07 05:59:17 PDT Modified files: (Branch: RELENG_4) gnu/usr.bin/send-pr send-pr.1 Log: MFC: Document new categories. Revision Changes Path 1.9.2.3 +10 -1 src/gnu/usr.bin/send-pr/send-pr.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 6: 8:49 2002 Delivered-To: cvs-all@freebsd.org Received: from relay1.macomnet.ru (relay1.macomnet.ru [195.128.64.10]) by hub.freebsd.org (Postfix) with ESMTP id 07FB237B400; Sun, 7 Apr 2002 06:08:44 -0700 (PDT) Received: from news1.macomnet.ru (maxim@news1.macomnet.ru [195.128.64.14]) by relay1.macomnet.ru (8.11.6/8.11.6) with ESMTP id g37D8fi10025659; Sun, 7 Apr 2002 17:08:42 +0400 (MSD) Date: Sun, 7 Apr 2002 17:08:41 +0400 (MSD) From: Maxim Konovalov To: =?KOI8-R?Q?S=F8ren_Schmidt?= Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/usr.sbin/burncd burncd.c In-Reply-To: <200204051935.g35JZfH69956@freefall.freebsd.org> Message-ID: <20020407170738.W29889-100000@news1.macomnet.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=KOI8-R 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 On 11:35-0800, Apr 5, 2002, Søren Schmidt wrote: > sos 2002/04/05 11:35:41 PST > > Modified files: > usr.sbin/burncd burncd.c > Log: > Dont quit prematurely when writing from stdin... bin/36085 and bin/36299? -- Maxim Konovalov, MAcomnet, Internet Dept., system engineer phone: +7 (095) 796-9079, mailto:maxim@macomnet.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 6:16: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 58EFC37B405; Sun, 7 Apr 2002 06:16:18 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37DGIe79043; Sun, 7 Apr 2002 06:16:18 -0700 (PDT) (envelope-from joe) Message-Id: <200204071316.g37DGIe79043@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 06:16:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ukbd.c usbdi.c usbdi.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 joe 2002/04/07 06:16:18 PDT Modified files: sys/dev/usb ukbd.c usbdi.c usbdi.h Log: MFNetBSD: ukbd.c (1.52), usbdi.c (1.54), usbdi.h (1.35) date: 2000/01/16 09:37:18; author: augustss; Let usbd_set_polling() work on a usbd_device_handle instead of a usbd_interface_handle. Revision Changes Path 1.37 +4 -2 src/sys/dev/usb/ukbd.c 1.71 +3 -3 src/sys/dev/usb/usbdi.c 1.44 +1 -1 src/sys/dev/usb/usbdi.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 6:20: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 6317E37B405; Sun, 7 Apr 2002 06:20:16 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37DKGC79959; Sun, 7 Apr 2002 06:20:16 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204071320.g37DKGC79959@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sun, 7 Apr 2002 06:20:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci pcisupport.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 asmodai 2002/04/07 06:20:16 PDT Modified files: (Branch: RELENG_4) sys/pci pcisupport.c Log: Recognise old Opti Viper-M chipset. PR: 10608 Submitted by: NAKAGAWA, Yoshihisa Revision Changes Path 1.154.2.12 +4 -0 src/sys/pci/pcisupport.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 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 39B6137B41E; Sun, 7 Apr 2002 06:20:27 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37DKRM80025; Sun, 7 Apr 2002 06:20:27 -0700 (PDT) (envelope-from joe) Message-Id: <200204071320.g37DKRM80025@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 06:20:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdivar.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 joe 2002/04/07 06:20:27 PDT Modified files: sys/dev/usb usbdivar.h Log: MFNetBSD: revision 1.67 date: 2001/11/21 13:44:47; author: augustss; state: Exp; lines: +3 -1 Wrap dump routine prototypes in #ifdef USB_DEBUG Revision Changes Path 1.34 +3 -1 src/sys/dev/usb/usbdivar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 6:22: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 E4EF137B417; Sun, 7 Apr 2002 06:22:48 -0700 (PDT) Received: (from mux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37DMm980448; Sun, 7 Apr 2002 06:22:48 -0700 (PDT) (envelope-from mux) Message-Id: <200204071322.g37DMm980448@freefall.freebsd.org> From: Maxime Henrion Date: Sun, 7 Apr 2002 06:22:48 -0700 (PDT) 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 mux 2002/04/07 06:22:48 PDT Modified files: sys/kern vfs_syscalls.c Log: o Change kernel_vmount() interface to be more convenient : pass two separate strings instead of passing "foo=bar". o Don't forget to clear the VMOUNT flag on the vnode when vfs_nmount() fails because the fs doesn't implement VFS_NMOUNT (and in vfs_mount() when the fs doesn't implement VFS_MOUNT) ; also decrement the vfs refcount in the !MNT_UPDATE case. Revision Changes Path 1.244 +34 -30 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 Sun Apr 7 6:25: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 9F20837B41D; Sun, 7 Apr 2002 06:25:07 -0700 (PDT) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37DP7d80845; Sun, 7 Apr 2002 06:25:07 -0700 (PDT) (envelope-from sos) Message-Id: <200204071325.g37DP7d80845@freefall.freebsd.org> From: Søren Schmidt Date: Sun, 7 Apr 2002 06:25:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/burncd burncd.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 sos 2002/04/07 06:25:07 PDT Modified files: (Branch: RELENG_4) usr.sbin/burncd burncd.c Log: MFC: Dont quit prematurely when writing from stdin... Revision Changes Path 1.10.2.5 +5 -2 src/usr.sbin/burncd/burncd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 6:26:11 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 C30BB37B416; Sun, 7 Apr 2002 06:26:05 -0700 (PDT) Received: by elvis.mu.org (Postfix, from userid 1920) id 95CFCAE1C1; Sun, 7 Apr 2002 06:26:05 -0700 (PDT) Date: Sun, 7 Apr 2002 06:26:05 -0700 From: Maxime Henrion To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern vfs_syscalls.c Message-ID: <20020407132605.GD6519@elvis.mu.org> References: <200204071322.g37DMm980448@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204071322.g37DMm980448@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 Maxime Henrion wrote: > mux 2002/04/07 06:22:48 PDT > > Modified files: > sys/kern vfs_syscalls.c > Log: > o Change kernel_vmount() interface to be more convenient : pass two > separate strings instead of passing "foo=bar". > o Don't forget to clear the VMOUNT flag on the vnode when vfs_nmount() > fails because the fs doesn't implement VFS_NMOUNT (and in vfs_mount() > when the fs doesn't implement VFS_MOUNT) ; also decrement the vfs > refcount in the !MNT_UPDATE case. Oops, forgot : Reviewed by: phk Sorry, Maxime To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 6:27: 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 A4ED337B400; Sun, 7 Apr 2002 06:26:59 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37DQxM81196; Sun, 7 Apr 2002 06:26:59 -0700 (PDT) (envelope-from joe) Message-Id: <200204071326.g37DQxM81196@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 06:26:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdivar.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 joe 2002/04/07 06:26:59 PDT Modified files: sys/dev/usb usbdivar.h Log: MFNetBSD: revision 1.68 date: 2001/12/24 21:36:16; author: augustss; state: Exp; lines: +2 -1 Add some more DIAGNOSTIC tests. Make usb_match_device() match on USB_PRODUCT_ANY. Revision Changes Path 1.35 +2 -1 src/sys/dev/usb/usbdivar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 6:28: 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 3AF4237B405; Sun, 7 Apr 2002 06:27:57 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37DRvC82339; Sun, 7 Apr 2002 06:27:57 -0700 (PDT) (envelope-from joe) Message-Id: <200204071327.g37DRvC82339@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 06:27:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdivar.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 joe 2002/04/07 06:27:56 PDT Modified files: sys/dev/usb usbdivar.h Log: MFNetBSD: revision 1.69 date: 2001/12/27 18:43:46; author: augustss; state: Exp; lines: +3 -3 Change some DIAGNOSTIC #defines. Revision Changes Path 1.36 +3 -3 src/sys/dev/usb/usbdivar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 6:28: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 972E637B404; Sun, 7 Apr 2002 06:28:18 -0700 (PDT) Received: (from mux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37DSI682552; Sun, 7 Apr 2002 06:28:18 -0700 (PDT) (envelope-from mux) Message-Id: <200204071328.g37DSI682552@freefall.freebsd.org> From: Maxime Henrion Date: Sun, 7 Apr 2002 06:28:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/mount_std mount_std.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 mux 2002/04/07 06:28:18 PDT Modified files: sbin/mount_std mount_std.c Log: Add code to try the nmount(2) syscall when mount(2) failed with EOPNOTSUPP. This will make things less painful when I will commit the conversion of devfs, fdescfs and pseudofs to nmount. Reviewed by: phk Revision Changes Path 1.13 +22 -1 src/sbin/mount_std/mount_std.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 6:37: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 8F31C37B404; Sun, 7 Apr 2002 06:37:46 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37DbkS84187; Sun, 7 Apr 2002 06:37:46 -0700 (PDT) (envelope-from joe) Message-Id: <200204071337.g37DbkS84187@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 06:37:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdivar.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 joe 2002/04/07 06:37:46 PDT Modified files: sys/dev/usb usbdivar.h Log: Synchronise the code style with NetBSD. (No functional changes). Revision Changes Path 1.37 +14 -15 src/sys/dev/usb/usbdivar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 6:45: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 44F8137B404; Sun, 7 Apr 2002 06:45:25 -0700 (PDT) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37DjP187061; Sun, 7 Apr 2002 06:45:25 -0700 (PDT) (envelope-from n_hibma) Message-Id: <200204071345.g37DjP187061@freefall.freebsd.org> From: Nick Hibma Date: Sun, 7 Apr 2002 06:45:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG n_hibma 2002/04/07 06:45:25 PDT Modified files: sys/dev/usb usbdevs Log: Add Scanlogic SL11R IDE Adapter. Revision Changes Path 1.87 +1 -0 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 Sun Apr 7 6:47: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 5CCC637B400; Sun, 7 Apr 2002 06:47:20 -0700 (PDT) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37DlJL87627; Sun, 7 Apr 2002 06:47:19 -0700 (PDT) (envelope-from n_hibma) Message-Id: <200204071347.g37DlJL87627@freefall.freebsd.org> From: Nick Hibma Date: Sun, 7 Apr 2002 06:47:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs.h usbdevs_data.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 n_hibma 2002/04/07 06:47:19 PDT Modified files: sys/dev/usb usbdevs.h usbdevs_data.h Log: Regen. Revision Changes Path 1.99 +2 -1 src/sys/dev/usb/usbdevs.h 1.99 +7 -1 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 Sun Apr 7 6:58: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 4C8ED37B416; Sun, 7 Apr 2002 06:58:06 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Dw6Z94057; Sun, 7 Apr 2002 06:58:06 -0700 (PDT) (envelope-from joe) Message-Id: <200204071358.g37Dw6Z94057@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 06:58:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usb.c usb_port.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 joe 2002/04/07 06:58:06 PDT Modified files: sys/dev/usb usb.c usb_port.h Log: MFNetBSD: usb.c (1.58) date: 2001/11/20 23:53:26; author: augustss; state: Exp; lines: +61 -33 Create a special kernel thread to run the usb short lived tasks (instead of using the device discovery threads). The change to usb_port.h is a little hack whilst I address an issue with NetBSD. Revision Changes Path 1.70 +60 -32 src/sys/dev/usb/usb.c 1.50 +2 -0 src/sys/dev/usb/usb_port.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 6:59: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 C686937B416; Sun, 7 Apr 2002 06:59:32 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37DxW694314; Sun, 7 Apr 2002 06:59:32 -0700 (PDT) (envelope-from joe) Message-Id: <200204071359.g37DxW694314@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 06:59:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb 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/04/07 06:59:32 PDT Modified files: sys/dev/usb usb.c Log: MFNetBSD: revision 1.59 date: 2001/11/26 20:16:55; author: augustss; state: Exp; lines: +3 -3 Change wchan name for usb task thread. Revision Changes Path 1.71 +2 -2 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 Apr 7 7: 2: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 3600E37B405; Sun, 7 Apr 2002 07:02:32 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37E2WP94896; Sun, 7 Apr 2002 07:02:32 -0700 (PDT) (envelope-from joe) Message-Id: <200204071402.g37E2WP94896@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 07:02:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb 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/04/07 07:02:32 PDT Modified files: sys/dev/usb usb.c Log: MFNetBSD: revision 1.61 date: 2001/12/31 15:55:51; author: augustss; state: Exp; lines: +3 -5 Delay bus enumeration a little in case the controller is a companion controller. This way the main controller can gain ownership of the port before enumeration starts. Revision Changes Path 1.72 +8 -1 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 Apr 7 7:10: 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 0AF5237B404; Sun, 7 Apr 2002 07:10:02 -0700 (PDT) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37EA2V99584; Sun, 7 Apr 2002 07:10:02 -0700 (PDT) (envelope-from anders) Message-Id: <200204071410.g37EA2V99584@freefall.freebsd.org> From: Anders Nordby Date: Sun, 7 Apr 2002 07:10:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-fm/worker 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 anders 2002/04/07 07:10:01 PDT Modified files: x11-fm/worker Makefile distinfo pkg-plist Log: Update to version 2.4.0. PR: 36839 Submitted by: maintainer Revision Changes Path 1.7 +7 -1 ports/x11-fm/worker/Makefile 1.7 +1 -1 ports/x11-fm/worker/distinfo 1.5 +6 -3 ports/x11-fm/worker/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 Apr 7 7:10: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 8151037B416; Sun, 7 Apr 2002 07:10:52 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37EAqm99793; Sun, 7 Apr 2002 07:10:52 -0700 (PDT) (envelope-from joe) Message-Id: <200204071410.g37EAqm99793@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 07:10:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb 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/04/07 07:10:52 PDT Modified files: sys/dev/usb usb.c Log: MFNetBSD: revision 1.62 date: 2002/01/02 20:55:58; author: augustss; state: Exp; lines: +11 -10 Some more usb_proc_ptr changes. Also some minor stylistic changes. revision 1.63 date: 2002/01/02 20:58:12; author: augustss; state: Exp; lines: +4 -4 Fix typo in last commit. revision 1.64 date: 2002/01/02 22:44:44; author: augustss; state: Exp; lines: +7 -4 Add a comment. The usb_proc_ptr changes were introduced in 1.62 and backed out in 1.64. Revision Changes Path 1.73 +11 -7 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 Apr 7 7:13: 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 3B0B837B405; Sun, 7 Apr 2002 07:12:57 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37ECv500368; Sun, 7 Apr 2002 07:12:57 -0700 (PDT) (envelope-from joe) Message-Id: <200204071412.g37ECv500368@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 07:12:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb 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/04/07 07:12:57 PDT Modified files: sys/dev/usb usb.c Log: MFNetBSD: revision 1.65 date: 2002/01/03 22:20:45; author: augustss; state: Exp; lines: +9 -2 Add a DIAGNOSTIC check. From FreeBSD. (Just wrap these changes, that we already had, with a #ifdef DIAGNOSTIC). Revision Changes Path 1.74 +3 -1 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 Apr 7 7:21: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 C25B437B41B; Sun, 7 Apr 2002 07:21:33 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37ELXB01627; Sun, 7 Apr 2002 07:21:33 -0700 (PDT) (envelope-from joe) Message-Id: <200204071421.g37ELXB01627@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 07:21:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb 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/04/07 07:21:33 PDT Modified files: sys/dev/usb usb.c Log: MFNetBSD: revision 1.58 date: 2001/11/20 23:53:26; author: augustss; state: Exp; lines: +61 -33 Create a special kernel thread to run the usb short lived tasks (instead of using the device discovery threads). Revision Changes Path 1.75 +1 -1 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 Apr 7 7:25: 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 CC07A37B417; Sun, 7 Apr 2002 07:25:02 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37EP2902009; Sun, 7 Apr 2002 07:25:02 -0700 (PDT) (envelope-from joe) Message-Id: <200204071425.g37EP2902009@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 07:25:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.c ohcivar.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 joe 2002/04/07 07:25:02 PDT Modified files: sys/dev/usb ohci.c ohcivar.h Log: MFNetBSD: ohci.c (1.100), ohcivar.h (1.25) ohci.c revision 1.100 date: 2001/01/28 16:18:09; author: augustss; state: Exp; lines: +7 -2 Put a rate limiter on the scheduling overrun message. ohcivar.h: revision 1.25 date: 2001/01/28 19:01:20; author: augustss; state: Exp; lines: +4 -1 Commit second half of rate limit change. Revision Changes Path 1.88 +7 -2 src/sys/dev/usb/ohci.c 1.28 +4 -1 src/sys/dev/usb/ohcivar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 7:31: 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 1D3D637B417; Sun, 7 Apr 2002 07:31:06 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37EV6s03032; Sun, 7 Apr 2002 07:31:06 -0700 (PDT) (envelope-from joe) Message-Id: <200204071431.g37EV6s03032@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 07:31:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.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/04/07 07:31:04 PDT Modified files: sys/dev/usb ohci.c Log: MFNetBSD: revision 1.95 date: 2000/12/13 03:09:06; author: augustss; state: Exp; lines: +19 -3 Make the ohci driver not hang suspend/resume. It still doesn't resume correctly. From itohy@netbsd.org (ITOH Yasufumi) PR kern/11714. Revision Changes Path 1.89 +20 -3 src/sys/dev/usb/ohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 7:34: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 CE60337B405; Sun, 7 Apr 2002 07:34:24 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37EYOv03416; Sun, 7 Apr 2002 07:34:24 -0700 (PDT) (envelope-from joe) Message-Id: <200204071434.g37EYOv03416@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 07:34:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.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/04/07 07:34:24 PDT Modified files: sys/dev/usb ohci.c Log: MFNetBSD: revision 1.97 date: 2000/12/31 14:29:54; author: augustss; state: Exp; lines: +17 -3 Make the controller survive suspend/resume. Thanks to Steve Woodford for testing. Revision Changes Path 1.90 +16 -2 src/sys/dev/usb/ohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 7: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 BC14437B400; Sun, 7 Apr 2002 07:40:22 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37EeMb04393; Sun, 7 Apr 2002 07:40:22 -0700 (PDT) (envelope-from joe) Message-Id: <200204071440.g37EeMb04393@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 07:40:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.c ohcivar.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 joe 2002/04/07 07:40:21 PDT Modified files: sys/dev/usb ohci.c ohcivar.h Log: MFNetBSD: ohci.c (1.101), ohcivar.h (1.26) revision 1.101 date: 2001/02/20 15:20:32; author: minoura; Re-initialize some registers after resuming from suspend. Some APM BIOSes do not restore them. Reviewd by augustss. Revision Changes Path 1.91 +24 -5 src/sys/dev/usb/ohci.c 1.29 +4 -1 src/sys/dev/usb/ohcivar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 7:45: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 5114837B400; Sun, 7 Apr 2002 07:45:39 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Ejdf05285; Sun, 7 Apr 2002 07:45:39 -0700 (PDT) (envelope-from joe) Message-Id: <200204071445.g37Ejdf05285@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 07:45:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.c uhci.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/04/07 07:45:38 PDT Modified files: sys/dev/usb ohci.c uhci.c Log: MFNetBSD: ohci.c (1.111), uhci.c (1.146) date: 2001/11/20 21:12:46; author: augustss; Don't bother with interrupts when being disconnected. Revision Changes Path 1.92 +4 -1 src/sys/dev/usb/ohci.c 1.108 +4 -1 src/sys/dev/usb/uhci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 7: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 AA3E537B404; Sun, 7 Apr 2002 07:49:15 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37EnFU05829; Sun, 7 Apr 2002 07:49:15 -0700 (PDT) (envelope-from joe) Message-Id: <200204071449.g37EnFU05829@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 07:49:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.c uhci.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/04/07 07:49:15 PDT Modified files: sys/dev/usb ohci.c uhci.c Log: MFNetBSD: ohci.c (1.112), uhci.c (1.147) date: 2001/11/21 02:38:35; author: augustss; Cast some args to bitmask_snprintf(). Revision Changes Path 1.93 +4 -4 src/sys/dev/usb/ohci.c 1.109 +3 -3 src/sys/dev/usb/uhci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 7: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 E7B5D37B417; Sun, 7 Apr 2002 07:53:52 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Erqs06504; Sun, 7 Apr 2002 07:53:52 -0700 (PDT) (envelope-from joe) Message-Id: <200204071453.g37Erqs06504@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 07:53:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.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/04/07 07:53:52 PDT Modified files: sys/dev/usb ohci.c Log: MFNetBSD: revision 1.113 date: 2001/11/21 02:39:31; author: augustss; state: Exp; lines: +10 -4 Some more debug stuff. Revision Changes Path 1.94 +7 -1 src/sys/dev/usb/ohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 7: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 47F7537B41B; Sun, 7 Apr 2002 07:57:32 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37EvW207108; Sun, 7 Apr 2002 07:57:32 -0700 (PDT) (envelope-from joe) Message-Id: <200204071457.g37EvW207108@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 07:57:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.c ohcivar.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 joe 2002/04/07 07:57:31 PDT Modified files: sys/dev/usb ohci.c ohcivar.h Log: MFNetBSD: ohci.c (1.114), ohcivar.h (1.29) date: 2001/11/21 02:41:18; author: augustss; Use a task to perform the timeout abort so we have a process context when sleeping. Revision Changes Path 1.95 +17 -6 src/sys/dev/usb/ohci.c 1.30 +7 -0 src/sys/dev/usb/ohcivar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 7:58: 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 0DECF37B417; Sun, 7 Apr 2002 07:57:58 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Evwu07158; Sun, 7 Apr 2002 07:57:58 -0700 (PDT) (envelope-from phk) Message-Id: <200204071457.g37Evwu07158@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sun, 7 Apr 2002 07:57:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/newfs mkfs.c newfs.c newfs.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/04/07 07:57:57 PDT Modified files: sbin/newfs mkfs.c newfs.c newfs.h Log: bbsize and sbsize cannot ever be trusted from the disklabel, in particular as there may not be one. Remove #if 0'ed code which might mislead people to think otherwise. unifdef -ULOSTDIR, fsck can make lost+found on the fly. Sponsored by: DARPA & NAI Labs Revision Changes Path 1.54 +4 -45 src/sbin/newfs/mkfs.c 1.58 +0 -6 src/sbin/newfs/newfs.c 1.4 +0 -2 src/sbin/newfs/newfs.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 7:58: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 A188B37B400; Sun, 7 Apr 2002 07:58:12 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37EwCp07194; Sun, 7 Apr 2002 07:58:12 -0700 (PDT) (envelope-from ru) Message-Id: <200204071458.g37EwCp07194@freefall.freebsd.org> From: Ruslan Ermilov Date: Sun, 7 Apr 2002 07:58:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.lib.mk bsd.prog.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/04/07 07:58:12 PDT Modified files: share/mk bsd.lib.mk bsd.prog.mk Log: Fixed the nasty bug where .depend file that exists somewhere in the .PATH (but not in the ${.OBJDIR}) would result in a leak of the ${OBJS}: ${SRCS:M*.h} dependency hint. Spotted by: fixing the broken gnu/usr.bin/cc/cc1obj build MFC after: 1 day Revision Changes Path 1.107 +1 -1 src/share/mk/bsd.lib.mk 1.105 +1 -1 src/share/mk/bsd.prog.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 8: 1: 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 C6B1B37B417; Sun, 7 Apr 2002 08:01:01 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37F11q07927; Sun, 7 Apr 2002 08:01:01 -0700 (PDT) (envelope-from joe) Message-Id: <200204071501.g37F11q07927@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 08:01:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohcivar.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 joe 2002/04/07 08:01:01 PDT Modified files: sys/dev/usb ohcivar.h Log: MFNetBSD: revision 1.27 date: 2001/02/21 10:19:30; author: minoura; state: Exp; lines: +2 -3 There is no reason to exclude FreeBSD :). Revision Changes Path 1.31 +2 -3 src/sys/dev/usb/ohcivar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 8: 7: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 C67B437B400; Sun, 7 Apr 2002 08:07:24 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37F7Oc12464; Sun, 7 Apr 2002 08:07:24 -0700 (PDT) (envelope-from joe) Message-Id: <200204071507.g37F7Oc12464@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 08:07:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.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/04/07 08:07:24 PDT Modified files: sys/dev/usb ohci.c Log: MFNetBSD: revision 1.116 date: 2001/11/21 08:18:40; author: augustss; state: Exp; lines: +30 -3 Pay more attention to if the HC is being unplugged. Revision Changes Path 1.96 +30 -2 src/sys/dev/usb/ohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 8: 8: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from kazi.dcse.fee.vutbr.cz (kazi.dcse.fee.vutbr.cz [147.229.8.12]) by hub.freebsd.org (Postfix) with ESMTP id 3913B37B405; Sun, 7 Apr 2002 08:08:06 -0700 (PDT) Received: (from cejkar@localhost) by kazi.dcse.fee.vutbr.cz (8.11.6/8.11.6) id g37F84B80144; Sun, 7 Apr 2002 17:08:04 +0200 (CEST) Date: Sun, 7 Apr 2002 17:08:04 +0200 From: Cejka Rudolf To: "Andrey A. Chernov" Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/colldef cs_CZ.ISO8859-2.src Message-ID: <20020407170804.A79700@fit.vutbr.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from ache@FreeBSD.org on Sat, Apr 06, 2002 at 06:52:11PM -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 Andrey A. Chernov wrote (2002/04/06): > Modified files: > share/colldef cs_CZ.ISO8859-2.src > Log: > Fix this table, it was completely out of reasonable order No, you completely broke this table. Please, what does this mean? It is completely out of reasonable order now. Before, it was very close to our national collation norm and this norm is still mentioned at the beginning of the file - CSN 97 6030. If you could not believe in it, please look at collation table in Linux - they have this table similar. Why we could not have sorting in FreeBSD close to our norms? Why we have to have such broken sorting? Why you did not contact me before performing this change? -- Rudolf Cejka http://www.fit.vutbr.cz/~cejkar Brno University of Technology, Faculty of Information Technology Bozetechova 2, 612 66 Brno, Czech Republic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 8: 8: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 B1F4537B404; Sun, 7 Apr 2002 08:08:39 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37F8db12641; Sun, 7 Apr 2002 08:08:39 -0700 (PDT) (envelope-from joe) Message-Id: <200204071508.g37F8db12641@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 08:08:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.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/04/07 08:08:39 PDT Modified files: sys/dev/usb ohci.c Log: MFNetBSD: revision 1.117 date: 2001/12/27 11:27:11; author: augustss; state: Exp; lines: +5 -3 Update a comment. Revision Changes Path 1.97 +4 -2 src/sys/dev/usb/ohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 8:12: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 6BF0737B404; Sun, 7 Apr 2002 08:12:07 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37FC7V13057; Sun, 7 Apr 2002 08:12:07 -0700 (PDT) (envelope-from joe) Message-Id: <200204071512.g37FC7V13057@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 08:12:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.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/04/07 08:12:07 PDT Modified files: sys/dev/usb ohci.c Log: MFNetBSD: revision 1.118 date: 2001/12/27 18:48:28; author: augustss; state: Exp; lines: +24 -5 Add some DIAGNOSTIC stuf that I forgot. From Nate Williams. Revision Changes Path 1.98 +23 -4 src/sys/dev/usb/ohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 8:16: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 957E237B400; Sun, 7 Apr 2002 08:16:31 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37FGVn13617; Sun, 7 Apr 2002 08:16:31 -0700 (PDT) (envelope-from joe) Message-Id: <200204071516.g37FGVn13617@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 08:16:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.c ohcivar.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 joe 2002/04/07 08:16:31 PDT Modified files: sys/dev/usb ohci.c ohcivar.h Log: MFNetBSD: ohci.c (1.119), ohcivar.h (1.30) date: 2001/12/31 12:20:35; author: augustss; Change xfer abort to wait for the softintr to run. Revision Changes Path 1.99 +12 -6 src/sys/dev/usb/ohci.c 1.32 +2 -1 src/sys/dev/usb/ohcivar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 8:18: 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 CBE2437B419; Sun, 7 Apr 2002 08:18:00 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37FI0O13735; Sun, 7 Apr 2002 08:18:00 -0700 (PDT) (envelope-from joe) Message-Id: <200204071518.g37FI0O13735@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 08:18:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.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/04/07 08:18:00 PDT Modified files: sys/dev/usb ohci.c Log: MFNetBSD: revision 1.121 date: 2002/03/16 16:11:18; author: tsutsui; state: Exp; lines: +4 -4 Fix a couple of typo: - s/ehci/ohci/ (in unused arg of macro) - s/uhci/ohci/ (in debug message) Revision Changes Path 1.100 +3 -3 src/sys/dev/usb/ohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 8:39: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 5538A37B417; Sun, 7 Apr 2002 08:39:26 -0700 (PDT) Received: (from cy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37FdQE16656; Sun, 7 Apr 2002 08:39:26 -0700 (PDT) (envelope-from cy) Message-Id: <200204071539.g37FdQE16656@freefall.freebsd.org> From: Cy Schubert Date: Sun, 7 Apr 2002 08:39:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/fvwm-themes 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 cy 2002/04/07 08:39:26 PDT Modified files: x11-wm/fvwm-themes Makefile Log: Mark port broken due to PR 36849. I finally managed to track down the maintainer. Update an incorrect MAINTAINER email address. PR: 36849 Revision Changes Path 1.3 +3 -1 ports/x11-wm/fvwm-themes/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 8:41: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 2378A37B419; Sun, 7 Apr 2002 08:41:46 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37FfkR16951; Sun, 7 Apr 2002 08:41:46 -0700 (PDT) (envelope-from joe) Message-Id: <200204071541.g37FfkR16951@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 08:41:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.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/04/07 08:41:46 PDT Modified files: sys/dev/usb ohci.c Log: Re-add the definitions of htole32(x) and le32toh(x) for OpenBSD. Revision Changes Path 1.101 +14 -0 src/sys/dev/usb/ohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 8:49: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 767D637B405; Sun, 7 Apr 2002 08:49:31 -0700 (PDT) Received: (from nik@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37FnVs17892; Sun, 7 Apr 2002 08:49:31 -0700 (PDT) (envelope-from nik) Message-Id: <200204071549.g37FnVs17892@freefall.freebsd.org> From: Nik Clayton Date: Sun, 7 Apr 2002 08:49:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/auth_ldap 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 nik 2002/04/07 08:49:31 PDT Modified files: www/auth_ldap Makefile Log: Make sure it links with liblber. Remove BROKEN, and bump PORTREVISION. Submitted by: Robin P. Blanchard" Revision Changes Path 1.4 +2 -2 ports/www/auth_ldap/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 8:54: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 5920537B416; Sun, 7 Apr 2002 08:54:49 -0700 (PDT) Received: (from nik@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Fsn518601; Sun, 7 Apr 2002 08:54:49 -0700 (PDT) (envelope-from nik) Message-Id: <200204071554.g37Fsn518601@freefall.freebsd.org> From: Nik Clayton Date: Sun, 7 Apr 2002 08:54:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/scr2png 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 nik 2002/04/07 08:54:49 PDT Modified files: graphics/scr2png Makefile Log: Respect ${LOCALBASE} when installing PR: 32097 Submitted by: Kazutoshi Kubota Revision Changes Path 1.2 +3 -0 ports/graphics/scr2png/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 9: 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 1A8B237B416; Sun, 7 Apr 2002 09:00:12 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37G0CR19827; Sun, 7 Apr 2002 09:00:12 -0700 (PDT) (envelope-from marcus) Message-Id: <200204071600.g37G0CR19827@freefall.freebsd.org> From: Joe Marcus Clarke Date: Sun, 7 Apr 2002 09:00:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/gnome contact.sgml news.xml www/en/gnome/docs porting.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 marcus 2002/04/07 09:00:11 PDT Modified files: en/gnome contact.sgml news.xml en/gnome/docs porting.sgml Log: * Update the I18N section in light of the recent libiconv and gettext changes * Mention the GNOME 2.0 components are now at beta3 * Change my contact address to my FreeBSD.org address Reviewed by: sobomax Approved by: sobomax Revision Changes Path 1.11 +2 -2 www/en/gnome/contact.sgml 1.17 +3 -6 www/en/gnome/docs/porting.sgml 1.9 +13 -1 www/en/gnome/news.xml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 9:26: 0 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 1B83C37B419; Sun, 7 Apr 2002 09:25:52 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g37GPoW87960; Sun, 7 Apr 2002 19:25:50 +0300 (EEST) (envelope-from ru) Date: Sun, 7 Apr 2002 19:25:50 +0300 From: Ruslan Ermilov To: "David E. O'Brien" Cc: Bruce Evans , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/cc/cc1 Makefile src/gnu/usr.bin/cc/cc1obj Makefile src/gnu/usr.bin/cc/cc1plus Makefile Message-ID: <20020407162550.GE67968@sunbay.com> References: <200204040050.g340oEK35800@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="tMbDGjvJuJijemkf" Content-Disposition: inline In-Reply-To: <200204040050.g340oEK35800@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 --tMbDGjvJuJijemkf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 03, 2002 at 04:50:14PM -0800, David E. O'Brien wrote: > obrien 2002/04/03 16:50:14 PST >=20 > Modified files: > gnu/usr.bin/cc/cc1 Makefile=20 > gnu/usr.bin/cc/cc1obj Makefile=20 > gnu/usr.bin/cc/cc1plus Makefile=20 > Log: > Set NOSHARED conditionally. > =20 Why? Conditionally setting NOSHARED only makes sense in Makefile.inc where it may be overridden by individual makefiles beneath it. (Seeing if Bruce agrees.) Cheers, --=20 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 --tMbDGjvJuJijemkf 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 iD8DBQE8sHMOUkv4P6juNwoRAiPOAJ4lHpKtVlx5sdAEif73+mn2nsvH6wCfZ5Gz jn7v3+jbv5nOxXk32DFuO5g= =CJaN -----END PGP SIGNATURE----- --tMbDGjvJuJijemkf-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 9:27:40 2002 Delivered-To: cvs-all@freebsd.org Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by hub.freebsd.org (Postfix) with ESMTP id 1630037B404; Sun, 7 Apr 2002 09:27:32 -0700 (PDT) Received: from shumai.marcuscom.com (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.11.6/8.11.6) with ESMTP id g37GPpv11300; Sun, 7 Apr 2002 12:25:51 -0400 (EDT) (envelope-from marcus@marcuscom.com) Subject: Re: cvs commit: ports/x11/gnomelibs Makefile distinfo pkg-plist From: Joe Marcus Clarke To: Maxim Sobolev Cc: john_m_cooper@yahoo.com, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200204070837.g378bi240647@vega.vega.com> References: <200204070837.g378bi240647@vega.vega.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-4psdgejoLPlFTpy/4grn" X-Mailer: Ximian Evolution 1.0.3 Date: 07 Apr 2002 13:27:45 -0300 Message-Id: <1018196865.11209.20.camel@shumai.marcuscom.com> Mime-Version: 1.0 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-4psdgejoLPlFTpy/4grn Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2002-04-07 at 05:37, Maxim Sobolev wrote: > >=20 > > Note that make install fails if the gtk-doc port is installed. :( >=20 > Known problem. Many GNOME ports will fail when gtk-doc is installed. > There is even PR on this. If we add --disable-gtk-doc to CONFIGURE_ARGS for these ports, the install will succeed. I've tested this with gnomelibs and bonobo.=20 Since it never seems to work anyway, is there a downside to doing this? >=20 > -Maxim >=20 > >=20 > > On Sat, 2002-04-06 at 09:31, Maxim Sobolev wrote: > > > sobomax 2002/04/06 09:31:17 PST > > >=20 > > > Modified files: > > > x11/gnomelibs Makefile distinfo pkg-plist=20 > > > x11/gnomelibs/files patch-bg=20 > > > Log: > > > Update to 1.4.1.5. > > > =20 > > > Revision Changes Path > > > 1.96 +3 -2 ports/x11/gnomelibs/Makefile > > > 1.39 +1 -1 ports/x11/gnomelibs/distinfo > > > 1.14 +15 -9 ports/x11/gnomelibs/files/patch-bg > > > 1.33 +1 -1 ports/x11/gnomelibs/pkg-plist > > >=20 > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > with "unsubscribe cvs-all" in the body of the message > > --=20 > > _ > > | |V| / ' || MacroHard -- \ > > \_| | | \_, || the perfection of form over | > > ----------------------------------|| substance, marketing over | > > Web: http://www.borgsdemons.com || performance, and greed over | > > AIM: johnmcooper || design . . . | > > =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=3D=3D/ > > Public Key: http://www.borgsdemons.com/Personal/pgpkey.asc | > > =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=3D=3D\ > >=20 > >=20 >=20 >=20 --=-4psdgejoLPlFTpy/4grn 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 iEYEABECAAYFAjywc4EACgkQb2iPiv4Uz4fwFQCfeLEUsjuBNNwXnELyXOUwXNV5 +7cAnjuGvgFVzqYbMHxjXv99U47Wu31R =fjLK -----END PGP SIGNATURE----- --=-4psdgejoLPlFTpy/4grn-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 9: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 D59F637B405; Sun, 7 Apr 2002 09:32:36 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37GWa927328; Sun, 7 Apr 2002 09:32:36 -0700 (PDT) (envelope-from marcus) Message-Id: <200204071632.g37GWa927328@freefall.freebsd.org> From: Joe Marcus Clarke Date: Sun, 7 Apr 2002 09:32:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/confregdecode Makefile ports/net/confregdecode/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 marcus 2002/04/07 09:32:36 PDT Modified files: net/confregdecode Makefile net/confregdecode/files patch-ab Log: Take advantage of USE_JAVA from bsd.java.mk. Reviewed by: sobomax Approved by: sobomax Revision Changes Path 1.4 +2 -4 ports/net/confregdecode/Makefile 1.3 +18 -3 ports/net/confregdecode/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 Sun Apr 7 9:36: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 1B61937B404; Sun, 7 Apr 2002 09:36:31 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37GaVc27923; Sun, 7 Apr 2002 09:36:31 -0700 (PDT) (envelope-from joe) Message-Id: <200204071636.g37GaVc27923@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 09:36:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ohci.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/04/07 09:36:31 PDT Modified files: sys/dev/usb ohci.c Log: Remove the overt differences between ours and NetBSD's version of this file. Revision Changes Path 1.102 +38 -50 src/sys/dev/usb/ohci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 9:37: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 1CABB37B400; Sun, 7 Apr 2002 09:37:16 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37GbGM27979; Sun, 7 Apr 2002 09:37:16 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204071637.g37GbGM27979@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sun, 7 Apr 2002 09:37:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/locale euc.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 asmodai 2002/04/07 09:37:15 PDT Modified files: lib/libc/locale euc.c Log: Fix EUC encoding conversion for codeset 3 and 4 to comply to the specification. PR: 28552 Submitted by: NIIMI Satoshi Revision Changes Path 1.7 +6 -0 src/lib/libc/locale/euc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 9:38: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 43AD737B404; Sun, 7 Apr 2002 09:38:15 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37GcFs28179; Sun, 7 Apr 2002 09:38:15 -0700 (PDT) (envelope-from joe) Message-Id: <200204071638.g37GcFs28179@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 09:38:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhci.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/04/07 09:38:15 PDT Modified files: sys/dev/usb uhci.c Log: MFNetBSD: revision 1.148 date: 2001/11/21 12:25:55; author: augustss; state: Exp; lines: +3 -3 Fix typo in comment. Revision Changes Path 1.110 +2 -2 src/sys/dev/usb/uhci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 9:41: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 9F8D837B416; Sun, 7 Apr 2002 09:41:26 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37GfQN28582; Sun, 7 Apr 2002 09:41:26 -0700 (PDT) (envelope-from marcus) Message-Id: <200204071641.g37GfQN28582@freefall.freebsd.org> From: Joe Marcus Clarke Date: Sun, 7 Apr 2002 09:41:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/gnomelibs 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 marcus 2002/04/07 09:41:26 PDT Modified files: x11/gnomelibs Makefile Log: Fix installation is gtk-doc is also installed. Note, since it seems like a number of ports are broken when gtk-doc is also installed, I wonder if adding --disable-gtk-doc to all their CONFIGURE_ARGS isn't a bad idea. Reviewed by: sobomax Approved by: sobomax Revision Changes Path 1.97 +2 -1 ports/x11/gnomelibs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 9:53: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 D5D6137B416; Sun, 7 Apr 2002 09:53:47 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Grlq30476; Sun, 7 Apr 2002 09:53:47 -0700 (PDT) (envelope-from ru) Message-Id: <200204071653.g37Grlq30476@freefall.freebsd.org> From: Ruslan Ermilov Date: Sun, 7 Apr 2002 09:53:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/xlint/lint1 main1.c src/usr.bin/xlint/xlint xlint.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/04/07 09:53:47 PDT Modified files: usr.bin/xlint/lint1 main1.c usr.bin/xlint/xlint xlint.c Log: FreeBSD prior to 4.4-RELEASE and older versions of 5.0-CURRENT do not have setprogname(3) and getprogname(3), and we need to build lint(1) as a cross-tool to bootstrap. Versions from lib/libc/gen can't be compiled either. PR: bin/36747 Revision Changes Path 1.2 +53 -15 src/usr.bin/xlint/lint1/main1.c 1.19 +4 -6 src/usr.bin/xlint/xlint/xlint.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 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 CA50637B417; Sun, 7 Apr 2002 10:01:20 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37H1Kt31568; Sun, 7 Apr 2002 10:01:20 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204071701.g37H1Kt31568@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sun, 7 Apr 2002 10:01:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/routed parms.c routed.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 asmodai 2002/04/07 10:01:20 PDT Modified files: sbin/routed parms.c routed.8 Log: Add the possibility to use a no_rip_out configuration option in order to stop routed from sending out RIP updates. PR: 29090 Submitted by: Matthew Braithwaite Revision Changes Path 1.11 +3 -0 src/sbin/routed/parms.c 1.28 +2 -0 src/sbin/routed/routed.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 10: 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 567A237B405; Sun, 7 Apr 2002 10:02:26 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37H2QQ31791; Sun, 7 Apr 2002 10:02:26 -0700 (PDT) (envelope-from joe) Message-Id: <200204071702.g37H2QQ31791@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 10:02:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhci.c usbdi.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 joe 2002/04/07 10:02:26 PDT Modified files: sys/dev/usb uhci.c usbdi.h Log: Update $NetBSD$ idents. Revision Changes Path 1.111 +1 -1 src/sys/dev/usb/uhci.c 1.45 +1 -1 src/sys/dev/usb/usbdi.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 10: 3: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 501A437B416; Sun, 7 Apr 2002 10:03:06 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37H36t31847; Sun, 7 Apr 2002 10:03:06 -0700 (PDT) (envelope-from ru) Message-Id: <200204071703.g37H36t31847@freefall.freebsd.org> From: Ruslan Ermilov Date: Sun, 7 Apr 2002 10:03:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.sys.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/04/07 10:03:06 PDT Modified files: share/mk bsd.sys.mk Log: FreeBSD prior to 4.5-RELEASE and older versions of 5.0-CURRENT do not have the __FBSDID() macro in . Fix this once and for all for tools that need to be bootstrapped. PR: bin/36747 MFC after: 3 days Prodded by: obrien Revision Changes Path 1.6 +5 -0 src/share/mk/bsd.sys.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 10: 4: 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 17A8A37B400; Sun, 7 Apr 2002 10:04:02 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37H42i31984; Sun, 7 Apr 2002 10:04:02 -0700 (PDT) (envelope-from joe) Message-Id: <200204071704.g37H42i31984@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 10:04:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ugraphire_rdesc.h uhid.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/04/07 10:04:01 PDT Modified files: sys/dev/usb uhid.c Added files: sys/dev/usb ugraphire_rdesc.h Log: MFNetBSD: uhid.c (1.42 & 1.43), ugraphire_rdesc.h (1.1) date: 2000/12/29 01:47:49; author: augustss; Supply our own report descriptor (from Nick Hibma) for the Wacom Graphire. The descriptor it reports is broken. XXX Not tested, because I don't have the device. date: 2001/08/15 00:06:49; author: augustss; state: Exp; lines: +3 -1 If there was a vendor+product locator match return a higher match value. Rationale, if you have a device (e.g., a mouse) with a more specific driver but want to recognize it with the more generic driver you can do that by supplying vendor and product locators for the generic one. Revision Changes Path 1.1 +92 -0 src/sys/dev/usb/ugraphire_rdesc.h (new) 1.47 +24 -3 src/sys/dev/usb/uhid.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 10: 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 6608437B427; Sun, 7 Apr 2002 10:05:50 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37H5oX36097; Sun, 7 Apr 2002 10:05:50 -0700 (PDT) (envelope-from joe) Message-Id: <200204071705.g37H5oX36097@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 10:05:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhid.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/04/07 10:05:50 PDT Modified files: sys/dev/usb uhid.c Log: MFNetBSD: revision 1.44 date: 2001/09/15 16:16:28; author: yamt; state: Exp; lines: +3 -3 correct debug messages. Revision Changes Path 1.48 +3 -3 src/sys/dev/usb/uhid.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 10: 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 3C1C337B404; Sun, 7 Apr 2002 10:07:37 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37H7br36356; Sun, 7 Apr 2002 10:07:37 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204071707.g37H7br36356@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sun, 7 Apr 2002 10:07:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/tinyware/simple_httpd simple_httpd.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 asmodai 2002/04/07 10:07:37 PDT Modified files: release/picobsd/tinyware/simple_httpd simple_httpd.c Log: Actually print the port we are listening too when specified verbose mode. PR: 29725 Submitted by: Eugene Grosbein Revision Changes Path 1.8 +2 -2 src/release/picobsd/tinyware/simple_httpd/simple_httpd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 10:13: 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 B670537B405; Sun, 7 Apr 2002 10:13:00 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37HD0s37290; Sun, 7 Apr 2002 10:13:00 -0700 (PDT) (envelope-from joe) Message-Id: <200204071713.g37HD0s37290@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 10:13:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhid.c ums.c usbdi_util.c usbdi_util.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 joe 2002/04/07 10:13:00 PDT Modified files: sys/dev/usb uhid.c ums.c usbdi_util.c usbdi_util.h Log: MFNetBSD: uhid.c (1.45), ums.c (1.49), usbdi_util.c (1.35), usbdi_util.h (1.23) date: 2001/10/26 17:58:21; author: augustss; s/usbd_alloc_report_desc/usbd_read_report_desc/ Revision Changes Path 1.49 +2 -2 src/sys/dev/usb/uhid.c 1.53 +2 -2 src/sys/dev/usb/ums.c 1.25 +7 -8 src/sys/dev/usb/usbdi_util.c 1.14 +4 -4 src/sys/dev/usb/usbdi_util.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 10:16: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 172DE37B404; Sun, 7 Apr 2002 10:16:29 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37HGSx37917; Sun, 7 Apr 2002 10:16:28 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204071716.g37HGSx37917@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sun, 7 Apr 2002 10:16:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/tinyware/simple_httpd simple_httpd.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 asmodai 2002/04/07 10:16:28 PDT Modified files: release/picobsd/tinyware/simple_httpd simple_httpd.c Log: Garbage collect unused variables. PR: 29725 Submitted by: Eugene Grosbein Revision Changes Path 1.9 +3 -6 src/release/picobsd/tinyware/simple_httpd/simple_httpd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 10:22: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 D648537B400; Sun, 7 Apr 2002 10:22:23 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37HMNO38620; Sun, 7 Apr 2002 10:22:23 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204071722.g37HMNO38620@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sun, 7 Apr 2002 10:22:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/tinyware/simple_httpd simple_httpd.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 asmodai 2002/04/07 10:22:23 PDT Modified files: release/picobsd/tinyware/simple_httpd simple_httpd.c Log: Use %lld instead of %d in order to print struct stat's st_size, which is an off_t. PR: 29725 Submitted by: Eugene Grosbein Revision Changes Path 1.10 +2 -2 src/release/picobsd/tinyware/simple_httpd/simple_httpd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 10:34:30 2002 Delivered-To: cvs-all@freebsd.org Received: from smtp.bmi.net (smtp.bmi.net [204.57.191.31]) by hub.freebsd.org (Postfix) with ESMTP id D25DB37B400; Sun, 7 Apr 2002 10:34:22 -0700 (PDT) Received: from johncoop.MSHOME ([206.63.201.3]) by smtp.bmi.net (Pro-8.9.3/Pro-8.9.3) with ESMTP id KAA05494; Sun, 7 Apr 2002 10:34:06 -0700 Subject: Re: cvs commit: ports/x11/gnomelibs Makefile distinfo pkg-plist From: John Merryweather Cooper Reply-To: john_m_cooper@yahoo.com To: Joe Marcus Clarke Cc: Maxim Sobolev , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <1018196865.11209.20.camel@shumai.marcuscom.com> References: <200204070837.g378bi240647@vega.vega.com> <1018196865.11209.20.camel@shumai.marcuscom.com> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.3 Date: 07 Apr 2002 11:34:31 -0600 Message-Id: <1018200873.43003.4.camel@johncoop.MSHOME> Mime-Version: 1.0 Sender: owner-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 it won't work with gtk-doc, then disabling it seems logical. :) I can't see a downside. On Sun, 2002-04-07 at 10:27, Joe Marcus Clarke wrote: > On Sun, 2002-04-07 at 05:37, Maxim Sobolev wrote: > > > > > > Note that make install fails if the gtk-doc port is installed. :( > > > > Known problem. Many GNOME ports will fail when gtk-doc is installed. > > There is even PR on this. > > If we add --disable-gtk-doc to CONFIGURE_ARGS for these ports, the > install will succeed. I've tested this with gnomelibs and bonobo. > Since it never seems to work anyway, is there a downside to doing this? > > > > > -Maxim > > > > > > > > On Sat, 2002-04-06 at 09:31, Maxim Sobolev wrote: > > > > sobomax 2002/04/06 09:31:17 PST > > > > > > > > Modified files: > > > > x11/gnomelibs Makefile distinfo pkg-plist > > > > x11/gnomelibs/files patch-bg > > > > Log: > > > > Update to 1.4.1.5. > > > > > > > > Revision Changes Path > > > > 1.96 +3 -2 ports/x11/gnomelibs/Makefile > > > > 1.39 +1 -1 ports/x11/gnomelibs/distinfo > > > > 1.14 +15 -9 ports/x11/gnomelibs/files/patch-bg > > > > 1.33 +1 -1 ports/x11/gnomelibs/pkg-plist > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > > > with "unsubscribe cvs-all" in the body of the message > > > -- > > > _ > > > | |V| / ' || MacroHard -- \ > > > \_| | | \_, || the perfection of form over | > > > ----------------------------------|| substance, marketing over | > > > Web: http://www.borgsdemons.com || performance, and greed over | > > > AIM: johnmcooper || design . . . | > > > =====================================================================/ > > > Public Key: http://www.borgsdemons.com/Personal/pgpkey.asc | > > > =====================================================================\ > > > > > > > > > > > -- _ | |V| / ' || MacroHard -- \ \_| | | \_, || the perfection of form over | ----------------------------------|| substance, marketing over | Web: http://www.borgsdemons.com || performance, and greed over | AIM: johnmcooper || design . . . | =====================================================================/ Public Key: http://www.borgsdemons.com/Personal/pgpkey.asc | =====================================================================\ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 10:41: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 D02F737B404; Sun, 7 Apr 2002 10:41:33 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37HfX441316; Sun, 7 Apr 2002 10:41:33 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204071741.g37HfX441316@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sun, 7 Apr 2002 10:41:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/tinyware/simple_httpd simple_httpd.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 asmodai 2002/04/07 10:41:33 PDT Modified files: release/picobsd/tinyware/simple_httpd simple_httpd.c Log: Give functions proper return type, since the default is an integer, where the author obviously meant a void since he doesn't return any values. One caveat, http_request has three return()'s, but doesn't do anything with it. Either the code needs to be rewritten to take care of proper error handling on that point, or the returns ripped out. I made it void for now. Revision Changes Path 1.11 +8 -2 src/release/picobsd/tinyware/simple_httpd/simple_httpd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 10:42: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 54E9837B404; Sun, 7 Apr 2002 10:42:27 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37HgRR41493; Sun, 7 Apr 2002 10:42:27 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204071742.g37HgRR41493@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sun, 7 Apr 2002 10:42:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/tinyware/simple_httpd simple_httpd.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 asmodai 2002/04/07 10:42:27 PDT Modified files: release/picobsd/tinyware/simple_httpd simple_httpd.c Log: Add a missing void in the parameter list of http_request(). Revision Changes Path 1.12 +2 -2 src/release/picobsd/tinyware/simple_httpd/simple_httpd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 10: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 5DAED37B404; Sun, 7 Apr 2002 10:53:58 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Hrwg42831; Sun, 7 Apr 2002 10:53:58 -0700 (PDT) (envelope-from joe) Message-Id: <200204071753.g37Hrwg42831@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 10:53:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb hid.c uhci.c usb_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 joe 2002/04/07 10:53:58 PDT Modified files: sys/dev/usb hid.c uhci.c usb_subr.c Log: MFNetBSD: hid.c (1.22), uhci.c (1.150), usb_subr.c (1.97) date: 2002/01/14 13:23:37; author: tsutsui; Call malloc(9) with M_ZERO flag instead of memset() after malloc(). Revision Changes Path 1.18 +1 -2 src/sys/dev/usb/hid.c 1.112 +3 -3 src/sys/dev/usb/uhci.c 1.47 +1 -2 src/sys/dev/usb/usb_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 10:55: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 D5AD637B41A; Sun, 7 Apr 2002 10:55:16 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37HtGj43037; Sun, 7 Apr 2002 10:55:16 -0700 (PDT) (envelope-from joe) Message-Id: <200204071755.g37HtGj43037@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 10:55:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhci.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/04/07 10:55:16 PDT Modified files: sys/dev/usb uhci.c Log: MFNetBSD: revision 1.151 date: 2002/01/27 23:00:34; author: augustss; state: Exp; lines: +3 -3 Use M_WAITOK instead of M_NOWAIT when allocating extra descriptors. Spotted by OpenBSD. Revision Changes Path 1.113 +2 -2 src/sys/dev/usb/uhci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 11: 3: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 4EC9C37B417; Sun, 7 Apr 2002 11:03:45 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37I3jj44027; Sun, 7 Apr 2002 11:03:45 -0700 (PDT) (envelope-from joe) Message-Id: <200204071803.g37I3jj44027@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 11:03:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhci.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/04/07 11:03:45 PDT Modified files: sys/dev/usb uhci.c Log: MFNetBSD: revision 1.153 date: 2002/02/11 11:40:33; author: augustss; state: Exp; lines: +67 -26 Switch to the same abort mechanism as in [eo]hci; it should be more robust. Revision Changes Path 1.114 +67 -23 src/sys/dev/usb/uhci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 11: 6: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 526A837B400; Sun, 7 Apr 2002 11:06:34 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37I6YF48077; Sun, 7 Apr 2002 11:06:34 -0700 (PDT) (envelope-from joe) Message-Id: <200204071806.g37I6YF48077@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 11:06:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhcireg.h uhcivar.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 joe 2002/04/07 11:06:34 PDT Modified files: sys/dev/usb uhcireg.h uhcivar.h Log: MFNetBSD: uhcireg.h (1.15), uhcivar.h (1.33) date: 2002/02/11 11:41:30; author: augustss; Switch to new abort mechanism. Revision Changes Path 1.20 +2 -1 src/sys/dev/usb/uhcireg.h 1.33 +3 -1 src/sys/dev/usb/uhcivar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 11: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 508DC37B404; Sun, 7 Apr 2002 11:10:12 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37IACi48460; Sun, 7 Apr 2002 11:10:12 -0700 (PDT) (envelope-from joe) Message-Id: <200204071810.g37IACi48460@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 11:10:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhci.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/04/07 11:10:12 PDT Modified files: sys/dev/usb uhci.c Log: MFNetBSD: revision 1.154 date: 2002/02/27 12:12:45; author: augustss; state: Exp; lines: +14 -9 Remove spurious splusb(). Lower abort hardware wait. Revision Changes Path 1.115 +13 -8 src/sys/dev/usb/uhci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 11:13: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 5912737B400; Sun, 7 Apr 2002 11:13:16 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37IDG648967; Sun, 7 Apr 2002 11:13:16 -0700 (PDT) (envelope-from joe) Message-Id: <200204071813.g37IDG648967@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 11:13:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhci.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/04/07 11:13:16 PDT Modified files: sys/dev/usb uhci.c Log: MFNetBSD: revision 1.155 date: 2002/02/27 12:42:41; author: augustss; state: Exp; lines: +8 -8 Move the interrupt bailout when a cancelled ii is found. Revision Changes Path 1.116 +7 -8 src/sys/dev/usb/uhci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 11:14: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 7F4B237B41B; Sun, 7 Apr 2002 11:14:08 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37IE8549056; Sun, 7 Apr 2002 11:14:08 -0700 (PDT) (envelope-from joe) Message-Id: <200204071814.g37IE8549056@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 11:14:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhci.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/04/07 11:14:08 PDT Modified files: sys/dev/usb uhci.c Log: MFNetBSD: revision 1.156 date: 2002/03/04 00:53:33; author: augustss; state: Exp; lines: +3 -3 Use the correct pointer for the timeout abort. Revision Changes Path 1.117 +2 -2 src/sys/dev/usb/uhci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 11: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 430B237B419; Sun, 7 Apr 2002 11:15:38 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37IFcn49263; Sun, 7 Apr 2002 11:15:38 -0700 (PDT) (envelope-from joe) Message-Id: <200204071815.g37IFcn49263@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 11:15:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhci.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/04/07 11:15:37 PDT Modified files: sys/dev/usb uhci.c Log: MFNetBSD: revision 1.157 date: 2002/03/16 16:13:41; author: tsutsui; state: Exp; lines: +4 -4 Fix a couple of typo: - s/ehci/uhci/ (in unused arg of macro) - s/ohci/uhci/ (in panic message) Revision Changes Path 1.118 +3 -3 src/sys/dev/usb/uhci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 11:16: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 6F50A37B404; Sun, 7 Apr 2002 11:16:18 -0700 (PDT) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37IGIo49426; Sun, 7 Apr 2002 11:16:18 -0700 (PDT) (envelope-from luigi) Message-Id: <200204071816.g37IGIo49426@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 7 Apr 2002 11:16:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/examples/diskless clone_root 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/04/07 11:16:18 PDT Modified files: (Branch: RELENG_4) share/examples/diskless clone_root Log: Add a missing parenthesis Revision Changes Path 1.1.2.4 +1 -1 src/share/examples/diskless/clone_root To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 11:19:13 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 62E3C37B400 for ; Sun, 7 Apr 2002 11:19:09 -0700 (PDT) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.2/8.12.2) with ESMTP id g37IItx7069016; Sun, 7 Apr 2002 22:18:59 +0400 (MSD) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.2/8.12.2/Submit) id g37IIptE069015; Sun, 7 Apr 2002 22:18:51 +0400 (MSD) Date: Sun, 7 Apr 2002 22:18:49 +0400 From: "Andrey A. Chernov" To: Cejka Rudolf Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/colldef cs_CZ.ISO8859-2.src Message-ID: <20020407181849.GA68881@nagual.pp.ru> References: <20020407170804.A79700@fit.vutbr.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020407170804.A79700@fit.vutbr.cz> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 07, 2002 at 17:08:04 +0200, Cejka Rudolf wrote: > Andrey A. Chernov wrote (2002/04/06): > > Modified files: > > share/colldef cs_CZ.ISO8859-2.src > > Log: > > Fix this table, it was completely out of reasonable order > > No, you completely broke this table. Please, what does this mean? > It is completely out of reasonable order now. Before, it was > very close to our national collation norm and this norm is > still mentioned at the beginning of the file - CSN 97 6030. > If you could not believe in it, please look at collation table > in Linux - they have this table similar. Why we could not have > sorting in FreeBSD close to our norms? Why we have to have such > broken sorting? Why you did not contact me before performing this > change? See README file commited to the colldef deirectory shortly and la_LN.ISO8859-2.src table as good example. -- 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 Sun Apr 7 11:33: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 DEB8E37B404; Sun, 7 Apr 2002 11:33:12 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37IXCC52046; Sun, 7 Apr 2002 11:33:12 -0700 (PDT) (envelope-from joe) Message-Id: <200204071833.g37IXCC52046@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 7 Apr 2002 11:33:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb uhci.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/04/07 11:33:12 PDT Modified files: sys/dev/usb uhci.c Log: General white space cleanup, to synchronise with NetBSD. Revision Changes Path 1.119 +36 -26 src/sys/dev/usb/uhci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 11:55:12 2002 Delivered-To: cvs-all@freebsd.org Received: from kazi.dcse.fee.vutbr.cz (kazi.dcse.fee.vutbr.cz [147.229.8.12]) by hub.freebsd.org (Postfix) with ESMTP id D783F37B41A for ; Sun, 7 Apr 2002 11:55:08 -0700 (PDT) Received: (from cejkar@localhost) by kazi.dcse.fee.vutbr.cz (8.11.6/8.11.6) id g37It1F85231; Sun, 7 Apr 2002 20:55:01 +0200 (CEST) Date: Sun, 7 Apr 2002 20:55:01 +0200 From: Cejka Rudolf To: "Andrey A. Chernov" Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/colldef cs_CZ.ISO8859-2.src Message-ID: <20020407205501.A84706@fit.vutbr.cz> References: <20020407170804.A79700@fit.vutbr.cz> <20020407181849.GA68881@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020407181849.GA68881@nagual.pp.ru>; from ache@nagual.pp.ru on Sun, Apr 07, 2002 at 10:18:49PM +0400 Sender: owner-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 wrote (2002/04/07): > > No, you completely broke this table. Please, what does this mean? > > It is completely out of reasonable order now. Before, it was > > very close to our national collation norm and this norm is > > still mentioned at the beginning of the file - CSN 97 6030. > > If you could not believe in it, please look at collation table > > in Linux - they have this table similar. Why we could not have > > sorting in FreeBSD close to our norms? Why we have to have such > > broken sorting? Why you did not contact me before performing this > > change? > See README file commited to the colldef deirectory shortly and > la_LN.ISO8859-2.src table as good example. It seems that you are taking your new README as an axiom. Why you want that all collations have to be ASCII compatible? In which norm is it said? Previous collation sequence was not broken, so please use atleast forced commit and write down proper comment, why you have to break our collation. I saw both files, but please answer all my concrete questions with concrete and constructive respones. Maybe it is good example, but it is very broken for Czech and Slovak collation so we need our collation definition, which was correct and now is broken and I can not use sort anymore until I (and others) fix collation by hand. Please answer my questions and if there is something against another norms, I can consult it with other Czech and Slovak people on both sides, FreeBSD and Linux - but it is possible just based on some concrete and constructive reponse, why you are doing what you are doing. -- Rudolf Cejka http://www.fit.vutbr.cz/~cejkar Brno University of Technology, Faculty of Information Technology Bozetechova 2, 612 66 Brno, Czech Republic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 13:34: 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 B5B2437B448; Sun, 7 Apr 2002 13:33:29 -0700 (PDT) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37KXPx75146; Sun, 7 Apr 2002 13:33:25 -0700 (PDT) (envelope-from pat) Message-Id: <200204072033.g37KXPx75146@freefall.freebsd.org> From: Patrick Li Date: Sun, 7 Apr 2002 13:33:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/xzx 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/04/07 13:33:24 PDT Modified files: emulators/xzx Makefile distinfo Log: - Update to 4.1 - Disallow distribution in package and cdrom form because of license PR: 36853 Submitted by: maintainer Revision Changes Path 1.25 +5 -1 ports/emulators/xzx/Makefile 1.11 +1 -1 ports/emulators/xzx/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 13: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 7FC8637B405; Sun, 7 Apr 2002 13:41:09 -0700 (PDT) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Kf9c76437; Sun, 7 Apr 2002 13:41:09 -0700 (PDT) (envelope-from luigi) Message-Id: <200204072041.g37Kf9c76437@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 7 Apr 2002 13:41:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/floppy.tree/etc rc1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/07 13:41:09 PDT Modified files: release/picobsd/floppy.tree/etc rc1 Log: Fix handling of undefined variables. Add override for /etc/rc.local . Add hook to start syslogd if compiled-in and /etc/syslog.conf exists Revision Changes Path 1.4 +7 -3 src/release/picobsd/floppy.tree/etc/rc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 13:41: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 5188F37B405; Sun, 7 Apr 2002 13:41:43 -0700 (PDT) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37KfhY76504; Sun, 7 Apr 2002 13:41:43 -0700 (PDT) (envelope-from luigi) Message-Id: <200204072041.g37KfhY76504@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 7 Apr 2002 13:41:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/floppy.tree/etc rc1 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/04/07 13:41:43 PDT Modified files: (Branch: RELENG_4) release/picobsd/floppy.tree/etc rc1 Log: MFC: Fix handling of undefined variables. Add override for /etc/rc.local . Add hook to start syslogd if compiled-in and /etc/syslog.conf exists Revision Changes Path 1.1.2.3 +9 -3 src/release/picobsd/floppy.tree/etc/rc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 13:42: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 2D48237B41E for ; Sun, 7 Apr 2002 13:41:50 -0700 (PDT) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.2/8.12.2) with ESMTP id g37Kfex7069971; Mon, 8 Apr 2002 00:41:43 +0400 (MSD) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.2/8.12.2/Submit) id g37KfaEC069970; Mon, 8 Apr 2002 00:41:37 +0400 (MSD) Date: Mon, 8 Apr 2002 00:41:34 +0400 From: "Andrey A. Chernov" To: Cejka Rudolf Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/colldef cs_CZ.ISO8859-2.src Message-ID: <20020407204132.GA69778@nagual.pp.ru> References: <20020407170804.A79700@fit.vutbr.cz> <20020407181849.GA68881@nagual.pp.ru> <20020407205501.A84706@fit.vutbr.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020407205501.A84706@fit.vutbr.cz> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 07, 2002 at 20:55:01 +0200, Cejka Rudolf wrote: > It seems that you are taking your new README as an axiom. > Why you want that all collations have to be ASCII compatible? Because programs gets broken in other case. Almost any current system strcoll usage suppose ASCII-compatible charset and produce unpredictable bugs otherwise. We are not ready to free-form collates yet. > In which norm is it said? Previous collation sequence was > not broken, so please use atleast forced commit and write down > proper comment, why you have to break our collation. Because it is not in the form suitable for FreeBSD. Do you check other collates before making your variant? Do you notice their similarity in some aspects? > I saw both files, but please answer all my concrete questions > with concrete and constructive respones. Maybe it is good > example, but it is very broken for Czech and Slovak collation > so we need our collation definition, which was correct and now > is broken and I can not use sort anymore until I (and others) > fix collation by hand. I preserve as much of your variant as I can, making it ASCII backward-compatible. I can't see how it can be very broken. > Please answer my questions and if there is something against > another norms, I can consult it with other Czech and Slovak > people on both sides, FreeBSD and Linux - but it is possible > just based on some concrete and constructive reponse, why you > are doing what you are doing. I am not sure what your question is exactly. There are certain rules. I.e when you sort ASCII file, it must remains the same as with LANG=C for compatibility reasons. Your variant not pass this requirement. I don't remember why I don't reject it initially and let it in. -- 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 Sun Apr 7 13:43: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 7580337B405; Sun, 7 Apr 2002 13:43:27 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37KhRi76699; Sun, 7 Apr 2002 13:43:27 -0700 (PDT) (envelope-from des) Message-Id: <200204072043.g37KhRi76699@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 7 Apr 2002 13:43:27 -0700 (PDT) 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/04/07 13:43:27 PDT Modified files: lib/libpam/modules/pam_unix pam_unix.c Log: Fix bug in previous commit that passed the wrong default value to login_getcapstr(3). Also fix a longer-standing bug (login_close(3) frees the string returned by login_getcapstr(3)) by reorganizing the code a little, and use login_getpwclass(3) instead of login_getclass(3) if we already have a struct pwd. Sponsored by: DARPA, NAI Labs Revision Changes Path 1.29 +8 -6 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 Apr 7 13:55: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 5EB7037B41A; Sun, 7 Apr 2002 13:55:50 -0700 (PDT) Received: (from wpaul@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37KtoY78352; Sun, 7 Apr 2002 13:55:50 -0700 (PDT) (envelope-from wpaul) Message-Id: <200204072055.g37KtoY78352@freefall.freebsd.org> From: Bill Paul Date: Sun, 7 Apr 2002 13:55:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/mii miidevs rlphy.c src/sys/pci if_rl.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 wpaul 2002/04/07 13:55:50 PDT Modified files: sys/dev/mii miidevs rlphy.c sys/pci if_rl.c Log: Teach the rlphy driver how to do parallel link detection. If the link partner doesn't support NWAY, the RealTek PHY (both the integrated ones on 8139 chips and the RTL8201L 10/100 PHY) will not report the link speed via the ANLPAR or BMSR registers. For the 8201L, we need to look in magic vendor-specific PHY register 0x19. For the 8139 MAC+PHY combo, we have to be able to test the RL_MEDIASTAT register. The changes to rlphy.c are based largely on the patch from PR 30836, however I tried to eliminate some magic numbers by creating an entry for the 8201 PHY in miidevs. Also updated if_rl.c to allow the rlphy driver to read the RL_MEDIASTAT register via the rl_miibus_readreg() routine. Revision Changes Path 1.18 +4 -0 src/sys/dev/mii/miidevs 1.8 +113 -1 src/sys/dev/mii/rlphy.c 1.67 +11 -0 src/sys/pci/if_rl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 13:56: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 DE7C537B404; Sun, 7 Apr 2002 13:56:19 -0700 (PDT) Received: (from wpaul@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37KuJO78464; Sun, 7 Apr 2002 13:56:19 -0700 (PDT) (envelope-from wpaul) Message-Id: <200204072056.g37KuJO78464@freefall.freebsd.org> From: Bill Paul Date: Sun, 7 Apr 2002 13:56:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/mii miidevs.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 wpaul 2002/04/07 13:56:19 PDT Modified files: sys/dev/mii miidevs.h Log: Regenerate. Revision Changes Path 1.17 +6 -1 src/sys/dev/mii/miidevs.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 13:56: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 F2DB737B416; Sun, 7 Apr 2002 13:56:39 -0700 (PDT) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Kudl78561; Sun, 7 Apr 2002 13:56:39 -0700 (PDT) (envelope-from pat) Message-Id: <200204072056.g37Kudl78561@freefall.freebsd.org> From: Patrick Li Date: Sun, 7 Apr 2002 13:56:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms/ghfaxviewer 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/04/07 13:56:39 PDT Modified files: comms/ghfaxviewer Makefile Log: Chase gnomeprint shared library version bump and bump PORTREVISION as well. PR: 36840 Submitted by: maintainer Revision Changes Path 1.2 +2 -1 ports/comms/ghfaxviewer/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 14: 1: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 6ECE837B417; Sun, 7 Apr 2002 14:01:37 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37L1bl79398; Sun, 7 Apr 2002 14:01:37 -0700 (PDT) (envelope-from phk) Message-Id: <200204072101.g37L1bl79398@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sun, 7 Apr 2002 14:01:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha machdep.c src/sys/i386/i386 machdep.c src/sys/pc98/i386 machdep.c src/sys/powerpc/powerpc machdep.c src/sys/sparc64/sparc64 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 phk 2002/04/07 14:01:37 PDT Modified files: sys/alpha/alpha machdep.c sys/i386/i386 machdep.c sys/pc98/i386 machdep.c sys/powerpc/powerpc machdep.c sys/sparc64/sparc64 machdep.c Log: GC the "dumplo" variable, which is no longer used. A lot of sys/*/*/machdep.c seems not to be. Revision Changes Path 1.175 +0 -1 src/sys/alpha/alpha/machdep.c 1.514 +0 -1 src/sys/i386/i386/machdep.c 1.276 +0 -1 src/sys/pc98/i386/machdep.c 1.27 +0 -1 src/sys/powerpc/powerpc/machdep.c 1.47 +0 -1 src/sys/sparc64/sparc64/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 Apr 7 14: 2:49 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 4CB7F37B41D for ; Sun, 7 Apr 2002 14:02:46 -0700 (PDT) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.2/8.12.2) with ESMTP id g37L2ax7070238; Mon, 8 Apr 2002 01:02:38 +0400 (MSD) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.2/8.12.2/Submit) id g37L2XGv070237; Mon, 8 Apr 2002 01:02:34 +0400 (MSD) Date: Mon, 8 Apr 2002 01:02:32 +0400 From: "Andrey A. Chernov" To: Cejka Rudolf Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/colldef cs_CZ.ISO8859-2.src Message-ID: <20020407210230.GA70137@nagual.pp.ru> References: <20020407170804.A79700@fit.vutbr.cz> <20020407181849.GA68881@nagual.pp.ru> <20020407205501.A84706@fit.vutbr.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020407205501.A84706@fit.vutbr.cz> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 07, 2002 at 20:55:01 +0200, Cejka Rudolf wrote: > with concrete and constructive respones. Maybe it is good > example, but it is very broken for Czech and Slovak collation > so we need our collation definition, which was correct and now > is broken and I can not use sort anymore until I (and others) > fix collation by hand. I just think it may be unclear, so have additional comment: Current collating order of Czhech and Slovak in new variant is exact THE SAME as it was before. It was small/capital sets order which is changed. Standard you refer obviously not sets small/capital letters order, it is beyond of collating. It sets which letter follows which another one, and it preserved exactly in new variant. That why I left in the comment standard name you refer to. -- 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 Sun Apr 7 14: 7:36 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 3681037B41B for ; Sun, 7 Apr 2002 14:07:33 -0700 (PDT) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.2/8.12.2) with ESMTP id g37L7Bx7070266; Mon, 8 Apr 2002 01:07:16 +0400 (MSD) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.2/8.12.2/Submit) id g37L78Jl070265; Mon, 8 Apr 2002 01:07:08 +0400 (MSD) Date: Mon, 8 Apr 2002 01:07:05 +0400 From: "Andrey A. Chernov" To: Cejka Rudolf Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/colldef cs_CZ.ISO8859-2.src Message-ID: <20020407210704.GB70137@nagual.pp.ru> References: <20020407170804.A79700@fit.vutbr.cz> <20020407181849.GA68881@nagual.pp.ru> <20020407205501.A84706@fit.vutbr.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020407205501.A84706@fit.vutbr.cz> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 07, 2002 at 20:55:01 +0200, Cejka Rudolf wrote: > It seems that you are taking your new README as an axiom. It was always an axiom, but now written down. > not broken, so please use atleast forced commit and write down > proper comment, why you have to break our collation. No. According to commit rules, commit message must rather say what changed instead of complex explanations of reasons. -- 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 Sun Apr 7 14:17: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 1EFD837B416; Sun, 7 Apr 2002 14:17:51 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37LHpn85067; Sun, 7 Apr 2002 14:17:51 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204072117.g37LHpn85067@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sun, 7 Apr 2002 14:17:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/savecore savecore.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 asmodai 2002/04/07 14:17:50 PDT Modified files: (Branch: RELENG_4) sbin/savecore savecore.c Log: Fix saving system crash dumps larger than 2 GB by using fseeko() instead of fseek(). PR: 33537 Submitted by: Vladimir B. Grebenschikov Reviewed by: peter Revision Changes Path 1.28.2.13 +3 -3 src/sbin/savecore/savecore.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 14:18: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 0F52837B43D; Sun, 7 Apr 2002 14:18:19 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37LIJt85118; Sun, 7 Apr 2002 14:18:19 -0700 (PDT) (envelope-from des) Message-Id: <200204072118.g37LIJt85118@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 7 Apr 2002 14:18:18 -0700 (PDT) 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/04/07 14:18:18 PDT Modified files: lib/libpam/modules/pam_unix pam_unix.c Log: Reorganize pam_sm_authenticate() to reduce code duplication. Sponsored by: DARPA, NAI Labs Revision Changes Path 1.30 +22 -59 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 Apr 7 14:21: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 1496D37B417; Sun, 7 Apr 2002 14:21:49 -0700 (PDT) Received: (from jesper@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37LLnA85507; Sun, 7 Apr 2002 14:21:49 -0700 (PDT) (envelope-from jesper) Message-Id: <200204072121.g37LLnA85507@freefall.freebsd.org> From: Jesper Skriver Date: Sun, 7 Apr 2002 14:21:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/p5-JUNOScript 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 jesper 2002/04/07 14:21:49 PDT Modified files: net/p5-JUNOScript Makefile distinfo Log: Upgrade to 5.2R2.3 Revision Changes Path 1.3 +1 -1 ports/net/p5-JUNOScript/Makefile 1.2 +1 -1 ports/net/p5-JUNOScript/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 14:35: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 CED8737B419; Sun, 7 Apr 2002 14:35:45 -0700 (PDT) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37LZj087511; Sun, 7 Apr 2002 14:35:45 -0700 (PDT) (envelope-from anders) Message-Id: <200204072135.g37LZj087511@freefall.freebsd.org> From: Anders Nordby Date: Sun, 7 Apr 2002 14:35:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/pxe 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 anders 2002/04/07 14:35:45 PDT Modified files: net Makefile Added files: net/pxe Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add pxe: This is a PXE daemon, which you can use to set up a networked boot menu for netbooting client machines (FreeBSD, Linux, Windows, etc.) that support & utilize Intel's Preboot eXecution Environment (PXE). Revision Changes Path 1.742 +1 -0 ports/net/Makefile 1.1 +38 -0 ports/net/pxe/Makefile (new) 1.1 +1 -0 ports/net/pxe/distinfo (new) 1.1 +1 -0 ports/net/pxe/pkg-comment (new) 1.1 +7 -0 ports/net/pxe/pkg-descr (new) 1.1 +7 -0 ports/net/pxe/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 Apr 7 14:36: 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 7D6ED37B43E; Sun, 7 Apr 2002 14:35:54 -0700 (PDT) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37LZsu87608; Sun, 7 Apr 2002 14:35:54 -0700 (PDT) (envelope-from anders) Message-Id: <200204072135.g37LZsu87608@freefall.freebsd.org> From: Anders Nordby Date: Sun, 7 Apr 2002 14:35:54 -0700 (PDT) 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/04/07 14:35:54 PDT Modified files: . modules Log: pxe --> ports/net/pxe Revision Changes Path 1.4960 +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 Apr 7 14:48:20 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 5125937B417 for ; Sun, 7 Apr 2002 14:48:18 -0700 (PDT) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.2/8.12.2) with ESMTP id g37Llbx7070704; Mon, 8 Apr 2002 01:48:00 +0400 (MSD) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.2/8.12.2/Submit) id g37LlTW4070703; Mon, 8 Apr 2002 01:47:30 +0400 (MSD) Date: Mon, 8 Apr 2002 01:47:26 +0400 From: "Andrey A. Chernov" To: Cejka Rudolf Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/colldef cs_CZ.ISO8859-2.src Message-ID: <20020407214723.GA70639@nagual.pp.ru> References: <20020407170804.A79700@fit.vutbr.cz> <20020407181849.GA68881@nagual.pp.ru> <20020407205501.A84706@fit.vutbr.cz> <20020407210230.GA70137@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020407210230.GA70137@nagual.pp.ru> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 08, 2002 at 01:02:31 +0400, Andrey A. Chernov wrote: > Current collating order of Czhech and Slovak in new variant is exact THE > SAME as it was before. It was small/capital sets order which is changed. > Standard you refer obviously not sets small/capital letters order, it is > beyond of collating. It sets which letter follows which another one, > and it preserved exactly in new variant. That why I left in the > comment standard name you refer to. Your variant was already ignore case pre-sorted letters table, it can't be default since case ignoring is per-application choice. Now upper and lower sets are separated to make ignore case and not ignore case sorting be different, i.e. reflect the nature of operation, as supposed to be. -- 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 Sun Apr 7 15: 6: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 ED86C37B416; Sun, 7 Apr 2002 15:06:21 -0700 (PDT) Received: (from ticso@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37M6Lg94739; Sun, 7 Apr 2002 15:06:21 -0700 (PDT) (envelope-from ticso) Message-Id: <200204072206.g37M6Lg94739@freefall.freebsd.org> From: Bernd Walter Date: Sun, 7 Apr 2002 15:06:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ppbus if_plip.c lpbb.c lpt.c pcfclock.c ppi.c pps.c vpo.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 ticso 2002/04/07 15:06:20 PDT Modified files: sys/dev/ppbus if_plip.c lpbb.c lpt.c pcfclock.c ppi.c pps.c vpo.c Log: This makes ppbus childs like lpt and ppi succesfully connect to more than just the first ppbus. The child drivers always tried to attach unit 0. Reviewed by: gallatin Approved by: gallatin Revision Changes Path 1.23 +2 -2 src/sys/dev/ppbus/if_plip.c 1.16 +1 -1 src/sys/dev/ppbus/lpbb.c 1.23 +2 -2 src/sys/dev/ppbus/lpt.c 1.9 +2 -2 src/sys/dev/ppbus/pcfclock.c 1.29 +2 -2 src/sys/dev/ppbus/ppi.c 1.32 +1 -1 src/sys/dev/ppbus/pps.c 1.24 +2 -2 src/sys/dev/ppbus/vpo.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 15:47: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 3C25D37B417; Sun, 7 Apr 2002 15:47:37 -0700 (PDT) Received: (from jeff@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37MlbC99239; Sun, 7 Apr 2002 15:47:37 -0700 (PDT) (envelope-from jeff) Message-Id: <200204072247.g37MlbC99239@freefall.freebsd.org> From: Jeff Roberson Date: Sun, 7 Apr 2002 15:47:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm uma_core.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 jeff 2002/04/07 15:47:37 PDT Modified files: sys/vm uma_core.c Log: This fixes a bug where isitem never got set to 1 if a certain chain of events relating to extreme low memory situations occured. This was only ever seen on the port build cluster, so many thanks to kris for helping me debug this. Tested by: kris Revision Changes Path 1.6 +2 -0 src/sys/vm/uma_core.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 15: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 8A0C737B416; Sun, 7 Apr 2002 15:51:18 -0700 (PDT) Received: (from jeff@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37MpIi99745; Sun, 7 Apr 2002 15:51:18 -0700 (PDT) (envelope-from jeff) Message-Id: <200204072251.g37MpIi99745@freefall.freebsd.org> From: Jeff Roberson Date: Sun, 7 Apr 2002 15:51:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm vm_zone.c vm_zone.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 jeff 2002/04/07 15:51:18 PDT Removed files: sys/vm vm_zone.c vm_zone.h Log: There should be no remaining references to these two files in the tree. If there are, it is an error. vm_zone has been superseded by uma. Revision Changes Path 1.56 +0 -579 src/sys/vm/vm_zone.c (dead) 1.21 +0 -52 src/sys/vm/vm_zone.h (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 15:56: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 A8E7137B417; Sun, 7 Apr 2002 15:56:48 -0700 (PDT) Received: (from jeff@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37MumZ00650; Sun, 7 Apr 2002 15:56:48 -0700 (PDT) (envelope-from jeff) Message-Id: <200204072256.g37MumZ00650@freefall.freebsd.org> From: Jeff Roberson Date: Sun, 7 Apr 2002 15:56:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm uma.h uma_int.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 jeff 2002/04/07 15:56:48 PDT Modified files: sys/vm uma.h uma_int.h Log: Spelling correction; s/seperate/separate/g Submitted by: eric Revision Changes Path 1.3 +1 -1 src/sys/vm/uma.h 1.4 +1 -1 src/sys/vm/uma_int.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 16:29: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 9BAEE37B41B; Sun, 7 Apr 2002 16:29:42 -0700 (PDT) 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 g37NTfi87997; Sun, 7 Apr 2002 17:29:41 -0600 (MDT) (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 g37NTec18334; Sun, 7 Apr 2002 17:29:40 -0600 (MDT) (envelope-from imp@village.org) Date: Sun, 07 Apr 2002 17:29:29 -0600 (MDT) Message-Id: <20020407.172929.32777631.imp@village.org> To: peter@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile src/gnu/usr.bin/groff/src/devices/grolj4 Makefile src/gnu/usr.bin/groff/src/devices/grops Makefile ... From: "M. Warner Losh" In-Reply-To: <200204070240.g372etI53642@freefall.freebsd.org> References: <200204070240.g372etI53642@freefall.freebsd.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: <200204070240.g372etI53642@freefall.freebsd.org> Peter Wemm writes: : Add -lstdc++ to the link args for these C++ tools so that they can be : compiled with gcc-3.1. Somebody thought it was a good idea to move : the implementation of new and delete from libgcc to libstdc++. This : change doesn't harm the current compiler in the tree. Is this a band-aid until the compiler can be fixed, or a real solution long term? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 16:31: 4 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 76CB737B41C; Sun, 7 Apr 2002 16:30:59 -0700 (PDT) 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 g37NUwi88018; Sun, 7 Apr 2002 17:30:58 -0600 (MDT) (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 g37NUuc18349; Sun, 7 Apr 2002 17:30:56 -0600 (MDT) (envelope-from imp@village.org) Date: Sun, 07 Apr 2002 17:30:45 -0600 (MDT) Message-Id: <20020407.173045.63839971.imp@village.org> To: obrien@FreeBSD.org Cc: bde@zeta.org.au, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys cdefs.h From: "M. Warner Losh" In-Reply-To: <20020406190312.A99957@dragon.nuxi.com> References: <200204062057.g36Kv3n69228@freefall.freebsd.org> <20020407124346.R544-100000@gamplex.bde.org> <20020406190312.A99957@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: <20020406190312.A99957@dragon.nuxi.com> "David O'Brien" writes: : I do not see what is so bad about these knobs. They occur for us by the : hundreds. Before removing these things, how do you propose to solve the : issue they solve? We do not need 100 netbsd.h's, openbsd.h's, csrg.h's : scattered around the source tree, each with a slightly different : implementation? Are you agreeable to /usr/include/scm.h then? It might not be a bad idea to run the /usr/include/scm.h thing by the bsd-api mailing list. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 16:52: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 4520737B400; Sun, 7 Apr 2002 16:52:38 -0700 (PDT) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g37Nqcs11966; Sun, 7 Apr 2002 16:52:38 -0700 (PDT) (envelope-from keramida) Message-Id: <200204072352.g37Nqcs11966@freefall.freebsd.org> From: Giorgos Keramidas Date: Sun, 7 Apr 2002 16:52:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/committers-guide article.sgml doc/en_US.ISO8859-1/articles/contributing article.sgml doc/en_US.ISO8859-1/articles/cvs-freebsd article.sgml doc/en_US.ISO8859-1/articles/filtering-bridges article.sgml doc/en_US.ISO8859-1/books/developers-handbook/policies chapter.sgml doc/en_US.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 keramida 2002/04/07 16:52:37 PDT Modified files: en_US.ISO8859-1/articles/committers-guide article.sgml en_US.ISO8859-1/articles/contributing article.sgml en_US.ISO8859-1/articles/cvs-freebsd article.sgml en_US.ISO8859-1/articles/filtering-bridges article.sgml en_US.ISO8859-1/books/developers-handbook/policies chapter.sgml en_US.ISO8859-1/books/faq book.sgml en_US.ISO8859-1/books/fdp-primer/sgml-primer chapter.sgml en_US.ISO8859-1/books/fdp-primer/translations chapter.sgml en_US.ISO8859-1/books/handbook/basics chapter.sgml en_US.ISO8859-1/books/handbook/contrib chapter.sgml en_US.ISO8859-1/books/handbook/cutting-edge chapter.sgml en_US.ISO8859-1/books/handbook/introduction chapter.sgml en_US.ISO8859-1/books/handbook/policies chapter.sgml Log: Remove almost all instances of "try and " from the docs. There is one remaining place in the fdp-primer, but that needs a bit more work. Inspired by: docs/36462 (Gary W. Swearingen ) Reviewed by: ceri, trhodes Revision Changes Path 1.107 +2 -2 doc/en_US.ISO8859-1/articles/committers-guide/article.sgml 1.481 +1 -1 doc/en_US.ISO8859-1/articles/contributing/article.sgml 1.3 +1 -1 doc/en_US.ISO8859-1/articles/cvs-freebsd/article.sgml 1.9 +2 -2 doc/en_US.ISO8859-1/articles/filtering-bridges/article.sgml 1.27 +1 -1 doc/en_US.ISO8859-1/books/developers-handbook/policies/chapter.sgml 1.424 +9 -3 doc/en_US.ISO8859-1/books/faq/book.sgml 1.31 +3 -3 doc/en_US.ISO8859-1/books/fdp-primer/sgml-primer/chapter.sgml 1.18 +1 -1 doc/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml 1.60 +4 -3 doc/en_US.ISO8859-1/books/handbook/basics/chapter.sgml 1.472 +1 -1 doc/en_US.ISO8859-1/books/handbook/contrib/chapter.sgml 1.118 +1 -1 doc/en_US.ISO8859-1/books/handbook/cutting-edge/chapter.sgml 1.65 +1 -1 doc/en_US.ISO8859-1/books/handbook/introduction/chapter.sgml 1.26 +1 -1 doc/en_US.ISO8859-1/books/handbook/policies/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 17:38: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 6DE2A37B404; Sun, 7 Apr 2002 17:38:10 -0700 (PDT) Received: (from kiri@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g380cAj21987; Sun, 7 Apr 2002 17:38:10 -0700 (PDT) (envelope-from kiri) Message-Id: <200204080038.g380cAj21987@freefall.freebsd.org> From: Kiriyama Kazuhiko Date: Sun, 7 Apr 2002 17:38:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/smartdoc Makefile distinfo pkg-message pkg-plist ports/textproc/smartdoc/files patch-ab sdoc.in ports/textproc/smartdoc/scripts 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 kiri 2002/04/07 17:38:09 PDT Modified files: textproc/smartdoc Makefile distinfo pkg-plist textproc/smartdoc/files sdoc.in textproc/smartdoc/scripts configure Removed files: textproc/smartdoc pkg-message textproc/smartdoc/files patch-ab Log: Update 0.7 -> 1.0.0. Revision Changes Path 1.6 +44 -61 ports/textproc/smartdoc/Makefile 1.4 +1 -1 ports/textproc/smartdoc/distinfo 1.2 +0 -62 ports/textproc/smartdoc/files/patch-ab (dead) 1.2 +9 -2 ports/textproc/smartdoc/files/sdoc.in 1.2 +0 -12 ports/textproc/smartdoc/pkg-message (dead) 1.3 +242 -1344 ports/textproc/smartdoc/pkg-plist 1.2 +2 -2 ports/textproc/smartdoc/scripts/configure To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 17:52: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 0D38537B404; Sun, 7 Apr 2002 17:52:17 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g380qGV24543; Sun, 7 Apr 2002 17:52:16 -0700 (PDT) (envelope-from imp) Message-Id: <200204080052.g380qGV24543@freefall.freebsd.org> From: Warner Losh Date: Sun, 7 Apr 2002 17:52:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/wi if_wireg.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/04/07 17:52:16 PDT Modified files: sys/dev/wi if_wireg.h Log: Sony ID is 0x0002, not 0x0001. Noticed by Ichiro Fukuhara-san when I submitted patches to him for NetBSD integration. Revision Changes Path 1.30 +1 -1 src/sys/dev/wi/if_wireg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 18:48: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 B8F2237B416; Sun, 7 Apr 2002 18:48:41 -0700 (PDT) Received: (from cy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g381mfJ39153; Sun, 7 Apr 2002 18:48:41 -0700 (PDT) (envelope-from cy) Message-Id: <200204080148.g381mfJ39153@freefall.freebsd.org> From: Cy Schubert Date: Sun, 7 Apr 2002 18:48:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/dansguardian Makefile distinfo pkg-message pkg-plist ports/www/dansguardian/files patch-ConnectionHandler.cpp patch-autoconf::fbsd.in 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 cy 2002/04/07 18:48:41 PDT Modified files: www/dansguardian Makefile distinfo pkg-plist www/dansguardian/files patch-autoconf::fbsd.in patch-configure Added files: www/dansguardian pkg-message Removed files: www/dansguardian/files patch-ConnectionHandler.cpp Log: Update 2.2.7-1 -> 2.2.8-0. PR: 36677 Submitted by: MAINTAINER: Freddie Cash Revision Changes Path 1.3 +12 -8 ports/www/dansguardian/Makefile 1.2 +1 -1 ports/www/dansguardian/distinfo 1.2 +0 -12 ports/www/dansguardian/files/patch-ConnectionHandler.cpp (dead) 1.2 +16 -15 ports/www/dansguardian/files/patch-autoconf::fbsd.in 1.2 +9 -83 ports/www/dansguardian/files/patch-configure 1.1 +8 -0 ports/www/dansguardian/pkg-message (new) 1.2 +3 -2 ports/www/dansguardian/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 Apr 7 18:52: 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 E0D3F37B404; Sun, 7 Apr 2002 18:51:57 -0700 (PDT) Received: (from cy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g381pvQ39721; Sun, 7 Apr 2002 18:51:57 -0700 (PDT) (envelope-from cy) Message-Id: <200204080151.g381pvQ39721@freefall.freebsd.org> From: Cy Schubert Date: Sun, 7 Apr 2002 18:51:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/dansguardian-devel Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist ports/www/dansguardian-devel/files patch-autoconf::fbsd.in patch-configure patch-dansguardian.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 cy 2002/04/07 18:51:57 PDT Modified files: www Makefile Added files: www/dansguardian-devel Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist www/dansguardian-devel/files patch-autoconf::fbsd.in patch-configure patch-dansguardian.8 Log: Add dansguardian-devel 2.4.2.1, a fast, simple web content filter for Squid proxy servers. PR: 36676 Submitted by: Freddie Cash Revision Changes Path 1.484 +1 -0 ports/www/Makefile 1.1 +46 -0 ports/www/dansguardian-devel/Makefile (new) 1.1 +1 -0 ports/www/dansguardian-devel/distinfo (new) 1.1 +78 -0 ports/www/dansguardian-devel/files/patch-autoconf::fbsd.in (new) 1.1 +11 -0 ports/www/dansguardian-devel/files/patch-configure (new) 1.1 +11 -0 ports/www/dansguardian-devel/files/patch-dansguardian.8 (new) 1.1 +1 -0 ports/www/dansguardian-devel/pkg-comment (new) 1.1 +18 -0 ports/www/dansguardian-devel/pkg-descr (new) 1.1 +7 -0 ports/www/dansguardian-devel/pkg-message (new) 1.1 +24 -0 ports/www/dansguardian-devel/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 Apr 7 18:52: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 BA97237B430; Sun, 7 Apr 2002 18:52:07 -0700 (PDT) Received: (from cy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g381q7B39777; Sun, 7 Apr 2002 18:52:07 -0700 (PDT) (envelope-from cy) Message-Id: <200204080152.g381q7B39777@freefall.freebsd.org> From: Cy Schubert Date: Sun, 7 Apr 2002 18:52:07 -0700 (PDT) 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 cy 2002/04/07 18:52:07 PDT Modified files: . modules Log: dansguardian-devel --> ports/www/dansguardian-devel Revision Changes Path 1.4961 +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 Apr 7 19:42: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 C1B9C37B41B; Sun, 7 Apr 2002 19:42:55 -0700 (PDT) Received: (from jeff@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g382gtH49929; Sun, 7 Apr 2002 19:42:55 -0700 (PDT) (envelope-from jeff) Message-Id: <200204080242.g382gtH49929@freefall.freebsd.org> From: Jeff Roberson Date: Sun, 7 Apr 2002 19:42:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm uma_core.c uma_int.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 jeff 2002/04/07 19:42:55 PDT Modified files: sys/vm uma_core.c uma_int.h Log: Rework most of the bucket allocation and free code so that per cpu locks are never held across blocking operations. Also, fix two other lock order reversals that were exposed by jhb's witness change. The free path previously had a bug that would cause it to skip the free bucket list in some cases and go straight to allocating a new bucket. This has been fixed as well. These changes made the bucket handling code much cleaner and removed quite a few lock operations. This should be marginally faster now. It is now possible to call malloc w/o Giant and avoid any witness warnings. This still isn't entirely safe though because malloc_type statistics are not protected by any lock. Revision Changes Path 1.7 +191 -214 src/sys/vm/uma_core.c 1.5 +2 -1 src/sys/vm/uma_int.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 19:48: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 314B537B405; Sun, 7 Apr 2002 19:48:27 -0700 (PDT) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g382mRi50762; Sun, 7 Apr 2002 19:48:27 -0700 (PDT) (envelope-from dinoex) Message-Id: <200204080248.g382mRi50762@freefall.freebsd.org> From: Dirk Meyer Date: Sun, 7 Apr 2002 19:48:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/sendmail/files sendmail.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/04/07 19:48:27 PDT Modified files: mail/sendmail/files sendmail.sh Log: Suppressed warning from shell. Revision Changes Path 1.2 +3 -3 ports/mail/sendmail/files/sendmail.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 20: 4: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 6552337B41D; Sun, 7 Apr 2002 20:04:22 -0700 (PDT) Received: (from hsu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3834MT52445; Sun, 7 Apr 2002 20:04:22 -0700 (PDT) (envelope-from hsu) Message-Id: <200204080304.g3834MT52445@freefall.freebsd.org> From: Jeffrey Hsu Date: Sun, 7 Apr 2002 20:04:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys socketvar.h src/sys/kern uipc_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 hsu 2002/04/07 20:04:22 PDT Modified files: sys/sys socketvar.h sys/kern uipc_socket.c Log: There's only one socket zone so we don't need to remember it in every socket structure. Revision Changes Path 1.115 +1 -2 src/sys/kern/uipc_socket.c 1.75 +0 -1 src/sys/sys/socketvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 20:18:46 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 161F537B405; Sun, 7 Apr 2002 20:18:35 -0700 (PDT) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.6/8.11.6) with SMTP id g383ITw47348; Sun, 7 Apr 2002 23:18:29 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Sun, 7 Apr 2002 23:18:28 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/xlint/lint1 main1.c src/usr.bin/xlint/xlint xlint.c In-Reply-To: <200204071653.g37Grlq30476@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 hope someone is keeping track of the list of things where we've reverted good behavior on -CURRENT so that it compiles on -STABLE, such that we can go fix these reversions later? The whole point of implementing APIs of this sort was to prevent unfortunate/non-portable behavior in our own applications... Of course, the fact that Perl is a bootstrap tool is a big part of the problem :-). Robert N M Watson FreeBSD Core Team, TrustedBSD Project robert@fledge.watson.org NAI Labs, Safeport Network Services On Sun, 7 Apr 2002, Ruslan Ermilov wrote: > ru 2002/04/07 09:53:47 PDT > > Modified files: > usr.bin/xlint/lint1 main1.c > usr.bin/xlint/xlint xlint.c > Log: > FreeBSD prior to 4.4-RELEASE and older versions of 5.0-CURRENT do > not have setprogname(3) and getprogname(3), and we need to build > lint(1) as a cross-tool to bootstrap. Versions from lib/libc/gen > can't be compiled either. > > PR: bin/36747 > > Revision Changes Path > 1.2 +53 -15 src/usr.bin/xlint/lint1/main1.c > 1.19 +4 -6 src/usr.bin/xlint/xlint/xlint.c > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 20:57:35 2002 Delivered-To: cvs-all@freebsd.org Received: from magic.adaptec.com (magic.adaptec.com [208.236.45.80]) by hub.freebsd.org (Postfix) with ESMTP id 8832337B404; Sun, 7 Apr 2002 20:57:31 -0700 (PDT) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.10.2+Sun/8.10.2) with ESMTP id g383vUj07633; Sun, 7 Apr 2002 20:57:30 -0700 (PDT) Received: from btc.btc.adaptec.com (btc.btc.adaptec.com [10.100.0.52]) by redfish.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id UAA07255; Sun, 7 Apr 2002 20:57:19 -0700 (PDT) Received: from hollin.btc.adaptec.com (hollin [162.62.149.56]) by btc.btc.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id VAA00312; Sun, 7 Apr 2002 21:56:15 -0600 (MDT) Received: (from scottl@localhost) by hollin.btc.adaptec.com (8.11.6/8.11.6) id g383rqp06769; Sun, 7 Apr 2002 21:53:52 -0600 (MDT) (envelope-from scottl) Date: Sun, 7 Apr 2002 21:53:52 -0600 From: Scott Long To: Josef Karthauser Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/usb uhci.c Message-ID: <20020408035351.GA6762@hollin.btc.adaptec.com> References: <200204071803.g37I3jj44027@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204071803.g37I3jj44027@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 Sun, Apr 07, 2002 at 11:03:45AM -0700, Josef Karthauser wrote: > joe 2002/04/07 11:03:45 PDT > > Modified files: > sys/dev/usb uhci.c > Log: > MFNetBSD: > revision 1.153 > date: 2002/02/11 11:40:33; author: augustss; state: Exp; lines: +67 -26 > Switch to the same abort mechanism as in [eo]hci; it should be more > robust. > > Revision Changes Path > 1.114 +67 -23 src/sys/dev/usb/uhci.c Joe, This change (or actually, this group of changes) changes the behaviour of the ums lockup problem. Now, when I physically detach the device, the detach never completes in the ums driver. I haven't tracked it down yet, but I suspect that ums_detach is never even being called. In fact, usbdevs reports that the device is still connected. However, if I kldunload the ums driver ums_detach does get called, and further down the abort callstack there is a panic. I'll send you all of the relevant debugger info if you are interested. Scott To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 21: 8: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 1C01B37B417; Sun, 7 Apr 2002 21:08:48 -0700 (PDT) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3848mn67729; Sun, 7 Apr 2002 21:08:48 -0700 (PDT) (envelope-from dd) Message-Id: <200204080408.g3848mn67729@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 7 Apr 2002 21:08:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/arping 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 dd 2002/04/07 21:08:48 PDT Modified files: net/arping pkg-descr Log: Correct typo. Revision Changes Path 1.3 +1 -1 ports/net/arping/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 21: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 5C70337B416; Sun, 7 Apr 2002 21:48:58 -0700 (PDT) Received: (from jeff@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g384mw672306; Sun, 7 Apr 2002 21:48:58 -0700 (PDT) (envelope-from jeff) Message-Id: <200204080448.g384mw672306@freefall.freebsd.org> From: Jeff Roberson Date: Sun, 7 Apr 2002 21:48:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm uma.h uma_core.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 jeff 2002/04/07 21:48:58 PDT Modified files: sys/vm uma.h uma_core.c Log: Implement uma_zdestroy(). It's prototype changed slightly. I decided that I didn't like the wait argument and that if you were removing a zone it had better be empty. Also, I broke out part of hash_expand and made a seperate hash_free() for use in uma_zdestroy. Revision Changes Path 1.4 +2 -7 src/sys/vm/uma.h 1.8 +76 -23 src/sys/vm/uma_core.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 21:57: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 F3C4C37B404; Sun, 7 Apr 2002 21:57:56 -0700 (PDT) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g384vuN73756; Sun, 7 Apr 2002 21:57:56 -0700 (PDT) (envelope-from alc) Message-Id: <200204080457.g384vuN73756@freefall.freebsd.org> From: Alan Cox Date: Sun, 7 Apr 2002 21:57:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_aio.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 alc 2002/04/07 21:57:56 PDT Modified files: sys/kern vfs_aio.c Log: Restructure aio_return() to eliminate duplicated code and facilitate Giant push down. Revision Changes Path 1.124 +15 -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 Sun Apr 7 22: 0:27 2002 Delivered-To: cvs-all@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id 77D2037B404; Sun, 7 Apr 2002 22:00:22 -0700 (PDT) Received: from naos (naos [128.130.111.28]) by vexpert.dbai.tuwien.ac.at (8.11.6/8.11.6) with ESMTP id g3850GW21055; Mon, 8 Apr 2002 07:00:17 +0200 (MET DST) Date: Mon, 8 Apr 2002 07:00:16 +0200 (CEST) From: Gerald Pfeifer To: "M. Warner Losh" Cc: peter@freebsd.org, , Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr In-Reply-To: <20020407.172929.32777631.imp@village.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 Sun, 7 Apr 2002, M. Warner Losh wrote: > Peter Wemm writes: >: Add -lstdc++ to the link args for these C++ tools so that they can be >: compiled with gcc-3.1. Somebody thought it was a good idea to move >: the implementation of new and delete from libgcc to libstdc++. This >: change doesn't harm the current compiler in the tree. > Is this a band-aid until the compiler can be fixed, or a real solution > long term? If I'm right, the problem is that the gcc driver is used to compile these C++ sources. One of the differences between gcc and g++ is that the latter automagically links in libstdc++ while the former does not. This has been the case since (at least GCC 2.95), but we did get away with it because, as Peter observed, new/delete have been in libgcc which got linked in anyway. GCC 3.0 and 3.1, however, have new/delete in libstdc++; the proper fix long-term would be using the g++ driver instead of the gcc driver for these C++ sources. Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 22: 5:13 2002 Delivered-To: cvs-all@freebsd.org Received: from us.net (smtp1.one.net [216.23.22.220]) by hub.freebsd.org (Postfix) with SMTP id BA72337B405 for ; Sun, 7 Apr 2002 22:05:05 -0700 (PDT) Received: (qmail 15276 invoked by uid 0); 8 Apr 2002 05:04:42 -0000 Received: from unknown (HELO shell.one.net) (206.112.192.106) by smtp1.one.net with SMTP; 8 Apr 2002 05:04:42 -0000 Received: (from cokane@localhost) by shell.one.net (8.11.6/8.9.3) id g3854gl19097; Mon, 8 Apr 2002 01:04:42 -0400 Date: Mon, 8 Apr 2002 01:04:42 -0400 From: Coleman Kane To: Scott Long Cc: Josef Karthauser , cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/usb uhci.c Message-ID: <20020408010442.A19063@shell.one.net> References: <200204071803.g37I3jj44027@freefall.freebsd.org> <20020408035351.GA6762@hollin.btc.adaptec.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20020408035351.GA6762@hollin.btc.adaptec.com>; from scott_long@btc.adaptec.com on Sun, Apr 07, 2002 at 09:53:52PM -0600 X-Operating-System: Linux 2.4.12 i686 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Just to give you all an update on the lockup issue, the XFree86 system locks up during direct access to ums. If I use moused and run it through sysmouse, the system works fine. I don't know if that is any help or not. -- coleman Thus spoke Scott Long , and it was proclaimed: > On Sun, Apr 07, 2002 at 11:03:45AM -0700, Josef Karthauser wrote: > > joe 2002/04/07 11:03:45 PDT > > > > Modified files: > > sys/dev/usb uhci.c > > Log: > > MFNetBSD: > > revision 1.153 > > date: 2002/02/11 11:40:33; author: augustss; state: Exp; lines: +67 -26 > > Switch to the same abort mechanism as in [eo]hci; it should be more > > robust. > > > > Revision Changes Path > > 1.114 +67 -23 src/sys/dev/usb/uhci.c > > Joe, > > This change (or actually, this group of changes) changes the behaviour of > the ums lockup problem. Now, when I physically detach the device, the > detach never completes in the ums driver. I haven't tracked it down > yet, but I suspect that ums_detach is never even being called. In fact, > usbdevs reports that the device is still connected. However, if I > kldunload the ums driver ums_detach does get called, and further down > the abort callstack there is a panic. I'll send you all of the relevant > debugger info if you are interested. > > Scott > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 22:13: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 1FFB737B419; Sun, 7 Apr 2002 22:13:49 -0700 (PDT) Received: (from jeff@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g385Dnc79662; Sun, 7 Apr 2002 22:13:49 -0700 (PDT) (envelope-from jeff) Message-Id: <200204080513.g385Dnc79662@freefall.freebsd.org> From: Jeff Roberson Date: Sun, 7 Apr 2002 22:13:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm uma_core.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 jeff 2002/04/07 22:13:48 PDT Modified files: sys/vm uma_core.c Log: Don't release the zone lock until after the dtor has been called. As far as I can tell this could not have caused any problems yet because UMA is still called with giant. Pointy hat to: jeff Noticed by: jake Revision Changes Path 1.9 +3 -3 src/sys/vm/uma_core.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 22:19: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 7F88837B41A; Sun, 7 Apr 2002 22:19:32 -0700 (PDT) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g385JWm80668; Sun, 7 Apr 2002 22:19:32 -0700 (PDT) (envelope-from ue) Message-Id: <200204080519.g385JWm80668@freefall.freebsd.org> From: Udo Erdelhoff Date: Sun, 7 Apr 2002 22:19:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/installation/sparc64 install.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 ue 2002/04/07 22:19:32 PDT Modified files: release/doc/en_US.ISO8859-1/installation/sparc64 install.sgml Log: Explain how to double-check that the partitions do end on a cylinder boundary. reviewed and nitpicked by: bmah Revision Changes Path 1.9 +12 -1 src/release/doc/en_US.ISO8859-1/installation/sparc64/install.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 22:34: 1 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 3C8C037B404; Sun, 7 Apr 2002 22:33:57 -0700 (PDT) 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 PAA03307; Mon, 8 Apr 2002 15:33:55 +1000 Date: Mon, 8 Apr 2002 15:33:57 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Poul-Henning Kamp Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/sbin/disklabel Makefile disklabel.c In-Reply-To: <200204071057.g37Av1i39601@freefall.freebsd.org> Message-ID: <20020408152740.N5678-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, 7 Apr 2002, Poul-Henning Kamp wrote: > phk 2002/04/07 03:57:00 PDT > > Modified files: > sbin/disklabel Makefile disklabel.c > Log: > Get us to WARNS=2 with a bit of constification and some printf fiddling. WARNS=2 bogusly overrides the default, and "=" instead of "?=" breaks overriding the default. "=" in WARNS=0 had the same bug. > Pick up the c-partitions magicness from sys/disklabel.h instead > of defining our own magicness for it, remove trivial comment. This was one of the many bugs in rev.1.35. The committers and approvers of that sort of promised to clean it up, but never did. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 22:56:26 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 1CDFD37B417; Sun, 7 Apr 2002 22:56:18 -0700 (PDT) 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 PAA06427; Mon, 8 Apr 2002 15:56:16 +1000 Date: Mon, 8 Apr 2002 15:56:18 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Poul-Henning Kamp Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/sbin/newfs mkfs.c newfs.c newfs.h In-Reply-To: <200204071457.g37Evwu07158@freefall.freebsd.org> Message-ID: <20020408154911.F5774-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, 7 Apr 2002, Poul-Henning Kamp wrote: > phk 2002/04/07 07:57:57 PDT > > Modified files: > sbin/newfs mkfs.c newfs.c newfs.h > Log: > bbsize and sbsize cannot ever be trusted from the disklabel, in > particular as there may not be one. Remove #if 0'ed code which might > mislead people to think otherwise. I use this code unconditionally. bbsize and sbsize from the disklabel can be trusted in all cases that I know of (if there is a disklabel). Please back this out. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 23:18:14 2002 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by hub.freebsd.org (Postfix) with ESMTP id BE60637B400; Sun, 7 Apr 2002 23:18:10 -0700 (PDT) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g386HXY9054698; Mon, 8 Apr 2002 08:17:34 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/newfs mkfs.c newfs.c newfs.h In-Reply-To: Your message of "Mon, 08 Apr 2002 15:56:18 +1000." <20020408154911.F5774-100000@gamplex.bde.org> Date: Mon, 08 Apr 2002 08:17:33 +0200 Message-ID: <54697.1018246653@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-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 <20020408154911.F5774-100000@gamplex.bde.org>, Bruce Evans writes: >On Sun, 7 Apr 2002, Poul-Henning Kamp wrote: > >> phk 2002/04/07 07:57:57 PDT >> >> Modified files: >> sbin/newfs mkfs.c newfs.c newfs.h >> Log: >> bbsize and sbsize cannot ever be trusted from the disklabel, in >> particular as there may not be one. Remove #if 0'ed code which might >> mislead people to think otherwise. > >I use this code unconditionally. bbsize and sbsize from the disklabel >can be trusted in all cases that I know of (if there is a disklabel). > >Please back this out. I don't intend to. newfs will have to learn the new (not yet committed) API just like any other program. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 23:20: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 4E73837B404; Sun, 7 Apr 2002 23:20:34 -0700 (PDT) Received: (from jeff@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g386KYd92694; Sun, 7 Apr 2002 23:20:34 -0700 (PDT) (envelope-from jeff) Message-Id: <200204080620.g386KYd92694@freefall.freebsd.org> From: Jeff Roberson Date: Sun, 7 Apr 2002 23:20:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm uma_core.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 jeff 2002/04/07 23:20:34 PDT Modified files: sys/vm uma_core.c Log: Add a mechanism to disable buckets when the v_free_count drops below v_free_min. This should help performance in memory starved situations. Revision Changes Path 1.10 +29 -6 src/sys/vm/uma_core.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 23: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 545CD37B416; Sun, 7 Apr 2002 23:26:46 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g386Qkb94318; Sun, 7 Apr 2002 23:26:46 -0700 (PDT) (envelope-from phk) Message-Id: <200204080626.g386Qkb94318@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sun, 7 Apr 2002 23:26:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/disklabel 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/04/07 23:26:46 PDT Modified files: sbin/disklabel Makefile Log: Don't set WARNS to 2, we're default compatible now. Noticed by: bde Revision Changes Path 1.10 +0 -1 src/sbin/disklabel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 23:28:31 2002 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by hub.freebsd.org (Postfix) with ESMTP id 380A237B416; Sun, 7 Apr 2002 23:28:25 -0700 (PDT) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g386RpY9056705; Mon, 8 Apr 2002 08:27:51 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/disklabel Makefile disklabel.c In-Reply-To: Your message of "Mon, 08 Apr 2002 15:33:57 +1000." <20020408152740.N5678-100000@gamplex.bde.org> Date: Mon, 08 Apr 2002 08:27:51 +0200 Message-ID: <56704.1018247271@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-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 <20020408152740.N5678-100000@gamplex.bde.org>, Bruce Evans writes: >On Sun, 7 Apr 2002, Poul-Henning Kamp wrote: > >> phk 2002/04/07 03:57:00 PDT >> >> Modified files: >> sbin/disklabel Makefile disklabel.c >> Log: >> Get us to WARNS=2 with a bit of constification and some printf fiddling. > >WARNS=2 bogusly overrides the default, and "=" instead of "?=" breaks >overriding the default. "=" in WARNS=0 had the same bug. I've removed it entirely, 2 is the default for the sbin hierarchy and we're compatible with that now. >> Pick up the c-partitions magicness from sys/disklabel.h instead >> of defining our own magicness for it, remove trivial comment. > >This was one of the many bugs in rev.1.35. The committers and approvers >of that sort of promised to clean it up, but never did. You don't expect me to say anything to this, do you ? :-) -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 23:33:51 2002 Delivered-To: cvs-all@freebsd.org Received: from fw.wemm.org (12-232-135-171.client.attbi.com [12.232.135.171]) by hub.freebsd.org (Postfix) with ESMTP id 0266E37B417; Sun, 7 Apr 2002 23:33:41 -0700 (PDT) Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by fw.wemm.org (8.11.6/8.11.6) with ESMTP id g386YRQ14193; Sun, 7 Apr 2002 23:34:27 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id EAE793810; Sun, 7 Apr 2002 23:39:37 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Gerald Pfeifer Cc: "M. Warner Losh" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr In-Reply-To: Date: Sun, 07 Apr 2002 23:39:37 -0700 From: Peter Wemm Message-Id: <20020408063937.EAE793810@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 Gerald Pfeifer wrote: > On Sun, 7 Apr 2002, M. Warner Losh wrote: > > Peter Wemm writes: > >: Add -lstdc++ to the link args for these C++ tools so that they can be > >: compiled with gcc-3.1. Somebody thought it was a good idea to move > >: the implementation of new and delete from libgcc to libstdc++. This > >: change doesn't harm the current compiler in the tree. > > Is this a band-aid until the compiler can be fixed, or a real solution > > long term? > > If I'm right, the problem is that the gcc driver is used to compile these > C++ sources. > > One of the differences between gcc and g++ is that the latter automagically > links in libstdc++ while the former does not. This has been the case since > (at least GCC 2.95), but we did get away with it because, as Peter observed, > new/delete have been in libgcc which got linked in anyway. > > GCC 3.0 and 3.1, however, have new/delete in libstdc++; the proper fix > long-term would be using the g++ driver instead of the gcc driver for > these C++ sources. The .cc files are compiled with 'c++' as expected. The problem is that the final link phase uses 'cc'. Our makefiles have no way to signal that the final link should be done with c++ instead since it just sees a bunch of .o files that need to be linked into an executable. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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 Sun Apr 7 23:39: 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 EA74237B416; Sun, 7 Apr 2002 23:38:57 -0700 (PDT) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g386cvI96605; Sun, 7 Apr 2002 23:38:57 -0700 (PDT) (envelope-from petef) Message-Id: <200204080638.g386cvI96605@freefall.freebsd.org> From: Pete Fritchman Date: Sun, 7 Apr 2002 23:38:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/libevent pkg-comment X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/07 23:38:57 PDT Modified files: devel/libevent pkg-comment Log: Fix a typo. PR: 36686 Submitted by: Jonathan Hanna Revision Changes Path 1.2 +1 -1 ports/devel/libevent/pkg-comment To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 23:45: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 49A8037B400; Sun, 7 Apr 2002 23:45:34 -0700 (PDT) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g386jYb97933; Sun, 7 Apr 2002 23:45:34 -0700 (PDT) (envelope-from pat) Message-Id: <200204080645.g386jYb97933@freefall.freebsd.org> From: Patrick Li Date: Sun, 7 Apr 2002 23:45:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/apache2 Makefile distinfo pkg-plist ports/www/apache2/files apache.sh patch-Makefile.in patch-config.layout patch-configure patch-docs:conf:httpd-std.conf patch-docs:conf:httpd-std.conf.in patch-docs:conf:ssl-std.conf patch-srclib:apr-util: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/04/07 23:45:34 PDT Modified files: www/apache2 Makefile distinfo pkg-plist www/apache2/files apache.sh patch-Makefile.in patch-config.layout patch-configure patch-docs:conf:ssl-std.conf patch-srclib:apr-util:configure patch-support:apachectl.in patch-support:apxs.in patch-support:log_server_status.in Added files: www/apache2/files patch-docs:conf:httpd-std.conf.in patch-srclib:apr:include:apr_atomic.h Removed files: www/apache2/files patch-docs:conf:httpd-std.conf Log: Update to 2.0.35 (first GA release!) PR: 36834 Submitted by: maintainer Revision Changes Path 1.110 +60 -27 ports/www/apache2/Makefile 1.48 +1 -1 ports/www/apache2/distinfo 1.3 +4 -7 ports/www/apache2/files/apache.sh 1.5 +17 -11 ports/www/apache2/files/patch-Makefile.in 1.4 +23 -23 ports/www/apache2/files/patch-config.layout 1.5 +7 -9 ports/www/apache2/files/patch-configure 1.5 +0 -171 ports/www/apache2/files/patch-docs:conf:httpd-std.conf (dead) 1.1 +65 -0 ports/www/apache2/files/patch-docs:conf:httpd-std.conf.in (new) 1.3 +1 -1 ports/www/apache2/files/patch-docs:conf:ssl-std.conf 1.2 +4 -4 ports/www/apache2/files/patch-srclib:apr-util:configure 1.1 +17 -0 ports/www/apache2/files/patch-srclib:apr:include:apr_atomic.h (new) 1.4 +7 -11 ports/www/apache2/files/patch-support:apachectl.in 1.5 +10 -10 ports/www/apache2/files/patch-support:apxs.in 1.4 +2 -2 ports/www/apache2/files/patch-support:log_server_status.in 1.37 +492 -413 ports/www/apache2/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 Apr 7 23:56:40 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 09DAC37B49A; Sun, 7 Apr 2002 23:55:19 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g386tCYm065514; Sun, 7 Apr 2002 23:55:12 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g386rvgD065494; Sun, 7 Apr 2002 23:53:57 -0700 (PDT) Date: Sun, 7 Apr 2002 23:53:57 -0700 From: "David O'Brien" To: Ruslan Ermilov Cc: Bruce Evans , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/cc/cc1 Makefile src/gnu/usr.bin/cc/cc1obj Makefile src/gnu/usr.bin/cc/cc1plus Makefile Message-ID: <20020407235357.A65399@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200204040050.g340oEK35800@freefall.freebsd.org> <20020407162550.GE67968@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: <20020407162550.GE67968@sunbay.com>; from ru@FreeBSD.org on Sun, Apr 07, 2002 at 07:25:50PM +0300 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, Apr 07, 2002 at 07:25:50PM +0300, Ruslan Ermilov wrote: > On Wed, Apr 03, 2002 at 04:50:14PM -0800, David E. O'Brien wrote: > > obrien 2002/04/03 16:50:14 PST > > > > Modified files: > > gnu/usr.bin/cc/cc1 Makefile > > gnu/usr.bin/cc/cc1obj Makefile > > gnu/usr.bin/cc/cc1plus Makefile > > Log: > > Set NOSHARED conditionally. > > > Why? Conditionally setting NOSHARED only makes sense in Makefile.inc > where it may be overridden by individual makefiles beneath it. > (Seeing if Bruce agrees.) Do you and BDE now search out every one of my commits with a goal of turning it into a bike shed? Why? Because some people have a [misguided] hatred for static binaries. They want to be able to have their compiler be a shared binary. They can achieve this with "NOSHARED=no". /usr/share/mk/bsd.prog.mk:.if defined(NOSHARED) && ( ${NOSHARED} != "no" && ${NOSHARED} != "NO" ) Notice that the value of NOSHARED is actually checked besides just its existence. But I am tried of the debate on this commit from both you and BDE (this is the 5th message about it). So I will just say "fuck it" and put "NOSHARED=yes" in gnu/usr.bin/cc/Makefile.inc and have a totally static compiler suite that cannot easily be changed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 23:57: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 861EC37B41A; Sun, 7 Apr 2002 23:57:43 -0700 (PDT) Received: (from jeff@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g386vhD02343; Sun, 7 Apr 2002 23:57:43 -0700 (PDT) (envelope-from jeff) Message-Id: <200204080657.g386vhD02343@freefall.freebsd.org> From: Jeff Roberson Date: Sun, 7 Apr 2002 23:57:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/unionfs union_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 jeff 2002/04/07 23:57:43 PDT Modified files: sys/fs/unionfs union_subr.c Log: Change the vm_zone calls over to uma calls. Remove the reference to the vm_zone header. Revision Changes Path 1.60 +9 -9 src/sys/fs/unionfs/union_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 23:58: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 E24C537B416; Sun, 7 Apr 2002 23:58:17 -0700 (PDT) Received: (from takawata@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g386wHu02438; Sun, 7 Apr 2002 23:58:17 -0700 (PDT) (envelope-from takawata) Message-Id: <200204080658.g386wHu02438@freefall.freebsd.org> From: Takanori Watanabe Date: Sun, 7 Apr 2002 23:58:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/acpica acpi.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 takawata 2002/04/07 23:58:17 PDT Modified files: sys/dev/acpica acpi.c Log: Print DRQ resource in boot message. Revision Changes Path 1.58 +1 -0 src/sys/dev/acpica/acpi.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Apr 7 23: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 A82A437B417; Sun, 7 Apr 2002 23:59:13 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g386xDx02578; Sun, 7 Apr 2002 23:59:13 -0700 (PDT) (envelope-from phk) Message-Id: <200204080659.g386xDx02578@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sun, 7 Apr 2002 23:59:13 -0700 (PDT) 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 phk 2002/04/07 23:59:13 PDT Modified files: sys/kern kern_shutdown.c Log: Put back dumppcb, but this time we put a comment to tell what it is for. Brucifixion by: bde Revision Changes Path 1.127 +12 -4 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 Apr 8 0: 4: 6 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 C5FAC37B41A; Mon, 8 Apr 2002 00:04:01 -0700 (PDT) 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 RAA15400; Mon, 8 Apr 2002 17:03:59 +1000 Date: Mon, 8 Apr 2002 17:04:01 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Ruslan Ermilov Cc: "David E. O'Brien" , Bruce Evans , Subject: Re: cvs commit: src/gnu/usr.bin/cc/cc1 Makefile src/gnu/usr.bin/cc/cc1obj Makefile src/gnu/usr.bin/cc/cc1plus Makefile In-Reply-To: <20020407162550.GE67968@sunbay.com> Message-ID: <20020408165120.S5876-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, 7 Apr 2002, Ruslan Ermilov wrote: > On Wed, Apr 03, 2002 at 04:50:14PM -0800, David E. O'Brien wrote: > > obrien 2002/04/03 16:50:14 PST > > > > Modified files: > > gnu/usr.bin/cc/cc1 Makefile > > gnu/usr.bin/cc/cc1obj Makefile > > gnu/usr.bin/cc/cc1plus Makefile > > Log: > > Set NOSHARED conditionally. > > > Why? Conditionally setting NOSHARED only makes sense in Makefile.inc > where it may be overridden by individual makefiles beneath it. > (Seeing if Bruce agrees.) I've already objected to this commit for almost the opposite reason. It makes sense to set some `make' variables conditionally, and NOSHARED is one of these. Users can set it before the Makefile is invoked, and NOSHARED?= is used in most places to avoid clobbering such earlier settings. However, in the special case of the large first passes of cc, we (people who set NOSHARED here previously) think that clobbering earlier settings is right, because the space savings are small and the time savings are large for using NOSHARED unconditionally. This is not very well documented. The only hint of it in the logs is "appropriately" in rev.1.12 of cc1/Makefile, etc. Setting NOSHARED conditionally was considered to be appropriate [almost?] everywhere except in the above Makefiles. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 0: 5:40 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 7258C37B416; Mon, 8 Apr 2002 00:05:31 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g3875RB46980; Mon, 8 Apr 2002 10:05:27 +0300 (EEST) (envelope-from ru) Date: Mon, 8 Apr 2002 10:05:27 +0300 From: Ruslan Ermilov To: "David O'Brien" Cc: Bruce Evans , cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/cc/cc1 Makefile src/gnu/usr.bin/cc/cc1obj Makefile src/gnu/usr.bin/cc/cc1plus Makefile Message-ID: <20020408070527.GB45269@sunbay.com> References: <200204040050.g340oEK35800@freefall.freebsd.org> <20020407162550.GE67968@sunbay.com> <20020407235357.A65399@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="oC1+HKm2/end4ao3" Content-Disposition: inline In-Reply-To: <20020407235357.A65399@dragon.nuxi.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 --oC1+HKm2/end4ao3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Apr 07, 2002 at 11:53:57PM -0700, David O'Brien wrote: > On Sun, Apr 07, 2002 at 07:25:50PM +0300, Ruslan Ermilov wrote: > > On Wed, Apr 03, 2002 at 04:50:14PM -0800, David E. O'Brien wrote: > > > obrien 2002/04/03 16:50:14 PST > > >=20 > > > Modified files: > > > gnu/usr.bin/cc/cc1 Makefile=20 > > > gnu/usr.bin/cc/cc1obj Makefile=20 > > > gnu/usr.bin/cc/cc1plus Makefile=20 > > > Log: > > > Set NOSHARED conditionally. > > > =20 > > Why? Conditionally setting NOSHARED only makes sense in Makefile.inc > > where it may be overridden by individual makefiles beneath it. > > (Seeing if Bruce agrees.) >=20 > Do you and BDE now search out every one of my commits with a goal of > turning it into a bike shed? >=20 > Why? Because some people have a [misguided] hatred for static binaries. > They want to be able to have their compiler be a shared binary. They can > achieve this with "NOSHARED=3Dno". >=20 > /usr/share/mk/bsd.prog.mk:.if defined(NOSHARED) && ( ${NOSHARED} !=3D "no= " && ${NOSHARED} !=3D "NO" ) >=20 > Notice that the value of NOSHARED is actually checked besides just its > existence. But I am tried of the debate on this commit from both you and > BDE (this is the 5th message about it). So I will just say "fuck it" and > put "NOSHARED=3Dyes" in gnu/usr.bin/cc/Makefile.inc and have a totally > static compiler suite that cannot easily be changed. >=20 This only shows your inability to properly communicate with others. I just wondered about this particular change because you did not provide any good reason for it in your commit log (the place where this stuff should probably go in the first place). I now know the answer (modulo the s/f.ck/heck/), thank you very much. I also expect that you apologize for such inappropriate behavior. Cheers, --=20 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 --oC1+HKm2/end4ao3 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 iD8DBQE8sUE3Ukv4P6juNwoRAnpGAJ9NvaJkPNUTNd1K9jRU20P+KQ17FwCfdz3G aWlOxzAZvlinQS3FZ6IRl1s= =e8CG -----END PGP SIGNATURE----- --oC1+HKm2/end4ao3-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 0:24:47 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 3CA1837B417; Mon, 8 Apr 2002 00:24:42 -0700 (PDT) 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 RAA17902; Mon, 8 Apr 2002 17:24:34 +1000 Date: Mon, 8 Apr 2002 17:24:37 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Poul-Henning Kamp Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/sbin/newfs mkfs.c newfs.c newfs.h In-Reply-To: <54697.1018246653@critter.freebsd.dk> Message-ID: <20020408171638.W6064-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, 8 Apr 2002, Poul-Henning Kamp wrote: > In message <20020408154911.F5774-100000@gamplex.bde.org>, Bruce Evans writes: > >On Sun, 7 Apr 2002, Poul-Henning Kamp wrote: > > > >> phk 2002/04/07 07:57:57 PDT > >> > >> Modified files: > >> sbin/newfs mkfs.c newfs.c newfs.h > >> Log: > >> bbsize and sbsize cannot ever be trusted from the disklabel, in > >> particular as there may not be one. Remove #if 0'ed code which might > >> mislead people to think otherwise. > > > >I use this code unconditionally. bbsize and sbsize from the disklabel > >can be trusted in all cases that I know of (if there is a disklabel). > > > >Please back this out. > > I don't intend to. newfs will have to learn the new (not yet > committed) API just like any other program. I will back it out then :-). It is needed at least as a reminder that new API's should support these capabilities. newfs can determine its own super block well enough, but it currently optimizes for time and wastes a sector or two. Similarly for internal data in other filesystems. Filesystems can't determine how much space they should leave for boot blocks. Lots of time has been wasted squeezing boot code into the too-small amount of space that may have been large many years ago. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 0:33: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 A306237B400; Mon, 8 Apr 2002 00:33:16 -0700 (PDT) Received: (from ume@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g387XG313104; Mon, 8 Apr 2002 00:33:16 -0700 (PDT) (envelope-from ume) Message-Id: <200204080733.g387XG313104@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Mon, 8 Apr 2002 00:33:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if.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/04/08 00:33:14 PDT Modified files: (Branch: RELENG_4) sys/net if.c Log: MFC 1.135: Make `route add -inet6 default ::1 -ifp gif0' work actually. The change between 1.13 and 1.14 is specific to AF_INET. Revision Changes Path 1.85.2.16 +1 -5 src/sys/net/if.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 0:36: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 A193037B405; Mon, 8 Apr 2002 00:36:17 -0700 (PDT) Received: (from ume@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g387aHp13902; Mon, 8 Apr 2002 00:36:17 -0700 (PDT) (envelope-from ume) Message-Id: <200204080736.g387aHp13902@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Mon, 8 Apr 2002 00:36:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet6 nd6.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/04/08 00:36:17 PDT Modified files: (Branch: RELENG_4) sys/netinet6 nd6.c Log: MFC 1.16: In nd6_lookup(), check if rt_llinfo is non-NULL to avoid returning an entry that has the LLINFO flag but is not a neighbor cache entry. Revision Changes Path 1.2.2.12 +9 -4 src/sys/netinet6/nd6.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 0:38:15 2002 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by hub.freebsd.org (Postfix) with ESMTP id 9056737B417; Mon, 8 Apr 2002 00:38:08 -0700 (PDT) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g387bVY9069442; Mon, 8 Apr 2002 09:37:32 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/newfs mkfs.c newfs.c newfs.h In-Reply-To: Your message of "Mon, 08 Apr 2002 17:24:37 +1000." <20020408171638.W6064-100000@gamplex.bde.org> Date: Mon, 08 Apr 2002 09:37:31 +0200 Message-ID: <69441.1018251451@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-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 <20020408171638.W6064-100000@gamplex.bde.org>, Bruce Evans writes: >I will back it out then :-) The commit I made does not change the way newfs works since the code you are talking about was inside an "#ifdef notdef". And in fact it has been there for at least 8 years because that is the way it was when Rod Grimes first imported revision 1.1 So please don't be silly :-) >It is needed at least as a reminder that >new API's should support these capabilities. >Filesystems can't determine how much space they should leave for boot >blocks. Lots of time has been wasted squeezing boot code into the >too-small amount of space that may have been large many years ago. The new API, in difference from struct disklabel, actually will support expressing which area(s) one should stay clear off even if they are technically inside the accessible area. This will also improve the quality of the hacks in CCD and the swap code. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 0:40: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 53DA937B400; Mon, 8 Apr 2002 00:40:42 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g387egc14700; Mon, 8 Apr 2002 00:40:42 -0700 (PDT) (envelope-from ru) Message-Id: <200204080740.g387egc14700@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 8 Apr 2002 00:40:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/08 00:40:41 PDT Modified files: . Makefile.inc1 Log: Bootstrap xargs(1) -- sys/conf/kmod.mk uses the new -J option. PR: bin/36747 Revision Changes Path 1.250 +2 -1 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 0:43:22 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 BB9F237B400 for ; Mon, 8 Apr 2002 00:43:20 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g387h9Ym066610; Mon, 8 Apr 2002 00:43:09 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g387fsCq066594; Mon, 8 Apr 2002 00:41:54 -0700 (PDT) Date: Mon, 8 Apr 2002 00:41:54 -0700 From: "David O'Brien" To: Bruce Evans Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/cc/cc1 Makefile src/gnu/usr.bin/cc/cc1obj Makefile src/gnu/usr.bin/cc/cc1plus Makefile Message-ID: <20020408004154.A66483@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20020407162550.GE67968@sunbay.com> <20020408165120.S5876-100000@gamplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020408165120.S5876-100000@gamplex.bde.org>; from bde@zeta.org.au on Mon, Apr 08, 2002 at 05:04:01PM +1000 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, Apr 08, 2002 at 05:04:01PM +1000, Bruce Evans wrote: > However, in the special case of the large first passes of > cc, we (people who set NOSHARED here previously) think that clobbering > earlier settings is right, because the space savings are small and the > time savings are large for using NOSHARED unconditionally. My reason for a static cc/cpp0/cc1 has nothing to do with speed, but rather to allow one to recover from a bad libc.so or ld-elf.so.1. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 0:45: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 AC7CC37B417; Mon, 8 Apr 2002 00:45:14 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g387jE815515; Mon, 8 Apr 2002 00:45:14 -0700 (PDT) (envelope-from ru) Message-Id: <200204080745.g387jE815515@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 8 Apr 2002 00:45:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.lib.mk bsd.prog.mk 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/04/08 00:45:14 PDT Modified files: (Branch: RELENG_4) share/mk bsd.lib.mk bsd.prog.mk Log: MFC: Protect against .depend file somewhere else in the .PATH. Revision Changes Path 1.91.2.7 +1 -1 src/share/mk/bsd.lib.mk 1.86.2.9 +1 -1 src/share/mk/bsd.prog.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 0:51: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 0874137B416; Mon, 8 Apr 2002 00:51:11 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g387pAu16644; Mon, 8 Apr 2002 00:51:10 -0700 (PDT) (envelope-from ru) Message-Id: <200204080751.g387pAu16644@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 8 Apr 2002 00:51:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net ether_addr.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/04/08 00:51:10 PDT Modified files: lib/libc/net ether_addr.c Log: Fix style of ether_ntoa(). Revision Changes Path 1.15 +3 -3 src/lib/libc/net/ether_addr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 0:54:23 2002 Delivered-To: cvs-all@freebsd.org Received: from kazi.dcse.fee.vutbr.cz (kazi.dcse.fee.vutbr.cz [147.229.8.12]) by hub.freebsd.org (Postfix) with ESMTP id 6D89337B41A for ; Mon, 8 Apr 2002 00:54:15 -0700 (PDT) Received: (from cejkar@localhost) by kazi.dcse.fee.vutbr.cz (8.11.6/8.11.6) id g387rw706177; Mon, 8 Apr 2002 09:53:58 +0200 (CEST) Date: Mon, 8 Apr 2002 09:53:58 +0200 From: Cejka Rudolf To: "Andrey A. Chernov" Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/colldef cs_CZ.ISO8859-2.src Message-ID: <20020408095357.A4194@fit.vutbr.cz> References: <20020407170804.A79700@fit.vutbr.cz> <20020407181849.GA68881@nagual.pp.ru> <20020407205501.A84706@fit.vutbr.cz> <20020407204132.GA69778@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020407204132.GA69778@nagual.pp.ru>; from ache@nagual.pp.ru on Mon, Apr 08, 2002 at 12:41:34AM +0400 Sender: owner-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 wrote (2002/04/08): > Because programs gets broken in other case. If they gets broken, we have to fix them or leave them as they are and wait for fixing them, but it is not possible to "solve" localization problems by breaking localization itself. If you think in this way, when we can expect that you break localization for numbers and for dates? These both are much bigger problem than collation: * When you call setlocale(LC_ALL, ...), floating numbers are automatically printed with comma instead of dot in printf() in some localizations. It is very common and really painful problem, for example when some programs generate broken PostScript files. * When you call setlocale(LC_ALL, ...), strftime() automatically produces localized strings and not all applications take it into account, even if it is everywhere specified. * On the other hand, with collation you have to use setlocale(LC_ALL, ...) and specialized strcoll()/strxfrm(), so applications have to know that this collation is different from standard collation, so applications have to expect problems. > Almost any current system > strcoll usage suppose ASCII-compatible charset and produce unpredictable > bugs otherwise. We are not ready to free-form collates yet. As for example Acrobat Reader, which does not work with our localization. However it is not the case when we can break localization - we have to force to fix broken applications. We use it and we live with it and we know about it. On the other hand - you do not use it and you do not live with it, so why you still want to break our localization? We have to fix "current system strcoll usages" and please do not break localization itself. > Because it is not in the form suitable for FreeBSD. It worked fine before, so why it could not work anymore? > Do you check other collates before making your variant? Yes. And you? I'm afraid that you did not and even you did not check our norm and you did not contact anybody about this. Check all other systems for example, please: Linux: C = A B a b cs_CZ.ISO-8859-2 = A a B b Solaris: C = A B a b cz = A a B b Irix: C = A B a b cs = a A b B Unixware: C = A B a b cs_CZ.ISO8859-2 = a A b B FreeBSD (old): C = A B a b cs_CZ.ISO8859-2 = A a B b AcheBSD (new): C = A B a b cs_CZ.ISO8859-2 = A B a b AcheBSD is currently the only system I know, which wants to have ASCII compatibility upon national standards. > Do you notice their similarity in some aspects? Yes, but our collation is different from them so we have to have different collation. Is it so hard to understand it? > I preserve as much of your variant as I can, making it ASCII > backward-compatible. I can't see how it can be very broken. No, our collation is not ASCII backward compatible, so for us it is very broken. > There are certain rules. I.e when you sort ASCII file, it must > remains the same as with LANG=C for compatibility reasons. And it is said in which norm? It still looks just as your personal opinion. Why people implementing and using other systems such as Solaris, Irix, Unixware and Linux think different? -- Rudolf Cejka http://www.fit.vutbr.cz/~cejkar Brno University of Technology, Faculty of Information Technology Bozetechova 2, 612 66 Brno, Czech Republic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 0:59: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from kazi.dcse.fee.vutbr.cz (kazi.dcse.fee.vutbr.cz [147.229.8.12]) by hub.freebsd.org (Postfix) with ESMTP id D43AA37B416 for ; Mon, 8 Apr 2002 00:59:01 -0700 (PDT) Received: (from cejkar@localhost) by kazi.dcse.fee.vutbr.cz (8.11.6/8.11.6) id g387wbe06384; Mon, 8 Apr 2002 09:58:37 +0200 (CEST) Date: Mon, 8 Apr 2002 09:58:37 +0200 From: Cejka Rudolf To: "Andrey A. Chernov" Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/colldef cs_CZ.ISO8859-2.src Message-ID: <20020408095837.B4194@fit.vutbr.cz> References: <20020407170804.A79700@fit.vutbr.cz> <20020407181849.GA68881@nagual.pp.ru> <20020407205501.A84706@fit.vutbr.cz> <20020407210230.GA70137@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020407210230.GA70137@nagual.pp.ru>; from ache@nagual.pp.ru on Mon, Apr 08, 2002 at 01:02:32AM +0400 Sender: owner-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 wrote (2002/04/08): > Current collating order of Czhech and Slovak in new variant is exact THE > SAME as it was before. It was small/capital sets order which is changed. It is not the same, it is different. Exactly current small/capital collation breaks our standard. > Standard you refer obviously not sets small/capital letters order, it is > beyond of collating. It sets which letter follows which another one, No, it is a part of our standard. > and it preserved exactly in new variant. That why I left in the > comment standard name you refer to. No, it is obvoius that you do not know anything from our standard. Look at page 6 at the top: "3.7 Velka a mala pismena maji stejnou radici platnost." = "3.7 Capital and small letters have the same collation validity." So you are really breaking our standard and please back out your change. -- Rudolf Cejka http://www.fit.vutbr.cz/~cejkar Brno University of Technology, Faculty of Information Technology Bozetechova 2, 612 66 Brno, Czech Republic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 1: 0: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 360DF37B400; Mon, 8 Apr 2002 01:00:42 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3880g118700; Mon, 8 Apr 2002 01:00:42 -0700 (PDT) (envelope-from phk) Message-Id: <200204080800.g3880g118700@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 8 Apr 2002 01:00:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys disklabel.h src/sys/geom geom_dev.c geom_disk.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/04/08 01:00:42 PDT Modified files: sys/sys disklabel.h sys/geom geom_dev.c geom_disk.c Log: In reverence of the 3rd X11 development rule: 3.The only thing worse than generalizing from one example is generalizing from no examples at all. Remove the fwcylinders attribute before anybody gets the idea that we alone have squared the circle. Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.10 +0 -3 src/sys/geom/geom_dev.c 1.8 +0 -3 src/sys/geom/geom_disk.c 1.81 +0 -1 src/sys/sys/disklabel.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 1: 1: 8 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 982A437B416; Mon, 8 Apr 2002 01:00:59 -0700 (PDT) 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 SAA22369; Mon, 8 Apr 2002 18:00:53 +1000 Date: Mon, 8 Apr 2002 18:00:56 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Poul-Henning Kamp Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/sbin/newfs mkfs.c newfs.c newfs.h In-Reply-To: <69441.1018251451@critter.freebsd.dk> Message-ID: <20020408175001.J6180-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, 8 Apr 2002, Poul-Henning Kamp wrote: > In message <20020408171638.W6064-100000@gamplex.bde.org>, Bruce Evans writes: > > >I will back it out then :-) > > The commit I made does not change the way newfs works since the > code you are talking about was inside an "#ifdef notdef". > > And in fact it has been there for at least 8 years because that is > the way it was when Rod Grimes first imported revision 1.1 > > So please don't be silly :-) It has only been on my list of things to fix for half as long :-). > >It is needed at least as a reminder that > >new API's should support these capabilities. > > >Filesystems can't determine how much space they should leave for boot > >blocks. Lots of time has been wasted squeezing boot code into the > >too-small amount of space that may have been large many years ago. > > The new API, in difference from struct disklabel, actually will > support expressing which area(s) one should stay clear off even > if they are technically inside the accessible area. > > This will also improve the quality of the hacks in CCD and the > swap code. I think this doesn't really belong in the label. It should be possible to put a filesystem on disk-like device without putting something foreign to the filesystem (a label) either inside or outside the filesystem, or by subdividing the devices. This is implemented for msdosfs (newfs_msdos -r reserved). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 1: 2: 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 6FE5737B404; Mon, 8 Apr 2002 01:01:55 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3881tY19275; Mon, 8 Apr 2002 01:01:55 -0700 (PDT) (envelope-from ru) Message-Id: <200204080801.g3881tY19275@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 8 Apr 2002 01:01:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net ether_addr.c src/usr.bin/netstat route.c src/usr.sbin/arp arp.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/04/08 01:01:53 PDT Modified files: (Branch: RELENG_4) lib/libc/net ether_addr.c usr.bin/netstat route.c usr.sbin/arp arp.c Log: MFC: Fix ether_ntoa(3) to print ethernet addresses with leading zeros. Revision Changes Path 1.10.2.5 +4 -3 src/lib/libc/net/ether_addr.c 1.41.2.12 +6 -13 src/usr.bin/netstat/route.c 1.22.2.9 +13 -25 src/usr.sbin/arp/arp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 1: 3:46 2002 Delivered-To: cvs-all@freebsd.org Received: from kazi.dcse.fee.vutbr.cz (kazi.dcse.fee.vutbr.cz [147.229.8.12]) by hub.freebsd.org (Postfix) with ESMTP id A694137B425 for ; Mon, 8 Apr 2002 01:03:34 -0700 (PDT) Received: (from cejkar@localhost) by kazi.dcse.fee.vutbr.cz (8.11.6/8.11.6) id g3883QD06612; Mon, 8 Apr 2002 10:03:26 +0200 (CEST) Date: Mon, 8 Apr 2002 10:03:26 +0200 From: Cejka Rudolf To: "Andrey A. Chernov" Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/colldef cs_CZ.ISO8859-2.src Message-ID: <20020408100325.C4194@fit.vutbr.cz> References: <20020407170804.A79700@fit.vutbr.cz> <20020407181849.GA68881@nagual.pp.ru> <20020407205501.A84706@fit.vutbr.cz> <20020407210704.GB70137@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020407210704.GB70137@nagual.pp.ru>; from ache@nagual.pp.ru on Mon, Apr 08, 2002 at 01:07:05AM +0400 Sender: owner-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 wrote (2002/04/08): > It was always an axiom, but now written down. However it looks as just your personal axiom which is based just on your personal opinion. You still did not mention any norm, where it is said. Why people behing other systems think as me and not as you? Once again, look at Linux, Solaris, Irix, Unixware and hopefully others. > No. According to commit rules, commit message must rather say what changed > instead of complex explanations of reasons. However commit messages have to be correct and your message was untrue, because it was not "fixing". It was "breaking" without any attempt for previous discussion. -- Rudolf Cejka http://www.fit.vutbr.cz/~cejkar Brno University of Technology, Faculty of Information Technology Bozetechova 2, 612 66 Brno, Czech Republic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 1: 4:34 2002 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by hub.freebsd.org (Postfix) with ESMTP id 6DFAC37B404; Mon, 8 Apr 2002 01:04:30 -0700 (PDT) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g3883tY9074464; Mon, 8 Apr 2002 10:03:55 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/newfs mkfs.c newfs.c newfs.h In-Reply-To: Your message of "Mon, 08 Apr 2002 18:00:56 +1000." <20020408175001.J6180-100000@gamplex.bde.org> Date: Mon, 08 Apr 2002 10:03:55 +0200 Message-ID: <74463.1018253035@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-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 <20020408175001.J6180-100000@gamplex.bde.org>, Bruce Evans writes: >> The new API, in difference from struct disklabel, actually will >> support expressing which area(s) one should stay clear off even >> if they are technically inside the accessible area. >> >> This will also improve the quality of the hacks in CCD and the >> swap code. > >I think this doesn't really belong in the label. It should be possible >to put a filesystem on disk-like device without putting something >foreign to the filesystem (a label) either inside or outside the >filesystem, or by subdividing the devices. This is implemented for >msdosfs (newfs_msdos -r reserved). That is exactly what the new API does: You ask your disk like device if it has any magic areas, and it tells you. Obviously, the prudent admin will try to prevent such overlaps by not putting filesystems on the first track/cylinder or whatever it takes to stay clear, but the code should DTRT even if he doesn't or for technical reasons can't avoid it (small physical media). -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 1:12: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 23A8837B416; Mon, 8 Apr 2002 01:12:47 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g388ClC24567; Mon, 8 Apr 2002 01:12:47 -0700 (PDT) (envelope-from phk) Message-Id: <200204080812.g388ClC24567@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 8 Apr 2002 01:12:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/smbfs smbfs_vfsops.c smbfs_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 phk 2002/04/08 01:12:47 PDT Modified files: sys/fs/hpfs hpfs_vnops.c sys/fs/smbfs smbfs_vfsops.c smbfs_vnops.c Log: Remove 3 instances of vm_zone.h inclusion. Revision Changes Path 1.27 +0 -1 src/sys/fs/hpfs/hpfs_vnops.c 1.8 +0 -1 src/sys/fs/smbfs/smbfs_vfsops.c 1.17 +0 -1 src/sys/fs/smbfs/smbfs_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 Apr 8 1:19:14 2002 Delivered-To: cvs-all@freebsd.org Received: from kazi.dcse.fee.vutbr.cz (kazi.dcse.fee.vutbr.cz [147.229.8.12]) by hub.freebsd.org (Postfix) with ESMTP id 59F8037B417 for ; Mon, 8 Apr 2002 01:19:09 -0700 (PDT) Received: (from cejkar@localhost) by kazi.dcse.fee.vutbr.cz (8.11.6/8.11.6) id g388J3D08007; Mon, 8 Apr 2002 10:19:03 +0200 (CEST) Date: Mon, 8 Apr 2002 10:19:03 +0200 From: Cejka Rudolf To: "Andrey A. Chernov" Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/colldef cs_CZ.ISO8859-2.src Message-ID: <20020408101903.E4194@fit.vutbr.cz> References: <20020407170804.A79700@fit.vutbr.cz> <20020407181849.GA68881@nagual.pp.ru> <20020407205501.A84706@fit.vutbr.cz> <20020407210230.GA70137@nagual.pp.ru> <20020407214723.GA70639@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020407214723.GA70639@nagual.pp.ru>; from ache@nagual.pp.ru on Mon, Apr 08, 2002 at 01:47:26AM +0400 Sender: owner-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 wrote (2002/04/08): > Your variant was already ignore case pre-sorted letters table, it can't be Yes, because it is strictly defined in our standard. > default since case ignoring is per-application choice. Now upper and lower No, it is defined by our standard so it has to be default. > sets are separated to make ignore case and not ignore case sorting be > different, i.e. reflect the nature of operation, as supposed to be. No, it is supposed that strcoll() will reflect locale-specific string sorting and not that it will ignore case. If you want, create new interface strcasecoll() or similar, but please do not break existing interface and existing functionality. If you think about sort: Old GNU sort in FreeBSD worked fine, current GNU sort works even better. If NetBSD sort is broken, I really could not understand, why we could not just update GNU sort to have working sort and instead we have to have broken sort and even broken localization in FreeBSD :-( So once again: Please back it out and do not break our localization. -- Rudolf Cejka http://www.fit.vutbr.cz/~cejkar Brno University of Technology, Faculty of Information Technology Bozetechova 2, 612 66 Brno, Czech Republic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 1:31:54 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 238B537B41A; Mon, 8 Apr 2002 01:31:50 -0700 (PDT) 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 SAA24852; Mon, 8 Apr 2002 18:31:48 +1000 Date: Mon, 8 Apr 2002 18:31:51 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: "David O'Brien" Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/cc/cc1 Makefile src/gnu/usr.bin/cc/cc1obj Makefile src/gnu/usr.bin/cc/cc1plus Makefile In-Reply-To: <20020408004154.A66483@dragon.nuxi.com> Message-ID: <20020408180314.Y6180-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, 8 Apr 2002, David O'Brien wrote: > On Mon, Apr 08, 2002 at 05:04:01PM +1000, Bruce Evans wrote: > > However, in the special case of the large first passes of > > cc, we (people who set NOSHARED here previously) think that clobbering > > earlier settings is right, because the space savings are small and the > > time savings are large for using NOSHARED unconditionally. > > My reason for a static cc/cpp0/cc1 has nothing to do with speed, but > rather to allow one to recover from a bad libc.so or ld-elf.so.1. Your change from NOSHARED=yes to NOSHARED?=yes had a negative effect on this. NOSHARED=yes is a speed optimization for the global setting of NOSHARED=no. It happens to give the negative optimization for foot- shooting that you want (but this doesn't help much when /bin/sh is optimized for foot-shooting). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 1:32: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 B986137B41B; Mon, 8 Apr 2002 01:32:47 -0700 (PDT) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g388Wlu27643; Mon, 8 Apr 2002 01:32:47 -0700 (PDT) (envelope-from dougb) Message-Id: <200204080832.g388Wlu27643@freefall.freebsd.org> From: Doug Barton Date: Mon, 8 Apr 2002 01:32:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/bind9 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/04/08 01:32:47 PDT Modified files: net/bind9 Makefile distinfo Log: Upgrade to 9.2.1rc2, the latest from ISC. Numerous bugs were fixed, see /usr/local/share/doc/bind9/CHANGES after installation for details. Revision Changes Path 1.43 +3 -3 ports/net/bind9/Makefile 1.26 +1 -1 ports/net/bind9/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 1:34: 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 2991F37B416; Mon, 8 Apr 2002 01:34:01 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g388Y1S27866; Mon, 8 Apr 2002 01:34:01 -0700 (PDT) (envelope-from murray) Message-Id: <200204080834.g388Y1S27866@freefall.freebsd.org> From: Murray Stokely Date: Mon, 8 Apr 2002 01:34:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/tail forward.c reverse.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 murray 2002/04/08 01:34:01 PDT Modified files: usr.bin/tail forward.c reverse.c Log: GCC 3.1 cleanup - add a break after default: at the end of a switch statement. Revision Changes Path 1.31 +1 -0 src/usr.bin/tail/forward.c 1.15 +1 -0 src/usr.bin/tail/reverse.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 1:39: 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 8425437B43C; Mon, 8 Apr 2002 01:38:04 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g388c3j28617; Mon, 8 Apr 2002 01:38:03 -0700 (PDT) (envelope-from murray) Message-Id: <200204080838.g388c3j28617@freefall.freebsd.org> From: Murray Stokely Date: Mon, 8 Apr 2002 01:38:03 -0700 (PDT) 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 murray 2002/04/08 01:38:03 PDT Modified files: (Branch: RELENG_4) release Makefile Log: MFC: r1.665 - Make it easier to specify a custom kernel configuration for the boot floppies. Revision Changes Path 1.536.2.79 +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 Mon Apr 8 1:39:49 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 C294B37B4B0; Mon, 8 Apr 2002 01:39:11 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g388abC58126; Mon, 8 Apr 2002 11:36:37 +0300 (EEST) (envelope-from ru) Date: Mon, 8 Apr 2002 11:36:37 +0300 From: Ruslan Ermilov To: Peter Wemm Cc: Gerald Pfeifer , "M. Warner Losh" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr Message-ID: <20020408083637.GB53790@sunbay.com> References: <20020408063937.EAE793810@overcee.wemm.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="24zk1gE8NUlDmwG9" Content-Disposition: inline In-Reply-To: <20020408063937.EAE793810@overcee.wemm.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 --24zk1gE8NUlDmwG9 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Apr 07, 2002 at 11:39:37PM -0700, Peter Wemm wrote: > Gerald Pfeifer wrote: > > On Sun, 7 Apr 2002, M. Warner Losh wrote: > > > Peter Wemm writes: > > >: Add -lstdc++ to the link args for these C++ tools so that they can= be > > >: compiled with gcc-3.1. Somebody thought it was a good idea to move > > >: the implementation of new and delete from libgcc to libstdc++. Th= is > > >: change doesn't harm the current compiler in the tree. > > > Is this a band-aid until the compiler can be fixed, or a real solution > > > long term? > >=20 > > If I'm right, the problem is that the gcc driver is used to compile the= se > > C++ sources. > >=20 > > One of the differences between gcc and g++ is that the latter automagic= ally > > links in libstdc++ while the former does not. This has been the case si= nce > > (at least GCC 2.95), but we did get away with it because, as Peter obse= rved, > > new/delete have been in libgcc which got linked in anyway. > >=20 > > GCC 3.0 and 3.1, however, have new/delete in libstdc++; the proper fix > > long-term would be using the g++ driver instead of the gcc driver for > > these C++ sources. >=20 > The .cc files are compiled with 'c++' as expected. The problem is that > the final link phase uses 'cc'. Our makefiles have no way to signal that > the final link should be done with c++ instead since it just sees a bunch > of .o files that need to be linked into an executable. >=20 OK, how about backing these out and committing this instead? %%% Index: bsd.prog.mk =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/src/share/mk/bsd.prog.mk,v retrieving revision 1.105 diff -u -r1.105 bsd.prog.mk --- bsd.prog.mk 7 Apr 2002 14:58:12 -0000 1.105 +++ bsd.prog.mk 8 Apr 2002 08:34:58 -0000 @@ -32,7 +32,12 @@ OBJS+=3D ${SRCS:N*.h:R:S/$/.o/g} =20 ${PROG}: ${OBJS} +.if ${SRCS:M*.cc} !=3D "" || ${SRCS:M*.C} !=3D "" || ${SRCS:M*.cpp} !=3D "= " || \ + ${SRCS:M*.cxx} !=3D "" + ${CXX} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} +.else ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} +.endif =20 .else !defined(SRCS) =20 %%% Cheers, --=20 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 --24zk1gE8NUlDmwG9 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 iD8DBQE8sVaVUkv4P6juNwoRAk5mAJ9mQkBqAT3bqaeLJPgk4tZDAAFzCgCfYn2k T8DfXGZlAesVAI4XqngD5zM= =7tSD -----END PGP SIGNATURE----- --24zk1gE8NUlDmwG9-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 1:44: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 0915C37B41A; Mon, 8 Apr 2002 01:44:17 -0700 (PDT) Received: (from simokawa@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g388iG629845; Mon, 8 Apr 2002 01:44:16 -0700 (PDT) (envelope-from simokawa) Message-Id: <200204080844.g388iG629845@freefall.freebsd.org> From: Hidetoshi Shimokawa Date: Mon, 8 Apr 2002 01:44:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/cam/scsi scsi_all.c scsi_da.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 simokawa 2002/04/08 01:44:16 PDT Modified files: (Branch: RELENG_4) sys/cam/scsi scsi_all.c scsi_da.c Log: MFC: - Add support for Simplified Direct Access Device. - Automatically detect devices that do not support READ(6)/WRITE(6). scsi_all.c: rev. 1.29 scsi_da.c: rev. 1.98, 1.101 Revision Changes Path 1.14.2.6 +7 -1 src/sys/cam/scsi/scsi_all.c 1.42.2.23 +77 -2 src/sys/cam/scsi/scsi_da.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 1:48:42 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 EDC5437B4EE; Mon, 8 Apr 2002 01:48:11 -0700 (PDT) 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 SAA26175; Mon, 8 Apr 2002 18:47:28 +1000 Date: Mon, 8 Apr 2002 18:47:30 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Poul-Henning Kamp Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/sbin/newfs mkfs.c newfs.c newfs.h In-Reply-To: <74463.1018253035@critter.freebsd.dk> Message-ID: <20020408183609.D6311-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, 8 Apr 2002, Poul-Henning Kamp wrote: > In message <20020408175001.J6180-100000@gamplex.bde.org>, Bruce Evans writes: > >I think this doesn't really belong in the label. It should be possible > >to put a filesystem on disk-like device without putting something > >foreign to the filesystem (a label) either inside or outside the > >filesystem, or by subdividing the devices. This is implemented for > >msdosfs (newfs_msdos -r reserved). > > That is exactly what the new API does: You ask your disk like > device if it has any magic areas, and it tells you. newfs'able devices shouldn't have to know this any more than memory or files (since they might be a file)... > Obviously, the prudent admin will try to prevent such overlaps > by not putting filesystems on the first track/cylinder or whatever > it takes to stay clear, but the code should DTRT even if he doesn't > or for technical reasons can't avoid it (small physical media). ... And the ioctls on the really-disk-like devices should be used for this if and only if the device supports them. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 1:55: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 B8B1537B417; Mon, 8 Apr 2002 01:55:51 -0700 (PDT) Received: (from cjh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g388tp231830; Mon, 8 Apr 2002 01:55:51 -0700 (PDT) (envelope-from cjh) Message-Id: <200204080855.g388tp231830@freefall.freebsd.org> From: CHOI Junho Date: Mon, 8 Apr 2002 01:55:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/korean/gaim Makefile ports/korean/gaim/files gaim-0.54-utf.diff gaim-utf.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 cjh 2002/04/08 01:55:51 PDT Modified files: korean/gaim Makefile Added files: korean/gaim/files gaim-utf.diff Removed files: korean/gaim/files gaim-0.54-utf.diff Log: Sync with 0.55 - remove version number from utf patch until accepted Revision Changes Path 1.5 +1 -1 ports/korean/gaim/Makefile 1.2 +0 -436 ports/korean/gaim/files/gaim-0.54-utf.diff (dead) 1.1 +437 -0 ports/korean/gaim/files/gaim-utf.diff (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 1:57: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 BDA9F37B417; Mon, 8 Apr 2002 01:57:22 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g388vLH32169; Mon, 8 Apr 2002 01:57:21 -0700 (PDT) (envelope-from phk) Message-Id: <200204080857.g388vLH32169@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 8 Apr 2002 01:57:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen disklabel.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/04/08 01:57:21 PDT Modified files: lib/libc/gen disklabel.c Log: Catch up with const'ification of and quelch warnings. Revision Changes Path 1.14 +13 -18 src/lib/libc/gen/disklabel.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 2:15: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 1AD1337B400; Mon, 8 Apr 2002 02:15:10 -0700 (PDT) Received: (from cjh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g389FA038638; Mon, 8 Apr 2002 02:15:10 -0700 (PDT) (envelope-from cjh) Message-Id: <200204080915.g389FA038638@freefall.freebsd.org> From: CHOI Junho Date: Mon, 8 Apr 2002 02:15:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/korean/gaim Makefile distinfo ports/korean/gaim/files gaim-utf.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 cjh 2002/04/08 02:15:10 PDT Modified files: korean/gaim Makefile Added files: korean/gaim distinfo Removed files: korean/gaim/files gaim-utf.diff Log: - Update to 0.55-i18n - Makefile Reordered to make portlint happy. I'm sorry for updating same thing twice. There was a big mistake. PR: ports/36835 Submitted by: Hye-Shik Chang Revision Changes Path 1.6 +5 -3 ports/korean/gaim/Makefile 1.1 +2 -0 ports/korean/gaim/distinfo (new) 1.2 +0 -437 ports/korean/gaim/files/gaim-utf.diff (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 2: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 CD91037B41B; Mon, 8 Apr 2002 02:20:07 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g389K7K39607; Mon, 8 Apr 2002 02:20:07 -0700 (PDT) (envelope-from phk) Message-Id: <200204080920.g389K7K39607@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 8 Apr 2002 02:20:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dumpon dumpon.c src/sbin/savecore savecore.c src/sys/dev/ccd ccd.c src/sys/dev/null null.c src/sys/dev/vinum vinumhdr.h src/sys/kern subr_diskslice.c src/sys/sys disk.h disklabel.h src/sys/ufs/ffs ffs_vfsops.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/04/08 02:20:07 PDT Modified files: sbin/dumpon dumpon.c sbin/savecore savecore.c sys/dev/ccd ccd.c sys/dev/null null.c sys/dev/vinum vinumhdr.h sys/kern subr_diskslice.c sys/sys disk.h disklabel.h sys/ufs/ffs ffs_vfsops.c Log: Move generic disk ioctls from to . Sponsored by: DARPA & NAI Labs Revision Changes Path 1.15 +1 -1 src/sbin/dumpon/dumpon.c 1.54 +1 -1 src/sbin/savecore/savecore.c 1.103 +1 -1 src/sys/dev/ccd/ccd.c 1.9 +1 -1 src/sys/dev/null/null.c 1.26 +2 -1 src/sys/dev/vinum/vinumhdr.h 1.102 +1 -0 src/sys/kern/subr_diskslice.c 1.21 +11 -0 src/sys/sys/disk.h 1.82 +3 -7 src/sys/sys/disklabel.h 1.177 +1 -1 src/sys/ufs/ffs/ffs_vfsops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 2:28: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from mailout01.sul.t-online.com (mailout01.sul.t-online.com [194.25.134.80]) by hub.freebsd.org (Postfix) with ESMTP id 326CA37B41C; Mon, 8 Apr 2002 02:28:04 -0700 (PDT) Received: from fwd11.sul.t-online.de by mailout01.sul.t-online.com with smtp id 16uVRO-00024Q-08; Mon, 08 Apr 2002 11:27:58 +0200 Received: from Andro-Beta.Leidinger.net (520065502893-0001@[217.83.29.148]) by fmrl11.sul.t-online.com with esmtp id 16uVRN-2AvVrMC; Mon, 8 Apr 2002 11:27:57 +0200 Received: from Leidinger.net (Magelan [192.168.1.1]) by Andro-Beta.Leidinger.net (8.11.6/8.11.6) with ESMTP id g389Rw703718; Mon, 8 Apr 2002 11:27:58 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Message-ID: <3CB170B4.4090607@Leidinger.net> Date: Mon, 08 Apr 2002 11:28:04 +0100 From: Alexander Leidinger User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; de-AT; rv:0.9.9) Gecko/20020311 X-Accept-Language: de, en-us MIME-Version: 1.0 To: "David O'Brien" Cc: Bruce Evans , cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/usr.bin/cc/cc1 Makefile src/gnu/usr.bin/cc/cc1obj Makefile src/gnu/usr.bin/cc/cc1plus Makefile References: <20020407162550.GE67968@sunbay.com> <20020408165120.S5876-100000@gamplex.bde.org> <20020408004154.A66483@dragon.nuxi.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Sender: 520065502893-0001@t-dialin.net Sender: owner-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: >>However, in the special case of the large first passes of >>cc, we (people who set NOSHARED here previously) think that clobbering >>earlier settings is right, because the space savings are small and the >>time savings are large for using NOSHARED unconditionally. > > > My reason for a static cc/cpp0/cc1 has nothing to do with speed, but > rather to allow one to recover from a bad libc.so or ld-elf.so.1. Even if I got hit by a broken ld-elf.so.1 yesterday I think your intend is questionable. A committer should be able to recover either by compiling it on another machine/OS(-version), or by getting a working version of the file(s) from a snapshot. A non committer should at least be able to get the file(s) from a snapshot or to ask someone how to resolve the issue (this is -current). So this is a bikeshed issue, and if there are no technical issues (I haven't fully looked into the files BDE refers to in the reply to your message) or they can get solved, David (the maintainer) should IMHO be the one who makes the decission (even if I think it's much easier to just copy a working version from somewhere else). Bye, Alexander. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 2:28: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 EDC3337B404; Mon, 8 Apr 2002 02:28:22 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g389SM741139; Mon, 8 Apr 2002 02:28:22 -0700 (PDT) (envelope-from ache) Message-Id: <200204080928.g389SM741139@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 8 Apr 2002 02:28:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/colldef 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 ache 2002/04/08 02:28:22 PDT Modified files: share/colldef README Log: Reword compatibility note Revision Changes Path 1.2 +2 -3 src/share/colldef/README To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 2: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 792BA37B404; Mon, 8 Apr 2002 02:29:30 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g389TUX41453; Mon, 8 Apr 2002 02:29:30 -0700 (PDT) (envelope-from ache) Message-Id: <200204080929.g389TUX41453@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 8 Apr 2002 02:29:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/colldef README 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 ache 2002/04/08 02:29:30 PDT Modified files: (Branch: RELENG_4) share/colldef README Log: MFC: reword compatibility info Revision Changes Path 1.1.2.2 +2 -3 src/share/colldef/README To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 2: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 1E79E37B404; Mon, 8 Apr 2002 02:29:47 -0700 (PDT) Received: (from tanimura@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g389TlD41489; Mon, 8 Apr 2002 02:29:47 -0700 (PDT) (envelope-from tanimura) Message-Id: <200204080929.g389TlD41489@freefall.freebsd.org> From: Seigo Tanimura Date: Mon, 8 Apr 2002 02:29:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/smp index.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 tanimura 2002/04/08 02:29:46 PDT Modified files: en/smp index.sgml Log: Alfred fixed the problem of p_fd corruption in sys/kern/kern_descrip.c 1.129 and sys/kern/vfs_syscalls.c 1.232. Move this task to 'done' and mark his name. Revision Changes Path 1.69 +10 -10 www/en/smp/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 2:39: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 AED5F37B405; Mon, 8 Apr 2002 02:39:30 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g389dU042960; Mon, 8 Apr 2002 02:39:30 -0700 (PDT) (envelope-from bde) Message-Id: <200204080939.g389dU042960@freefall.freebsd.org> From: Bruce Evans Date: Mon, 8 Apr 2002 02:39:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/gnu/ext2fs ext2_vfsops.c src/sys/isofs/cd9660 cd9660_vfsops.c src/sys/ufs/ffs ffs_vfsops.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 bde 2002/04/08 02:39:30 PDT Modified files: (Branch: RELENG_4) sys/gnu/ext2fs ext2_vfsops.c sys/isofs/cd9660 cd9660_vfsops.c sys/ufs/ffs ffs_vfsops.c Log: MFC (ext2_vfsops.c 1.91, cd9660_vfsops.c 1.98, ffs_vfsops.c 1.173: set si_iosize_max correctly in ffs, and don't forget to set it in cd9660 and ext2fs (the original log message mistakenly said msdosfs instead of cd9660)). Revision Changes Path 1.63.2.6 +4 -0 src/sys/gnu/ext2fs/ext2_vfsops.c 1.74.2.7 +4 -0 src/sys/isofs/cd9660/cd9660_vfsops.c 1.117.2.9 +1 -1 src/sys/ufs/ffs/ffs_vfsops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 2:40: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 429BA37B405; Mon, 8 Apr 2002 02:40:53 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g389er043222; Mon, 8 Apr 2002 02:40:53 -0700 (PDT) (envelope-from ache) Message-Id: <200204080940.g389er043222@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 8 Apr 2002 02:40:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/colldef cs_CZ.ISO8859-2.src X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2002/04/08 02:40:53 PDT Modified files: share/colldef cs_CZ.ISO8859-2.src Log: Back out ASCII compatibility and let people face the problems themself Cejka Rudolf tells that it was in strong violation with national standard. Revision Changes Path 1.4 +42 -32 src/share/colldef/cs_CZ.ISO8859-2.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 2:42: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 9884337B400; Mon, 8 Apr 2002 02:42:32 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g389gWY43533; Mon, 8 Apr 2002 02:42:32 -0700 (PDT) (envelope-from ache) Message-Id: <200204080942.g389gWY43533@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 8 Apr 2002 02:42:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/colldef cs_CZ.ISO8859-2.src 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 ache 2002/04/08 02:42:32 PDT Modified files: (Branch: RELENG_4) share/colldef cs_CZ.ISO8859-2.src Log: MFC: back out ASCII compatibility Revision Changes Path 1.2.2.3 +42 -32 src/share/colldef/cs_CZ.ISO8859-2.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 2:49: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 EEF0D37B400; Mon, 8 Apr 2002 02:49:41 -0700 (PDT) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g389ne644699; Mon, 8 Apr 2002 02:49:40 -0700 (PDT) (envelope-from dougb) Message-Id: <200204080949.g389ne644699@freefall.freebsd.org> From: Doug Barton Date: Mon, 8 Apr 2002 02:49:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/mergemaster mergemaster.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 dougb 2002/04/08 02:49:40 PDT Modified files: usr.sbin/mergemaster mergemaster.8 Log: Document the two new options, pre buildworld mode and post-mm rc.conf[.local] comparisons. Revision Changes Path 1.21 +12 -1 src/usr.sbin/mergemaster/mergemaster.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 2:52: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 11EA337B416; Mon, 8 Apr 2002 02:52:48 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g389qmR45307; Mon, 8 Apr 2002 02:52:48 -0700 (PDT) (envelope-from des) Message-Id: <200204080952.g389qmR45307@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 8 Apr 2002 02:52:47 -0700 (PDT) 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/04/08 02:52:47 PDT Modified files: etc/pam.d login Log: If used, pam_ssh should be marked "sufficient", not "required". Sponsored by: DARPA, NAI Labs Revision Changes Path 1.9 +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 Mon Apr 8 2:56:27 2002 Delivered-To: cvs-all@freebsd.org Received: from tao.org.uk (genius.tao.org.uk [212.135.162.51]) by hub.freebsd.org (Postfix) with ESMTP id 048FA37B405; Mon, 8 Apr 2002 02:56:23 -0700 (PDT) Received: by tao.org.uk (Postfix, from userid 100) id 8C29E51E; Mon, 8 Apr 2002 10:55:21 +0100 (BST) Date: Mon, 8 Apr 2002 10:55:21 +0100 From: Josef Karthauser To: Hidetoshi Shimokawa Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/cam/scsi scsi_all.c scsi_da.c Message-ID: <20020408095521.GF54610@genius.tao.org.uk> References: <200204080844.g388iG629845@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204080844.g388iG629845@freefall.freebsd.org> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 08, 2002 at 01:44:16AM -0700, Hidetoshi Shimokawa wrote: > simokawa 2002/04/08 01:44:16 PDT > > Modified files: (Branch: RELENG_4) > sys/cam/scsi scsi_all.c scsi_da.c > Log: > MFC: > - Add support for Simplified Direct Access Device. > - Automatically detect devices that do not support READ(6)/WRITE(6). > > scsi_all.c: rev. 1.29 > scsi_da.c: rev. 1.98, 1.101 Does this mean that the usb umass quirks can be removed? Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 2:57:57 2002 Delivered-To: cvs-all@freebsd.org Received: from tao.org.uk (genius.tao.org.uk [212.135.162.51]) by hub.freebsd.org (Postfix) with ESMTP id 8424F37B41A; Mon, 8 Apr 2002 02:57:48 -0700 (PDT) Received: by tao.org.uk (Postfix, from userid 100) id 34EEF51E; Mon, 8 Apr 2002 10:56:46 +0100 (BST) Date: Mon, 8 Apr 2002 10:56:46 +0100 From: Josef Karthauser To: Scott Long Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/usb uhci.c Message-ID: <20020408095646.GG54610@genius.tao.org.uk> References: <200204071803.g37I3jj44027@freefall.freebsd.org> <20020408035351.GA6762@hollin.btc.adaptec.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020408035351.GA6762@hollin.btc.adaptec.com> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 07, 2002 at 09:53:52PM -0600, Scott Long wrote: > On Sun, Apr 07, 2002 at 11:03:45AM -0700, Josef Karthauser wrote: > > joe 2002/04/07 11:03:45 PDT > > > > Modified files: > > sys/dev/usb uhci.c > > Log: > > MFNetBSD: > > revision 1.153 > > date: 2002/02/11 11:40:33; author: augustss; state: Exp; lines: +67 -26 > > Switch to the same abort mechanism as in [eo]hci; it should be more > > robust. > > > > Revision Changes Path > > 1.114 +67 -23 src/sys/dev/usb/uhci.c > > Joe, > > This change (or actually, this group of changes) changes the behaviour of > the ums lockup problem. Now, when I physically detach the device, the > detach never completes in the ums driver. I haven't tracked it down > yet, but I suspect that ums_detach is never even being called. In fact, > usbdevs reports that the device is still connected. However, if I > kldunload the ums driver ums_detach does get called, and further down > the abort callstack there is a panic. I'll send you all of the relevant > debugger info if you are interested. Yes please, if you've got a moment to take a look. I'll have another go at getting the kernel debugging working again today. Joe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 2:58:27 2002 Delivered-To: cvs-all@freebsd.org Received: from tao.org.uk (genius.tao.org.uk [212.135.162.51]) by hub.freebsd.org (Postfix) with ESMTP id F26B737B404; Mon, 8 Apr 2002 02:58:20 -0700 (PDT) Received: by tao.org.uk (Postfix, from userid 100) id 0DD8151E; Mon, 8 Apr 2002 10:57:17 +0100 (BST) Date: Mon, 8 Apr 2002 10:57:17 +0100 From: Josef Karthauser To: Poul-Henning Kamp Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c Message-ID: <20020408095717.GH54610@genius.tao.org.uk> References: <200204080659.g386xDx02578@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204080659.g386xDx02578@freefall.freebsd.org> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 07, 2002 at 11:59:13PM -0700, Poul-Henning Kamp wrote: > phk 2002/04/07 23:59:13 PDT > > Modified files: > sys/kern kern_shutdown.c > Log: > Put back dumppcb, but this time we put a comment to tell what it is for. > > Brucifixion by: bde Horray! :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 3:16: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 3E90C37B416; Mon, 8 Apr 2002 03:16:20 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38AGK853302; Mon, 8 Apr 2002 03:16:20 -0700 (PDT) (envelope-from joe) Message-Id: <200204081016.g38AGK853302@freefall.freebsd.org> From: Josef Karthauser Date: Mon, 8 Apr 2002 03:16:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/08 03:16:20 PDT Modified files: sys/dev/usb usbdevs Log: Add an entry for HP LaserJet 1200. Revision Changes Path 1.88 +1 -0 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 Mon Apr 8 3: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 F07B637B416; Mon, 8 Apr 2002 03:17:19 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38AHJj53447; Mon, 8 Apr 2002 03:17:19 -0700 (PDT) (envelope-from joe) Message-Id: <200204081017.g38AHJj53447@freefall.freebsd.org> From: Josef Karthauser Date: Mon, 8 Apr 2002 03:17:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs.h usbdevs_data.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 joe 2002/04/08 03:17:19 PDT Modified files: sys/dev/usb usbdevs.h usbdevs_data.h Log: Regenerate. Revision Changes Path 1.100 +2 -1 src/sys/dev/usb/usbdevs.h 1.100 +7 -1 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 Apr 8 3:19: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 DEDBD37B400; Mon, 8 Apr 2002 03:19:20 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38AJKG53844; Mon, 8 Apr 2002 03:19:20 -0700 (PDT) (envelope-from bde) Message-Id: <200204081019.g38AJKG53844@freefall.freebsd.org> From: Bruce Evans Date: Mon, 8 Apr 2002 03:19:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc MAKEDEV src/sys/isa 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 bde 2002/04/08 03:19:20 PDT Modified files: (Branch: RELENG_4) etc MAKEDEV sys/isa sio.c Log: MFC (MAKEDEV 1.323, sio.c 1.371: support more than 32 sio unit numbers). Revision Changes Path 1.243.2.46 +36 -14 src/etc/MAKEDEV 1.291.2.30 +12 -8 src/sys/isa/sio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 3:19: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 A966C37B41B; Mon, 8 Apr 2002 03:19:25 -0700 (PDT) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 7D50B5309; Mon, 8 Apr 2002 12:19:23 +0200 (CEST) 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: Poul-Henning Kamp Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/gen disklabel.c References: <200204080857.g388vLH32169@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 08 Apr 2002 12:19:22 +0200 In-Reply-To: <200204080857.g388vLH32169@freefall.freebsd.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 Poul-Henning Kamp writes: > Log: > Catch up with const'ification of and quelch warnings. Either "squelch" (from radio jargon) or "quench" (like a fire)... 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 Apr 8 3:20: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 045D437B42B; Mon, 8 Apr 2002 03:19:53 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38AJqd53924; Mon, 8 Apr 2002 03:19:52 -0700 (PDT) (envelope-from joe) Message-Id: <200204081019.g38AJqd53924@freefall.freebsd.org> From: Josef Karthauser Date: Mon, 8 Apr 2002 03:19:52 -0700 (PDT) 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/04/08 03:19:52 PDT Modified files: (Branch: RELENG_4) sys/dev/usb usbdevs Log: MFC: Add a couple of HP printers. Revision Changes Path 1.11.2.21 +4 -1 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 Mon Apr 8 3:26: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 330D537B419; Mon, 8 Apr 2002 03:26:35 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38AQZP57475; Mon, 8 Apr 2002 03:26:35 -0700 (PDT) (envelope-from joe) Message-Id: <200204081026.g38AQZP57475@freefall.freebsd.org> From: Josef Karthauser Date: Mon, 8 Apr 2002 03:26:35 -0700 (PDT) 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/04/08 03:26:35 PDT Modified files: (Branch: RELENG_4) sys/dev/usb usbdevs Log: MFC: Restore the correct order. Revision Changes Path 1.11.2.22 +15 -15 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 Mon Apr 8 3:27: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 09F3437B400; Mon, 8 Apr 2002 03:27:07 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38AR6457797; Mon, 8 Apr 2002 03:27:06 -0700 (PDT) (envelope-from joe) Message-Id: <200204081027.g38AR6457797@freefall.freebsd.org> From: Josef Karthauser Date: Mon, 8 Apr 2002 03:27:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb 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 joe 2002/04/08 03:27:05 PDT Modified files: (Branch: RELENG_4) sys/dev/usb usbdevs.h usbdevs_data.h Log: Regenerate. Revision Changes Path 1.32.2.20 +19 -16 src/sys/dev/usb/usbdevs.h 1.32.2.20 +60 -42 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 Apr 8 3:30: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 9874F37B41A; Mon, 8 Apr 2002 03:30:44 -0700 (PDT) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38AUie59497; Mon, 8 Apr 2002 03:30:44 -0700 (PDT) (envelope-from dougb) Message-Id: <200204081030.g38AUie59497@freefall.freebsd.org> From: Doug Barton Date: Mon, 8 Apr 2002 03:30:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/mergemaster mergemaster.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 dougb 2002/04/08 03:30:44 PDT Modified files: usr.sbin/mergemaster mergemaster.sh Log: Solve the problem of spuriously comparing files that were created in the ${TEMPROOT}/usr/obj directory by deleting them first. Revision Changes Path 1.29 +3 -0 src/usr.sbin/mergemaster/mergemaster.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 3:35: 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 A1AA437B41B; Mon, 8 Apr 2002 03:34:57 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38AYvN60585; Mon, 8 Apr 2002 03:34:57 -0700 (PDT) (envelope-from bde) Message-Id: <200204081034.g38AYvN60585@freefall.freebsd.org> From: Bruce Evans Date: Mon, 8 Apr 2002 03:34:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/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/04/08 03:34:57 PDT Modified files: sys/i386/i386 machdep.c Log: Removed ispc98 sysctl completely. Applications should understand that ispc98 isn't set if its sysctl doesn't exist. At least make(1) already understands this. Approved by: nyan Revision Changes Path 1.515 +0 -3 src/sys/i386/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 Mon Apr 8 3:35: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 3785C37B416; Mon, 8 Apr 2002 03:35:16 -0700 (PDT) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38AZGQ60809; Mon, 8 Apr 2002 03:35:16 -0700 (PDT) (envelope-from dougb) Message-Id: <200204081035.g38AZGQ60809@freefall.freebsd.org> From: Doug Barton Date: Mon, 8 Apr 2002 03:35:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/mergemaster mergemaster.8 mergemaster.sh 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 dougb 2002/04/08 03:35:16 PDT Modified files: (Branch: RELENG_4) usr.sbin/mergemaster mergemaster.8 mergemaster.sh Log: MFC 1.27 - 1.29. * Pre buildworld and post-mm file comparison modes * Some small code improvements * Delete files in ${TEMPROOT}/usr/obj to avoid comparing them Revision Changes Path 1.5.2.9 +12 -1 src/usr.sbin/mergemaster/mergemaster.8 1.6.2.11 +92 -25 src/usr.sbin/mergemaster/mergemaster.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 3:39: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 CBF0C37B400; Mon, 8 Apr 2002 03:39:12 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38AdCv61499; Mon, 8 Apr 2002 03:39:12 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204081039.g38AdCv61499@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 8 Apr 2002 03:39:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys malloc.h src/usr.bin/vmstat vmstat.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 asmodai 2002/04/08 03:39:12 PDT Modified files: sys/sys malloc.h Log: Change ks_calls from int64_t to uint64_t, since it cannot be negative. PR: 32342 Submitted by: ryan beasley Reviewed by: jeff, Tim J Robbins Revision Changes Path 1.59 +1 -1 src/sys/sys/malloc.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 3:39: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 D10DF37B405; Mon, 8 Apr 2002 03:39:12 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38AdCw61505; Mon, 8 Apr 2002 03:39:12 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204081039.g38AdCw61505@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 8 Apr 2002 03:39:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys malloc.h src/usr.bin/vmstat vmstat.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 asmodai 2002/04/08 03:39:12 PDT Modified files: usr.bin/vmstat vmstat.c Log: Change totreq to uint64_t from a long (the PR has an int64_t, which didn't make sense to me) and change the printf argument from %8ld to %20llu to accompany the printing of the totals. Realigned the header printed above it as well. PR: 32342 Submitted by: ryan beasley Reviewed by: jeff, Tim J Robbins Revision Changes Path 1.55 +4 -3 src/usr.bin/vmstat/vmstat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 3:47:49 2002 Delivered-To: cvs-all@freebsd.org Received: from a96180.upc-a.chello.nl (a96180.upc-a.chello.nl [62.163.96.180]) by hub.freebsd.org (Postfix) with ESMTP id DC81237B417; Mon, 8 Apr 2002 03:47:45 -0700 (PDT) Received: by a96180.upc-a.chello.nl (Postfix, from userid 1001) id D8A602170; Mon, 8 Apr 2002 12:47:44 +0200 (CEST) Date: Mon, 8 Apr 2002 12:47:44 +0200 From: Jeroen Ruigrok/asmodai To: Bruce Evans Cc: Poul-Henning Kamp , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/newfs mkfs.c newfs.c newfs.h Message-ID: <20020408104744.GK32532@daemon.ninth-circle.org> References: <69441.1018251451@critter.freebsd.dk> <20020408175001.J6180-100000@gamplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020408175001.J6180-100000@gamplex.bde.org> User-Agent: Mutt/1.3.28i Organisation: Ninth Circle Enterprises Sender: owner-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 [20020408 10:15], Bruce Evans (bde@zeta.org.au) wrote: >It has only been on my list of things to fix for half as long :-). So why didn't you? :) -- Jeroen Ruigrok van der Werven / asmodai / Kita no Mono asmodai@[wxs.nl|xmach.org], finger asmodai@ninth-circle.org http://www.softweyr.com/asmodai/ | http://www.[tendra|xmach].org/ Is there a place deep within, a place where you hide your darkest Sins..? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 3:57:14 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 38F7C37B416; Mon, 8 Apr 2002 03:57:11 -0700 (PDT) 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 UAA03151; Mon, 8 Apr 2002 20:57:03 +1000 Date: Mon, 8 Apr 2002 20:57:07 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Jeroen Ruigrok/asmodai Cc: Poul-Henning Kamp , , Subject: Re: cvs commit: src/sbin/newfs mkfs.c newfs.c newfs.h In-Reply-To: <20020408104744.GK32532@daemon.ninth-circle.org> Message-ID: <20020408205647.X7160-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, 8 Apr 2002, Jeroen Ruigrok/asmodai wrote: > -On [20020408 10:15], Bruce Evans (bde@zeta.org.au) wrote: > >It has only been on my list of things to fix for half as long :-). > > So why didn't you? :) My list is rather long :-). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 3:58: 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 00BB237B404; Mon, 8 Apr 2002 03:58:02 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Aw1J64308; Mon, 8 Apr 2002 03:58:01 -0700 (PDT) (envelope-from ru) Message-Id: <200204081058.g38Aw1J64308@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 8 Apr 2002 03:58:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/tinyware/login pico-login.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/04/08 03:58:01 PDT Modified files: release/picobsd/tinyware/login pico-login.c Log: Synch with login/login.c,v 1.81: Switch to OpenPAM. Revision Changes Path 1.3 +4 -4 src/release/picobsd/tinyware/login/pico-login.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 4: 2:10 2002 Delivered-To: cvs-all@freebsd.org Received: from a96180.upc-a.chello.nl (a96180.upc-a.chello.nl [62.163.96.180]) by hub.freebsd.org (Postfix) with ESMTP id 1ED4937B400; Mon, 8 Apr 2002 04:02:06 -0700 (PDT) Received: by a96180.upc-a.chello.nl (Postfix, from userid 1001) id 253A82170; Mon, 8 Apr 2002 13:02:05 +0200 (CEST) Date: Mon, 8 Apr 2002 13:02:05 +0200 From: Jeroen Ruigrok/asmodai To: Bruce Evans Cc: Poul-Henning Kamp , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/newfs mkfs.c newfs.c newfs.h Message-ID: <20020408110204.GN32532@daemon.ninth-circle.org> References: <20020408104744.GK32532@daemon.ninth-circle.org> <20020408205647.X7160-100000@gamplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020408205647.X7160-100000@gamplex.bde.org> User-Agent: Mutt/1.3.28i Organisation: Ninth Circle Enterprises Sender: owner-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 [20020408 13:00], Bruce Evans (bde@zeta.org.au) wrote: >My list is rather long :-). Any chance for certain items to be made public in order to alleviate your load/reduce the list's length? -- Jeroen Ruigrok van der Werven / asmodai / Kita no Mono asmodai@[wxs.nl|xmach.org], finger asmodai@ninth-circle.org http://www.softweyr.com/asmodai/ | http://www.[tendra|xmach].org/ Speak the sweet truth... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 4: 3: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 1F66F37B400; Mon, 8 Apr 2002 04:03:08 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38B38369080; Mon, 8 Apr 2002 04:03:08 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081103.g38B38369080@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 04:03:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/gnucash/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/04/08 04:03:07 PDT Modified files: deskutils/gnucash/files patch-configure Log: Remove iconv->giconv hack. Revision Changes Path 1.3 +1 -43 ports/deskutils/gnucash/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 Mon Apr 8 4: 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 ECF0937B405; Mon, 8 Apr 2002 04:04:35 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38B4ZP69332; Mon, 8 Apr 2002 04:04:35 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081104.g38B4ZP69332@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 04:04:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/glimmer/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/04/08 04:04:35 PDT Modified files: editors/glimmer/files patch-configure Log: Remove iconv->giconv hack. Revision Changes Path 1.4 +1 -43 ports/editors/glimmer/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 Mon Apr 8 4: 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 1924437B419; Mon, 8 Apr 2002 04:04:57 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38B4vq69484; Mon, 8 Apr 2002 04:04:57 -0700 (PDT) (envelope-from ru) Message-Id: <200204081104.g38B4vq69484@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 8 Apr 2002 04:04:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libutil login_auth.c login_cap.3 login_cap.c login_cap.h login_class.c login_crypt.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/04/08 04:04:57 PDT Modified files: lib/libutil login_auth.c login_cap.3 login_cap.c login_cap.h login_class.c login_crypt.c Log: Const poisoning. Revision Changes Path 1.13 +1 -1 src/lib/libutil/login_auth.c 1.28 +7 -7 src/lib/libutil/login_cap.3 1.27 +10 -10 src/lib/libutil/login_cap.c 1.6 +3 -3 src/lib/libutil/login_cap.h 1.17 +5 -7 src/lib/libutil/login_class.c 1.5 +1 -1 src/lib/libutil/login_crypt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 4: 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 BCFE037B419; Mon, 8 Apr 2002 04:05:54 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38B5s673385; Mon, 8 Apr 2002 04:05:54 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081105.g38B5s673385@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 04:05:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/gswitchit_applet/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/04/08 04:05:54 PDT Modified files: x11/gswitchit_applet/files patch-configure Log: Remove iconv->giconv hack. Revision Changes Path 1.2 +1 -43 ports/x11/gswitchit_applet/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 Mon Apr 8 4: 7: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 31A8037B400; Mon, 8 Apr 2002 04:07:18 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38B7IN73628; Mon, 8 Apr 2002 04:07:18 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081107.g38B7IN73628@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 04:07:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/AbiWord 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/04/08 04:07:18 PDT Modified files: editors/AbiWord Makefile Log: iconv binary now calles `iconv', not `giconv'. Revision Changes Path 1.43 +1 -1 ports/editors/AbiWord/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 4: 7: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 BB50637B416; Mon, 8 Apr 2002 04:07:52 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38B7qj73786; Mon, 8 Apr 2002 04:07:52 -0700 (PDT) (envelope-from ru) Message-Id: <200204081107.g38B7qj73786@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 8 Apr 2002 04:07:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh session.c src/lib/libpam/modules/pam_unix pam_unix.c src/release/picobsd/tinyware/login pico-login.c src/usr.bin/login login.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/04/08 04:07:52 PDT Modified files: crypto/openssh session.c lib/libpam/modules/pam_unix pam_unix.c release/picobsd/tinyware/login pico-login.c usr.bin/login login.c Log: Align for const poisoning in -lutil. Revision Changes Path 1.21 +1 -1 src/crypto/openssh/session.c 1.31 +3 -3 src/lib/libpam/modules/pam_unix/pam_unix.c 1.4 +7 -6 src/release/picobsd/tinyware/login/pico-login.c 1.83 +7 -6 src/usr.bin/login/login.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 4:17: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 B3E5B37B41A; Mon, 8 Apr 2002 04:17:07 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38BH7V74928; Mon, 8 Apr 2002 04:17:07 -0700 (PDT) (envelope-from ru) Message-Id: <200204081117.g38BH7V74928@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 8 Apr 2002 04:17:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/groff/tmac mdoc.local 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/04/08 04:17:07 PDT Modified files: (Branch: RELENG_4) gnu/usr.bin/groff/tmac mdoc.local Log: Fix the broken MFC. Revision Changes Path 1.2.2.10 +1 -1 src/gnu/usr.bin/groff/tmac/mdoc.local To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 4:20: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 8A07737B404; Mon, 8 Apr 2002 04:20:50 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38BKon75617; Mon, 8 Apr 2002 04:20:50 -0700 (PDT) (envelope-from ru) Message-Id: <200204081120.g38BKon75617@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 8 Apr 2002 04:20:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/groff/tmac mdoc.local X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/08 04:20:50 PDT Modified files: gnu/usr.bin/groff/tmac mdoc.local Log: Add .Fx entries for upcoming 4.6 and forthcoming 4.7. Requested by: asmodai Revision Changes Path 1.11 +3 -0 src/gnu/usr.bin/groff/tmac/mdoc.local To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 4:22: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 0ACD337B419; Mon, 8 Apr 2002 04:22:24 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38BMO975973; Mon, 8 Apr 2002 04:22:24 -0700 (PDT) (envelope-from ru) Message-Id: <200204081122.g38BMO975973@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 8 Apr 2002 04:22:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/groff/tmac mdoc.local 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/04/08 04:22:23 PDT Modified files: (Branch: RELENG_4) gnu/usr.bin/groff/tmac mdoc.local Log: MFC: .Fx 4.6 and .Fx 4.7. Revision Changes Path 1.2.2.11 +3 -0 src/gnu/usr.bin/groff/tmac/mdoc.local To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 4:22: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 72FAA37B405; Mon, 8 Apr 2002 04:22:46 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38BMkA76170; Mon, 8 Apr 2002 04:22:46 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081122.g38BMkA76170@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 04:22:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gabber/files patch-am X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/08 04:22:46 PDT Modified files: net/gabber/files patch-am Log: -lgiconv --> -liconv. Revision Changes Path 1.4 +2 -2 ports/net/gabber/files/patch-am To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 4: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 B52C137B41A; Mon, 8 Apr 2002 04:24:56 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38BOuZ76751; Mon, 8 Apr 2002 04:24:56 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081124.g38BOuZ76751@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 04:24:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/converters/siconv/files patch-siconv.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/04/08 04:24:56 PDT Modified files: converters/siconv/files patch-siconv.c Log: Remove iconv->giconv hack. Revision Changes Path 1.2 +0 -9 ports/converters/siconv/files/patch-siconv.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 4:25: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 D85D937B476; Mon, 8 Apr 2002 04:25:23 -0700 (PDT) Received: (from motoyuki@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38BPNI76866; Mon, 8 Apr 2002 04:25:23 -0700 (PDT) (envelope-from motoyuki) Message-Id: <200204081125.g38BPNI76866@freefall.freebsd.org> From: Motoyuki Konno Date: Mon, 8 Apr 2002 04:25:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/lfview/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 motoyuki 2002/04/08 04:25:23 PDT Added files: graphics/lfview/files patch-ab patch-ac Log: Fix build problem on XFree86 4.X. Revision Changes Path 1.1 +8 -0 ports/graphics/lfview/files/patch-ab (new) 1.1 +7 -0 ports/graphics/lfview/files/patch-ac (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 4:26: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 1443137B405; Mon, 8 Apr 2002 04:26:42 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38BQgm77073; Mon, 8 Apr 2002 04:26:42 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081126.g38BQgm77073@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 04:26:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/sqsh/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 sobomax 2002/04/08 04:26:42 PDT Modified files: databases/sqsh/files patch-ab Log: -lgiconv --> -liconv. Revision Changes Path 1.4 +1 -1 ports/databases/sqsh/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 Mon Apr 8 4:27: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 7847F37B404; Mon, 8 Apr 2002 04:27:33 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38BRX777189; Mon, 8 Apr 2002 04:27:33 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081127.g38BRX777189@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 04:27:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/dedit/files patch-ae X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/08 04:27:33 PDT Modified files: editors/dedit/files patch-ae Log: Remove iconv->giconv hack. Revision Changes Path 1.3 +0 -9 ports/editors/dedit/files/patch-ae To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 4:28: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 D9A8A37B417; Mon, 8 Apr 2002 04:28:33 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38BSXn77337; Mon, 8 Apr 2002 04:28:33 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081128.g38BSXn77337@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 04:28:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/wget+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 sobomax 2002/04/08 04:28:33 PDT Modified files: ftp/wget+ipv6 Makefile Log: iconv binary now called `iconv', not `giconv'. Revision Changes Path 1.5 +1 -1 ports/ftp/wget+ipv6/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 4:31: 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 DFCA437B405; Mon, 8 Apr 2002 04:30:59 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38BUx177743; Mon, 8 Apr 2002 04:30:59 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081130.g38BUx177743@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 04:30:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_php3/scripts configure.php X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/08 04:30:59 PDT Modified files: www/mod_php3/scripts configure.php Log: Correct name (iconv, not giconv) and version (3, not 2) of the shared library installed by the converters/libiconv port. Revision Changes Path 1.115 +5 -5 ports/www/mod_php3/scripts/configure.php To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 4:32: 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 4E75637B404; Mon, 8 Apr 2002 04:31:59 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38BVxA77879; Mon, 8 Apr 2002 04:31:59 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081131.g38BVxA77879@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 04:31:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_php4/files patch-ext_domxml_config.m4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/08 04:31:59 PDT Modified files: www/mod_php4/files patch-ext_domxml_config.m4 Log: giconv.h --> iconv.h. Revision Changes Path 1.3 +1 -1 ports/www/mod_php4/files/patch-ext_domxml_config.m4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 4:34: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 8788B37B405; Mon, 8 Apr 2002 04:34:22 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38BYMQ78306; Mon, 8 Apr 2002 04:34:22 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081134.g38BYMQ78306@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 04:34:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/elm+ME/files patch-shared_libs-iconv-config ports/mail/elm+ME/scripts pre-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/04/08 04:34:22 PDT Modified files: mail/elm+ME/scripts pre-configure Removed files: mail/elm+ME/files patch-shared_libs-iconv-config Log: Remove iconv->giconv hack. Revision Changes Path 1.2 +0 -113 ports/mail/elm+ME/files/patch-shared_libs-iconv-config (dead) 1.31 +2 -2 ports/mail/elm+ME/scripts/pre-configure To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 5:12: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 E778D37B400; Mon, 8 Apr 2002 05:12:07 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38CC7X91684; Mon, 8 Apr 2002 05:12:07 -0700 (PDT) (envelope-from ache) Message-Id: <200204081212.g38CC7X91684@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 8 Apr 2002 05:12:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/sort COPYING Makefile config.h error.c error.h getopt.c getopt.h getopt1.c long-options.c long-options.h sort.1 sort.c system.h version.c version.h xstrtod.c xstrtod.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 ache 2002/04/08 05:12:07 PDT Added files: gnu/usr.bin/sort COPYING Makefile config.h error.c error.h getopt.c getopt.h getopt1.c long-options.c long-options.h sort.1 sort.c system.h version.c version.h xstrtod.c xstrtod.h Log: Revive GNU sort Revision Changes Path 1.3 +341 -0 src/gnu/usr.bin/sort/COPYING (new) 1.6 +7 -0 src/gnu/usr.bin/sort/Makefile (new) 1.3 +124 -0 src/gnu/usr.bin/sort/config.h (new) 1.6 +130 -0 src/gnu/usr.bin/sort/error.c (new) 1.3 +46 -0 src/gnu/usr.bin/sort/error.h (new) 1.4 +772 -0 src/gnu/usr.bin/sort/getopt.c (new) 1.4 +131 -0 src/gnu/usr.bin/sort/getopt.h (new) 1.4 +182 -0 src/gnu/usr.bin/sort/getopt1.c (new) 1.5 +80 -0 src/gnu/usr.bin/sort/long-options.c (new) 1.4 +11 -0 src/gnu/usr.bin/sort/long-options.h (new) 1.8 +231 -0 src/gnu/usr.bin/sort/sort.1 (new) 1.20 +2149 -0 src/gnu/usr.bin/sort/sort.c (new) 1.8 +207 -0 src/gnu/usr.bin/sort/system.h (new) 1.4 +4 -0 src/gnu/usr.bin/sort/version.c (new) 1.3 +2 -0 src/gnu/usr.bin/sort/version.h (new) 1.3 +49 -0 src/gnu/usr.bin/sort/xstrtod.c (new) 1.3 +16 -0 src/gnu/usr.bin/sort/xstrtod.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 5:16: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 1901A37B404; Mon, 8 Apr 2002 05:16:50 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38CGoK92409; Mon, 8 Apr 2002 05:16:50 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081216.g38CGoK92409@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 05:16:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/wxgtk-devel/files patch-configure patch-setup.h.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/04/08 05:16:50 PDT Modified files: x11-toolkits/wxgtk-devel/files patch-configure Removed files: x11-toolkits/wxgtk-devel/files patch-setup.h.in Log: Remove iconv->giconv hack. Revision Changes Path 1.6 +1 -19 ports/x11-toolkits/wxgtk-devel/files/patch-configure 1.2 +0 -20 ports/x11-toolkits/wxgtk-devel/files/patch-setup.h.in (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 5:20:25 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.sat.t.u-tokyo.ac.jp (nat.keisu.t.u-tokyo.ac.jp [133.11.68.2]) by hub.freebsd.org (Postfix) with ESMTP id AD15B37B400; Mon, 8 Apr 2002 05:20:04 -0700 (PDT) Received: from ett.sat.t.u-tokyo.ac.jp (ett.sat.t.u-tokyo.ac.jp [10.6.1.30]) by mail.sat.t.u-tokyo.ac.jp (Postfix) with ESMTP id 7A9B62DAC3; Mon, 8 Apr 2002 21:20:02 +0900 (JST) Date: Mon, 08 Apr 2002 21:20:02 +0900 Message-ID: From: Hidetoshi Shimokawa To: Josef Karthauser Cc: Hidetoshi Shimokawa , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/cam/scsi scsi_all.c scsi_da.c In-Reply-To: <20020408095521.GF54610@genius.tao.org.uk> References: <200204080844.g388iG629845@freefall.freebsd.org> <20020408095521.GF54610@genius.tao.org.uk> User-Agent: Wanderlust/2.4.1 (Stand By Me) REMI/1.14.3 (Matsudai) FLIM/1.13.2 (Kasanui) APEL/10.3 MULE XEmacs/21.2 (beta19) (Shinjuku) (i386-unknown-freebsd3.2) X-Face: OE([KxWyJI0r[R~S/>7ia}SJ)i%a,$-9%7{*yihQk|]gl}2p#"oXmX/fT}Bn7:#j7i14gu$ jgR\S*&C3R/pJX List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Mon, 8 Apr 2002 10:55:21 +0100, Josef Karthauser wrote: > > On Mon, Apr 08, 2002 at 01:44:16AM -0700, Hidetoshi Shimokawa wrote: > > simokawa 2002/04/08 01:44:16 PDT > > > > Modified files: (Branch: RELENG_4) > > sys/cam/scsi scsi_all.c scsi_da.c > > Log: > > MFC: > > - Add support for Simplified Direct Access Device. > > - Automatically detect devices that do not support READ(6)/WRITE(6). > > > > scsi_all.c: rev. 1.29 > > scsi_da.c: rev. 1.98, 1.101 > > Does this mean that the usb umass quirks can be removed? If the device returns SCSI error (illegal request), it can be removed. But if it returns no error, you have to do sysctl kern.cam.da.no_6_byte=1 or keep the quirks or enable ad-hoc workaround (the follwing patch). Justin ask me to disable this part until he looks into the umass-sim. As far as I know umass-sim doesn't return any error for the most of the drives. I think umass-sim should be return some errors if tranfer length is 0. /\ Hidetoshi Shimokawa \/ simokawa@sat.t.u-tokyo.ac.jp PGP public key: http://www.sat.t.u-tokyo.ac.jp/~simokawa/pgp.html Index: scsi_da.c =================================================================== RCS file: /home/ncvs/src/sys/cam/scsi/scsi_da.c,v retrieving revision 1.102 diff -u -r1.102 scsi_da.c --- scsi_da.c 31 Mar 2002 22:28:03 -0000 1.102 +++ scsi_da.c 8 Apr 2002 12:16:35 -0000 @@ -1402,7 +1402,7 @@ bp->bio_error = 0; if (bp->bio_resid != 0) { /* Short transfer ??? */ -#if 0 +#if 1 if (cmd6workaround(done_ccb) == ERESTART) return; @@ -1422,7 +1422,7 @@ bp->bio_resid = csio->resid; if (csio->resid > 0) { /* Short transfer ??? */ -#if 0 /* XXX most of the broken umass devices need this ad-hoc work around */ +#if 1 /* XXX most of the broken umass devices need this ad-hoc work around */ if (cmd6workaround(done_ccb) == ERESTART) return; #endif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 5:27: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 E64B837B400; Mon, 8 Apr 2002 05:27:34 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38CRYX94061; Mon, 8 Apr 2002 05:27:34 -0700 (PDT) (envelope-from des) Message-Id: <200204081227.g38CRYX94061@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 8 Apr 2002 05:27:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/openpam - Imported sources X-FreeBSD-CVS-Branch: OPENPAM Sender: owner-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/04/08 05:27:34 PDT src/contrib/openpam - Imported sources Update of /home/ncvs/src/contrib/openpam In directory freefall.freebsd.org:/c/tmp/cvs-serv94034 Log Message: Vendor import of OpenPAM Cinchona. Status: Vendor Tag: OPENPAM Release Tags: OPENPAM_CINCHONA U src/contrib/openpam/HISTORY U src/contrib/openpam/INSTALL U src/contrib/openpam/LICENSE U src/contrib/openpam/MANIFEST U src/contrib/openpam/Makefile U src/contrib/openpam/README U src/contrib/openpam/RELNOTES U src/contrib/openpam/bin/Makefile U src/contrib/openpam/bin/su/Makefile U src/contrib/openpam/bin/su/su.c U src/contrib/openpam/doc/Makefile U src/contrib/openpam/doc/man/Makefile U src/contrib/openpam/doc/man/openpam_get_option.3 U src/contrib/openpam/doc/man/openpam_log.3 U src/contrib/openpam/doc/man/openpam_set_option.3 U src/contrib/openpam/doc/man/openpam_ttyconv.3 U src/contrib/openpam/doc/man/pam.3 U src/contrib/openpam/doc/man/pam_acct_mgmt.3 U src/contrib/openpam/doc/man/pam_authenticate.3 U src/contrib/openpam/doc/man/pam_chauthtok.3 U src/contrib/openpam/doc/man/pam_close_session.3 U src/contrib/openpam/doc/man/pam_end.3 U src/contrib/openpam/doc/man/pam_error.3 U src/contrib/openpam/doc/man/pam_get_authtok.3 U src/contrib/openpam/doc/man/pam_get_data.3 U src/contrib/openpam/doc/man/pam_get_item.3 U src/contrib/openpam/doc/man/pam_get_user.3 U src/contrib/openpam/doc/man/pam_getenv.3 U src/contrib/openpam/doc/man/pam_getenvlist.3 U src/contrib/openpam/doc/man/pam_info.3 U src/contrib/openpam/doc/man/pam_start.3 U src/contrib/openpam/doc/man/pam_open_session.3 U src/contrib/openpam/doc/man/pam_prompt.3 U src/contrib/openpam/doc/man/pam_putenv.3 U src/contrib/openpam/doc/man/pam_set_data.3 U src/contrib/openpam/doc/man/pam_set_item.3 U src/contrib/openpam/doc/man/pam_setcred.3 U src/contrib/openpam/doc/man/pam_setenv.3 U src/contrib/openpam/doc/man/pam_sm_acct_mgmt.3 U src/contrib/openpam/doc/man/pam_sm_authenticate.3 U src/contrib/openpam/doc/man/pam_sm_chauthtok.3 U src/contrib/openpam/doc/man/pam_sm_close_session.3 U src/contrib/openpam/doc/man/pam_sm_open_session.3 U src/contrib/openpam/doc/man/pam_sm_setcred.3 U src/contrib/openpam/doc/man/pam_strerror.3 U src/contrib/openpam/doc/man/pam_verror.3 U src/contrib/openpam/doc/man/pam_vinfo.3 U src/contrib/openpam/doc/man/pam_vprompt.3 U src/contrib/openpam/include/security/openpam.h U src/contrib/openpam/include/security/pam_appl.h U src/contrib/openpam/include/security/pam_constants.h U src/contrib/openpam/include/security/pam_modules.h U src/contrib/openpam/include/security/pam_types.h U src/contrib/openpam/lib/Makefile U src/contrib/openpam/lib/openpam_dispatch.c U src/contrib/openpam/lib/openpam_dynamic.c U src/contrib/openpam/lib/openpam_findenv.c U src/contrib/openpam/lib/openpam_get_option.c U src/contrib/openpam/lib/openpam_impl.h U src/contrib/openpam/lib/openpam_load.c U src/contrib/openpam/lib/openpam_log.c U src/contrib/openpam/lib/openpam_set_option.c U src/contrib/openpam/lib/openpam_static.c U src/contrib/openpam/lib/openpam_ttyconv.c U src/contrib/openpam/lib/pam_acct_mgmt.c U src/contrib/openpam/lib/pam_authenticate.c U src/contrib/openpam/lib/pam_authenticate_secondary.c U src/contrib/openpam/lib/pam_chauthtok.c U src/contrib/openpam/lib/pam_close_session.c U src/contrib/openpam/lib/pam_end.c U src/contrib/openpam/lib/pam_error.c U src/contrib/openpam/lib/pam_get_authtok.c U src/contrib/openpam/lib/pam_get_data.c U src/contrib/openpam/lib/pam_get_item.c U src/contrib/openpam/lib/pam_get_mapped_authtok.c U src/contrib/openpam/lib/pam_get_mapped_username.c U src/contrib/openpam/lib/pam_get_user.c U src/contrib/openpam/lib/pam_getenv.c U src/contrib/openpam/lib/pam_getenvlist.c U src/contrib/openpam/lib/pam_info.c U src/contrib/openpam/lib/pam_open_session.c U src/contrib/openpam/lib/pam_prompt.c U src/contrib/openpam/lib/pam_putenv.c U src/contrib/openpam/lib/pam_set_data.c U src/contrib/openpam/lib/pam_set_item.c U src/contrib/openpam/lib/pam_set_mapped_authtok.c U src/contrib/openpam/lib/pam_set_mapped_username.c U src/contrib/openpam/lib/pam_setcred.c U src/contrib/openpam/lib/pam_setenv.c U src/contrib/openpam/lib/pam_start.c U src/contrib/openpam/lib/pam_sm_acct_mgmt.c U src/contrib/openpam/lib/pam_sm_authenticate.c U src/contrib/openpam/lib/pam_sm_authenticate_secondary.c U src/contrib/openpam/lib/pam_sm_chauthtok.c U src/contrib/openpam/lib/pam_sm_close_session.c U src/contrib/openpam/lib/pam_sm_get_mapped_authtok.c U src/contrib/openpam/lib/pam_sm_get_mapped_username.c U src/contrib/openpam/lib/pam_sm_open_session.c U src/contrib/openpam/lib/pam_sm_set_mapped_authtok.c U src/contrib/openpam/lib/pam_sm_set_mapped_username.c U src/contrib/openpam/lib/pam_sm_setcred.c U src/contrib/openpam/lib/pam_strerror.c U src/contrib/openpam/lib/pam_verror.c U src/contrib/openpam/lib/pam_vinfo.c U src/contrib/openpam/lib/pam_vprompt.c U src/contrib/openpam/misc/gendoc.pl U src/contrib/openpam/modules/Makefile U src/contrib/openpam/modules/pam_deny/Makefile U src/contrib/openpam/modules/pam_deny/pam_deny.c U src/contrib/openpam/modules/pam_dummy/Makefile U src/contrib/openpam/modules/pam_dummy/pam_dummy.c U src/contrib/openpam/modules/pam_permit/Makefile U src/contrib/openpam/modules/pam_permit/pam_permit.c No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 5:30: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 975AF37B41E; Mon, 8 Apr 2002 05:30:32 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38CUWC94602; Mon, 8 Apr 2002 05:30:32 -0700 (PDT) (envelope-from des) Message-Id: <200204081230.g38CUWC94602@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 8 Apr 2002 05:30:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/openpam - Imported sources X-FreeBSD-CVS-Branch: OPENPAM Sender: owner-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/04/08 05:30:32 PDT src/contrib/openpam - Imported sources Update of /home/ncvs/src/contrib/openpam In directory freefall.freebsd.org:/c/tmp/cvs-serv94586 Log Message: Vendor import of OpenPAM Cinchona. Status: Vendor Tag: OPENPAM Release Tags: OPENPAM_CINCHONA U src/contrib/openpam/HISTORY U src/contrib/openpam/INSTALL U src/contrib/openpam/LICENSE U src/contrib/openpam/MANIFEST U src/contrib/openpam/Makefile U src/contrib/openpam/README U src/contrib/openpam/RELNOTES U src/contrib/openpam/bin/Makefile U src/contrib/openpam/bin/su/Makefile U src/contrib/openpam/bin/su/su.c U src/contrib/openpam/doc/Makefile U src/contrib/openpam/doc/man/Makefile U src/contrib/openpam/doc/man/openpam_get_option.3 U src/contrib/openpam/doc/man/openpam_log.3 U src/contrib/openpam/doc/man/openpam_set_option.3 U src/contrib/openpam/doc/man/openpam_ttyconv.3 U src/contrib/openpam/doc/man/pam.3 U src/contrib/openpam/doc/man/pam_acct_mgmt.3 U src/contrib/openpam/doc/man/pam_authenticate.3 U src/contrib/openpam/doc/man/pam_chauthtok.3 U src/contrib/openpam/doc/man/pam_close_session.3 U src/contrib/openpam/doc/man/pam_end.3 U src/contrib/openpam/doc/man/pam_error.3 U src/contrib/openpam/doc/man/pam_get_authtok.3 U src/contrib/openpam/doc/man/pam_get_data.3 U src/contrib/openpam/doc/man/pam_get_item.3 U src/contrib/openpam/doc/man/pam_get_user.3 U src/contrib/openpam/doc/man/pam_getenv.3 U src/contrib/openpam/doc/man/pam_getenvlist.3 U src/contrib/openpam/doc/man/pam_info.3 U src/contrib/openpam/doc/man/pam_start.3 U src/contrib/openpam/doc/man/pam_open_session.3 U src/contrib/openpam/doc/man/pam_prompt.3 U src/contrib/openpam/doc/man/pam_putenv.3 U src/contrib/openpam/doc/man/pam_set_data.3 U src/contrib/openpam/doc/man/pam_set_item.3 U src/contrib/openpam/doc/man/pam_setcred.3 U src/contrib/openpam/doc/man/pam_setenv.3 U src/contrib/openpam/doc/man/pam_sm_acct_mgmt.3 U src/contrib/openpam/doc/man/pam_sm_authenticate.3 U src/contrib/openpam/doc/man/pam_sm_chauthtok.3 U src/contrib/openpam/doc/man/pam_sm_close_session.3 U src/contrib/openpam/doc/man/pam_sm_open_session.3 U src/contrib/openpam/doc/man/pam_sm_setcred.3 U src/contrib/openpam/doc/man/pam_strerror.3 U src/contrib/openpam/doc/man/pam_verror.3 U src/contrib/openpam/doc/man/pam_vinfo.3 U src/contrib/openpam/doc/man/pam_vprompt.3 N src/contrib/openpam/doc/man/openpam_borrow_cred.3 N src/contrib/openpam/doc/man/openpam_free_data.3 N src/contrib/openpam/doc/man/openpam_restore_cred.3 U src/contrib/openpam/include/security/openpam.h U src/contrib/openpam/include/security/pam_appl.h U src/contrib/openpam/include/security/pam_constants.h U src/contrib/openpam/include/security/pam_modules.h U src/contrib/openpam/include/security/pam_types.h U src/contrib/openpam/lib/Makefile U src/contrib/openpam/lib/openpam_dispatch.c U src/contrib/openpam/lib/openpam_dynamic.c U src/contrib/openpam/lib/openpam_findenv.c U src/contrib/openpam/lib/openpam_get_option.c U src/contrib/openpam/lib/openpam_impl.h U src/contrib/openpam/lib/openpam_load.c U src/contrib/openpam/lib/openpam_log.c U src/contrib/openpam/lib/openpam_set_option.c U src/contrib/openpam/lib/openpam_static.c U src/contrib/openpam/lib/openpam_ttyconv.c U src/contrib/openpam/lib/pam_acct_mgmt.c U src/contrib/openpam/lib/pam_authenticate.c U src/contrib/openpam/lib/pam_authenticate_secondary.c U src/contrib/openpam/lib/pam_chauthtok.c U src/contrib/openpam/lib/pam_close_session.c U src/contrib/openpam/lib/pam_end.c U src/contrib/openpam/lib/pam_error.c U src/contrib/openpam/lib/pam_get_authtok.c U src/contrib/openpam/lib/pam_get_data.c U src/contrib/openpam/lib/pam_get_item.c U src/contrib/openpam/lib/pam_get_mapped_authtok.c U src/contrib/openpam/lib/pam_get_mapped_username.c U src/contrib/openpam/lib/pam_get_user.c U src/contrib/openpam/lib/pam_getenv.c U src/contrib/openpam/lib/pam_getenvlist.c U src/contrib/openpam/lib/pam_info.c U src/contrib/openpam/lib/pam_open_session.c U src/contrib/openpam/lib/pam_prompt.c U src/contrib/openpam/lib/pam_putenv.c U src/contrib/openpam/lib/pam_set_data.c U src/contrib/openpam/lib/pam_set_item.c U src/contrib/openpam/lib/pam_set_mapped_authtok.c U src/contrib/openpam/lib/pam_set_mapped_username.c U src/contrib/openpam/lib/pam_setcred.c U src/contrib/openpam/lib/pam_setenv.c U src/contrib/openpam/lib/pam_start.c U src/contrib/openpam/lib/pam_sm_acct_mgmt.c U src/contrib/openpam/lib/pam_sm_authenticate.c U src/contrib/openpam/lib/pam_sm_authenticate_secondary.c U src/contrib/openpam/lib/pam_sm_chauthtok.c U src/contrib/openpam/lib/pam_sm_close_session.c U src/contrib/openpam/lib/pam_sm_get_mapped_authtok.c U src/contrib/openpam/lib/pam_sm_get_mapped_username.c U src/contrib/openpam/lib/pam_sm_open_session.c U src/contrib/openpam/lib/pam_sm_set_mapped_authtok.c U src/contrib/openpam/lib/pam_sm_set_mapped_username.c U src/contrib/openpam/lib/pam_sm_setcred.c U src/contrib/openpam/lib/pam_strerror.c U src/contrib/openpam/lib/pam_verror.c U src/contrib/openpam/lib/pam_vinfo.c U src/contrib/openpam/lib/pam_vprompt.c N src/contrib/openpam/lib/openpam_free_data.c N src/contrib/openpam/lib/openpam_borrow_cred.c N src/contrib/openpam/lib/openpam_restore_cred.c U src/contrib/openpam/misc/gendoc.pl U src/contrib/openpam/modules/Makefile U src/contrib/openpam/modules/pam_deny/Makefile U src/contrib/openpam/modules/pam_deny/pam_deny.c U src/contrib/openpam/modules/pam_dummy/Makefile U src/contrib/openpam/modules/pam_dummy/pam_dummy.c U src/contrib/openpam/modules/pam_permit/Makefile U src/contrib/openpam/modules/pam_permit/pam_permit.c No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 5:33: 1 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 84CF437B419; Mon, 8 Apr 2002 05:32:57 -0700 (PDT) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 949095309; Mon, 8 Apr 2002 14:32:55 +0200 (CEST) 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: cvs-committers@FreeBSD.org Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/openpam - Imported sources References: <200204081230.g38CUWC94602@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 08 Apr 2002 14:32:54 +0200 In-Reply-To: <200204081230.g38CUWC94602@freefall.freebsd.org> 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 Dag-Erling Smorgrav writes: > Log Message: > Vendor import of OpenPAM Cinchona. The first import missed some files. Note that since none of the files that changed in the first import changed in this one, the repo looks as if it had been done right the first time around (except for the dates on a few files being slightly different). 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 Apr 8 5:33: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 C53CC37B400; Mon, 8 Apr 2002 05:33:48 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38CXmg95445; Mon, 8 Apr 2002 05:33:48 -0700 (PDT) (envelope-from des) Message-Id: <200204081233.g38CXmg95445@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 8 Apr 2002 05:33:48 -0700 (PDT) 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 des 2002/04/08 05:33:48 PDT Modified files: lib/libpam Makefile.inc Log: Remove commented-out WARNS thingy. Revision Changes Path 1.7 +0 -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 Mon Apr 8 5:35: 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 68CA637B400; Mon, 8 Apr 2002 05:34:53 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38CYrv95642; Mon, 8 Apr 2002 05:34:53 -0700 (PDT) (envelope-from des) Message-Id: <200204081234.g38CYrv95642@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 8 Apr 2002 05:34:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/libpam 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/04/08 05:34:53 PDT Modified files: lib/libpam/libpam Makefile Log: Add new files and man pages from OpenPAM Cinchona. Sponsored by: DARPA, NAI Labs Revision Changes Path 1.31 +6 -0 src/lib/libpam/libpam/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 5:38: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 20FEF37B404; Mon, 8 Apr 2002 05:38:22 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38CcM596621; Mon, 8 Apr 2002 05:38:22 -0700 (PDT) (envelope-from des) Message-Id: <200204081238.g38CcM596621@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 8 Apr 2002 05:38:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/openpam - Imported sources X-FreeBSD-CVS-Branch: OPENPAM Sender: owner-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/04/08 05:38:21 PDT src/contrib/openpam - Imported sources Update of /home/ncvs/src/contrib/openpam In directory freefall.freebsd.org:/c/tmp/cvs-serv96592 Log Message: Vendor import of OpenPAM Cinchona. Status: Vendor Tag: OPENPAM Release Tags: OPENPAM_CINCHONA N src/contrib/openpam/CREDITS U src/contrib/openpam/MANIFEST No conflicts created by this import To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 5: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 F0BC037B419; Mon, 8 Apr 2002 05:38:50 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Ccor96746; Mon, 8 Apr 2002 05:38:50 -0700 (PDT) (envelope-from des) Message-Id: <200204081238.g38Ccor96746@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 8 Apr 2002 05:38:50 -0700 (PDT) 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/04/08 05:38:50 PDT Modified files: lib/libpam/modules/pam_ssh pam_ssh.c Log: Use OpenPAM's credential switching functions. Sponsored by: DARPA, NAI Labs Revision Changes Path 1.33 +9 -10 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 Apr 8 5:40: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 69AED37B405; Mon, 8 Apr 2002 05:39:56 -0700 (PDT) Received: by flood.ping.uio.no (Postfix, from userid 2602) id E5E05530A; Mon, 8 Apr 2002 14:39:54 +0200 (CEST) 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: cvs-committers@FreeBSD.org Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/openpam - Imported sources References: <200204081238.g38CcM596621@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 08 Apr 2002 14:39:54 +0200 In-Reply-To: <200204081238.g38CcM596621@freefall.freebsd.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 Dag-Erling Smorgrav writes: > Log Message: > Vendor import of OpenPAM Cinchona. Third time lucky, I hope. DES (apparently not my day..) -- 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 Apr 8 5:41: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 5B78C37B419; Mon, 8 Apr 2002 05:41:08 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Cf8g97137; Mon, 8 Apr 2002 05:41:08 -0700 (PDT) (envelope-from des) Message-Id: <200204081241.g38Cf8g97137@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 8 Apr 2002 05:41:08 -0700 (PDT) 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/04/08 05:41:08 PDT Modified files: lib/libpam/modules/pam_ssh pam_ssh.c Log: Remove debugging code that was inadvertantly brought in by previous commit. Revision Changes Path 1.34 +0 -1 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 Apr 8 6:13: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 45B6837B417; Mon, 8 Apr 2002 06:13:29 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38DDTH07283; Mon, 8 Apr 2002 06:13:29 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204081313.g38DDTH07283@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 8 Apr 2002 06:13:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/cmp regular.c X-FreeBSD-CVS-Branch: RELENG_3 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG asmodai 2002/04/08 06:13:29 PDT Modified files: (Branch: RELENG_3) usr.bin/cmp regular.c Log: Work correctly when skips are given. Add $FreeBSD$ PR: 18597 Submitted by: Anatoly Vorobey Revision Changes Path 1.5.2.1 +5 -3 src/usr.bin/cmp/regular.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 6:21: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 882F737B419; Mon, 8 Apr 2002 06:21:19 -0700 (PDT) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38DLJL09396; Mon, 8 Apr 2002 06:21:19 -0700 (PDT) (envelope-from jkoshy) Message-Id: <200204081321.g38DLJL09396@freefall.freebsd.org> From: Joseph Koshy Date: Mon, 8 Apr 2002 06:21:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/py-fonttools 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 jkoshy 2002/04/08 06:21:19 PDT Modified files: print/py-fonttools Makefile Log: Unbreak by removing explicit dependency on python version. PR: ports/36866 Submitted by: Alan Eldridge Revision Changes Path 1.2 +1 -1 ports/print/py-fonttools/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 6:30: 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 1014B37B400; Mon, 8 Apr 2002 06:30:02 -0700 (PDT) Received: (from roberto@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38DU2l13120; Mon, 8 Apr 2002 06:30:02 -0700 (PDT) (envelope-from roberto) Message-Id: <200204081330.g38DU2l13120@freefall.freebsd.org> From: Ollivier Robert Date: Mon, 8 Apr 2002 06:30:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/apache2 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 roberto 2002/04/08 06:30:01 PDT Modified files: www/apache2 Makefile Log: Fix typo in the optional WITH_SUEXEC section. PR: ports/36872 Submitted by: Hye-Shik Chang (MAINTAINER) Revision Changes Path 1.111 +1 -1 ports/www/apache2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 6: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 46A0D37B405; Mon, 8 Apr 2002 06:37:33 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38DbXi14676; Mon, 8 Apr 2002 06:37:33 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081337.g38DbXi14676@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 06:37:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/syscons syscons.c src/sys/sys consio.h src/usr.sbin/vidcontrol vidcontrol.1 vidcontrol.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/04/08 06:37:32 PDT Modified files: (Branch: RELENG_4) sys/dev/syscons syscons.c sys/sys consio.h usr.sbin/vidcontrol vidcontrol.1 vidcontrol.c Log: MFC: when loading a font allow size of the font be omitted, in which case size of the current font used instead. For this reason extend CONS_GETINFO ioctl to provide information about size of the currently displayed font. Revision Changes Path 1.336.2.13 +1 -0 src/sys/dev/syscons/syscons.c 1.5.2.5 +2 -1 src/sys/sys/consio.h 1.24.2.12 +8 -0 src/usr.sbin/vidcontrol/vidcontrol.1 1.32.2.6 +40 -42 src/usr.sbin/vidcontrol/vidcontrol.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 6:50: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 D4DCB37B416; Mon, 8 Apr 2002 06:50:09 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Do9L19192; Mon, 8 Apr 2002 06:50:09 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081350.g38Do9L19192@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 06:50:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libstand Makefile bzipfs.c splitfs.c stand.h zipfs.c src/sys/boot/i386/loader 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/04/08 06:50:09 PDT Modified files: (Branch: RELENG_4) lib/libstand Makefile bzipfs.c stand.h zipfs.c sys/boot/i386/loader conf.c Added files: (Branch: RELENG_4) lib/libstand splitfs.c Log: MFC: allow loader(8) load kernels/modules split across several medias. Revision Changes Path 1.14.2.9 +1 -0 src/lib/libstand/Makefile 1.2.2.3 +1 -1 src/lib/libstand/bzipfs.c 1.3.2.1 +286 -0 src/lib/libstand/splitfs.c (new) 1.18.2.7 +1 -0 src/lib/libstand/stand.h 1.4.2.4 +1 -1 src/lib/libstand/zipfs.c 1.11.2.6 +1 -0 src/sys/boot/i386/loader/conf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 6:54: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 1CEAC37B423; Mon, 8 Apr 2002 06:54:02 -0700 (PDT) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Ds2M19961; Mon, 8 Apr 2002 06:54:02 -0700 (PDT) (envelope-from kuriyama) Message-Id: <200204081354.g38Ds2M19961@freefall.freebsd.org> From: Jun Kuriyama Date: Mon, 8 Apr 2002 06:54:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/XFree86-4-libraries/files patch-2 patch-joycal.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 kuriyama 2002/04/08 06:54:01 PDT Modified files: x11/XFree86-4-libraries/files patch-2 Added files: x11/XFree86-4-libraries/files patch-joycal.c Log: Use instead of . Reviewed by: will Revision Changes Path 1.3 +10 -1 ports/x11/XFree86-4-libraries/files/patch-2 1.1 +11 -0 ports/x11/XFree86-4-libraries/files/patch-joycal.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 Apr 8 8:11: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 927F937B41A; Mon, 8 Apr 2002 08:11:30 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38FBUH46261; Mon, 8 Apr 2002 08:11:30 -0700 (PDT) (envelope-from ru) Message-Id: <200204081511.g38FBUH46261@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 8 Apr 2002 08:11:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/08 08:11:30 PDT Modified files: . Makefile.inc1 Log: Avoid cleaning modules twice in `buildkernel'. Revision Changes Path 1.251 +3 -4 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 8:36:57 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 4EE6337B400; Mon, 8 Apr 2002 08:36:51 -0700 (PDT) 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 g38Fani91505; Mon, 8 Apr 2002 09:36:50 -0600 (MDT) (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 g38Faec22402; Mon, 8 Apr 2002 09:36:48 -0600 (MDT) (envelope-from imp@village.org) Date: Mon, 08 Apr 2002 08:36:18 -0600 (MDT) Message-Id: <20020408.083618.02078411.imp@village.org> To: bde@zeta.org.au Cc: asmodai@wxs.nl, phk@critter.freebsd.dk, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/newfs mkfs.c newfs.c newfs.h From: "M. Warner Losh" In-Reply-To: <20020408205647.X7160-100000@gamplex.bde.org> References: <20020408104744.GK32532@daemon.ninth-circle.org> <20020408205647.X7160-100000@gamplex.bde.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: <20020408205647.X7160-100000@gamplex.bde.org> Bruce Evans writes: : On Mon, 8 Apr 2002, Jeroen Ruigrok/asmodai wrote: : : > -On [20020408 10:15], Bruce Evans (bde@zeta.org.au) wrote: : > >It has only been on my list of things to fix for half as long :-). : > : > So why didn't you? :) : : My list is rather long :-). I can understand that. I have a PR that has 3 digits in it that I've been planning to fix for as long as it has been a pr :-( Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 8:46: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 2F85237B419; Mon, 8 Apr 2002 08:46:49 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Fkm753134; Mon, 8 Apr 2002 08:46:48 -0700 (PDT) (envelope-from marcus) Message-Id: <200204081546.g38Fkm753134@freefall.freebsd.org> From: Joe Marcus Clarke Date: Mon, 8 Apr 2002 08:46:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/plugger Makefile distinfo pkg-message pkg-plist ports/www/plugger/files patch-aa patch-pluggerrc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcus 2002/04/08 08:46:48 PDT Modified files: www/plugger Makefile distinfo pkg-message pkg-plist www/plugger/files patch-aa patch-pluggerrc Log: Update to 4.0. PR: 36277 Submitted by: maintainer Approved by: sobomax Revision Changes Path 1.11 +42 -11 ports/www/plugger/Makefile 1.4 +1 -1 ports/www/plugger/distinfo 1.6 +29 -9 ports/www/plugger/files/patch-aa 1.2 +68 -24 ports/www/plugger/files/patch-pluggerrc 1.3 +4 -5 ports/www/plugger/pkg-message 1.4 +1 -0 ports/www/plugger/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 Apr 8 8:49: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 0B56237B417; Mon, 8 Apr 2002 08:49:09 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Fn8e53714; Mon, 8 Apr 2002 08:49:08 -0700 (PDT) (envelope-from marcus) Message-Id: <200204081549.g38Fn8e53714@freefall.freebsd.org> From: Joe Marcus Clarke Date: Mon, 8 Apr 2002 08:49:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/plugger/files patch-plugger-helper.c patch-plugger.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 marcus 2002/04/08 08:49:08 PDT Added files: www/plugger/files patch-plugger-helper.c patch-plugger.c Log: Add two patches missed in the last commit. Revision Changes Path 1.1 +77 -0 ports/www/plugger/files/patch-plugger-helper.c (new) 1.1 +44 -0 ports/www/plugger/files/patch-plugger.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 Apr 8 8:54: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 8EB7137B419; Mon, 8 Apr 2002 08:54:48 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38FsmW59956; Mon, 8 Apr 2002 08:54:48 -0700 (PDT) (envelope-from marcus) Message-Id: <200204081554.g38FsmW59956@freefall.freebsd.org> From: Joe Marcus Clarke Date: Mon, 8 Apr 2002 08:54:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/gnomecontrolcenter Makefile distinfo pkg-plist ports/sysutils/gnomecontrolcenter/files patch-capplets::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 marcus 2002/04/08 08:54:48 PDT Modified files: sysutils/gnomecontrolcenter Makefile distinfo pkg-plist Removed files: sysutils/gnomecontrolcenter/files patch-capplets::Makefile.in Log: Update to 1.4.0.5. Reviewed by: sobomax Approved by: sobomax Revision Changes Path 1.41 +1 -2 ports/sysutils/gnomecontrolcenter/Makefile 1.16 +1 -1 ports/sysutils/gnomecontrolcenter/distinfo 1.2 +0 -7 ports/sysutils/gnomecontrolcenter/files/patch-capplets::Makefile.in (dead) 1.21 +47 -3 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 Mon Apr 8 8:57: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 E09AC37B400; Mon, 8 Apr 2002 08:57:54 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Fvs660719; Mon, 8 Apr 2002 08:57:54 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081557.g38Fvs660719@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 08:57:54 -0700 (PDT) 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 sobomax 2002/04/08 08:57:54 PDT Modified files: . access Log: With the great pleasure add Greg Lewis into the crowd. Greg is one of the fathers of the native FreeBSD Java port, so having him onboard is a long dream of all people who run Java on FreeBSD boxes - the dream which finally came true. He is also the second Greg in the Project, which is a good thing as well. :))) Approved by: portmgr Mentored by: sobomax Revision Changes Path 1.301 +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 Mon Apr 8 9: 1: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 E541737B41C; Mon, 8 Apr 2002 09:01:23 -0700 (PDT) Received: (from roberto@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38G1NU61411; Mon, 8 Apr 2002 09:01:23 -0700 (PDT) (envelope-from roberto) Message-Id: <200204081601.g38G1NU61411@freefall.freebsd.org> From: Ollivier Robert Date: Mon, 8 Apr 2002 09:01:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/ruby-tmpl 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 roberto 2002/04/08 09:01:23 PDT Modified files: www/ruby-tmpl Makefile distinfo Log: Update to 0.2.3. PR: ports/36833 Submitted by: Sean Chittenden (MAINTAINER) Revision Changes Path 1.2 +2 -2 ports/www/ruby-tmpl/Makefile 1.2 +1 -1 ports/www/ruby-tmpl/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 9: 9: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 1579837B41A; Mon, 8 Apr 2002 09:09:24 -0700 (PDT) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38G9OV67359; Mon, 8 Apr 2002 09:09:24 -0700 (PDT) (envelope-from skv) Message-Id: <200204081609.g38G9OV67359@freefall.freebsd.org> From: Sergey Skvortsov Date: Mon, 8 Apr 2002 09:09:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/p5-XML-SAX 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 skv 2002/04/08 09:09:23 PDT Modified files: textproc/p5-XML-SAX Makefile distinfo pkg-plist Log: Updated to 0.10, solved broken .pod issue, added post-install script to register XML::SAX::PurePerl. Approved by: markm Revision Changes Path 1.4 +5 -2 ports/textproc/p5-XML-SAX/Makefile 1.4 +1 -1 ports/textproc/p5-XML-SAX/distinfo 1.3 +6 -1 ports/textproc/p5-XML-SAX/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 Apr 8 9:14: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 63BFF37B400; Mon, 8 Apr 2002 09:14:20 -0700 (PDT) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38GEKg68976; Mon, 8 Apr 2002 09:14:20 -0700 (PDT) (envelope-from skv) Message-Id: <200204081614.g38GEKg68976@freefall.freebsd.org> From: Sergey Skvortsov Date: Mon, 8 Apr 2002 09:14:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/p5-Spreadsheet-WriteExcel 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/04/08 09:14:20 PDT Modified files: textproc/p5-Spreadsheet-WriteExcel Makefile distinfo pkg-descr pkg-plist Log: Update to 0.25, clean port files. Approved by: markm Revision Changes Path 1.8 +11 -6 ports/textproc/p5-Spreadsheet-WriteExcel/Makefile 1.6 +1 -1 ports/textproc/p5-Spreadsheet-WriteExcel/distinfo 1.3 +3 -0 ports/textproc/p5-Spreadsheet-WriteExcel/pkg-descr 1.6 +60 -57 ports/textproc/p5-Spreadsheet-WriteExcel/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 Apr 8 9: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 A045E37B419; Mon, 8 Apr 2002 09:16:57 -0700 (PDT) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38GGv869544; Mon, 8 Apr 2002 09:16:57 -0700 (PDT) (envelope-from skv) Message-Id: <200204081616.g38GGv869544@freefall.freebsd.org> From: Sergey Skvortsov Date: Mon, 8 Apr 2002 09:16:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/p5-DBD-InterBase Makefile distinfo ports/databases/p5-DBD-InterBase/files patch-Makefile.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 skv 2002/04/08 09:16:57 PDT Modified files: databases/p5-DBD-InterBase Makefile distinfo databases/p5-DBD-InterBase/files patch-Makefile.PL Log: Updated to 0.30. Approved by: markm Revision Changes Path 1.2 +1 -1 ports/databases/p5-DBD-InterBase/Makefile 1.2 +1 -1 ports/databases/p5-DBD-InterBase/distinfo 1.2 +301 -254 ports/databases/p5-DBD-InterBase/files/patch-Makefile.PL To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 9:18: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 3EA1437B400; Mon, 8 Apr 2002 09:18:29 -0700 (PDT) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38GITP69958; Mon, 8 Apr 2002 09:18:29 -0700 (PDT) (envelope-from skv) Message-Id: <200204081618.g38GITP69958@freefall.freebsd.org> From: Sergey Skvortsov Date: Mon, 8 Apr 2002 09:18:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/p5-Class-Contract Makefile 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/04/08 09:18:29 PDT Modified files: devel/p5-Class-Contract Makefile pkg-descr pkg-plist Log: Minor fixes. Approved by: markm Revision Changes Path 1.2 +3 -1 ports/devel/p5-Class-Contract/Makefile 1.2 +7 -4 ports/devel/p5-Class-Contract/pkg-descr 1.2 +2 -2 ports/devel/p5-Class-Contract/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 Apr 8 9:20: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 479CA37B41A; Mon, 8 Apr 2002 09:20:26 -0700 (PDT) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38GKQm70565; Mon, 8 Apr 2002 09:20:26 -0700 (PDT) (envelope-from skv) Message-Id: <200204081620.g38GKQm70565@freefall.freebsd.org> From: Sergey Skvortsov Date: Mon, 8 Apr 2002 09:20:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/p5-XML-SAX-Expat Makefile pkg-descr 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 skv 2002/04/08 09:20:26 PDT Modified files: textproc/p5-XML-SAX-Expat Makefile pkg-descr Added files: textproc/p5-XML-SAX-Expat pkg-install Log: Added post-install script to register XML::SAX::Expat as a SAX parser. Approved by: markm Revision Changes Path 1.3 +2 -1 ports/textproc/p5-XML-SAX-Expat/Makefile 1.2 +9 -6 ports/textproc/p5-XML-SAX-Expat/pkg-descr 1.1 +6 -0 ports/textproc/p5-XML-SAX-Expat/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 Mon Apr 8 9:21: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 1E41637B41A; Mon, 8 Apr 2002 09:21:48 -0700 (PDT) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38GLm770887; Mon, 8 Apr 2002 09:21:48 -0700 (PDT) (envelope-from skv) Message-Id: <200204081621.g38GLm770887@freefall.freebsd.org> From: Sergey Skvortsov Date: Mon, 8 Apr 2002 09:21:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/p5-POE 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 skv 2002/04/08 09:21:48 PDT Modified files: devel/p5-POE Makefile distinfo pkg-plist Log: Updated to 0.19, clean port files. Approved by: markm Revision Changes Path 1.8 +5 -3 ports/devel/p5-POE/Makefile 1.7 +1 -1 ports/devel/p5-POE/distinfo 1.7 +34 -35 ports/devel/p5-POE/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 Apr 8 9:22: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 5E3CC37B419; Mon, 8 Apr 2002 09:22:38 -0700 (PDT) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38GMc971133; Mon, 8 Apr 2002 09:22:38 -0700 (PDT) (envelope-from skv) Message-Id: <200204081622.g38GMc971133@freefall.freebsd.org> From: Sergey Skvortsov Date: Mon, 8 Apr 2002 09:22:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/p5-Carp-Assert Makefile 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/04/08 09:22:38 PDT Modified files: devel/p5-Carp-Assert Makefile pkg-descr Log: Minor fixes. Approved by: markm Revision Changes Path 1.2 +1 -1 ports/devel/p5-Carp-Assert/Makefile 1.2 +1 -1 ports/devel/p5-Carp-Assert/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 Apr 8 9:23: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 6E64837B417; Mon, 8 Apr 2002 09:23:10 -0700 (PDT) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38GNAp71292; Mon, 8 Apr 2002 09:23:10 -0700 (PDT) (envelope-from skv) Message-Id: <200204081623.g38GNAp71292@freefall.freebsd.org> From: Sergey Skvortsov Date: Mon, 8 Apr 2002 09:23:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/p5-Class-Accessor Makefile 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/04/08 09:23:10 PDT Modified files: devel/p5-Class-Accessor Makefile pkg-descr Log: Minor fixes. Approved by: markm Revision Changes Path 1.2 +1 -1 ports/devel/p5-Class-Accessor/Makefile 1.2 +1 -1 ports/devel/p5-Class-Accessor/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 Apr 8 9:24: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 E482137B417; Mon, 8 Apr 2002 09:24:11 -0700 (PDT) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38GOBX71583; Mon, 8 Apr 2002 09:24:11 -0700 (PDT) (envelope-from skv) Message-Id: <200204081624.g38GOBX71583@freefall.freebsd.org> From: Sergey Skvortsov Date: Mon, 8 Apr 2002 09:24:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/p5-Class-Data-Inheritable Makefile 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/04/08 09:24:11 PDT Modified files: devel/p5-Class-Data-Inheritable Makefile pkg-descr Log: Minor fixes. Approved by: markm Revision Changes Path 1.2 +1 -1 ports/devel/p5-Class-Data-Inheritable/Makefile 1.2 +1 -1 ports/devel/p5-Class-Data-Inheritable/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 Apr 8 9:24: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 6A25E37B417; Mon, 8 Apr 2002 09:24:46 -0700 (PDT) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38GOkC71749; Mon, 8 Apr 2002 09:24:46 -0700 (PDT) (envelope-from skv) Message-Id: <200204081624.g38GOkC71749@freefall.freebsd.org> From: Sergey Skvortsov Date: Mon, 8 Apr 2002 09:24:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/p5-Class-Delegation Makefile 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/04/08 09:24:46 PDT Modified files: devel/p5-Class-Delegation Makefile pkg-descr pkg-plist Log: Minor fixes. Approved by: markm Revision Changes Path 1.2 +5 -4 ports/devel/p5-Class-Delegation/Makefile 1.2 +3 -0 ports/devel/p5-Class-Delegation/pkg-descr 1.2 +7 -7 ports/devel/p5-Class-Delegation/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 Apr 8 9:26: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 8E97A37B419; Mon, 8 Apr 2002 09:26:12 -0700 (PDT) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38GQCZ72240; Mon, 8 Apr 2002 09:26:12 -0700 (PDT) (envelope-from skv) Message-Id: <200204081626.g38GQCZ72240@freefall.freebsd.org> From: Sergey Skvortsov Date: Mon, 8 Apr 2002 09:26:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/p5-Event 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 skv 2002/04/08 09:26:12 PDT Modified files: devel/p5-Event Makefile distinfo Log: Updated to 0.85. Approved by: markm Revision Changes Path 1.4 +1 -1 ports/devel/p5-Event/Makefile 1.4 +1 -1 ports/devel/p5-Event/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 9:27: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 59A9A37B417; Mon, 8 Apr 2002 09:27:24 -0700 (PDT) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38GRNA72697; Mon, 8 Apr 2002 09:27:24 -0700 (PDT) (envelope-from skv) Message-Id: <200204081627.g38GRNA72697@freefall.freebsd.org> From: Sergey Skvortsov Date: Mon, 8 Apr 2002 09:27:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/p5-POE-Component-Client-HTTP 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 skv 2002/04/08 09:27:23 PDT Modified files: devel/p5-POE-Component-Client-HTTP Makefile distinfo Log: Updated to 0.41. Approved by: markm Revision Changes Path 1.2 +1 -1 ports/devel/p5-POE-Component-Client-HTTP/Makefile 1.2 +1 -1 ports/devel/p5-POE-Component-Client-HTTP/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 9: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 5CF6F37B417; Mon, 8 Apr 2002 09:28:39 -0700 (PDT) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38GSdn73036; Mon, 8 Apr 2002 09:28:39 -0700 (PDT) (envelope-from skv) Message-Id: <200204081628.g38GSdn73036@freefall.freebsd.org> From: Sergey Skvortsov Date: Mon, 8 Apr 2002 09:28:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/p5-POE-Component-Client-UserAgent 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 skv 2002/04/08 09:28:39 PDT Modified files: devel/p5-POE-Component-Client-UserAgent Makefile distinfo Log: Updated to 0.04. Approved by: markm Revision Changes Path 1.2 +1 -1 ports/devel/p5-POE-Component-Client-UserAgent/Makefile 1.2 +1 -1 ports/devel/p5-POE-Component-Client-UserAgent/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 9:38: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from mail1.zer0.org (klapaucius.zer0.org [204.152.186.45]) by hub.freebsd.org (Postfix) with ESMTP id 568C137B400; Mon, 8 Apr 2002 09:37:54 -0700 (PDT) Received: by mail1.zer0.org (Postfix, from userid 1001) id 34C64239A0F; Mon, 8 Apr 2002 09:37:54 -0700 (PDT) Date: Mon, 8 Apr 2002 09:37:54 -0700 From: Gregory Sutter To: Maxim Sobolev Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT access Message-ID: <20020408163754.GJ507@klapaucius.zer0.org> References: <200204081557.g38Fvs660719@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="QGBKWVSgmlsIyJ+t" Content-Disposition: inline In-Reply-To: <200204081557.g38Fvs660719@freefall.freebsd.org> User-Agent: Mutt/1.3.27i Organization: Zer0 X-Purpose: For great justice! Mail-Copies-To: poster X-Message-Flag: Ditch this virus-ridden Outlook crap and get a real mailer! Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --QGBKWVSgmlsIyJ+t Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2002-04-08 08:57 -0700, Maxim Sobolev wrote: > sobomax 2002/04/08 08:57:54 PDT >=20 > Modified files: > . access=20 > Log: > With the great pleasure add Greg Lewis into the= crowd. > Greg is one of the fathers of the native FreeBSD Java port, so having h= im > onboard is a long dream of all people who run Java on FreeBSD boxes - t= he > dream which finally came true. > =20 > He is also the second Greg in the Project, which is a good thing as wel= l. :))) Fourth. Greg Lehey Greg Sutter Greg Shapiro Greg Lewis Greg[2] --=20 Gregory S. Sutter Computing is a terminal addiction. mailto:gsutter@zer0.org=20 http://www.zer0.org/~gsutter/=20 hkp://wwwkeys.pgp.net/0x845DFEDD --QGBKWVSgmlsIyJ+t Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Comment: '' iD8DBQE8scdiIBUx1YRd/t0RApq6AJ46jif8ci+Oay3KW3lYQFenkI3JIwCfRm3E v6rfPrGSImchMNufiexzA28= =bicv -----END PGP SIGNATURE----- --QGBKWVSgmlsIyJ+t-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 9:43:11 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 C464E37B400; Mon, 8 Apr 2002 09:42:56 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g38Gghu20752; Mon, 8 Apr 2002 19:42:43 +0300 (EEST) (envelope-from ru) Date: Mon, 8 Apr 2002 19:42:43 +0300 From: Ruslan Ermilov To: Gregory Sutter Cc: Maxim Sobolev , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT access Message-ID: <20020408164243.GC19929@sunbay.com> References: <200204081557.g38Fvs660719@freefall.freebsd.org> <20020408163754.GJ507@klapaucius.zer0.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GRPZ8SYKNexpdSJ7" Content-Disposition: inline In-Reply-To: <20020408163754.GJ507@klapaucius.zer0.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 --GRPZ8SYKNexpdSJ7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 08, 2002 at 09:37:54AM -0700, Gregory Sutter wrote: > On 2002-04-08 08:57 -0700, Maxim Sobolev wrote: > > sobomax 2002/04/08 08:57:54 PDT > >=20 > > Modified files: > > . access=20 > > Log: > > With the great pleasure add Greg Lewis into t= he crowd. > > Greg is one of the fathers of the native FreeBSD Java port, so having= him > > onboard is a long dream of all people who run Java on FreeBSD boxes -= the > > dream which finally came true. > > =20 > > He is also the second Greg in the Project, which is a good thing as w= ell. :))) >=20 > Fourth. >=20 > Greg Lehey > Greg Sutter > Greg Shapiro > Greg Lewis >=20 > Greg[2] Not in the sort(1) order, where you're the fourth: > Greg Lehey > Greg Lewis > Greg Shapiro > Greg Sutter :-) Cheers, --=20 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 --GRPZ8SYKNexpdSJ7 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 iD8DBQE8sciDUkv4P6juNwoRAqiuAJ95cLOpW2Ungc0IeNRW9XkCjtf3PwCfWDml EcYglThG9YWmg1KtayTrF5g= =NlMI -----END PGP SIGNATURE----- --GRPZ8SYKNexpdSJ7-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 9:44:54 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 0F1DE37B400; Mon, 8 Apr 2002 09:44:50 -0700 (PDT) Received: by elvis.mu.org (Postfix, from userid 1192) id CD0FCAE1D1; Mon, 8 Apr 2002 09:44:49 -0700 (PDT) Date: Mon, 8 Apr 2002 09:44:49 -0700 From: Alfred Perlstein To: Ruslan Ermilov Cc: Peter Wemm , Gerald Pfeifer , "M. Warner Losh" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: (using g++ for linkage) Re: cvs commit: src/gnu/usr.bin/gperf Message-ID: <20020408164449.GD93885@elvis.mu.org> References: <20020408063937.EAE793810@overcee.wemm.org> <20020408083637.GB53790@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020408083637.GB53790@sunbay.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 * Ruslan Ermilov [020408 01:39] wrote: > > > OK, how about backing these out and committing this instead? > > %%% > Index: bsd.prog.mk > +.if ${SRCS:M*.cc} != "" || ${SRCS:M*.C} != "" || ${SRCS:M*.cpp} != "" || \ > + ${SRCS:M*.cxx} != "" > + ${CXX} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} > +.else > ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} > +.endif > > .else !defined(SRCS) > > %%% I was about to propose something like this, nice work. :) -- -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 deductible 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 Apr 8 9:45: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 9DD6937B42C; Mon, 8 Apr 2002 09:44:59 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Gix576328; Mon, 8 Apr 2002 09:44:59 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081644.g38Gix576328@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 09:44:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gtk20 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/04/08 09:44:59 PDT Modified files: x11-toolkits/gtk20 pkg-plist Log: There is no lib/gtk-2.0/modules dir. Revision Changes Path 1.62 +0 -1 ports/x11-toolkits/gtk20/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 Apr 8 9:46: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from sdns.kv.ukrtel.net (sdns.kv.ukrtel.net [195.5.27.246]) by hub.freebsd.org (Postfix) with ESMTP id D85A637B41D; Mon, 8 Apr 2002 09:45:23 -0700 (PDT) Received: from vega.vega.com (195.5.51.243 [195.5.51.243]) by sdns.kv.ukrtel.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id 22TS0NX8; Mon, 8 Apr 2002 19:46:50 +0300 Received: (from max@localhost) by vega.vega.com (8.11.6/8.11.3) id g38GjVM56725; Mon, 8 Apr 2002 19:45:31 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200204081645.g38GjVM56725@vega.vega.com> Subject: Re: cvs commit: CVSROOT access To: gsutter@zer0.org (Gregory Sutter) Date: Mon, 8 Apr 2002 19:45:31 +0300 (EEST) Cc: sobomax@FreeBSD.ORG (Maxim Sobolev), cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-Reply-To: <20020408163754.GJ507@klapaucius.zer0.org> from "Gregory Sutter" at Apr 08, 2002 09:37:54 AM X-Mailer: ELM [version 2.5 PL5] 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 > > > --QGBKWVSgmlsIyJ+t > Content-Type: text/plain; charset=us-ascii > Content-Disposition: inline > Content-Transfer-Encoding: quoted-printable > > On 2002-04-08 08:57 -0700, Maxim Sobolev wrote: > > sobomax 2002/04/08 08:57:54 PDT > >=20 > > Modified files: > > . access=20 > > Log: > > With the great pleasure add Greg Lewis into the= > crowd. > > Greg is one of the fathers of the native FreeBSD Java port, so having h= > im > > onboard is a long dream of all people who run Java on FreeBSD boxes - t= > he > > dream which finally came true. > > =20 > > He is also the second Greg in the Project, which is a good thing as wel= > l. :))) > > Fourth. > > Greg Lehey > Greg Sutter > Greg Shapiro > Greg Lewis OOPS, you are correct, sorry. The problem seems related to the way I did counting: sobomax@freefall$ finger greg | grep ^Login Login: glewis Name: Greg Lewis Login: grog Name: Greg Lehey sobomax@freefall$ -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 9:49:30 2002 Delivered-To: cvs-all@freebsd.org Received: from mail1.zer0.org (klapaucius.zer0.org [204.152.186.45]) by hub.freebsd.org (Postfix) with ESMTP id 264BF37B417; Mon, 8 Apr 2002 09:49:15 -0700 (PDT) Received: by mail1.zer0.org (Postfix, from userid 1001) id F33ED239A0F; Mon, 8 Apr 2002 09:49:14 -0700 (PDT) Date: Mon, 8 Apr 2002 09:49:14 -0700 From: Gregory Sutter To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT access Message-ID: <20020408164914.GJ64289@klapaucius.zer0.org> References: <200204081557.g38Fvs660719@freefall.freebsd.org> <20020408163754.GJ507@klapaucius.zer0.org> <20020408164243.GC19929@sunbay.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="AYsPlKobQGgtCvjI" Content-Disposition: inline In-Reply-To: <20020408164243.GC19929@sunbay.com> User-Agent: Mutt/1.3.27i Organization: Zer0 X-Purpose: For great justice! Mail-Copies-To: poster X-Message-Flag: Ditch this virus-ridden Outlook crap and get a real mailer! Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --AYsPlKobQGgtCvjI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2002-04-08 19:42 +0300, Ruslan Ermilov wrote: > On Mon, Apr 08, 2002 at 09:37:54AM -0700, Gregory Sutter wrote: > > On 2002-04-08 08:57 -0700, Maxim Sobolev wrote: > > > =20 > > > He is also the second Greg in the Project, which is a good thing > > > as well. :))) > >=20 > > Fourth. > >=20 > > Greg Lehey > > Greg Sutter > > Greg Shapiro > > Greg Lewis > >=20 > > Greg[2] >=20 > Not in the sort(1) order, where you're the fourth: >=20 > > Greg Lehey > > Greg Lewis > > Greg Shapiro > > Greg Sutter Is that African or European sort(1)? Greg --=20 Gregory S. Sutter Five million battered women in mailto:gsutter@zer0.org this country, and I've always http://www.zer0.org/~gsutter/ eaten mine plain... hkp://wwwkeys.pgp.net/0x845DFEDD --AYsPlKobQGgtCvjI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Comment: '' iD8DBQE8scoKIBUx1YRd/t0RAhdYAJ9vM+XuvM9B5FQuh1hCDipHFaNrlgCeLNUP TPxxlwt1SF6PYpITBBMkdpc= =x3zg -----END PGP SIGNATURE----- --AYsPlKobQGgtCvjI-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 9:52: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 CFD7737B419; Mon, 8 Apr 2002 09:52:37 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38GqbH77587; Mon, 8 Apr 2002 09:52:37 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081652.g38GqbH77587@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 09:52:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gail 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/04/08 09:52:37 PDT Modified files: x11-toolkits/gail pkg-plist Log: Add `@dirrm lib/gtk-2.0/modules'. Revision Changes Path 1.5 +1 -0 ports/x11-toolkits/gail/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 Apr 8 10:13: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 C75DB37B404; Mon, 8 Apr 2002 10:13:14 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38HDEJ85987; Mon, 8 Apr 2002 10:13:14 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081713.g38HDEJ85987@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 10:13:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/libgnomeprint pkg-plist ports/print/gnomeprint 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/04/08 10:13:14 PDT Modified files: print/libgnomeprint pkg-plist print/gnomeprint pkg-plist Log: Teach GNOME1 and GNOME2 play nicely with each other - don't assume that shared dir (share/gnome/fonts) is `owned' by either one. Revision Changes Path 1.24 +1 -1 ports/print/gnomeprint/pkg-plist 1.26 +1 -1 ports/print/libgnomeprint/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 Apr 8 10:20: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 A254F37B417; Mon, 8 Apr 2002 10:20:09 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38HK9c86923; Mon, 8 Apr 2002 10:20:09 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081720.g38HK9c86923@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 10:20:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/gmail 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/04/08 10:20:09 PDT Modified files: mail/gmail pkg-plist Log: Don't try to remove GNOME's shared dirs. Revision Changes Path 1.2 +0 -6 ports/mail/gmail/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 Apr 8 10:23: 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 E76BD37B416; Mon, 8 Apr 2002 10:22:58 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38HMwd87404; Mon, 8 Apr 2002 10:22:58 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204081722.g38HMwd87404@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 8 Apr 2002 10:22:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gnomevfs pkg-plist ports/devel/gnomevfs2 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/04/08 10:22:58 PDT Modified files: devel/gnomevfs pkg-plist devel/gnomevfs2 pkg-plist Log: Tech corresponding GNOME1 and GNOME2 components to play nicely with shared dirs. Revision Changes Path 1.16 +1 -1 ports/devel/gnomevfs/pkg-plist 1.19 +1 -1 ports/devel/gnomevfs2/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 Apr 8 10:51: 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 3159A37B400; Mon, 8 Apr 2002 10:50:55 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Hotx91724; Mon, 8 Apr 2002 10:50:55 -0700 (PDT) (envelope-from jhb) Message-Id: <200204081750.g38Hotx91724@freefall.freebsd.org> From: John Baldwin Date: Mon, 8 Apr 2002 10:50:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en developers.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 jhb 2002/04/08 10:50:55 PDT Modified files: en developers.sgml Log: Add msmith. Revision Changes Path 1.9 +2 -1 www/en/developers.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 10: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 96D8A37B400; Mon, 8 Apr 2002 10:53:53 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38HrrN92171; Mon, 8 Apr 2002 10:53:53 -0700 (PDT) (envelope-from jhb) Message-Id: <200204081753.g38HrrN92171@freefall.freebsd.org> From: John Baldwin Date: Mon, 8 Apr 2002 10:53:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/smp index.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 jhb 2002/04/08 10:53:52 PDT Modified files: en/smp index.sgml Log: - Remove duplicate entry for eventhandler locking. - Make the eventhandler locking task more generic (don't require sx locks) and move it to still being a wip and assign it to both Mike Smith (who did the original locking) and to Jon Mini (who is reworking it into its hopefully final form). Revision Changes Path 1.70 +8 -15 www/en/smp/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 10:58: 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 F355437B43B; Mon, 8 Apr 2002 10:57:33 -0700 (PDT) Received: (from arr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38HvXp92785; Mon, 8 Apr 2002 10:57:33 -0700 (PDT) (envelope-from arr) Message-Id: <200204081757.g38HvXp92785@freefall.freebsd.org> From: "Andrew R. Reiter" Date: Mon, 8 Apr 2002 10:57:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/smp index.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 arr 2002/04/08 10:57:33 PDT Modified files: en/smp index.sgml Log: - cpu_core -> cpu_coredump Revision Changes Path 1.71 +2 -2 www/en/smp/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 11: 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 7660137B417; Mon, 8 Apr 2002 11:04:20 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38I4J994448; Mon, 8 Apr 2002 11:04:19 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204081804.g38I4J994448@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 8 Apr 2002 11:04:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules Makefile src/sys/modules/xe 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 asmodai 2002/04/08 11:04:18 PDT Modified files: (Branch: RELENG_4) sys/modules Makefile Log: Add xe module to the build. PR: 26885 Submitted by: Chia-liang Kao Revision Changes Path 1.110.2.47 +2 -1 src/sys/modules/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 11: 4: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 489F837B419; Mon, 8 Apr 2002 11:04:21 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38I4Jj94454; Mon, 8 Apr 2002 11:04:19 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204081804.g38I4Jj94454@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 8 Apr 2002 11:04:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules Makefile src/sys/modules/xe 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 asmodai 2002/04/08 11:04:19 PDT Added files: (Branch: RELENG_4) sys/modules/xe Makefile Log: Add Makefile for xe module building. This is different from CURRENT due to differences in handling of files between CURRENT and STABLE. PR: 26885 Submitted by: Chia-liang Kao Revision Changes Path 1.1.2.1 +8 -0 src/sys/modules/xe/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 Apr 8 11: 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 71AEA37B405; Mon, 8 Apr 2002 11:07:56 -0700 (PDT) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38I7uU99043; Mon, 8 Apr 2002 11:07:56 -0700 (PDT) (envelope-from znerd) Message-Id: <200204081807.g38I7uU99043@freefall.freebsd.org> From: Ernst de Haan Date: Mon, 8 Apr 2002 11:07:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_jk pkg-comment X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/08 11:07:56 PDT Modified files: www/mod_jk pkg-comment Log: Now explicitly stating that this module is only for Tomcat 3. Revision Changes Path 1.2 +1 -1 ports/www/mod_jk/pkg-comment To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 11: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 AF08A37B404; Mon, 8 Apr 2002 11:13:26 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38IDQj00317; Mon, 8 Apr 2002 11:13:26 -0700 (PDT) (envelope-from joe) Message-Id: <200204081813.g38IDQj00317@freefall.freebsd.org> From: Josef Karthauser Date: Mon, 8 Apr 2002 11:13:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb 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/04/08 11:13:24 PDT Modified files: sys/dev/usb usb.c Log: Lock down Giant in the usb_task_thread() kthread. Revision Changes Path 1.76 +4 -0 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 Mon Apr 8 11:27:57 2002 Delivered-To: cvs-all@freebsd.org Received: from lion-around.at.yiff.net (lion-around.at.yiff.net [167.206.208.229]) by hub.freebsd.org (Postfix) with ESMTP id 5F4B637B405; Mon, 8 Apr 2002 11:27:53 -0700 (PDT) Received: (from chris@localhost) by lion-around.at.yiff.net (8.11.6/8.11.6) id g38IQm906580; Mon, 8 Apr 2002 14:26:48 -0400 (EDT) (envelope-from chris@netmonger.net) X-Authentication-Warning: lion-around.at.yiff.net: chris set sender to chris@netmonger.net using -f Date: Mon, 8 Apr 2002 14:26:47 -0400 From: Christopher Masto To: Jordan Hubbard Cc: Murray Stokely , "Greg 'groggy' Lehey" , "David E. O'Brien" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: Configuring XFree 4 (was: cvs commit: src/usr.sbin/sysinstall Makefile dispatch.c dist.c install.c menus.c sysinstall.8) Message-ID: <20020408182647.GA67395@netmonger.net> References: <20020404115539.GE2303@freebsdmall.com> <32305.1017961490@winston.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <32305.1017961490@winston.freebsd.org> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 04, 2002 at 03:04:50PM -0800, Jordan Hubbard wrote: > Oh yeah, I think I've mentioned this before but just to bring it back > into focus so we're not blind-sided by other reports, XFree86 4.x will > bring you to grief if you have one of those Athlon-based Compaq > machines I wonder if it's the same issue as PRs 28418 and 25958. If this is the same problem on a variety of hardware, I tend to think it's not the BIOS writers on crack, but rather a misunderstanding in FreeBSD's MTRR code. -- Christopher Masto CB461C61 8AFC E3A8 7CE5 9023 B35D C26A D849 1F6E CB46 1C61 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 11:31:28 2002 Delivered-To: cvs-all@freebsd.org Received: from fw.wemm.org (12-232-135-171.client.attbi.com [12.232.135.171]) by hub.freebsd.org (Postfix) with ESMTP id 24B6B37B416; Mon, 8 Apr 2002 11:31:20 -0700 (PDT) Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by fw.wemm.org (8.11.6/8.11.6) with ESMTP id g38IWCQ16483; Mon, 8 Apr 2002 11:32:12 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id 36E4E38CC; Mon, 8 Apr 2002 11:37:57 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Alfred Perlstein Cc: Ruslan Ermilov , Gerald Pfeifer , "M. Warner Losh" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: (using g++ for linkage) Re: cvs commit: src/gnu/usr.bin/gperf In-Reply-To: <20020408164449.GD93885@elvis.mu.org> Date: Mon, 08 Apr 2002 11:37:57 -0700 From: Peter Wemm Message-Id: <20020408183757.36E4E38CC@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 Alfred Perlstein wrote: > * Ruslan Ermilov [020408 01:39] wrote: > > > > > OK, how about backing these out and committing this instead? > > > > %%% > > Index: bsd.prog.mk > > +.if ${SRCS:M*.cc} != "" || ${SRCS:M*.C} != "" || ${SRCS:M*.cpp} != "" || \ > > + ${SRCS:M*.cxx} != "" > > + ${CXX} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} > > +.else > > ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} > > +.endif > > > > .else !defined(SRCS) > > > > %%% > > I was about to propose something like this, nice work. :) That's a partial solution, but would probably be enough for these few cases. For example, it doesn't detect when you have libxxx.a file with C++ objects in it. Also, it leaves out the dependency on libstdc++. linking everything with c++(1) is a subset of adding to LDADD/DPADD. The LDADD is taken care of, but the DPADD of ${LIBSTDCPLUSPLUS} is missing. Only ${LIBC} is depended on. It might be better to have a switch to specify c++ linking. Or we could just leave it the way it is. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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 Mon Apr 8 11:41: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 02CD737B433; Mon, 8 Apr 2002 11:41:34 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38IfXc06763; Mon, 8 Apr 2002 11:41:33 -0700 (PDT) (envelope-from jhb) Message-Id: <200204081841.g38IfXc06763@freefall.freebsd.org> From: John Baldwin Date: Mon, 8 Apr 2002 11:41:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 hier.7 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/08 11:41:33 PDT Modified files: share/man/man7 hier.7 Log: Update /usr/libdata/perl subdirectory to the Perl 5.6.1. Revision Changes Path 1.70 +2 -2 src/share/man/man7/hier.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 11:44: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 EFCA237B41A; Mon, 8 Apr 2002 11:44:44 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38IiiV07142; Mon, 8 Apr 2002 11:44:44 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204081844.g38IiiV07142@freefall.freebsd.org> From: Tom Rhodes Date: Mon, 8 Apr 2002 11:44:44 -0700 (PDT) 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 trhodes 2002/04/08 11:44:44 PDT Modified files: en/projects projects.sgml Log: Fixed a dead link on the projects page Submitted by: Anthony Schneider Reviewed by: asmodai Revision Changes Path 1.124 +2 -2 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 Mon Apr 8 11:46:43 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 87C5A37B417 for ; Mon, 8 Apr 2002 11:46:39 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g38IkcYm090079; Mon, 8 Apr 2002 11:46:38 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g38IjMug090009; Mon, 8 Apr 2002 11:45:22 -0700 (PDT) Date: Mon, 8 Apr 2002 11:45:22 -0700 From: "David O'Brien" To: Alexander Leidinger Cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/usr.bin/cc/cc1 Makefile src/gnu/usr.bin/cc/cc1obj Makefile src/gnu/usr.bin/cc/cc1plus Makefile Message-ID: <20020408114522.B89784@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <20020407162550.GE67968@sunbay.com> <20020408165120.S5876-100000@gamplex.bde.org> <20020408004154.A66483@dragon.nuxi.com> <3CB170B4.4090607@Leidinger.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3CB170B4.4090607@Leidinger.net>; from Alexander@Leidinger.net on Mon, Apr 08, 2002 at 11:28:04AM +0100 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, Apr 08, 2002 at 11:28:04AM +0100, Alexander Leidinger wrote: > > My reason for a static cc/cpp0/cc1 has nothing to do with speed, but > > rather to allow one to recover from a bad libc.so or ld-elf.so.1. > > Even if I got hit by a broken ld-elf.so.1 yesterday I think your intend > is questionable. Uh, DON'T tell me my own experiences are wrong! Having a statically linked compiler has saved my ass more than once on the Sparc64 effort. Earlier I was using shared binaries (compiled from FSF sources), and got bit several times by a bad libc.so. > A committer should be able to recover either by > compiling it on another machine/OS(-version), T ALEXANDER SEND ME ANOTHER SUN BOX K PLZ THNX. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 11:48: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 E2BED37B416; Mon, 8 Apr 2002 11:48:38 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Imcw07885; Mon, 8 Apr 2002 11:48:38 -0700 (PDT) (envelope-from obrien) Message-Id: <200204081848.g38Imcw07885@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 8 Apr 2002 11:48:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/cc/cc Makefile src/gnu/usr.bin/cc/cc1 Makefile src/gnu/usr.bin/cc/cc1obj Makefile src/gnu/usr.bin/cc/cc1plus Makefile src/gnu/usr.bin/cc/cccp Makefile src/gnu/usr.bin/cc/collect2 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/04/08 11:48:38 PDT Modified files: gnu/usr.bin/cc/cc Makefile gnu/usr.bin/cc/cc1 Makefile gnu/usr.bin/cc/cc1obj Makefile gnu/usr.bin/cc/cc1plus Makefile gnu/usr.bin/cc/cccp Makefile gnu/usr.bin/cc/collect2 Makefile Log: Fine! I cannot freaking take the bikeshed any more. These binaries will be static, peroid. Revision Changes Path 1.25 +2 -2 src/gnu/usr.bin/cc/cc/Makefile 1.24 +1 -1 src/gnu/usr.bin/cc/cc1/Makefile 1.18 +1 -1 src/gnu/usr.bin/cc/cc1obj/Makefile 1.25 +1 -1 src/gnu/usr.bin/cc/cc1plus/Makefile 1.21 +2 -2 src/gnu/usr.bin/cc/cccp/Makefile 1.3 +1 -1 src/gnu/usr.bin/cc/collect2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 11:51:37 2002 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 904) id F319D37B416; Mon, 8 Apr 2002 11:51:21 -0700 (PDT) Date: Mon, 8 Apr 2002 11:51:21 -0700 From: Max Khon To: Peter Wemm Cc: Alfred Perlstein , Ruslan Ermilov , Gerald Pfeifer , "M. Warner Losh" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: (using g++ for linkage) Re: cvs commit: src/gnu/usr.bin/gperf Message-ID: <20020408115121.A50619@hub.freebsd.org> References: <20020408164449.GD93885@elvis.mu.org> <20020408183757.36E4E38CC@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: <20020408183757.36E4E38CC@overcee.wemm.org>; from peter@wemm.org on Mon, Apr 08, 2002 at 11:37:57AM -0700 Sender: owner-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, there! On Mon, Apr 08, 2002 at 11:37:57AM -0700, Peter Wemm wrote: > > * Ruslan Ermilov [020408 01:39] wrote: > > > > > > > OK, how about backing these out and committing this instead? > > > > > > %%% > > > Index: bsd.prog.mk > > > +.if ${SRCS:M*.cc} != "" || ${SRCS:M*.C} != "" || ${SRCS:M*.cpp} != "" || \ > > > + ${SRCS:M*.cxx} != "" > > > + ${CXX} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} > > > +.else > > > ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} > > > +.endif > > > > > > .else !defined(SRCS) > > > > > > %%% > > > > I was about to propose something like this, nice work. :) > > That's a partial solution, but would probably be enough for these few > cases. For example, it doesn't detect when you have libxxx.a file with C++ > objects in it. > > Also, it leaves out the dependency on libstdc++. linking everything with > c++(1) is a subset of adding to LDADD/DPADD. The LDADD is taken care of, > but the DPADD of ${LIBSTDCPLUSPLUS} is missing. Only ${LIBC} is depended on. > > It might be better to have a switch to specify c++ linking. > > Or we could just leave it the way it is. NetBSD's allows to use PROG_CXX=foobar instead of PROG=foobar to link using ${CXX} instead of ${CC} /fjoe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 11:56: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 85AA837B417; Mon, 8 Apr 2002 11:56:39 -0700 (PDT) Received: (from jesper@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38IudU09359; Mon, 8 Apr 2002 11:56:39 -0700 (PDT) (envelope-from jesper) Message-Id: <200204081856.g38IudU09359@freefall.freebsd.org> From: Jesper Skriver Date: Mon, 8 Apr 2002 11:56:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/gtk-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 jesper 2002/04/08 11:56:39 PDT Modified files: textproc/gtk-doc Makefile Log: Release maintainership to ports@ It's possible that the 0.9 version breaks Gnome, but as I don't use Gnome, I have no way of testing that. Revision Changes Path 1.3 +1 -1 ports/textproc/gtk-doc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 12:11:49 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 73B6137B404; Mon, 8 Apr 2002 12:11:14 -0700 (PDT) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 8 Apr 2002 20:11:13 +0100 (BST) Date: Mon, 8 Apr 2002 20:11:13 +0100 From: David Malone To: Christopher Masto Cc: Jordan Hubbard , Murray Stokely , Greg 'groggy' Lehey , "David E. O'Brien" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: Configuring XFree 4 (was: cvs commit: src/usr.sbin/sysinstall Makefile dispatch.c dist.c install.c menus.c sysinstall.8) Message-ID: <20020408191113.GA56982@walton.maths.tcd.ie> References: <20020404115539.GE2303@freebsdmall.com> <32305.1017961490@winston.freebsd.org> <20020408182647.GA67395@netmonger.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020408182647.GA67395@netmonger.net> 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 Mon, Apr 08, 2002 at 02:26:47PM -0400, Christopher Masto wrote: > On Thu, Apr 04, 2002 at 03:04:50PM -0800, Jordan Hubbard wrote: > > Oh yeah, I think I've mentioned this before but just to bring it back > > into focus so we're not blind-sided by other reports, XFree86 4.x will > > bring you to grief if you have one of those Athlon-based Compaq > > machines > > I wonder if it's the same issue as PRs 28418 and 25958. > > If this is the same problem on a variety of hardware, I tend to think > it's not the BIOS writers on crack, but rather a misunderstanding in > FreeBSD's MTRR code. *suddenly wakes up* I've some patches which makes the MTRR code a bit more robust, but my BIOS is still acting funny and unfortunately the AMD docs which are likely to describe this stuff are under NDA. If anyone would like to try these patches, please do and let me know how you get on. On my machine it makes X work fine, but there are problems then at shutdown (probably related to ACPI and the BIOS getting cranky about the changes I've made). There are some debugging printfs so you can see what MTRR values are being changed. (If someone would like to review these patches so I can commit them then please do. They certainly are an improvement over a panic when you run X.) David. Index: sys/i386/i386/i686_mem.c =================================================================== RCS file: /cvs/FreeBSD-CVS/src/sys/i386/i386/i686_mem.c,v retrieving revision 1.13 diff -u -r1.13 i686_mem.c --- sys/i386/i386/i686_mem.c 27 Apr 2001 19:28:19 -0000 1.13 +++ sys/i386/i386/i686_mem.c 8 Apr 2002 07:35:56 -0000 @@ -79,6 +79,8 @@ struct mem_range_desc *mrd); static void i686_mrfetch(struct mem_range_softc *sc); static int i686_mtrrtype(int flags); +static int i686_mrt2mtrr(int flags, int oldval); +static int i686_mtrrconflict(int flag1, int flag2); static void i686_mrstore(struct mem_range_softc *sc); static void i686_mrstoreone(void *arg); static struct mem_range_desc *i686_mtrrfixsearch(struct mem_range_softc *sc, @@ -94,29 +96,35 @@ static int i686_mtrrtomrt[] = { MDF_UNCACHEABLE, MDF_WRITECOMBINE, - 0, - 0, + MDF_UNKNOWN, + MDF_UNKNOWN, MDF_WRITETHROUGH, MDF_WRITEPROTECT, MDF_WRITEBACK }; +#define MTRRTOMRTLEN (sizeof(i686_mtrrtomrt) / sizeof(i686_mtrrtomrt[0])) + +static int +i686_mtrr2mrt(int val) { + if (val < 0 || val >= MTRRTOMRTLEN) + return MDF_UNKNOWN; + return i686_mtrrtomrt[val]; +} + /* - * i686 MTRR conflict matrix for overlapping ranges - * - * Specifically, this matrix allows writeback and uncached ranges - * to overlap (the overlapped region is uncached). The array index - * is the translated i686 code for the flags (because they map well). + * i686 MTRR conflicts. Writeback and uncachable may overlap. */ -static int i686_mtrrconflict[] = { - MDF_WRITECOMBINE | MDF_WRITETHROUGH | MDF_WRITEPROTECT, - MDF_ATTRMASK, - 0, - 0, - MDF_ATTRMASK, - MDF_ATTRMASK, - MDF_WRITECOMBINE | MDF_WRITETHROUGH | MDF_WRITEPROTECT -}; +static int +i686_mtrrconflict(int flag1, int flag2) { + flag1 &= MDF_ATTRMASK; + flag2 &= MDF_ATTRMASK; + if (flag1 == flag2 || + (flag1 == MDF_WRITEBACK && flag2 == MDF_UNCACHEABLE) || + (flag2 == MDF_WRITEBACK && flag1 == MDF_UNCACHEABLE)) + return 0; + return 1; +} /* * Look for an exactly-matching range. @@ -155,7 +163,7 @@ msrv = rdmsr(msr); for (j = 0; j < 8; j++, mrd++) { mrd->mr_flags = (mrd->mr_flags & ~MDF_ATTRMASK) | - i686_mtrrtomrt[msrv & 0xff] | + i686_mtrr2mrt(msrv & 0xff) | MDF_ACTIVE; if (mrd->mr_owner[0] == 0) strcpy(mrd->mr_owner, mem_owner_bios); @@ -167,7 +175,7 @@ msrv = rdmsr(msr); for (j = 0; j < 8; j++, mrd++) { mrd->mr_flags = (mrd->mr_flags & ~MDF_ATTRMASK) | - i686_mtrrtomrt[msrv & 0xff] | + i686_mtrr2mrt(msrv & 0xff) | MDF_ACTIVE; if (mrd->mr_owner[0] == 0) strcpy(mrd->mr_owner, mem_owner_bios); @@ -179,7 +187,7 @@ msrv = rdmsr(msr); for (j = 0; j < 8; j++, mrd++) { mrd->mr_flags = (mrd->mr_flags & ~MDF_ATTRMASK) | - i686_mtrrtomrt[msrv & 0xff] | + i686_mtrr2mrt(msrv & 0xff) | MDF_ACTIVE; if (mrd->mr_owner[0] == 0) strcpy(mrd->mr_owner, mem_owner_bios); @@ -193,7 +201,7 @@ for (; (mrd - sc->mr_desc) < sc->mr_ndesc; msr += 2, mrd++) { msrv = rdmsr(msr); mrd->mr_flags = (mrd->mr_flags & ~MDF_ATTRMASK) | - i686_mtrrtomrt[msrv & 0xff]; + i686_mtrr2mrt(msrv & 0xff); mrd->mr_base = msrv & 0x0000000ffffff000LL; msrv = rdmsr(msr + 1); mrd->mr_flags = (msrv & 0x800) ? @@ -219,8 +227,8 @@ flags &= MDF_ATTRMASK; - for (i = 0; i < (sizeof(i686_mtrrtomrt) / sizeof(i686_mtrrtomrt[0])); i++) { - if (i686_mtrrtomrt[i] == 0) + for (i = 0; i < MTRRTOMRTLEN; i++) { + if (i686_mtrrtomrt[i] == MDF_UNKNOWN) continue; if (flags == i686_mtrrtomrt[i]) return(i); @@ -228,6 +236,16 @@ return(-1); } +static int +i686_mrt2mtrr(int flags, int oldval) +{ + int val; + + if ((val = i686_mtrrtype(flags)) == -1) + return oldval & 0xff; + return val & 0xff; +} + /* * Update running CPU(s) MTRRs to match the ranges in the descriptor * list. @@ -262,7 +280,7 @@ { struct mem_range_softc *sc = (struct mem_range_softc *)arg; struct mem_range_desc *mrd; - u_int64_t msrv; + u_int64_t omsrv, msrv; int i, j, msr; u_int cr4save; @@ -280,30 +298,39 @@ msr = MSR_MTRR64kBase; for (i = 0; i < (MTRR_N64K / 8); i++, msr++) { msrv = 0; + omsrv = rdmsr(msr); for (j = 7; j >= 0; j--) { msrv = msrv << 8; - msrv |= (i686_mtrrtype((mrd + j)->mr_flags) & 0xff); + msrv |= i686_mrt2mtrr((mrd + j)->mr_flags, omsrv >> (j*8)); } + if (rdmsr(msr) != msrv) + printf("MSR %x, old=%llx new=%llx\n", msr, rdmsr(msr), msrv); wrmsr(msr, msrv); mrd += 8; } msr = MSR_MTRR16kBase; for (i = 0; i < (MTRR_N16K / 8); i++, msr++) { msrv = 0; + omsrv = rdmsr(msr); for (j = 7; j >= 0; j--) { msrv = msrv << 8; - msrv |= (i686_mtrrtype((mrd + j)->mr_flags) & 0xff); + msrv |= i686_mrt2mtrr((mrd + j)->mr_flags, omsrv >> (j*8)); } + if (rdmsr(msr) != msrv) + printf("MSR %x, old=%llx new=%llx\n", msr, rdmsr(msr), msrv); wrmsr(msr, msrv); mrd += 8; } msr = MSR_MTRR4kBase; for (i = 0; i < (MTRR_N4K / 8); i++, msr++) { msrv = 0; + omsrv = rdmsr(msr); for (j = 7; j >= 0; j--) { msrv = msrv << 8; - msrv |= (i686_mtrrtype((mrd + j)->mr_flags) & 0xff); + msrv |= i686_mrt2mtrr((mrd + j)->mr_flags, omsrv >> (j*8)); } + if (rdmsr(msr) != msrv) + printf("MSR %x, old=%llx new=%llx\n", msr, rdmsr(msr), msrv); wrmsr(msr, msrv); mrd += 8; } @@ -313,9 +340,10 @@ msr = MSR_MTRRVarBase; for (; (mrd - sc->mr_desc) < sc->mr_ndesc; msr += 2, mrd++) { /* base/type register */ + omsrv = rdmsr(msr); if (mrd->mr_flags & MDF_ACTIVE) { msrv = mrd->mr_base & 0x0000000ffffff000LL; - msrv |= (i686_mtrrtype(mrd->mr_flags) & 0xff); + msrv |= i686_mrt2mtrr(mrd->mr_flags, omsrv); } else { msrv = 0; } @@ -416,8 +444,7 @@ /* non-exact overlap ? */ if (mroverlap(curr_md, mrd)) { /* between conflicting region types? */ - if ((i686_mtrrconflict[i686_mtrrtype(curr_md->mr_flags)] & mrd->mr_flags) || - (i686_mtrrconflict[i686_mtrrtype(mrd->mr_flags)] & curr_md->mr_flags)) + if (i686_mtrrconflict(curr_md->mr_flags, mrd->mr_flags)) return(EINVAL); } } else if (free_md == NULL) { @@ -450,7 +477,7 @@ case MEMRANGE_SET_UPDATE: /* make sure that what's being asked for is even possible at all */ if (!mrvalid(mrd->mr_base, mrd->mr_len) || - (i686_mtrrtype(mrd->mr_flags & MDF_ATTRMASK) == -1)) + i686_mtrrtype(mrd->mr_flags) == -1) return(EINVAL); #define FIXTOP ((MTRR_N64K * 0x10000) + (MTRR_N16K * 0x4000) + (MTRR_N4K * 0x1000)) Index: sys/sys/memrange.h =================================================================== RCS file: /cvs/FreeBSD-CVS/src/sys/sys/memrange.h,v retrieving revision 1.4 diff -u -r1.4 memrange.h --- sys/sys/memrange.h 29 Dec 1999 04:24:44 -0000 1.4 +++ sys/sys/memrange.h 7 Mar 2002 22:49:40 -0000 @@ -10,6 +10,7 @@ #define MDF_WRITETHROUGH (1<<2) /* write-through cached */ #define MDF_WRITEBACK (1<<3) /* write-back cached */ #define MDF_WRITEPROTECT (1<<4) /* read-only region */ +#define MDF_UNKNOWN (1<<5) /* any state we don't understand */ #define MDF_ATTRMASK (0x00ffffff) #define MDF_FIXBASE (1<<24) /* fixed base */ Index: usr.sbin/memcontrol/memcontrol.c =================================================================== RCS file: /cvs/FreeBSD-CVS/src/usr.sbin/memcontrol/memcontrol.c,v retrieving revision 1.6 diff -u -r1.6 memcontrol.c --- usr.sbin/memcontrol/memcontrol.c 24 Jun 2001 23:41:44 -0000 1.6 +++ usr.sbin/memcontrol/memcontrol.c 8 Mar 2002 15:08:47 -0000 @@ -50,6 +50,7 @@ {"write-through", MDF_WRITETHROUGH, MDF_SETTABLE}, {"write-back", MDF_WRITEBACK, MDF_SETTABLE}, {"write-protect", MDF_WRITEPROTECT, MDF_SETTABLE}, + {"unknown", MDF_UNKNOWN, 0}, {"fixed-base", MDF_FIXBASE, 0}, {"fixed-length", MDF_FIXLEN, 0}, {"set-by-firmware", MDF_FIRMWARE, 0}, To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 12:16: 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 2590D37B417; Mon, 8 Apr 2002 12:16:02 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38JG2F16632; Mon, 8 Apr 2002 12:16:02 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204081916.g38JG2F16632@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 8 Apr 2002 12:16:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/syscons/keymaps uk.iso.kbd X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG asmodai 2002/04/08 12:16:02 PDT Modified files: share/syscons/keymaps uk.iso.kbd Log: Add the Euro symbol mapping to the UK keyboard keymap. PR: 33956 Submitted by: Andrew McKay MFC after: 3 weeks Revision Changes Path 1.17 +2 -2 src/share/syscons/keymaps/uk.iso.kbd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 12:19: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 96D9C37B41A; Mon, 8 Apr 2002 12:19:10 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38JJAC17325; Mon, 8 Apr 2002 12:19:10 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204081919.g38JJAC17325@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 8 Apr 2002 12:19:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/kbd atkbd.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 asmodai 2002/04/08 12:19:10 PDT Modified files: sys/dev/kbd atkbd.c Log: Fix typo: conole -> console PR: 33965 Submitted by: Nicola Vitale Revision Changes Path 1.33 +2 -2 src/sys/dev/kbd/atkbd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 12: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 52E9C37B404; Mon, 8 Apr 2002 12:19:32 -0700 (PDT) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38JJWH17494; Mon, 8 Apr 2002 12:19:32 -0700 (PDT) (envelope-from znerd) Message-Id: <200204081919.g38JJWH17494@freefall.freebsd.org> From: Ernst de Haan Date: Mon, 8 Apr 2002 12:19:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/jakarta-tomcat/files daemonctl.c ports/www/jakarta-tomcat3 Makefile ports/www/jakarta-tomcat Makefile ports/www/orion 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 znerd 2002/04/08 12:19:32 PDT Modified files: www/jakarta-tomcat/files daemonctl.c www/jakarta-tomcat3 Makefile www/jakarta-tomcat Makefile www/orion Makefile Log: Made the daemon control program less verbose. Bumped PORTREVISION. Prompted by: Kees Jan Koster Revision Changes Path 1.32 +1 -1 ports/www/jakarta-tomcat/Makefile 1.4 +6 -11 ports/www/jakarta-tomcat/files/daemonctl.c 1.27 +1 -1 ports/www/jakarta-tomcat3/Makefile 1.38 +1 -1 ports/www/orion/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 12:21: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 6EC1D37B423; Mon, 8 Apr 2002 12:21:38 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38JLcs18159; Mon, 8 Apr 2002 12:21:38 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204081921.g38JLcs18159@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 8 Apr 2002 12:21:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/kbd atkbd.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 asmodai 2002/04/08 12:21:38 PDT Modified files: (Branch: RELENG_4) sys/dev/kbd atkbd.c Log: MFC: Fix typo: conole -> console. PR: 33965 Submitted by: Nicola Vitale Revision Changes Path 1.25.2.4 +2 -2 src/sys/dev/kbd/atkbd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 12:24:52 2002 Delivered-To: cvs-all@freebsd.org Received: from wopr.caltech.edu (wopr.caltech.edu [131.215.103.10]) by hub.freebsd.org (Postfix) with ESMTP id 6B17337B419; Mon, 8 Apr 2002 12:24:47 -0700 (PDT) Received: (from mph@localhost) by wopr.caltech.edu (8.11.6/8.9.3) id g38JOk437294; Mon, 8 Apr 2002 12:24:46 -0700 (PDT) (envelope-from mph) Date: Mon, 8 Apr 2002 12:24:46 -0700 From: Matthew Hunt To: Gregory Sutter Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT access Message-ID: <20020408122446.A36097@wopr.caltech.edu> References: <200204081557.g38Fvs660719@freefall.freebsd.org> <20020408163754.GJ507@klapaucius.zer0.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020408163754.GJ507@klapaucius.zer0.org>; from gsutter@zer0.org on Mon, Apr 08, 2002 at 09:37:54AM -0700 Sender: owner-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, Apr 08, 2002 at 09:37:54AM -0700, Gregory Sutter wrote: > Greg Lehey > Greg Sutter > Greg Shapiro > Greg Lewis > > Greg[2] You had better be Greg Shapiro in disguise. We don't associate with 1-indexed array users in this house. -- Matthew Hunt * Inertia is a property http://www.pobox.com/~mph/ * of matter. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 13: 1: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 B080437B416; Mon, 8 Apr 2002 13:01:35 -0700 (PDT) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38K1ZM26048; Mon, 8 Apr 2002 13:01:35 -0700 (PDT) (envelope-from lioux) Message-Id: <200204082001.g38K1ZM26048@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Mon, 8 Apr 2002 13:01:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ccache 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/04/08 13:01:35 PDT Modified files: devel/ccache Makefile distinfo Log: Update to 1.6 PR: 36886 Submitted by: maintainer Revision Changes Path 1.4 +1 -1 ports/devel/ccache/Makefile 1.4 +1 -1 ports/devel/ccache/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 13:12: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 5384637B425; Mon, 8 Apr 2002 13:12:05 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38KC5t32006; Mon, 8 Apr 2002 13:12:05 -0700 (PDT) (envelope-from marcus) Message-Id: <200204082012.g38KC5t32006@freefall.freebsd.org> From: Joe Marcus Clarke Date: Mon, 8 Apr 2002 13:12:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/balsa Makefile distinfo ports/mail/balsa/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 marcus 2002/04/08 13:12:05 PDT Modified files: mail/balsa Makefile distinfo mail/balsa/files patch-aa Log: Update to 1.3.4. PR: 36877 Submitted by: John Merryweather Cooper Approved by: sobomax Revision Changes Path 1.55 +1 -2 ports/mail/balsa/Makefile 1.28 +1 -1 ports/mail/balsa/distinfo 1.6 +11 -10 ports/mail/balsa/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 Mon Apr 8 13: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 619AB37B419; Mon, 8 Apr 2002 13:27:22 -0700 (PDT) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38KRM334450; Mon, 8 Apr 2002 13:27:22 -0700 (PDT) (envelope-from pat) Message-Id: <200204082027.g38KRM334450@freefall.freebsd.org> From: Patrick Li Date: Mon, 8 Apr 2002 13:27:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/paragui 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/04/08 13:27:22 PDT Modified files: x11-toolkits/paragui Makefile distinfo Log: Update to 1.0.1 PR: 36896 Submitted by: KATO Tsuguru Revision Changes Path 1.8 +5 -2 ports/x11-toolkits/paragui/Makefile 1.5 +1 -1 ports/x11-toolkits/paragui/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 13:31: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 0AC5837B420; Mon, 8 Apr 2002 13:31:21 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38KVLV35391; Mon, 8 Apr 2002 13:31:21 -0700 (PDT) (envelope-from obrien) Message-Id: <200204082031.g38KVLV35391@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 8 Apr 2002 13:31:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/csu/sparc64 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/04/08 13:31:20 PDT Modified files: lib/csu/sparc64 Makefile Log: For now we are using our old crt{begin,end}. Revision Changes Path 1.5 +3 -3 src/lib/csu/sparc64/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 13:34: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 A780337B417; Mon, 8 Apr 2002 13:34:37 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38KYbA36020; Mon, 8 Apr 2002 13:34:37 -0700 (PDT) (envelope-from obrien) Message-Id: <200204082034.g38KYbA36020@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 8 Apr 2002 13:34:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin 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/04/08 13:34:37 PDT Modified files: usr.bin Makefile Log: Some things don't compile on ia64 and sparc64 yet. Revision Changes Path 1.187 +5 -2 src/usr.bin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 13:36: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 E90A937B417; Mon, 8 Apr 2002 13:36:39 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Kadu36377; Mon, 8 Apr 2002 13:36:39 -0700 (PDT) (envelope-from obrien) Message-Id: <200204082036.g38Kadu36377@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 8 Apr 2002 13:36:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/lib 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/04/08 13:36:39 PDT Modified files: gnu/lib Makefile Log: Some things don't compile on ia64 and sparc64 yet. Revision Changes Path 1.34 +8 -1 src/gnu/lib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 13:39: 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 6D07237B41C; Mon, 8 Apr 2002 13:38:56 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38KcuJ36871; Mon, 8 Apr 2002 13:38:56 -0700 (PDT) (envelope-from obrien) Message-Id: <200204082038.g38KcuJ36871@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 8 Apr 2002 13:38:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin 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/04/08 13:38:56 PDT Modified files: gnu/usr.bin Makefile Log: GCC and Gperf do not work on ia64 or sparc64 yet. Also do not try to compile Groff if NO_CXX is set. Revision Changes Path 1.59 +10 -2 src/gnu/usr.bin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 13:42: 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 EBE8137B405; Mon, 8 Apr 2002 13:42:05 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Kg5437274; Mon, 8 Apr 2002 13:42:05 -0700 (PDT) (envelope-from obrien) Message-Id: <200204082042.g38Kg5437274@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 8 Apr 2002 13:42:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin 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/04/08 13:42:05 PDT Modified files: usr.sbin Makefile Log: Sysinstall does not work on ia64 and sparc64 yet. :-) Revision Changes Path 1.220 +4 -1 src/usr.sbin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 13: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 5D2A037B405; Mon, 8 Apr 2002 13:44:36 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Kia737809; Mon, 8 Apr 2002 13:44:36 -0700 (PDT) (envelope-from ache) Message-Id: <200204082044.g38Kia737809@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 8 Apr 2002 13:44:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin 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 ache 2002/04/08 13:44:36 PDT Modified files: usr.bin Makefile Log: Disconnect sort Revision Changes Path 1.188 +0 -1 src/usr.bin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 13: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 2DF6337B41C; Mon, 8 Apr 2002 13:45:44 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Kjil38040; Mon, 8 Apr 2002 13:45:44 -0700 (PDT) (envelope-from obrien) Message-Id: <200204082045.g38Kjil38040@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 8 Apr 2002 13:45:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libstand 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/04/08 13:45:44 PDT Modified files: lib/libstand Makefile Log: Use -ffreestanding. Revision Changes Path 1.31 +1 -3 src/lib/libstand/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 13:46: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 CA28837B41F; Mon, 8 Apr 2002 13:46:07 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Kk7t38179; Mon, 8 Apr 2002 13:46:07 -0700 (PDT) (envelope-from obrien) Message-Id: <200204082046.g38Kk7t38179@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 8 Apr 2002 13:46:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libstand 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/04/08 13:46:07 PDT Modified files: lib/libstand Makefile Log: sparc64 grew _setjmp/_longjmp. Revision Changes Path 1.32 +0 -2 src/lib/libstand/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 13:46: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 AF4EC37B419; Mon, 8 Apr 2002 13:46:45 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Kkj838427; Mon, 8 Apr 2002 13:46:45 -0700 (PDT) (envelope-from ache) Message-Id: <200204082046.g38Kkj838427@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 8 Apr 2002 13:46:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin 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 ache 2002/04/08 13:46:45 PDT Modified files: gnu/usr.bin Makefile Log: Connect sort Revision Changes Path 1.60 +1 -1 src/gnu/usr.bin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 13:50: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 7971537B404; Mon, 8 Apr 2002 13:50:14 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38KoDk39019; Mon, 8 Apr 2002 13:50:13 -0700 (PDT) (envelope-from ache) Message-Id: <200204082050.g38KoDk39019@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 8 Apr 2002 13:50:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/sort 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 ache 2002/04/08 13:50:12 PDT Removed files: usr.bin/sort Makefile Log: Remove it in favour of GNU sort Revision Changes Path 1.5 +0 -11 src/usr.bin/sort/Makefile (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 14: 1: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 90E3D37B417; Mon, 8 Apr 2002 14:01:48 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38L1mF41100; Mon, 8 Apr 2002 14:01:48 -0700 (PDT) (envelope-from marcus) Message-Id: <200204082101.g38L1mF41100@freefall.freebsd.org> From: Joe Marcus Clarke Date: Mon, 8 Apr 2002 14:01:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/libbonoboui Makefile distinfo pkg-comment pkg-descr pkg-plist ports/x11-toolkits/libbonoboui/files patch-Makefile.in 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 marcus 2002/04/08 14:01:48 PDT Modified files: x11-toolkits Makefile Added files: x11-toolkits/libbonoboui Makefile distinfo pkg-comment pkg-descr pkg-plist x11-toolkits/libbonoboui/files patch-Makefile.in patch-ltmain.sh Log: Add libbonoboui, the GUI components for GOME 2.0 bonobo component. Reviewed by: sobomax Approved by: sobomax Revision Changes Path 1.167 +1 -0 ports/x11-toolkits/Makefile 1.1 +34 -0 ports/x11-toolkits/libbonoboui/Makefile (new) 1.1 +1 -0 ports/x11-toolkits/libbonoboui/distinfo (new) 1.1 +11 -0 ports/x11-toolkits/libbonoboui/files/patch-Makefile.in (new) 1.1 +36 -0 ports/x11-toolkits/libbonoboui/files/patch-ltmain.sh (new) 1.1 +1 -0 ports/x11-toolkits/libbonoboui/pkg-comment (new) 1.1 +9 -0 ports/x11-toolkits/libbonoboui/pkg-descr (new) 1.1 +71 -0 ports/x11-toolkits/libbonoboui/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 Mon Apr 8 14: 2: 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 00E7137B405; Mon, 8 Apr 2002 14:01:52 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38L1pY41159; Mon, 8 Apr 2002 14:01:51 -0700 (PDT) (envelope-from marcus) Message-Id: <200204082101.g38L1pY41159@freefall.freebsd.org> From: Joe Marcus Clarke Date: Mon, 8 Apr 2002 14:01:51 -0700 (PDT) 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 marcus 2002/04/08 14:01:51 PDT Modified files: . modules Log: libbonoboui --> ports/x11-toolkits/libbonoboui Revision Changes Path 1.4962 +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 Mon Apr 8 14: 5: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 8FA1937B417; Mon, 8 Apr 2002 14:05:28 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38L5SW42366; Mon, 8 Apr 2002 14:05:28 -0700 (PDT) (envelope-from marcus) Message-Id: <200204082105.g38L5SW42366@freefall.freebsd.org> From: Joe Marcus Clarke Date: Mon, 8 Apr 2002 14:05:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/libgnomeui Makefile distinfo pkg-comment pkg-descr pkg-plist ports/x11-toolkits/libgnomeui/files patch-Makefile.in 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 marcus 2002/04/08 14:05:28 PDT Modified files: x11-toolkits Makefile Added files: x11-toolkits/libgnomeui Makefile distinfo pkg-comment pkg-descr pkg-plist x11-toolkits/libgnomeui/files patch-Makefile.in patch-ltmain.sh Log: Add libgnomeui, the GUI components for the GNOME 2.0 framework. Reviewed by: sobomax Approved by: sobomax Revision Changes Path 1.168 +1 -0 ports/x11-toolkits/Makefile 1.1 +41 -0 ports/x11-toolkits/libgnomeui/Makefile (new) 1.1 +1 -0 ports/x11-toolkits/libgnomeui/distinfo (new) 1.1 +11 -0 ports/x11-toolkits/libgnomeui/files/patch-Makefile.in (new) 1.1 +45 -0 ports/x11-toolkits/libgnomeui/files/patch-ltmain.sh (new) 1.1 +1 -0 ports/x11-toolkits/libgnomeui/pkg-comment (new) 1.1 +3 -0 ports/x11-toolkits/libgnomeui/pkg-descr (new) 1.1 +155 -0 ports/x11-toolkits/libgnomeui/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 Mon Apr 8 14: 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 0CD2E37B404; Mon, 8 Apr 2002 14:05:34 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38L5Y642655; Mon, 8 Apr 2002 14:05:34 -0700 (PDT) (envelope-from marcus) Message-Id: <200204082105.g38L5Y642655@freefall.freebsd.org> From: Joe Marcus Clarke Date: Mon, 8 Apr 2002 14:05:33 -0700 (PDT) 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 marcus 2002/04/08 14:05:33 PDT Modified files: . modules Log: libgnomeui --> ports/x11-toolkits/libgnomeui Revision Changes Path 1.4963 +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 Mon Apr 8 14: 6: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 8E4E837B436; Mon, 8 Apr 2002 14:06:15 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38L6Fe45506; Mon, 8 Apr 2002 14:06:15 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204082106.g38L6Fe45506@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 8 Apr 2002 14:06:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/vmstat vmstat.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 asmodai 2002/04/08 14:06:15 PDT Modified files: usr.bin/vmstat vmstat.c Log: Cast totreq to unsigned long long, as needed on 64-bit machines. Pointed out by: jeff Revision Changes Path 1.56 +2 -1 src/usr.bin/vmstat/vmstat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 14: 8: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 56A4737B419; Mon, 8 Apr 2002 14:08:17 -0700 (PDT) Received: (from jeff@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38L8HP46432; Mon, 8 Apr 2002 14:08:17 -0700 (PDT) (envelope-from jeff) Message-Id: <200204082108.g38L8HP46432@freefall.freebsd.org> From: Jeff Roberson Date: Mon, 8 Apr 2002 14:08:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm uma_int.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 jeff 2002/04/08 14:08:17 PDT Modified files: sys/vm uma_int.h Log: Quiet witness warnings about acquiring several zone locks. In the case that this happens it is OK. Revision Changes Path 1.6 +2 -1 src/sys/vm/uma_int.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 14:14: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 CD90137B41D; Mon, 8 Apr 2002 14:14:21 -0700 (PDT) Received: (from mux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38LELs47613; Mon, 8 Apr 2002 14:14:21 -0700 (PDT) (envelope-from mux) Message-Id: <200204082114.g38LELs47613@freefall.freebsd.org> From: Maxime Henrion Date: Mon, 8 Apr 2002 14:14:21 -0700 (PDT) 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 mux 2002/04/08 14:14:21 PDT Modified files: sys/kern vfs_syscalls.c Log: The fourth parameter to copystr() is a size_t, not an int. Approved by: peter Revision Changes Path 1.245 +2 -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 Mon Apr 8 14:23: 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 29C0A37B405; Mon, 8 Apr 2002 14:22:59 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38LMxj48952; Mon, 8 Apr 2002 14:22:59 -0700 (PDT) (envelope-from obrien) Message-Id: <200204082122.g38LMxj48952@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 8 Apr 2002 14:22:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/lukemftpd 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/04/08 14:22:59 PDT Modified files: libexec/lukemftpd Makefile Log: Allow to compile with both GCC 2.95 and 3.1. Revision Changes Path 1.4 +3 -2 src/libexec/lukemftpd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 14:29: 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 06C7937B400; Mon, 8 Apr 2002 14:29:02 -0700 (PDT) Received: (from gerald@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38LT1649901; Mon, 8 Apr 2002 14:29:02 -0700 (PDT) (envelope-from gerald) Message-Id: <200204082129.g38LT1649901@freefall.freebsd.org> From: Gerald Pfeifer Date: Mon, 8 Apr 2002 14:29:01 -0700 (PDT) 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 gerald 2002/04/08 14:29:01 PDT Modified files: en_US.ISO8859-1/articles/contributors article.sgml en_US.ISO8859-1/share/sgml authors.ent Log: Add myself as a committer and remove the entry from "Additional FreeBSD Contributors". Reviewed by: obrien (mentor) Revision Changes Path 1.146 +4 -4 doc/en_US.ISO8859-1/articles/contributors/article.sgml 1.222 +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 Mon Apr 8 14:39: 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 2FEC937B405; Mon, 8 Apr 2002 14:39:04 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Ld4o51410; Mon, 8 Apr 2002 14:39:04 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204082139.g38Ld4o51410@freefall.freebsd.org> From: Tom Rhodes Date: Mon, 8 Apr 2002 14:39:04 -0700 (PDT) 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 trhodes 2002/04/08 14:39:04 PDT Modified files: en_US.ISO8859-1/books/handbook/mirrors chapter.sgml Log: Fixed incorrect alphabetical order of directory listings. Submitted by: Jed Clear Revision Changes Path 1.205 +4 -4 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 Apr 8 14:40: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 99A5D37B41A; Mon, 8 Apr 2002 14:40:21 -0700 (PDT) Received: (from gerald@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38LeLq51623; Mon, 8 Apr 2002 14:40:21 -0700 (PDT) (envelope-from gerald) Message-Id: <200204082140.g38LeLq51623@freefall.freebsd.org> From: Gerald Pfeifer Date: Mon, 8 Apr 2002 14:40:21 -0700 (PDT) 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 gerald 2002/04/08 14:40:21 PDT Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Fix two typos in the "NOTE TO NEW COMMITTERS" comment. Reviewed by: obrien (mentor) Revision Changes Path 1.147 +2 -2 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 Mon Apr 8 14:46: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 1B46A37B417; Mon, 8 Apr 2002 14:46:53 -0700 (PDT) Received: (from gerald@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38LkrL52735; Mon, 8 Apr 2002 14:46:53 -0700 (PDT) (envelope-from gerald) Message-Id: <200204082146.g38LkrL52735@freefall.freebsd.org> From: Gerald Pfeifer Date: Mon, 8 Apr 2002 14:46:53 -0700 (PDT) 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 gerald 2002/04/08 14:46:53 PDT Modified files: en/news news.xml Log: Announce myself as new committer. Reviewed by: obrien (mentor) Revision Changes Path 1.78 +11 -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 Mon Apr 8 14:48:54 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 2F02537B400; Mon, 8 Apr 2002 14:48:35 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g38LmYYm092881; Mon, 8 Apr 2002 14:48:34 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g38LlJMi092835; Mon, 8 Apr 2002 14:47:19 -0700 (PDT) Date: Mon, 8 Apr 2002 14:47:19 -0700 From: "David O'Brien" To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr Message-ID: <20020408144719.B92702@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20020408063937.EAE793810@overcee.wemm.org> <20020408083637.GB53790@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: <20020408083637.GB53790@sunbay.com>; from ru@FreeBSD.org on Mon, Apr 08, 2002 at 11:36:37AM +0300 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, Apr 08, 2002 at 11:36:37AM +0300, Ruslan Ermilov wrote: > OK, how about backing these out and committing this instead? > > %%% > Index: bsd.prog.mk > =================================================================== > RCS file: /home/ncvs/src/share/mk/bsd.prog.mk,v > retrieving revision 1.105 > diff -u -r1.105 bsd.prog.mk > --- bsd.prog.mk 7 Apr 2002 14:58:12 -0000 1.105 > +++ bsd.prog.mk 8 Apr 2002 08:34:58 -0000 > @@ -32,7 +32,12 @@ > OBJS+= ${SRCS:N*.h:R:S/$/.o/g} > > ${PROG}: ${OBJS} > +.if ${SRCS:M*.cc} != "" || ${SRCS:M*.C} != "" || ${SRCS:M*.cpp} != "" || \ > + ${SRCS:M*.cxx} != "" > + ${CXX} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} > +.else > ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} > +.endif Please commit this as it does improve things. As Peter mentioned it would be nice to add the libstdc++ dependancy also. But even w/o that, this patch is a help. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 14:50: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 5867637B417; Mon, 8 Apr 2002 14:50:23 -0700 (PDT) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38LoNQ53167; Mon, 8 Apr 2002 14:50:23 -0700 (PDT) (envelope-from znerd) Message-Id: <200204082150.g38LoNQ53167@freefall.freebsd.org> From: Ernst de Haan Date: Mon, 8 Apr 2002 14:50:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/jakarta-tomcat/files daemonctl.c ports/www/jakarta-tomcat3 Makefile ports/www/jakarta-tomcat Makefile ports/www/orion 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 znerd 2002/04/08 14:50:23 PDT Modified files: www/jakarta-tomcat/files daemonctl.c www/jakarta-tomcat3 Makefile www/jakarta-tomcat Makefile www/orion Makefile Log: Daemon control program now checks if process is really terminated. If not, it will send the process a SIGKILL after a certain time-out period. The time-out can be passed to the port Makefile as a parameter. Improved documentation a bit here and there. Added some explicit casts to make lint(1) a bit happier :-) Applied some refactoring here and there. Moved some functionality into a new function 'existsProcess'. Slightly changed the output of the program. Bumped PORTREVISION. Revision Changes Path 1.33 +4 -1 ports/www/jakarta-tomcat/Makefile 1.5 +90 -20 ports/www/jakarta-tomcat/files/daemonctl.c 1.28 +4 -1 ports/www/jakarta-tomcat3/Makefile 1.39 +4 -1 ports/www/orion/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 15: 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 3D4BA37B41A; Mon, 8 Apr 2002 15:00:29 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38M0T055051; Mon, 8 Apr 2002 15:00:29 -0700 (PDT) (envelope-from ache) Message-Id: <200204082200.g38M0T055051@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 8 Apr 2002 15:00:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/sort sort.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 ache 2002/04/08 15:00:29 PDT Modified files: gnu/usr.bin/sort sort.c Log: Get decimal point from locale Revision Changes Path 1.21 +41 -0 src/gnu/usr.bin/sort/sort.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 15: 5:11 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 5864137B400; Mon, 8 Apr 2002 15:05:05 -0700 (PDT) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.6) id g38M53i44876; Mon, 8 Apr 2002 18:05:03 -0400 (EDT) (envelope-from wollman) Date: Mon, 8 Apr 2002 18:05:03 -0400 (EDT) From: Garrett Wollman Message-Id: <200204082205.g38M53i44876@khavrinen.lcs.mit.edu> To: Jeffrey Hsu Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys socketvar.h src/sys/kern uipc_socket.c In-Reply-To: <200204080304.g3834MT52445@freefall.freebsd.org> References: <200204080304.g3834MT52445@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: > There's only one socket zone so we don't need to remember it > in every socket structure. The original intent was that sockets could be allocated at the same time as PCBs, and in that case the MI code would need to know which zone to free it back to. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 15:27: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 156AD37B405; Mon, 8 Apr 2002 15:27:39 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38MLad62764; Mon, 8 Apr 2002 15:21:36 -0700 (PDT) (envelope-from murray) Message-Id: <200204082221.g38MLad62764@freefall.freebsd.org> From: Murray Stokely Date: Mon, 8 Apr 2002 15:21:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R/DP1 Makefile announce.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 murray 2002/04/08 15:21:36 PDT Modified files: en/releases/5.0R/DP1 Makefile Added files: en/releases/5.0R/DP1 announce.sgml Log: 5.0 Developer Preview #1 is available. Revision Changes Path 1.2 +4 -3 www/en/releases/5.0R/DP1/Makefile 1.1 +165 -0 www/en/releases/5.0R/DP1/announce.sgml (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 15:27: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 E943F37B404; Mon, 8 Apr 2002 15:27:43 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38MQej63808; Mon, 8 Apr 2002 15:26:40 -0700 (PDT) (envelope-from murray) Message-Id: <200204082226.g38MQej63808@freefall.freebsd.org> From: Murray Stokely Date: Mon, 8 Apr 2002 15:26:40 -0700 (PDT) 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 murray 2002/04/08 15:26:40 PDT Modified files: en/news news.xml Log: Add a newsflash entry about 5.0 DP1. Revision Changes Path 1.79 +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 Mon Apr 8 15:34: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 D175337B416; Mon, 8 Apr 2002 15:34:13 -0700 (PDT) Received: (from arr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38MWvJ65720; Mon, 8 Apr 2002 15:32:57 -0700 (PDT) (envelope-from arr) Message-Id: <200204082232.g38MWvJ65720@freefall.freebsd.org> From: "Andrew R. Reiter" Date: Mon, 8 Apr 2002 15:32:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/smp index.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 arr 2002/04/08 15:32:57 PDT Modified files: en/smp index.sgml Log: - Remove task to have per-cpu buffers for ktr. Revision Changes Path 1.72 +1 -8 www/en/smp/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 15:40: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 1E89737B41A; Mon, 8 Apr 2002 15:40:19 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38MdRt69472; Mon, 8 Apr 2002 15:39:27 -0700 (PDT) (envelope-from murray) Message-Id: <200204082239.g38MdRt69472@freefall.freebsd.org> From: Murray Stokely Date: Mon, 8 Apr 2002 15:39:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R/DP1 announce.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 murray 2002/04/08 15:39:27 PDT Modified files: en/releases/5.0R/DP1 announce.sgml Log: Add a more accurate date string. Today is Monday, not Tuesday. ;) Revision Changes Path 1.2 +2 -2 www/en/releases/5.0R/DP1/announce.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 15: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 746CB37B419; Mon, 8 Apr 2002 15:50:05 -0700 (PDT) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Mnhn85514; Mon, 8 Apr 2002 15:49:43 -0700 (PDT) (envelope-from znerd) Message-Id: <200204082249.g38Mnhn85514@freefall.freebsd.org> From: Ernst de Haan Date: Mon, 8 Apr 2002 15:49:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/janosvm 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 znerd 2002/04/08 15:49:43 PDT Modified files: java/janosvm Makefile Log: PORTREVISION bumped. This should have been done during last commit (files/patch-Makefile). Revision Changes Path 1.4 +1 -0 ports/java/janosvm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 15:56: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 3506D37B405; Mon, 8 Apr 2002 15:56:28 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38MuSU86722; Mon, 8 Apr 2002 15:56:28 -0700 (PDT) (envelope-from peter) Message-Id: <200204082256.g38MuSU86722@freefall.freebsd.org> From: Peter Wemm Date: Mon, 8 Apr 2002 15:56:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/lib 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 peter 2002/04/08 15:56:28 PDT Modified files: gnu/lib Makefile Log: Unbreak world (missing .else) Submitted by: fenner Pointy hat to: obrien Revision Changes Path 1.35 +1 -0 src/gnu/lib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 15:58: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 D08E237B419; Mon, 8 Apr 2002 15:58:52 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Mwqw87140; Mon, 8 Apr 2002 15:58:52 -0700 (PDT) (envelope-from peter) Message-Id: <200204082258.g38Mwqw87140@freefall.freebsd.org> From: Peter Wemm Date: Mon, 8 Apr 2002 15:58:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin 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 peter 2002/04/08 15:58:52 PDT Modified files: gnu/usr.bin Makefile Log: move gperf to NO_GXX section, it works fine on ia64. It just needs a c++ compiler. Revision Changes Path 1.61 +2 -2 src/gnu/usr.bin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 16: 8: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 558FC37B400; Mon, 8 Apr 2002 16:08:48 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38N8mO92433; Mon, 8 Apr 2002 16:08:48 -0700 (PDT) (envelope-from peter) Message-Id: <200204082308.g38N8mO92433@freefall.freebsd.org> From: Peter Wemm Date: Mon, 8 Apr 2002 16:08:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin 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 peter 2002/04/08 16:08:48 PDT Modified files: usr.sbin Makefile Log: Reactivate sysinstall, it does work on ia64. Revision Changes Path 1.221 +1 -1 src/usr.sbin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 16:13:10 2002 Delivered-To: cvs-all@freebsd.org Received: from fw.wemm.org (12-232-135-171.client.attbi.com [12.232.135.171]) by hub.freebsd.org (Postfix) with ESMTP id 427F537B400; Mon, 8 Apr 2002 16:13:00 -0700 (PDT) Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by fw.wemm.org (8.11.6/8.11.6) with ESMTP id g38NDpQ17416; Mon, 8 Apr 2002 16:13:51 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id 4A0423811; Mon, 8 Apr 2002 16:19:50 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Max Khon Cc: Alfred Perlstein , Ruslan Ermilov , Gerald Pfeifer , "M. Warner Losh" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: (using g++ for linkage) Re: cvs commit: src/gnu/usr.bin/gperf In-Reply-To: <20020408115121.A50619@hub.freebsd.org> Date: Mon, 08 Apr 2002 16:19:50 -0700 From: Peter Wemm Message-Id: <20020408231950.4A0423811@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 Max Khon wrote: > hi, there! > > On Mon, Apr 08, 2002 at 11:37:57AM -0700, Peter Wemm wrote: > > > > * Ruslan Ermilov [020408 01:39] wrote: > > > > > > > > > OK, how about backing these out and committing this instead? > > > > > > > > %%% > > > > Index: bsd.prog.mk > > > > +.if ${SRCS:M*.cc} != "" || ${SRCS:M*.C} != "" || ${SRCS:M*.cpp} != "" || \ > > > > + ${SRCS:M*.cxx} != "" > > > > + ${CXX} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} > > > > +.else > > > > ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} $ {LDADD} > > > > +.endif > > > > > > > > .else !defined(SRCS) > > > > > > > > %%% > > > > > > I was about to propose something like this, nice work. :) > > > > That's a partial solution, but would probably be enough for these few > > cases. For example, it doesn't detect when you have libxxx.a file with C++ > > objects in it. > > > > Also, it leaves out the dependency on libstdc++. linking everything with > > c++(1) is a subset of adding to LDADD/DPADD. The LDADD is taken care of, > > but the DPADD of ${LIBSTDCPLUSPLUS} is missing. Only ${LIBC} is depended o n. > > > > It might be better to have a switch to specify c++ linking. > > > > Or we could just leave it the way it is. > > NetBSD's allows to use PROG_CXX=foobar instead of PROG=foobar > to link using ${CXX} instead of ${CC} I like this even better. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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 Mon Apr 8 16:13:54 2002 Delivered-To: cvs-all@freebsd.org Received: from fw.wemm.org (12-232-135-171.client.attbi.com [12.232.135.171]) by hub.freebsd.org (Postfix) with ESMTP id D48CA37B416; Mon, 8 Apr 2002 16:13:46 -0700 (PDT) Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by fw.wemm.org (8.11.6/8.11.6) with ESMTP id g38NEfQ17430; Mon, 8 Apr 2002 16:14:41 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id 459C33811; Mon, 8 Apr 2002 16:20:40 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: obrien@FreeBSD.org Cc: Ruslan Ermilov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr In-Reply-To: <20020408144719.B92702@dragon.nuxi.com> Date: Mon, 08 Apr 2002 16:20:40 -0700 From: Peter Wemm Message-Id: <20020408232040.459C33811@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 "David O'Brien" wrote: > On Mon, Apr 08, 2002 at 11:36:37AM +0300, Ruslan Ermilov wrote: > > OK, how about backing these out and committing this instead? > > > > %%% > > Index: bsd.prog.mk > > =================================================================== > > RCS file: /home/ncvs/src/share/mk/bsd.prog.mk,v > > retrieving revision 1.105 > > diff -u -r1.105 bsd.prog.mk > > --- bsd.prog.mk 7 Apr 2002 14:58:12 -0000 1.105 > > +++ bsd.prog.mk 8 Apr 2002 08:34:58 -0000 > > @@ -32,7 +32,12 @@ > > OBJS+= ${SRCS:N*.h:R:S/$/.o/g} > > > > ${PROG}: ${OBJS} > > +.if ${SRCS:M*.cc} != "" || ${SRCS:M*.C} != "" || ${SRCS:M*.cpp} != "" || \ > > + ${SRCS:M*.cxx} != "" > > + ${CXX} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} > > +.else > > ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} > > +.endif > > Please commit this as it does improve things. As Peter mentioned it > would be nice to add the libstdc++ dependancy also. But even w/o that, > this patch is a help. No, do what Max Khon suggested. Use PROG_CXX like NetBSD does. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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 Mon Apr 8 16:21: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 2F65337B41A; Mon, 8 Apr 2002 16:21:32 -0700 (PDT) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38NLWC94712; Mon, 8 Apr 2002 16:21:32 -0700 (PDT) (envelope-from jake) Message-Id: <200204082321.g38NLWC94712@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 8 Apr 2002 16:21:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/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 jake 2002/04/08 16:21:32 PDT Modified files: sys/sparc64/conf GENERIC Log: Enable device pass. Revision Changes Path 1.12 +1 -1 src/sys/sparc64/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 16:38: 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 7D9DA37B419; Mon, 8 Apr 2002 16:38:03 -0700 (PDT) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38Nc3600243; Mon, 8 Apr 2002 16:38:03 -0700 (PDT) (envelope-from lioux) Message-Id: <200204082338.g38Nc3600243@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Mon, 8 Apr 2002 16:38:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/xvid Makefile distinfo pkg-comment pkg-descr pkg-plist ports/graphics/xvid/files config.h.in configure.in patch-Makefile patch-src:portab.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 lioux 2002/04/08 16:38:03 PDT Modified files: graphics Makefile Added files: graphics/xvid Makefile distinfo pkg-comment pkg-descr pkg-plist graphics/xvid/files config.h.in configure.in patch-Makefile patch-src:portab.h Log: New port xvid snapshot release 20020404: An opensource MPEG-4 codec, based on OpenDivx PR: 36769 Submitted by: Michael Nottebrock Revision Changes Path 1.433 +1 -0 ports/graphics/Makefile 1.1 +55 -0 ports/graphics/xvid/Makefile (new) 1.1 +1 -0 ports/graphics/xvid/distinfo (new) 1.1 +5 -0 ports/graphics/xvid/files/config.h.in (new) 1.1 +9 -0 ports/graphics/xvid/files/configure.in (new) 1.1 +19 -0 ports/graphics/xvid/files/patch-Makefile (new) 1.1 +22 -0 ports/graphics/xvid/files/patch-src:portab.h (new) 1.1 +1 -0 ports/graphics/xvid/pkg-comment (new) 1.1 +6 -0 ports/graphics/xvid/pkg-descr (new) 1.1 +4 -0 ports/graphics/xvid/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 Mon Apr 8 16:38: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 01A9737B41F; Mon, 8 Apr 2002 16:38:11 -0700 (PDT) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g38NcAX00291; Mon, 8 Apr 2002 16:38:10 -0700 (PDT) (envelope-from lioux) Message-Id: <200204082338.g38NcAX00291@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Mon, 8 Apr 2002 16:38:10 -0700 (PDT) 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 lioux 2002/04/08 16:38:10 PDT Modified files: . modules Log: xvid --> ports/graphics/xvid Revision Changes Path 1.4964 +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 Mon Apr 8 17: 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 CA64737B405; Mon, 8 Apr 2002 17:05:46 -0700 (PDT) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3905ka14036; Mon, 8 Apr 2002 17:05:46 -0700 (PDT) (envelope-from jake) Message-Id: <200204090005.g3905ka14036@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 8 Apr 2002 17:05:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/common load_elf.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 jake 2002/04/08 17:05:46 PDT Modified files: sys/boot/common load_elf.c Log: Fix another unsigned long used to index the symbol table which should be Elf_Hashelt. Revision Changes Path 1.23 +1 -1 src/sys/boot/common/load_elf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 17:24: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 A0AF237B43C; Mon, 8 Apr 2002 17:24:24 -0700 (PDT) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g390OLc19904; Mon, 8 Apr 2002 17:24:21 -0700 (PDT) (envelope-from jake) Message-Id: <200204090024.g390OLc19904@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 8 Apr 2002 17:24:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/se se_console.c sereg.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 jake 2002/04/08 17:24:20 PDT Added files: sys/dev/se se_console.c sereg.h Log: Add a low level console driver for the Siemens SAB82532 chip found in many newer ultras and probably other sun machines. This is a pretty decent chip with 32 byte read and write fifos and support for many higher baud rates. It supports hdlc and sdlc as well as asynchronoue serial, but the goal here is just decent serial console support for the sparc64 port, so these modes are not expected to be supported. So far this only has support for the low level routines used by kernel printf and thus ddb over serial, a character device which can be used for login consoles has not yet been written. Revision Changes Path 1.1 +320 -0 src/sys/dev/se/se_console.c (new) 1.1 +205 -0 src/sys/dev/se/sereg.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 17:31: 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 6301237B427; Mon, 8 Apr 2002 17:30:50 -0700 (PDT) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g390UoS20948; Mon, 8 Apr 2002 17:30:50 -0700 (PDT) (envelope-from jake) Message-Id: <200204090030.g390UoS20948@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 8 Apr 2002 17:30:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2002/04/08 17:30:46 PDT Modified files: sys/conf files Log: Add the se driver. Revision Changes Path 1.621 +1 -0 src/sys/conf/files To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 17:31: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 755B337B496; Mon, 8 Apr 2002 17:31:18 -0700 (PDT) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g390VI521066; Mon, 8 Apr 2002 17:31:18 -0700 (PDT) (envelope-from kuriyama) Message-Id: <200204090031.g390VI521066@freefall.freebsd.org> From: Jun Kuriyama Date: Mon, 8 Apr 2002 17:31:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/net-snmp Makefile distinfo pkg-plist ports/net/net-snmp/files patch-Makefile.top patch-ad patch-ao patch-diskio.c patch-hr_disk.c patch-hr_print.c patch-hr_storage.c patch-hr_swrun.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 kuriyama 2002/04/08 17:31:18 PDT Modified files: net/net-snmp Makefile distinfo pkg-plist net/net-snmp/files patch-Makefile.top patch-hr_disk.c patch-hr_storage.c patch-hr_swrun.c Removed files: net/net-snmp/files patch-ad patch-ao patch-diskio.c patch-hr_print.c Log: Upgrade to 4.2.4. Some of our patches are integrated into original distribution. Enable diskio mib-module by default. Revision Changes Path 1.68 +2 -3 ports/net/net-snmp/Makefile 1.16 +1 -1 ports/net/net-snmp/distinfo 1.2 +4 -4 ports/net/net-snmp/files/patch-Makefile.top 1.4 +0 -47 ports/net/net-snmp/files/patch-ad (dead) 1.2 +0 -11 ports/net/net-snmp/files/patch-ao (dead) 1.2 +0 -31 ports/net/net-snmp/files/patch-diskio.c (dead) 1.2 +6 -7 ports/net/net-snmp/files/patch-hr_disk.c 1.2 +0 -12 ports/net/net-snmp/files/patch-hr_print.c (dead) 1.2 +14 -19 ports/net/net-snmp/files/patch-hr_storage.c 1.4 +11 -11 ports/net/net-snmp/files/patch-hr_swrun.c 1.20 +1 -1 ports/net/net-snmp/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 Apr 8 17:34: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 7E56F37B417; Mon, 8 Apr 2002 17:34:18 -0700 (PDT) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g390YI021591; Mon, 8 Apr 2002 17:34:18 -0700 (PDT) (envelope-from jake) Message-Id: <200204090034.g390YI021591@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 8 Apr 2002 17:34:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf majors X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2002/04/08 17:34:18 PDT Modified files: sys/conf majors Log: Grab a major number for the se driver. Revision Changes Path 1.134 +1 -0 src/sys/conf/majors To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 17: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 ABFE137B417; Mon, 8 Apr 2002 17:35:26 -0700 (PDT) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g390ZQm21827; Mon, 8 Apr 2002 17:35:26 -0700 (PDT) (envelope-from jake) Message-Id: <200204090035.g390ZQm21827@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 8 Apr 2002 17:35:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/se se_console.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 jake 2002/04/08 17:35:26 PDT Modified files: sys/dev/se se_console.c Log: Use the right major number. Revision Changes Path 1.2 +1 -1 src/sys/dev/se/se_console.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 17: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 B961937B41F; Mon, 8 Apr 2002 17:37:33 -0700 (PDT) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g390bXf22662; Mon, 8 Apr 2002 17:37:33 -0700 (PDT) (envelope-from jake) Message-Id: <200204090037.g390bXf22662@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 8 Apr 2002 17:37:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/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 jake 2002/04/08 17:37:33 PDT Modified files: sys/sparc64/conf GENERIC Log: Add device se (commented out, most people won't find this useful yet). Revision Changes Path 1.13 +1 -0 src/sys/sparc64/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 17: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 F3D3237B431; Mon, 8 Apr 2002 17:54:52 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g390sgr25316; Mon, 8 Apr 2002 17:54:42 -0700 (PDT) (envelope-from bmah) Message-Id: <200204090054.g390sgr25316@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 8 Apr 2002 17:54:02 -0700 (PDT) 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 bmah 2002/04/08 17:54:02 PDT Modified files: en_US.ISO8859-1/books/handbook/mirrors chapter.sgml Log: Unbreak handbook build. Revision Changes Path 1.206 +0 -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 Apr 8 17:56: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 DCF1337B41B; Mon, 8 Apr 2002 17:56:30 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g390uU925690; Mon, 8 Apr 2002 17:56:30 -0700 (PDT) (envelope-from bmah) Message-Id: <200204090056.g390uU925690@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 8 Apr 2002 17:56:30 -0700 (PDT) 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 bmah 2002/04/08 17:56:30 PDT Modified files: en_US.ISO8859-1/books/handbook/mirrors chapter.sgml Log: Whitespace (no content or markup changes). Revision Changes Path 1.207 +4 -2 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 Apr 8 17: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 DFA6437B735; Mon, 8 Apr 2002 17:57:23 -0700 (PDT) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g390vN425874; Mon, 8 Apr 2002 17:57:23 -0700 (PDT) (envelope-from jake) Message-Id: <200204090057.g390vN425874@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 8 Apr 2002 17:57:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include frame.h reg.h src/sys/sparc64/sparc64 emul.c machdep.c vm_machdep.c src/lib/libc/sparc64/fpu fpu.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 jake 2002/04/08 17:57:23 PDT Modified files: sys/sparc64/include frame.h reg.h sys/sparc64/sparc64 emul.c machdep.c vm_machdep.c lib/libc/sparc64/fpu fpu.c Log: Rename some fields in struct frame to be compatible with NetBSD/OpenBSD, and add some compatibility defines. Add fields for ins and locals to struct reg also for the same reason; these aren't filled in yet because getting at those registers sucks and I'd rather not save them in the trapframe just for this. Reorder struct reg to be ABI compatible as well. Add needed include of machine/emul.h. This gets pmdb (poor man's debugger) from OpenBSD mostly compiling but it doesn't work yet :( Revision Changes Path 1.4 +1 -1 src/lib/libc/sparc64/fpu/fpu.c 1.13 +9 -5 src/sys/sparc64/include/frame.h 1.10 +4 -2 src/sys/sparc64/include/reg.h 1.4 +3 -2 src/sys/sparc64/sparc64/emul.c 1.48 +12 -9 src/sys/sparc64/sparc64/machdep.c 1.22 +5 -5 src/sys/sparc64/sparc64/vm_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 18:13: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 A46B237B417; Mon, 8 Apr 2002 18:13:17 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g391DH031767; Mon, 8 Apr 2002 18:13:17 -0700 (PDT) (envelope-from ache) Message-Id: <200204090113.g391DH031767@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Mon, 8 Apr 2002 18:13:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/screen 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 ache 2002/04/08 18:13:17 PDT Modified files: misc/screen Makefile Log: Remove myself from MAINTAINER Revision Changes Path 1.38 +1 -1 ports/misc/screen/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 18:18: 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 2B48937B41F; Mon, 8 Apr 2002 18:17:47 -0700 (PDT) Received: (from matusita@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g391HlC32509; Mon, 8 Apr 2002 18:17:47 -0700 (PDT) (envelope-from matusita) Message-Id: <200204090117.g391HlC32509@freefall.freebsd.org> From: Makoto Matsushita Date: Mon, 8 Apr 2002 18:17:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release 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 matusita 2002/04/08 18:17:47 PDT Modified files: release Makefile Log: Set hint.acpi.0.disable to 1 in /boot/loader.rc of {boot,kern}.flp, since we have no ACPI feature in the installation kernel at this time. Without having this, we'll see ACPI no autoload failed -- no such file or directory message at boot time, and it makes some confusion to the users. We can backout this change if installation kernel has ACPI feature. PR: 36911 (partly) Revision Changes Path 1.667 +2 -1 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 Mon Apr 8 18:42: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 B8F6137B405; Mon, 8 Apr 2002 18:42:20 -0700 (PDT) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g391gKG35408; Mon, 8 Apr 2002 18:42:20 -0700 (PDT) (envelope-from jake) Message-Id: <200204090142.g391gKG35408@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 8 Apr 2002 18:42:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include emul.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 jake 2002/04/08 18:42:20 PDT Added files: sys/sparc64/include emul.h Log: Oops. machine/emul.h didn't exist yet. Revision Changes Path 1.1 +39 -0 src/sys/sparc64/include/emul.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 18: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 6E3C837B419; Mon, 8 Apr 2002 18:43:07 -0700 (PDT) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g391h7335558; Mon, 8 Apr 2002 18:43:07 -0700 (PDT) (envelope-from jake) Message-Id: <200204090143.g391h7335558@freefall.freebsd.org> From: Jake Burkholder Date: Mon, 8 Apr 2002 18:43:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/sparc64 db_trace.c trap.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 jake 2002/04/08 18:43:07 PDT Modified files: sys/sparc64/sparc64 db_trace.c trap.c Log: Forgot these files in previous commit to frame.h. Also add needed include of machine/emul.h. Revision Changes Path 1.12 +6 -6 src/sys/sparc64/sparc64/db_trace.c 1.34 +2 -1 src/sys/sparc64/sparc64/trap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 18: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 E834437B405; Mon, 8 Apr 2002 18:48:23 -0700 (PDT) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g391mNw36360; Mon, 8 Apr 2002 18:48:23 -0700 (PDT) (envelope-from kuriyama) Message-Id: <200204090148.g391mNw36360@freefall.freebsd.org> From: Jun Kuriyama Date: Mon, 8 Apr 2002 18:48:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/screen/files patch-osdef.h.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 kuriyama 2002/04/08 18:48:23 PDT Added files: misc/screen/files patch-osdef.h.in Log: Unbreak after r1.11 of src/sys/sys/ioccom.h. ( ioctl() declaration change ) Revision Changes Path 1.1 +11 -0 ports/misc/screen/files/patch-osdef.h.in (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 19: 0: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 B9E1337B404; Mon, 8 Apr 2002 19:00:19 -0700 (PDT) Received: (from mi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3920JD38375; Mon, 8 Apr 2002 19:00:19 -0700 (PDT) (envelope-from mi) Message-Id: <200204090200.g3920JD38375@freefall.freebsd.org> From: Mikhail Teterin Date: Mon, 8 Apr 2002 19:00:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/palm/coldsync Makefile pkg-descr ports/palm/coldsync/files patch-palm X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/08 19:00:19 PDT Modified files: palm/coldsync Makefile pkg-descr Added files: palm/coldsync/files patch-palm Log: Patch to use the new names of some of the usb.h's structures' fields if the OSVERSION is above 450000. Add a maintainer submitted patch to recognize the Palm's vendor-id (not just Handspring). Update pkg-descr accordingly and bump PORTREVISION. Approved by: maintainer Revision Changes Path 1.13 +7 -1 ports/palm/coldsync/Makefile 1.1 +27 -0 ports/palm/coldsync/files/patch-palm (new) 1.4 +2 -2 ports/palm/coldsync/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 Apr 8 19: 1: 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 4E7AA37B400; Mon, 8 Apr 2002 19:00:58 -0700 (PDT) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3920wk38544; Mon, 8 Apr 2002 19:00:58 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200204090200.g3920wk38544@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 8 Apr 2002 19:00:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/mail mailer.conf src/usr.sbin/mailwrapper 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 gshapiro 2002/04/08 19:00:58 PDT Modified files: (Branch: RELENG_4) etc/mail mailer.conf usr.sbin/mailwrapper Makefile Log: MFC: Add the missing hoststat and purgestat commands. These are normally symlinks to the sendmail binary but in FreeBSD's case, they are symlinks to mailwrapper. Revision Changes Path 1.3 +3 -1 src/etc/mail/mailer.conf 1.9 +3 -1 src/usr.sbin/mailwrapper/Makefile Revision Changes Path 1.2.2.1 +3 -1 src/etc/mail/mailer.conf 1.4.2.3 +3 -1 src/usr.sbin/mailwrapper/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 19: 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 968B537B400; Mon, 8 Apr 2002 19:03:16 -0700 (PDT) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3923Ga38848; Mon, 8 Apr 2002 19:03:16 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200204090203.g3923Ga38848@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 8 Apr 2002 19:03:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 hier.7 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 gshapiro 2002/04/08 19:03:16 PDT Modified files: (Branch: RELENG_4) share/man/man7 hier.7 Log: MFC: Add some additional sendmail related directories Revision Changes Path 1.69 +13 -0 src/share/man/man7/hier.7 Revision Changes Path 1.29.2.15 +13 -0 src/share/man/man7/hier.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 19: 9: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 EC15937B419; Mon, 8 Apr 2002 19:09:14 -0700 (PDT) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3929EJ43483; Mon, 8 Apr 2002 19:09:14 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200204090209.g3929EJ43483@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 8 Apr 2002 19:09:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/sendmail 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 gshapiro 2002/04/08 19:09:14 PDT Modified files: contrib/sendmail FREEBSD-upgrade Log: Found two more files that use the sendmail infrastructure. Revision Changes Path 1.12 +2 -0 src/contrib/sendmail/FREEBSD-upgrade To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 19:11:51 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 26B4F37B419; Mon, 8 Apr 2002 19:11:48 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g392BlYm094316; Mon, 8 Apr 2002 19:11:47 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g392AT0v094295; Mon, 8 Apr 2002 19:10:29 -0700 (PDT) Date: Mon, 8 Apr 2002 19:10:29 -0700 From: "David O'Brien" To: Peter Wemm Cc: Ruslan Ermilov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr Message-ID: <20020408191029.B93005@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20020408144719.B92702@dragon.nuxi.com> <20020408232040.459C33811@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: <20020408232040.459C33811@overcee.wemm.org>; from peter@wemm.org on Mon, Apr 08, 2002 at 04:20:40PM -0700 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, Apr 08, 2002 at 04:20:40PM -0700, Peter Wemm wrote: > > Please commit this as it does improve things. As Peter mentioned it > > would be nice to add the libstdc++ dependancy also. But even w/o that, > > this patch is a help. > > No, do what Max Khon suggested. Use PROG_CXX like NetBSD does. Why can't we do both? If we can make PROG=foo do the right thing in the common case we should make it do so. -- -- 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 Mon Apr 8 19:22: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 26A2937B419; Mon, 8 Apr 2002 19:22:14 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g392ME945124; Mon, 8 Apr 2002 19:22:14 -0700 (PDT) (envelope-from obrien) Message-Id: <200204090222.g392ME945124@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 8 Apr 2002 19:22:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys ioccom.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/04/08 19:22:14 PDT Modified files: sys/sys ioccom.h Log: Back out revision 1.11 which wrapped the ioctl prototype w/()'s. While it may have allowed the XFree86 4 port to build; it killed TONS of other ports. The XFree86 4 can be patched to not use its macro a lot easier than figuring how to deal with 1000 other now-broken ports. Revision Changes Path 1.12 +1 -6 src/sys/sys/ioccom.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 19: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 2AEC237B405; Mon, 8 Apr 2002 19:23:02 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g392N2P45325; Mon, 8 Apr 2002 19:23:02 -0700 (PDT) (envelope-from obrien) Message-Id: <200204090223.g392N2P45325@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 8 Apr 2002 19:23:02 -0700 (PDT) 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/04/08 19:23:02 PDT Modified files: editors/vim Makefile distinfo Log: Update to Vim 6.1 patchlevel 9. Revision Changes Path 1.187 +15 -20 ports/editors/vim/Makefile 1.116 +9 -1 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 Apr 8 20:40: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail13.speakeasy.net [216.254.0.213]) by hub.freebsd.org (Postfix) with ESMTP id E6C3B37B41A for ; Mon, 8 Apr 2002 20:39:55 -0700 (PDT) Received: (qmail 6963 invoked from network); 9 Apr 2002 03:39:55 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail13.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 9 Apr 2002 03:39:55 -0000 Received: from laptop.baldwin.cx (john@laptop.baldwin.cx [192.168.0.4]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g393efv47316; Mon, 8 Apr 2002 23:40:41 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <200204090222.g392ME945124@freefall.freebsd.org> Date: Mon, 08 Apr 2002 23:39:52 -0400 (EDT) From: John Baldwin To: "David E. O'Brien" Subject: RE: cvs commit: src/sys/sys ioccom.h 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-Apr-2002 David E. O'Brien wrote: > obrien 2002/04/08 19:22:14 PDT > > Modified files: > sys/sys ioccom.h > Log: > Back out revision 1.11 which wrapped the ioctl prototype w/()'s. > While it may have allowed the XFree86 4 port to build; it killed TONS > of other ports. The XFree86 4 can be patched to not use its macro a lot > easier than figuring how to deal with 1000 other now-broken ports. Actually, that isn't correct. For example, when compiling screen on my ultra60, it whined because the auto* tools in their infinite wisdom (or lack thereof) define ioctl as so in osdef.h: extern int ioctl __P((int, int, char *)); In sys/sys/ioccom.h we have: int (ioctl)(int, unsigned long, ...); Note that the second arg is a long rather than an int, plus the 3rd argument isn't defined. Obviously then, the protoypes aren't going to match up on platforms where sizeof(long) != sizeof(int). Actually, I just tried taking out the parens around ioctl and now screen still doesn't build on my i386 laptop running today's current: > make ===> Building for screen-3.9.11_1 cc -c -I. -I. -O -pipe screen.c In file included from screen.h:38, from screen.c:85: osdef.h:87: conflicting types for `ioctl' /usr/include/sys/ioccom.h:75: previous declaration of `ioctl' I have to wonder why screen(1) has decided that it has a better prototype for ioctl() than the base system headers. That seems to be the real bug to me. :( -- 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 Apr 8 20:50:24 2002 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-169-104-17.dsl.lsan03.pacbell.net [64.169.104.17]) by hub.freebsd.org (Postfix) with ESMTP id 935CA37B400; Mon, 8 Apr 2002 20:50:18 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id F398B66BB9; Mon, 8 Apr 2002 20:50:17 -0700 (PDT) Date: Mon, 8 Apr 2002 20:50:17 -0700 From: Kris Kennaway To: John Baldwin Cc: "David E. O'Brien" , cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG Subject: Re: cvs commit: src/sys/sys ioccom.h Message-ID: <20020408205017.A18187@xor.obsecurity.org> References: <200204090222.g392ME945124@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="r5Pyd7+fXNt84Ff3" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from jhb@FreeBSD.ORG on Mon, Apr 08, 2002 at 11:39:52PM -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --r5Pyd7+fXNt84Ff3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 08, 2002 at 11:39:52PM -0400, John Baldwin wrote: >=20 > On 09-Apr-2002 David E. O'Brien wrote: > > obrien 2002/04/08 19:22:14 PDT > >=20 > > Modified files: > > sys/sys ioccom.h=20 > > Log: > > Back out revision 1.11 which wrapped the ioctl prototype w/()'s. > > While it may have allowed the XFree86 4 port to build; it killed TONS > > of other ports. The XFree86 4 can be patched to not use its macro a = lot > > easier than figuring how to deal with 1000 other now-broken ports. >=20 > Actually, that isn't correct. For example, when compiling screen on my > ultra60, it whined because the auto* tools in their infinite wisdom (or l= ack > thereof) define ioctl as so in osdef.h: >=20 > extern int ioctl __P((int, int, char *)); That's a hardcoded prototype in the screen source code, not something auto-generated by autoconf. Furthermore, screen seems to hard-code prototypes for *every* standard function instead of using the system headers. I fixed up these to use #includes, but screen also tries to redefine structures defined in the system headers so it's still badly broken. Kris --r5Pyd7+fXNt84Ff3 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 iD8DBQE8smT5Wry0BWjoQKURAnVhAJ4poWgZYpnEkC86JzAC8C6cSmFX5gCcDBA2 VhfoGKhWLAJVF6YTSbsvOZE= =KIuh -----END PGP SIGNATURE----- --r5Pyd7+fXNt84Ff3-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 20:50:49 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 311FC37B427; Mon, 8 Apr 2002 20:50:31 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g393oTYm003676; Mon, 8 Apr 2002 20:50:29 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g393nEe6003656; Mon, 8 Apr 2002 20:49:14 -0700 (PDT) Date: Mon, 8 Apr 2002 20:49:13 -0700 From: "David O'Brien" To: John Baldwin Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/sys ioccom.h Message-ID: <20020408204913.A92870@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200204090222.g392ME945124@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 jhb@FreeBSD.org on Mon, Apr 08, 2002 at 11:39:52PM -0400 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, Apr 08, 2002 at 11:39:52PM -0400, John Baldwin wrote: > > Actually, that isn't correct. For example, when compiling screen on my > ultra60, it whined because the auto* tools in their infinite wisdom (or lack > thereof) define ioctl as so in osdef.h: > > extern int ioctl __P((int, int, char *)); screen stopped building when we went from int ioctl __P((int, unsigned long, ...)); to int ioctl(int, unsigned long, ...); ?? or did something else change also? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 20:52: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail13.speakeasy.net [216.254.0.213]) by hub.freebsd.org (Postfix) with ESMTP id 3717A37B41B for ; Mon, 8 Apr 2002 20:51:53 -0700 (PDT) Received: (qmail 11472 invoked from network); 9 Apr 2002 03:51:52 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail13.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 9 Apr 2002 03:51:52 -0000 Received: from laptop.baldwin.cx (john@laptop.baldwin.cx [192.168.0.4]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g393qcv47367; Mon, 8 Apr 2002 23:52:38 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <20020408205017.A18187@xor.obsecurity.org> Date: Mon, 08 Apr 2002 23:51:50 -0400 (EDT) From: John Baldwin To: Kris Kennaway Subject: Re: cvs commit: src/sys/sys ioccom.h Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, "David E. O'Brien" Sender: owner-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-Apr-2002 Kris Kennaway wrote: > On Mon, Apr 08, 2002 at 11:39:52PM -0400, John Baldwin wrote: >> >> On 09-Apr-2002 David E. O'Brien wrote: >> > obrien 2002/04/08 19:22:14 PDT >> > >> > Modified files: >> > sys/sys ioccom.h >> > Log: >> > Back out revision 1.11 which wrapped the ioctl prototype w/()'s. >> > While it may have allowed the XFree86 4 port to build; it killed TONS >> > of other ports. The XFree86 4 can be patched to not use its macro a lot >> > easier than figuring how to deal with 1000 other now-broken ports. >> >> Actually, that isn't correct. For example, when compiling screen on my >> ultra60, it whined because the auto* tools in their infinite wisdom (or lack >> thereof) define ioctl as so in osdef.h: >> >> extern int ioctl __P((int, int, char *)); > > That's a hardcoded prototype in the screen source code, not something > auto-generated by autoconf. Furthermore, screen seems to hard-code > prototypes for *every* standard function instead of using the system > headers. I fixed up these to use #includes, but screen also tries to > redefine structures defined in the system headers so it's still badly > broken. screen used to compile. :-P Was this broken in a recent upgrade that no one bothered to check or something? > Kris -- 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 Apr 8 21: 1:58 2002 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-169-104-17.dsl.lsan03.pacbell.net [64.169.104.17]) by hub.freebsd.org (Postfix) with ESMTP id E506237B419; Mon, 8 Apr 2002 21:01:51 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 6E67666CFD; Mon, 8 Apr 2002 21:01:51 -0700 (PDT) Date: Mon, 8 Apr 2002 21:01:51 -0700 From: Kris Kennaway To: John Baldwin Cc: Kris Kennaway , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, "David E. O'Brien" Subject: Re: cvs commit: src/sys/sys ioccom.h Message-ID: <20020408210151.B18407@xor.obsecurity.org> References: <20020408205017.A18187@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="mojUlQ0s9EVzWg2t" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from jhb@FreeBSD.org on Mon, Apr 08, 2002 at 11:51:50PM -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --mojUlQ0s9EVzWg2t Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 08, 2002 at 11:51:50PM -0400, John Baldwin wrote: >=20 > On 09-Apr-2002 Kris Kennaway wrote: > > On Mon, Apr 08, 2002 at 11:39:52PM -0400, John Baldwin wrote: > >>=20 > >> On 09-Apr-2002 David E. O'Brien wrote: > >> > obrien 2002/04/08 19:22:14 PDT > >> >=20 > >> > Modified files: > >> > sys/sys ioccom.h=20 > >> > Log: > >> > Back out revision 1.11 which wrapped the ioctl prototype w/()'s. > >> > While it may have allowed the XFree86 4 port to build; it killed T= ONS > >> > of other ports. The XFree86 4 can be patched to not use its macro= a lot > >> > easier than figuring how to deal with 1000 other now-broken ports. > >>=20 > >> Actually, that isn't correct. For example, when compiling screen on my > >> ultra60, it whined because the auto* tools in their infinite wisdom (o= r lack > >> thereof) define ioctl as so in osdef.h: > >>=20 > >> extern int ioctl __P((int, int, char *)); > >=20 > > That's a hardcoded prototype in the screen source code, not something > > auto-generated by autoconf. Furthermore, screen seems to hard-code > > prototypes for *every* standard function instead of using the system > > headers. I fixed up these to use #includes, but screen also tries to > > redefine structures defined in the system headers so it's still badly > > broken. >=20 > screen used to compile. :-P Was this broken in a recent upgrade that no = one > bothered to check or something? It was broken by r1.11 of ioccom.h as stated, AFAICT. gcc apparently treats ioctl() and (ioctl)() as different prototypes. Kris --mojUlQ0s9EVzWg2t 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 iD8DBQE8smeuWry0BWjoQKURAhqDAKCvu68FwmhmZpJGDN6C7doq6r0W8wCg480G 6XvOjgj8bpzW3IZfmW63cHQ= =1Unw -----END PGP SIGNATURE----- --mojUlQ0s9EVzWg2t-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 21: 8:44 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 6AEDE37B416; Mon, 8 Apr 2002 21:08:40 -0700 (PDT) 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 g3948ci94713; Mon, 8 Apr 2002 22:08:38 -0600 (MDT) (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 g3948bc26582; Mon, 8 Apr 2002 22:08:37 -0600 (MDT) (envelope-from imp@village.org) Date: Mon, 08 Apr 2002 22:08:36 -0600 (MDT) Message-Id: <20020408.220836.16552371.imp@village.org> To: obrien@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys ioccom.h From: "M. Warner Losh" In-Reply-To: <200204090222.g392ME945124@freefall.freebsd.org> References: <200204090222.g392ME945124@freefall.freebsd.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: <200204090222.g392ME945124@freefall.freebsd.org> "David E. O'Brien" writes: : obrien 2002/04/08 19:22:14 PDT : : Modified files: : sys/sys ioccom.h : Log: : Back out revision 1.11 which wrapped the ioctl prototype w/()'s. : While it may have allowed the XFree86 4 port to build; it killed TONS : of other ports. The XFree86 4 can be patched to not use its macro a lot : easier than figuring how to deal with 1000 other now-broken ports. Any reason you didn't talk to me about this first? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 21:10:26 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 05B9237B400; Mon, 8 Apr 2002 21:10:22 -0700 (PDT) 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 g394AKi94734; Mon, 8 Apr 2002 22:10:20 -0600 (MDT) (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 g394AJc26597; Mon, 8 Apr 2002 22:10:20 -0600 (MDT) (envelope-from imp@village.org) Date: Mon, 08 Apr 2002 22:10:17 -0600 (MDT) Message-Id: <20020408.221017.117026133.imp@village.org> To: kris@obsecurity.org Cc: jhb@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, obrien@FreeBSD.org Subject: Re: cvs commit: src/sys/sys ioccom.h From: "M. Warner Losh" In-Reply-To: <20020408210151.B18407@xor.obsecurity.org> References: <20020408205017.A18187@xor.obsecurity.org> <20020408210151.B18407@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: <20020408210151.B18407@xor.obsecurity.org> Kris Kennaway writes: : It was broken by r1.11 of ioccom.h as stated, AFAICT. gcc apparently : treats ioctl() and (ioctl)() as different prototypes. The standards nazi's told me that this was the proper way to define something that might be a macro. Why isn't that the case? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 21:13:20 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail16.speakeasy.net [216.254.0.216]) by hub.freebsd.org (Postfix) with ESMTP id EB0F237B405 for ; Mon, 8 Apr 2002 21:13:13 -0700 (PDT) Received: (qmail 26218 invoked from network); 9 Apr 2002 04:13:12 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail16.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 9 Apr 2002 04:13:12 -0000 Received: from laptop.baldwin.cx (john@laptop.baldwin.cx [192.168.0.4]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g394Dxv47436; Tue, 9 Apr 2002 00:13:59 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <20020408210151.B18407@xor.obsecurity.org> Date: Tue, 09 Apr 2002 00:13:10 -0400 (EDT) From: John Baldwin To: Kris Kennaway Subject: Re: cvs commit: src/sys/sys ioccom.h Cc: "David E. O'Brien" , 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-Apr-2002 Kris Kennaway wrote: > On Mon, Apr 08, 2002 at 11:51:50PM -0400, John Baldwin wrote: >> >> On 09-Apr-2002 Kris Kennaway wrote: >> > On Mon, Apr 08, 2002 at 11:39:52PM -0400, John Baldwin wrote: >> >> >> >> On 09-Apr-2002 David E. O'Brien wrote: >> >> > obrien 2002/04/08 19:22:14 PDT >> >> > >> >> > Modified files: >> >> > sys/sys ioccom.h >> >> > Log: >> >> > Back out revision 1.11 which wrapped the ioctl prototype w/()'s. >> >> > While it may have allowed the XFree86 4 port to build; it killed TONS >> >> > of other ports. The XFree86 4 can be patched to not use its macro a >> >> > lot >> >> > easier than figuring how to deal with 1000 other now-broken ports. >> >> >> >> Actually, that isn't correct. For example, when compiling screen on my >> >> ultra60, it whined because the auto* tools in their infinite wisdom (or >> >> lack >> >> thereof) define ioctl as so in osdef.h: >> >> >> >> extern int ioctl __P((int, int, char *)); >> > >> > That's a hardcoded prototype in the screen source code, not something >> > auto-generated by autoconf. Furthermore, screen seems to hard-code >> > prototypes for *every* standard function instead of using the system >> > headers. I fixed up these to use #includes, but screen also tries to >> > redefine structures defined in the system headers so it's still badly >> > broken. >> >> screen used to compile. :-P Was this broken in a recent upgrade that no one >> bothered to check or something? > > It was broken by r1.11 of ioccom.h as stated, AFAICT. gcc apparently > treats ioctl() and (ioctl)() as different prototypes. No, I already said that I reverted the ()'s locally and it still failed to compile. Yes, I was editing /usr/include/sys/ioccom.h and not /sys/sys/ioccom.h. I also tried putting __P() back in, but it didn't build then either. I'm wondering if the pollution in screen's osdef.h is new? > Kris -- 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 Apr 8 21:18: 1 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 8D9F837B400; Mon, 8 Apr 2002 21:17:55 -0700 (PDT) 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 g394Hsi94770; Mon, 8 Apr 2002 22:17:54 -0600 (MDT) (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 g394Hrc26634; Mon, 8 Apr 2002 22:17:53 -0600 (MDT) (envelope-from imp@village.org) Date: Mon, 08 Apr 2002 22:17:51 -0600 (MDT) Message-Id: <20020408.221751.81468575.imp@village.org> To: kris@obsecurity.org Cc: jhb@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, obrien@FreeBSD.org Subject: Re: cvs commit: src/sys/sys ioccom.h From: "M. Warner Losh" In-Reply-To: <20020408.221017.117026133.imp@village.org> References: <20020408210151.B18407@xor.obsecurity.org> <20020408.221017.117026133.imp@village.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: <20020408210151.B18407@xor.obsecurity.org> Kris Kennaway writes: : It was broken by r1.11 of ioccom.h as stated, AFAICT. gcc apparently : treats ioctl() and (ioctl)() as different prototypes. Actually, I don't think you are right. I just tried: int ioctl(int, unsigned long, ...); int (ioctl)(int, unsigned long, ...); and gcc didn't complain at all, even with -Wall I'll bet money that 1.10 actually broke things since they were done so close together. 1.10 change things from int ioctl __P((int, unsigned long, ...)); to int ioctl(int, unsigned long, ...); Can someone send me the ACTUAL code that this breaks? Every time I've asked on IRC I haven't gotten an answer that I can use to track down the real problem. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 21:24:45 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 09E4F37B41A; Mon, 8 Apr 2002 21:24:36 -0700 (PDT) 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 g394OWi94806; Mon, 8 Apr 2002 22:24:32 -0600 (MDT) (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 g394OUc26686; Mon, 8 Apr 2002 22:24:30 -0600 (MDT) (envelope-from imp@village.org) Date: Mon, 08 Apr 2002 22:24:29 -0600 (MDT) Message-Id: <20020408.222429.22925353.imp@village.org> To: jhb@FreeBSD.org Cc: kris@obsecurity.org, obrien@FreeBSD.org, cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/sys ioccom.h From: "M. Warner Losh" In-Reply-To: References: <20020408210151.B18407@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: John Baldwin writes: : No, I already said that I reverted the ()'s locally and it still failed to : compile. Yes, I was editing /usr/include/sys/ioccom.h and not : /sys/sys/ioccom.h. I also tried putting __P() back in, but it didn't build : then either. I'm wondering if the pollution in screen's osdef.h is new? Ah, the screen port. Lemme test this locally.... Hmmm, the new version of iocomm doesn't work either: osdef.h:81: conflicting types for `ioctl' /usr/include/sys/ioccom.h:75: previous declaration of `ioctl' The real problem is at osdef.h:81: extern int ioctl __P((int, int, char *)); Note the two problems with this: 1) int doesn't match unsgined long 2) char * doesn't match ... screen needs to be fixed. here's a real patch: --- osdef.h.in.orig Mon Apr 8 22:22:18 2002 +++ osdef.h.in Mon Apr 8 22:22:48 2002 @@ -111,7 +111,9 @@ extern int setpgid __P((int, int)); extern int tcsetpgrp __P((int, int)); #endif +#ifndef __FreeBSD__ extern int ioctl __P((int, int, char *)); +#endif extern int kill __P((int, int)); I put this as misc/screen/files/patch-aj and screen just built. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 22: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 1370337B417; Mon, 8 Apr 2002 22:14:18 -0700 (PDT) Received: (from jeff@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g395EIw84686; Mon, 8 Apr 2002 22:14:18 -0700 (PDT) (envelope-from jeff) Message-Id: <200204090514.g395EIw84686@freefall.freebsd.org> From: Jeff Roberson Date: Mon, 8 Apr 2002 22:14:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options src/sys/kern vfs_cache.c vfs_syscalls.c vfs_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 jeff 2002/04/08 22:14:18 PDT Modified files: sys/conf options sys/kern vfs_cache.c vfs_syscalls.c vfs_vnops.c Log: Turn #ifdef LOOKUP_SHARED into #ifndef LOOKUP_EXCLUSIVE to enable this behavior by default. Also, change the options line to reflect this. If there are no problems reported this will become the only behavior and the knob will be removed in a month or so. Demanded by: obrien Revision Changes Path 1.311 +2 -1 src/sys/conf/options 1.71 +4 -4 src/sys/kern/vfs_cache.c 1.246 +1 -1 src/sys/kern/vfs_syscalls.c 1.143 +5 -5 src/sys/kern/vfs_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 Apr 8 22:17: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 CF85837B416; Mon, 8 Apr 2002 22:17:44 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g395Hi385293; Mon, 8 Apr 2002 22:17:44 -0700 (PDT) (envelope-from obrien) Message-Id: <200204090517.g395Hi385293@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 8 Apr 2002 22:17:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys ioccom.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/04/08 22:17:44 PDT Modified files: sys/sys ioccom.h Log: Back out rev 1.11. People want a FUBARed prototype that breaks many things. Revision Changes Path 1.13 +6 -1 src/sys/sys/ioccom.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 22:25:17 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 3FA4E37B400; Mon, 8 Apr 2002 22:25:12 -0700 (PDT) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.6) id g395PBh48884; Tue, 9 Apr 2002 01:25:11 -0400 (EDT) (envelope-from wollman) Date: Tue, 9 Apr 2002 01:25:11 -0400 (EDT) From: Garrett Wollman Message-Id: <200204090525.g395PBh48884@khavrinen.lcs.mit.edu> To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys ioccom.h In-Reply-To: <200204090517.g395Hi385293@freefall.freebsd.org> References: <200204090517.g395Hi385293@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: > Back out rev 1.11. People want a FUBARed prototype that breaks many > things. If changing the form of this declaration makes any difference, said things were already broken. There's nothing FU about this particular prototype, and it certainly isn't BAR to anyone competent in the C language. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 22:34: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 31F8F37B419; Mon, 8 Apr 2002 22:34:23 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g395YNp87485; Mon, 8 Apr 2002 22:34:23 -0700 (PDT) (envelope-from obrien) Message-Id: <200204090534.g395YNp87485@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 8 Apr 2002 22:34:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libstand 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/04/08 22:34:23 PDT Modified files: lib/libstand Makefile Log: Break the sparc64 build. I expect those that complained about this commit to fix the sparc64 case to their liking. Revision Changes Path 1.33 +0 -2 src/lib/libstand/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 22:41: 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 7C30537B404; Mon, 8 Apr 2002 22:41:01 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g395f1n88084; Mon, 8 Apr 2002 22:41:01 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204090541.g395f1n88084@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Mon, 8 Apr 2002 22:41:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread uthread_select.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 asmodai 2002/04/08 22:41:01 PDT Modified files: lib/libc_r/uthread uthread_select.c Log: Return correct number of total bits set in all fd_set's. Change case of POLLNVAL as an error. Remove POLLHUP and POLLERR from one case, their place is most likely amongst read events. PR: 33723 Submitted by: Alexander Litvin Reviewed by: deischen [Provided a small change to the PR patch as well] MFC after: 4 weeks Revision Changes Path 1.19 +19 -10 src/lib/libc_r/uthread/uthread_select.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 22:43: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 DDEF137B405; Mon, 8 Apr 2002 22:43:19 -0700 (PDT) Received: (from fenner@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g395hJv88520; Mon, 8 Apr 2002 22:43:19 -0700 (PDT) (envelope-from fenner) Message-Id: <200204090543.g395hJv88520@freefall.freebsd.org> From: Bill Fenner Date: Mon, 8 Apr 2002 22:43:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms/hylafax/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 fenner 2002/04/08 22:43:19 PDT Added files: comms/hylafax/files patch-configure Log: Don't check for ioctl prototype; we know it's there. Revision Changes Path 1.1 +20 -0 ports/comms/hylafax/files/patch-configure (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 22:55: 9 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 7032737B405; Mon, 8 Apr 2002 22:55:00 -0700 (PDT) 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 g395sxi95131; Mon, 8 Apr 2002 23:54:59 -0600 (MDT) (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 g395swc27060; Mon, 8 Apr 2002 23:54:58 -0600 (MDT) (envelope-from imp@village.org) Date: Mon, 08 Apr 2002 23:54:59 -0600 (MDT) Message-Id: <20020408.235459.112894298.imp@village.org> To: obrien@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys ioccom.h From: "M. Warner Losh" In-Reply-To: <200204090517.g395Hi385293@freefall.freebsd.org> References: <200204090517.g395Hi385293@freefall.freebsd.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: <200204090517.g395Hi385293@freefall.freebsd.org> "David E. O'Brien" writes: : Back out rev 1.11. People want a FUBARed prototype that breaks many : things. The reason that vim broke is because it includes a bunch of system headers and tries to find the following pattern for each prototype: sed < $srcdir/osdef1.h.in -n -e '/^extern/s@.*[)* ][)* ]*\([a-zA-Z_][a-zA-Z0-9_]*\) __ARGS.*@/[)*, ]\1[ (]/i\\\ \\/\\[^a-zA-Z_\\]\1 __ARGS\\/d@p' > osdef11.sed followed by: cat osdef0.ccc | sed -n -f osdef11.sed >> osdef2.sed sed -f osdef2.sed < $srcdir/osdef1.h.in > auto/osdef.h which is failing to find the prototype.... Not the best thing for a configuration utility to assume. That's why 1.11 broke things for vim, and hylafax. when it failed to find a prototype with the above regular expression, it defined a prototype. I think that maybe the following will fix it: sed < $srcdir/osdef1.h.in -n -e '/^extern/s@.*[)* ][)* ]*\([a-zA-Z_][a-zA-Z0-9_]*\) __ARGS.*@/[)*, ][(]*\1[)]*[ (]/i\\\ \\/\\[^a-zA-Z_\\]\1 __ARGS\\/d@p' > osdef11.sed Since it allows the new prototypes to match. Likewise for osdef2.h.in elsewhere in the file. Or take the low road and just remove ioctl from the osdef1.h.in file... Of course if X were easier to compile/recompile, I'd take a shot at fixing it too, but the new meta ports make that hard :-(. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 22:58: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 349CA37B400; Mon, 8 Apr 2002 22:58:45 -0700 (PDT) Received: (from mike@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g395wjq90601; Mon, 8 Apr 2002 22:58:45 -0700 (PDT) (envelope-from mike) Message-Id: <200204090558.g395wjq90601@freefall.freebsd.org> From: Mike Barcroft Date: Mon, 8 Apr 2002 22:58:45 -0700 (PDT) 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/04/08 22:58:45 PDT Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Revert rev 1.92: Move Jeroen Ruigrok/Asmodai to the Development Team Alumni area. ...for obvious reasons. Revision Changes Path 1.148 +4 -3 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 Mon Apr 8 23: 7: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 3AB0937B404; Mon, 8 Apr 2002 23:07:31 -0700 (PDT) Received: (from fenner@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3967Vc95726; Mon, 8 Apr 2002 23:07:31 -0700 (PDT) (envelope-from fenner) Message-Id: <200204090607.g3967Vc95726@freefall.freebsd.org> From: Bill Fenner Date: Mon, 8 Apr 2002 23:07:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/lambdamoo/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 fenner 2002/04/08 23:07:31 PDT Modified files: net/lambdamoo/files patch-aa Log: Don't redefine INT32_MAX Revision Changes Path 1.2 +17 -0 ports/net/lambdamoo/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 Mon Apr 8 23: 8: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 DD21637B405; Mon, 8 Apr 2002 23:08:40 -0700 (PDT) Received: (from fenner@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3968eH95952; Mon, 8 Apr 2002 23:08:40 -0700 (PDT) (envelope-from fenner) Message-Id: <200204090608.g3968eH95952@freefall.freebsd.org> From: Bill Fenner Date: Mon, 8 Apr 2002 23:08:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/lambdamoo/files patch-configure 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 fenner 2002/04/08 23:08:40 PDT Added files: net/lambdamoo/files patch-configure patch-configure.in Log: Allow close-paren in a prototype [specifically for ioctl in configure] Revision Changes Path 1.1 +11 -0 ports/net/lambdamoo/files/patch-configure (new) 1.1 +11 -0 ports/net/lambdamoo/files/patch-configure.in (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 23:10: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 06F3937B417; Mon, 8 Apr 2002 23:10:55 -0700 (PDT) Received: (from fenner@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g396AtI96443; Mon, 8 Apr 2002 23:10:55 -0700 (PDT) (envelope-from fenner) Message-Id: <200204090610.g396AtI96443@freefall.freebsd.org> From: Bill Fenner Date: Mon, 8 Apr 2002 23:10:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/lambdamoo/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 fenner 2002/04/08 23:10:54 PDT Modified files: japanese/lambdamoo/files patch-aa Log: Don't redefine INT32_MAX Revision Changes Path 1.2 +17 -0 ports/japanese/lambdamoo/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 Mon Apr 8 23:11: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 1F47137B41A; Mon, 8 Apr 2002 23:11:20 -0700 (PDT) Received: (from fenner@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g396BKs96553; Mon, 8 Apr 2002 23:11:20 -0700 (PDT) (envelope-from fenner) Message-Id: <200204090611.g396BKs96553@freefall.freebsd.org> From: Bill Fenner Date: Mon, 8 Apr 2002 23:11:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/lambdamoo/files patch-configure 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 fenner 2002/04/08 23:11:20 PDT Added files: japanese/lambdamoo/files patch-configure patch-configure.in Log: Allow close-paren in a prototype [specifically for ioctl in configure] Revision Changes Path 1.1 +11 -0 ports/japanese/lambdamoo/files/patch-configure (new) 1.1 +11 -0 ports/japanese/lambdamoo/files/patch-configure.in (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Apr 8 23:42:48 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 A275D37B41A; Mon, 8 Apr 2002 23:42:42 -0700 (PDT) Received: by elvis.mu.org (Postfix, from userid 1192) id 82685AE211; Mon, 8 Apr 2002 23:42:42 -0700 (PDT) Date: Mon, 8 Apr 2002 23:42:42 -0700 From: Alfred Perlstein To: "M. Warner Losh" Cc: jhb@FreeBSD.org, kris@obsecurity.org, obrien@FreeBSD.org, cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/sys ioccom.h Message-ID: <20020409064242.GJ93885@elvis.mu.org> References: <20020408210151.B18407@xor.obsecurity.org> <20020408.222429.22925353.imp@village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020408.222429.22925353.imp@village.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 * M. Warner Losh [020408 21:24] wrote: > In message: > John Baldwin writes: > : No, I already said that I reverted the ()'s locally and it still failed to > : compile. Yes, I was editing /usr/include/sys/ioccom.h and not > : /sys/sys/ioccom.h. I also tried putting __P() back in, but it didn't build > : then either. I'm wondering if the pollution in screen's osdef.h is new? > > Ah, the screen port. Lemme test this locally.... Hmmm, the new > version of iocomm doesn't work either: > > osdef.h:81: conflicting types for `ioctl' > /usr/include/sys/ioccom.h:75: previous declaration of `ioctl' > > The real problem is at osdef.h:81: > extern int ioctl __P((int, int, char *)); > > Note the two problems with this: > 1) int doesn't match unsgined long > 2) char * doesn't match ... > > screen needs to be fixed. here's a real patch: > > --- osdef.h.in.orig Mon Apr 8 22:22:18 2002 > +++ osdef.h.in Mon Apr 8 22:22:48 2002 > @@ -111,7 +111,9 @@ > extern int setpgid __P((int, int)); > extern int tcsetpgrp __P((int, int)); > #endif > +#ifndef __FreeBSD__ > extern int ioctl __P((int, int, char *)); > +#endif > > extern int kill __P((int, int)); > > I put this as misc/screen/files/patch-aj and screen just built. I don't have the emails offhand, but the screen people were pretty quick to respond to a help message from me. Have you contacted them about bringing in this fix? -- -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 deductible 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 Apr 9 0: 0: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 ED93237B4A4; Mon, 8 Apr 2002 23:59:49 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g396xTE05380; Mon, 8 Apr 2002 23:59:29 -0700 (PDT) (envelope-from imp) Message-Id: <200204090659.g396xTE05380@freefall.freebsd.org> From: Warner Losh Date: Mon, 8 Apr 2002 23:59:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ddd/files patch-02 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/08 23:59:29 PDT Modified files: devel/ddd/files patch-02 Log: allow ( ) to surround ioctl, real fix is to fix autoconf Revision Changes Path 1.5 +3 -0 ports/devel/ddd/files/patch-02 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 0: 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 DBFCA37B41C; Tue, 9 Apr 2002 00:03:32 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3973Wg05946; Tue, 9 Apr 2002 00:03:32 -0700 (PDT) (envelope-from ru) Message-Id: <200204090703.g3973Wg05946@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 9 Apr 2002 00:03:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/awk 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/04/09 00:03:32 PDT Modified files: usr.bin/awk Makefile Log: Make this compile in a standalone environment. Tidy up CLEANFILES. Use built-in rules for building "maketab". Revision Changes Path 1.6 +2 -3 src/usr.bin/awk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 0: 5: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 5659937B404; Tue, 9 Apr 2002 00:05:24 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3975Od06883; Tue, 9 Apr 2002 00:05:24 -0700 (PDT) (envelope-from ru) Message-Id: <200204090705.g3975Od06883@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 9 Apr 2002 00:05:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/awk 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/04/09 00:05:24 PDT Modified files: usr.bin/awk Makefile Log: Style. Revision Changes Path 1.7 +7 -7 src/usr.bin/awk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 0:18: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from van-laarhoven.org (ap-z-5ab8.adsl.wanadoo.nl [212.129.218.184]) by hub.freebsd.org (Postfix) with SMTP id EA0E937B417 for ; Tue, 9 Apr 2002 00:17:50 -0700 (PDT) Received: (qmail 21452 invoked from network); 9 Apr 2002 07:17:49 -0000 Received: from heather.van-laarhoven.org (10.66.0.2) by uitsmijter.van-laarhoven.org with SMTP; 9 Apr 2002 07:17:49 -0000 Date: Tue, 9 Apr 2002 09:17:49 +0200 (CEST) From: Nick Hibma To: Hidetoshi Shimokawa Cc: Josef Karthauser , Hidetoshi Shimokawa , "cvs-committers@FreeBSD.org" , "cvs-all@FreeBSD.org" Subject: Re: cvs commit: src/sys/cam/scsi scsi_all.c scsi_da.c In-Reply-To: Message-ID: <20020409091528.Q374-100000@heather.van-laarhoven.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 The umass driver returns the error just fine. See many postings on this in the appropriate mailing lists. The correct thing to do is to pass up the NO_6_BYTE_COMMANDS quirk from the driver to the CAM layer. At the moment the 6 byte commands are converted inside the umass driver to their 10 byte equivalents, so there should be no need for your patch in the first place (apart from the T_RBC bits of course, which looks like a good thing to me). Nick On Mon, 8 Apr 2002, Hidetoshi Shimokawa wrote: > At Mon, 8 Apr 2002 10:55:21 +0100, > Josef Karthauser wrote: > > > > On Mon, Apr 08, 2002 at 01:44:16AM -0700, Hidetoshi Shimokawa wrote: > > > simokawa 2002/04/08 01:44:16 PDT > > > > > > Modified files: (Branch: RELENG_4) > > > sys/cam/scsi scsi_all.c scsi_da.c > > > Log: > > > MFC: > > > - Add support for Simplified Direct Access Device. > > > - Automatically detect devices that do not support READ(6)/WRITE(6). > > > > > > scsi_all.c: rev. 1.29 > > > scsi_da.c: rev. 1.98, 1.101 > > > > Does this mean that the usb umass quirks can be removed? > > If the device returns SCSI error (illegal request), > it can be removed. But if it returns no error, you have to do > sysctl kern.cam.da.no_6_byte=1 or keep the quirks or > enable ad-hoc workaround (the follwing patch). > Justin ask me to disable this part until he looks into the umass-sim. > > As far as I know umass-sim doesn't return any error for the > most of the drives. I think umass-sim should be return some errors > if tranfer length is 0. > > > /\ Hidetoshi Shimokawa > \/ simokawa@sat.t.u-tokyo.ac.jp > PGP public key: http://www.sat.t.u-tokyo.ac.jp/~simokawa/pgp.html > > > Index: scsi_da.c > =================================================================== > RCS file: /home/ncvs/src/sys/cam/scsi/scsi_da.c,v > retrieving revision 1.102 > diff -u -r1.102 scsi_da.c > --- scsi_da.c 31 Mar 2002 22:28:03 -0000 1.102 > +++ scsi_da.c 8 Apr 2002 12:16:35 -0000 > @@ -1402,7 +1402,7 @@ > bp->bio_error = 0; > if (bp->bio_resid != 0) { > /* Short transfer ??? */ > -#if 0 > +#if 1 > if (cmd6workaround(done_ccb) > == ERESTART) > return; > @@ -1422,7 +1422,7 @@ > bp->bio_resid = csio->resid; > if (csio->resid > 0) { > /* Short transfer ??? */ > -#if 0 /* XXX most of the broken umass devices need this ad-hoc work around */ > +#if 1 /* XXX most of the broken umass devices need this ad-hoc work around */ > if (cmd6workaround(done_ccb) == ERESTART) > return; > #endif > > > -- n_hibma@van-laarhoven.org http://www.van-laarhoven.org/ n_hibma@FreeBSD.org http://www.etla.net/~n_hibma/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 0:18: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 CB8D937B43E; Tue, 9 Apr 2002 00:18:44 -0700 (PDT) Received: (from jim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g397Iio11988; Tue, 9 Apr 2002 00:18:44 -0700 (PDT) (envelope-from jim) Message-Id: <200204090718.g397Iio11988@freefall.freebsd.org> From: Jim Mock Date: Tue, 9 Apr 2002 00:18:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/teapop Makefile ports/mail/teapop/files 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 jim 2002/04/09 00:18:44 PDT Modified files: mail/teapop Makefile Added files: mail/teapop/files patch-ac Log: Fix a problem where teapop wasn't fully deleting messages and dumping core. Bump PORTREVISION. Submitted by: John Brooks Revision Changes Path 1.15 +2 -1 ports/mail/teapop/Makefile 1.1 +13 -0 ports/mail/teapop/files/patch-ac (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 0:30: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 E4D8B37B41B; Tue, 9 Apr 2002 00:30:20 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g397UKn13911; Tue, 9 Apr 2002 00:30:20 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204090730.g397UKn13911@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 9 Apr 2002 00:30:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/easytag 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/04/09 00:30:20 PDT Modified files: audio/easytag Makefile distinfo Log: ugprade to 0.18 PR: 36889 Submitted by: Ports Fury Revision Changes Path 1.4 +1 -1 ports/audio/easytag/Makefile 1.5 +1 -1 ports/audio/easytag/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 0:37: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 4C1C537B416; Tue, 9 Apr 2002 00:37:09 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g397b9t15296; Tue, 9 Apr 2002 00:37:09 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204090737.g397b9t15296@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 9 Apr 2002 00:37:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/autogen Makefile pkg-plist ports/devel/autogen/files patch-config:ltmain.sh patch-snprintfv:config: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 ijliao 2002/04/09 00:37:09 PDT Modified files: devel/autogen Makefile pkg-plist devel/autogen/files patch-config:ltmain.sh patch-snprintfv:config:ltmain.sh Log: add missing man page fix entry in plist merge patches in files/ PR: 36890 Submitted by: Ports Fury Revision Changes Path 1.13 +1 -3 ports/devel/autogen/Makefile 1.2 +25 -9 ports/devel/autogen/files/patch-config:ltmain.sh 1.2 +25 -9 ports/devel/autogen/files/patch-snprintfv:config:ltmain.sh 1.8 +1 -1 ports/devel/autogen/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 Apr 9 0:38: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 8D92C37B41A; Tue, 9 Apr 2002 00:38:12 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g397cCY15472; Tue, 9 Apr 2002 00:38:12 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204090738.g397cCY15472@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 9 Apr 2002 00:38:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/divxcalc 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/04/09 00:38:12 PDT Modified files: graphics/divxcalc Makefile Log: - Add missing BUILD_DEPENS to devel/automake14 - Remove unnecessary USE_BISON PR: 36891 Submitted by: Ports Fury Revision Changes Path 1.2 +5 -2 ports/graphics/divxcalc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 0:39: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 162A837B405; Tue, 9 Apr 2002 00:39:30 -0700 (PDT) Received: (from jmallett@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g397dUB15710; Tue, 9 Apr 2002 00:39:30 -0700 (PDT) (envelope-from jmallett) Message-Id: <200204090739.g397dUB15710@freefall.freebsd.org> From: "J. Mallett" Date: Tue, 9 Apr 2002 00:39:30 -0700 (PDT) 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: 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 jmallett 2002/04/09 00:39:30 PDT Modified files: (Branch: RELENG_4) gnu/usr.bin/patch patch.1 patch.c Log: MFC: Add -i option (SUSv3) to patch(1). This allows one to specify a patch file on command line instead of stdin. Requested by: mike Revision Changes Path 1.11.2.1 +13 -2 src/gnu/usr.bin/patch/patch.1 1.16.2.2 +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 Tue Apr 9 0:40: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 46EBA37B404; Tue, 9 Apr 2002 00:40:18 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g397eIN15935; Tue, 9 Apr 2002 00:40:18 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204090740.g397eIN15935@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 9 Apr 2002 00:40:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gsubedit Makefile pkg-plist ports/graphics/gsubedit/files patch-pixmaps::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/04/09 00:40:18 PDT Modified files: graphics/gsubedit Makefile pkg-plist Removed files: graphics/gsubedit/files patch-pixmaps::Makefile.in Log: - Support CFLAGS properly - Remove unnecessary USE_BISON - Utilize NOPORTDOCS PR: 36892 Submitted by: Ports Fury Revision Changes Path 1.2 +20 -5 ports/graphics/gsubedit/Makefile 1.2 +0 -11 ports/graphics/gsubedit/files/patch-pixmaps::Makefile.in (dead) 1.2 +7 -8 ports/graphics/gsubedit/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 Apr 9 0: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 C5F5437B41C; Tue, 9 Apr 2002 00:46:10 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g397kAO17238; Tue, 9 Apr 2002 00:46:10 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204090746.g397kAO17238@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 9 Apr 2002 00:46:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/scm Makefile pkg-plist ports/lang/scm/files patch-build.scm require.scm.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/04/09 00:46:10 PDT Modified files: lang/scm Makefile pkg-plist lang/scm/files require.scm.in Added files: lang/scm/files patch-build.scm Log: - Add loadable module support PR: 36893 Submitted by: Ports Fury Revision Changes Path 1.24 +36 -17 ports/lang/scm/Makefile 1.1 +79 -0 ports/lang/scm/files/patch-build.scm (new) 1.2 +1 -1 ports/lang/scm/files/require.scm.in 1.14 +163 -152 ports/lang/scm/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 Apr 9 0:51: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 124E337B41C; Tue, 9 Apr 2002 00:51:20 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g397pKW18266; Tue, 9 Apr 2002 00:51:20 -0700 (PDT) (envelope-from murray) Message-Id: <200204090751.g397pKW18266@freefall.freebsd.org> From: Murray Stokely Date: Tue, 9 Apr 2002 00:51:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/dict Makefile README freebsd 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 murray 2002/04/09 00:51:19 PDT Modified files: (Branch: RELENG_4) share/dict Makefile README Added files: (Branch: RELENG_4) share/dict freebsd Log: MFC: Add a dictionary of FreeBSD/Unix lexicon used by the system documentation. Revision Changes Path 1.9.2.2 +1 -1 src/share/dict/Makefile 1.7.2.1 +7 -0 src/share/dict/README 1.2.2.1 +143 -0 src/share/dict/freebsd (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 0:59: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.sat.t.u-tokyo.ac.jp (nat.keisu.t.u-tokyo.ac.jp [133.11.68.2]) by hub.freebsd.org (Postfix) with ESMTP id 60F7037B417; Tue, 9 Apr 2002 00:59:01 -0700 (PDT) Received: from ett.sat.t.u-tokyo.ac.jp (ett.sat.t.u-tokyo.ac.jp [10.6.1.30]) by mail.sat.t.u-tokyo.ac.jp (Postfix) with ESMTP id BFEF32DAC2; Tue, 9 Apr 2002 16:58:59 +0900 (JST) Date: Tue, 09 Apr 2002 16:58:59 +0900 Message-ID: From: Hidetoshi Shimokawa To: Nick Hibma Cc: Josef Karthauser , Hidetoshi Shimokawa , "cvs-committers@FreeBSD.org" , "cvs-all@FreeBSD.org" Subject: Re: cvs commit: src/sys/cam/scsi scsi_all.c scsi_da.c In-Reply-To: <20020409091528.Q374-100000@heather.van-laarhoven.org> References: <20020409091528.Q374-100000@heather.van-laarhoven.org> User-Agent: Wanderlust/2.4.1 (Stand By Me) REMI/1.14.3 (Matsudai) FLIM/1.13.2 (Kasanui) APEL/10.3 MULE XEmacs/21.2 (beta19) (Shinjuku) (i386-unknown-freebsd3.2) X-Face: OE([KxWyJI0r[R~S/>7ia}SJ)i%a,$-9%7{*yihQk|]gl}2p#"oXmX/fT}Bn7:#j7i14gu$ jgR\S*&C3R/pJX List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Tue, 9 Apr 2002 09:17:49 +0200 (CEST), Nick Hibma wrote: > > The umass driver returns the error just fine. See many postings on this > in the appropriate mailing lists. some drives(not driver) do, but some don't. > The correct thing to do is to pass up the NO_6_BYTE_COMMANDS quirk from > the driver to the CAM layer. > At the moment the 6 byte commands are converted inside the umass driver > to their 10 byte equivalents, so there should be no need for your patch > in the first place (apart from the T_RBC bits of course, which looks > like a good thing to me). I made this patch for SBP-II devices. /\ Hidetoshi Shimokawa \/ simokawa@sat.t.u-tokyo.ac.jp PGP public key: http://www.sat.t.u-tokyo.ac.jp/~simokawa/pgp.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 1: 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 9EBD937B404; Tue, 9 Apr 2002 01:04:45 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3984jX20651; Tue, 9 Apr 2002 01:04:45 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204090804.g3984jX20651@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 9 Apr 2002 01:04:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/xvattr 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 ijliao 2002/04/09 01:04:45 PDT Modified files: x11/xvattr Makefile pkg-plist Log: - Do not build when XFREE86_VERSION == 3 PR: 36900 Submitted by: Ports Fury Revision Changes Path 1.2 +16 -4 ports/x11/xvattr/Makefile 1.2 +3 -0 ports/x11/xvattr/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 Apr 9 1:15: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 3161537B41B; Tue, 9 Apr 2002 01:15:37 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g398Fbg26741; Tue, 9 Apr 2002 01:15:37 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204090815.g398Fbg26741@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 9 Apr 2002 01:15:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/zhcon Makefile ports/chinese/zhcon/files patch-src::graphdev.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 ijliao 2002/04/09 01:15:36 PDT Modified files: chinese/zhcon Makefile Added files: chinese/zhcon/files patch-src::graphdev.cpp Log: support HAVE_GGI_LIB bump port revision PR: 36921 Submitted by: maintainer Revision Changes Path 1.10 +1 -1 ports/chinese/zhcon/Makefile 1.1 +11 -0 ports/chinese/zhcon/files/patch-src::graphdev.cpp (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 1:19: 7 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 AB13E37B400; Tue, 9 Apr 2002 01:18:52 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g398Iil87779; Tue, 9 Apr 2002 11:18:44 +0300 (EEST) (envelope-from ru) Date: Tue, 9 Apr 2002 11:18:44 +0300 From: Ruslan Ermilov To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/cc/cc Makefile src/gnu/usr.bin/cc/cc1 Makefile src/gnu/usr.bin/cc/cc1obj Makefile src/gnu/usr.bin/cc/cc1plus Makefile src/gnu/usr.bin/cc/cccp Makefile src/gnu/usr.bin/cc/collect2 Makefile Message-ID: <20020409081844.GD73475@sunbay.com> References: <200204081848.g38Imcw07885@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5p8PegU4iirBW1oA" Content-Disposition: inline In-Reply-To: <200204081848.g38Imcw07885@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 --5p8PegU4iirBW1oA Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 08, 2002 at 11:48:38AM -0700, David E. O'Brien wrote: > obrien 2002/04/08 11:48:38 PDT >=20 > Modified files: > gnu/usr.bin/cc/cc Makefile=20 > gnu/usr.bin/cc/cc1 Makefile=20 > gnu/usr.bin/cc/cc1obj Makefile=20 > gnu/usr.bin/cc/cc1plus Makefile=20 > gnu/usr.bin/cc/cccp Makefile=20 > gnu/usr.bin/cc/collect2 Makefile=20 > Log: > Fine! I cannot freaking take the bikeshed any more. > These binaries will be static, peroid. > =20 Per what? Seriously, I hate emotion-driven commits. Cheers, --=20 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 --5p8PegU4iirBW1oA 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 iD8DBQE8sqPkUkv4P6juNwoRAhPQAJ9I4vAjg1KcwyDvh7GHaJ9wIMSQiwCbB8C7 EBAmmSZmQZzipsWNlbVq4DQ= =G9Vi -----END PGP SIGNATURE----- --5p8PegU4iirBW1oA-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 1:19: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 C5EC837B447; Tue, 9 Apr 2002 01:19:17 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g398JHP27772; Tue, 9 Apr 2002 01:19:17 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204090819.g398JHP27772@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 9 Apr 2002 01:19:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/emacs20-emcws Makefile distinfo ports/japanese/emacs20-emcws/files patch-ag patch-an patch-da X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/09 01:19:17 PDT Modified files: japanese/emacs20-emcws Makefile distinfo japanese/emacs20-emcws/files patch-ag patch-an patch-da Log: upgrade to 20020208 PR: 36922 Submitted by: maintainer Revision Changes Path 1.5 +5 -2 ports/japanese/emacs20-emcws/Makefile 1.3 +1 -1 ports/japanese/emacs20-emcws/distinfo 1.2 +1 -1 ports/japanese/emacs20-emcws/files/patch-ag 1.2 +12 -3 ports/japanese/emacs20-emcws/files/patch-an 1.3 +13 -17 ports/japanese/emacs20-emcws/files/patch-da To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 1:23:32 2002 Delivered-To: cvs-all@freebsd.org Received: from van-laarhoven.org (ap-z-5ab8.adsl.wanadoo.nl [212.129.218.184]) by hub.freebsd.org (Postfix) with SMTP id 183DA37B419 for ; Tue, 9 Apr 2002 01:23:26 -0700 (PDT) Received: (qmail 21708 invoked from network); 9 Apr 2002 08:23:24 -0000 Received: from heather.van-laarhoven.org (10.66.0.2) by uitsmijter.van-laarhoven.org with SMTP; 9 Apr 2002 08:23:24 -0000 Date: Tue, 9 Apr 2002 10:23:24 +0200 (CEST) From: Nick Hibma To: Hidetoshi Shimokawa Cc: Josef Karthauser , Hidetoshi Shimokawa , "cvs-committers@FreeBSD.org" , "cvs-all@FreeBSD.org" Subject: Re: cvs commit: src/sys/cam/scsi scsi_all.c scsi_da.c In-Reply-To: Message-ID: <20020409102222.M374-100000@heather.van-laarhoven.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 > > The umass driver returns the error just fine. See many postings on this > > in the appropriate mailing lists. > > some drives(not driver) do, but some don't. Don't do what? Return an error on receiving a command they don't understand? In that case your patch doesn't solve anything as the driver doesn't add or remove any error messages. > > At the moment the 6 byte commands are converted inside the umass driver > > to their 10 byte equivalents, so there should be no need for your patch > > in the first place (apart from the T_RBC bits of course, which looks > > like a good thing to me). > > I made this patch for SBP-II devices. Did you try it with the umass driver from current? Nick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 1:27:11 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 6A2E937B404; Tue, 9 Apr 2002 01:26:58 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g398QtK88877; Tue, 9 Apr 2002 11:26:55 +0300 (EEST) (envelope-from ru) Date: Tue, 9 Apr 2002 11:26:54 +0300 From: Ruslan Ermilov To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin Makefile Message-ID: <20020409082654.GE73475@sunbay.com> References: <200204082038.g38KcuJ36871@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="o0ZfoUVt4BxPQnbU" Content-Disposition: inline In-Reply-To: <200204082038.g38KcuJ36871@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 --o0ZfoUVt4BxPQnbU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 08, 2002 at 01:38:56PM -0700, David E. O'Brien wrote: > obrien 2002/04/08 13:38:56 PDT >=20 > Modified files: > gnu/usr.bin Makefile=20 > Log: > GCC and Gperf do not work on ia64 or sparc64 yet. > Also do not try to compile Groff if NO_CXX is set. > =20 > Revision Changes Path > 1.59 +10 -2 src/gnu/usr.bin/Makefile >=20 This is IMHO bogus. NO_CXX only means that (GNU) c++ shouldn't be built, it doesn't imply that the host doesn't have another working (probably non-GNU) c++ compiler that can build Groff. Cheers, --=20 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 --o0ZfoUVt4BxPQnbU 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 iD8DBQE8sqXOUkv4P6juNwoRArIpAJ9Jt49CGDpUHJ07vBCyWJma3U9xBQCcDFfC e//Ce52Ha2LAs1Um7VdJ7uc= =7Y83 -----END PGP SIGNATURE----- --o0ZfoUVt4BxPQnbU-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 1:54: 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 7DCB737B404; Tue, 9 Apr 2002 01:54:01 -0700 (PDT) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g398s1q34757; Tue, 9 Apr 2002 01:54:01 -0700 (PDT) (envelope-from dfr) Message-Id: <200204090854.g398s1q34757@freefall.freebsd.org> From: Doug Rabson Date: Tue, 9 Apr 2002 01:54:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 ssc.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 dfr 2002/04/09 01:53:59 PDT Modified files: sys/ia64/ia64 ssc.c Log: Don't call make_dev from ssccnattach - its far too early to work properly. Revision Changes Path 1.12 +8 -0 src/sys/ia64/ia64/ssc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 2: 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 2A92337B416; Tue, 9 Apr 2002 02:03:31 -0700 (PDT) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3993VP36216; Tue, 9 Apr 2002 02:03:31 -0700 (PDT) (envelope-from dfr) Message-Id: <200204090903.g3993VP36216@freefall.freebsd.org> From: Doug Rabson Date: Tue, 9 Apr 2002 02:03:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/include ia64_cpu.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 dfr 2002/04/09 02:03:30 PDT Modified files: sys/ia64/include ia64_cpu.h Log: Define a complete set of accessors for application and control registers. Revision Changes Path 1.15 +103 -235 src/sys/ia64/include/ia64_cpu.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 2: 5: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 8103F37B405; Tue, 9 Apr 2002 02:05:22 -0700 (PDT) Received: (from sada@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3995MD38333; Tue, 9 Apr 2002 02:05:22 -0700 (PDT) (envelope-from sada) Message-Id: <200204090905.g3995MD38333@freefall.freebsd.org> From: SADA Kenji Date: Tue, 9 Apr 2002 02:05:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/alias-fonts Makefile pkg-comment pkg-deinstall pkg-descr 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 sada 2002/04/09 02:05:22 PDT Modified files: japanese/alias-fonts Makefile pkg-comment pkg-deinstall pkg-descr pkg-install Log: Add new port alias-fonts, which obsoletes netscape-fonts. As an improvement, it looks like same fonts irrespective of size. It was renamed because it could be utilized with several Japanese apps, not only with Netscape. You can trace the discussion at: Submitted by: KOMATSU Shinichiro Revision Changes Path 1.12 +15 -11 ports/japanese/alias-fonts/Makefile 1.3 +1 -1 ports/japanese/alias-fonts/pkg-comment 1.3 +3 -1 ports/japanese/alias-fonts/pkg-deinstall 1.2 +1 -1 ports/japanese/alias-fonts/pkg-descr 1.4 +93 -18 ports/japanese/alias-fonts/pkg-install To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 2:21: 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 950CE37B404; Tue, 9 Apr 2002 02:20:56 -0700 (PDT) Received: (from sada@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g399Ku943037; Tue, 9 Apr 2002 02:20:56 -0700 (PDT) (envelope-from sada) Message-Id: <200204090920.g399Ku943037@freefall.freebsd.org> From: SADA Kenji Date: Tue, 9 Apr 2002 02:20:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/alias-fonts Makefile 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 sada 2002/04/09 02:20:56 PDT Modified files: japanese/alias-fonts Makefile pkg-install Log: Add fonts aliases. Submitted by: maintainer Submitted at: http://home.jp.FreeBSD.ORG/cgi-bin/showmail/ports-jp/12352 Revision Changes Path 1.13 +1 -1 ports/japanese/alias-fonts/Makefile 1.5 +25 -1 ports/japanese/alias-fonts/pkg-install To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 2:22: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 6F2D237B405; Tue, 9 Apr 2002 02:22:45 -0700 (PDT) Received: (from sada@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g399MjY43347; Tue, 9 Apr 2002 02:22:45 -0700 (PDT) (envelope-from sada) Message-Id: <200204090922.g399MjY43347@freefall.freebsd.org> From: SADA Kenji Date: Tue, 9 Apr 2002 02:22:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese 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/04/09 02:22:45 PDT Modified files: japanese Makefile Log: activate alias-fonts Revision Changes Path 1.416 +1 -0 ports/japanese/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 2: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 823F737B405; Tue, 9 Apr 2002 02:29:27 -0700 (PDT) Received: (from sada@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g399TRR44296; Tue, 9 Apr 2002 02:29:27 -0700 (PDT) (envelope-from sada) Message-Id: <200204090929.g399TRR44296@freefall.freebsd.org> From: SADA Kenji Date: Tue, 9 Apr 2002 02:29:27 -0700 (PDT) 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 sada 2002/04/09 02:29:27 PDT Modified files: . modules Log: ja-alias-fonts --> ports/japanese/alias-fonts Revision Changes Path 1.4965 +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 Apr 9 2:40: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 71EFF37B417; Tue, 9 Apr 2002 02:40:38 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g399ech46416; Tue, 9 Apr 2002 02:40:38 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204090940.g399ech46416@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 9 Apr 2002 02:40:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Mk bsd.sites.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 sobomax 2002/04/09 02:40:38 PDT Modified files: Mk bsd.sites.mk Log: Pessimise ftp.yggdrasil.com GNOME mirror, because it's currently unresolvable. Revision Changes Path 1.81 +2 -2 ports/Mk/bsd.sites.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 3: 4: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 683A437B417; Tue, 9 Apr 2002 03:04:09 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39A49o51000; Tue, 9 Apr 2002 03:04:09 -0700 (PDT) (envelope-from phk) Message-Id: <200204091004.g39A49o51000@freefall.freebsd.org> From: Poul-Henning Kamp Date: Tue, 9 Apr 2002 03:04:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dumpon dumpon.c src/sys/dev/null null.c src/sys/kern subr_disk.c src/sys/sys disk.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/04/09 03:04:09 PDT Modified files: sbin/dumpon dumpon.c sys/dev/null null.c sys/kern subr_disk.c sys/sys disk.h Log: Rename DIOCGKERNELDUMP to DIOCSKERNELDUMP as it strictly speaking is a "set" not a "get" operation. Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.16 +4 -4 src/sbin/dumpon/dumpon.c 1.10 +1 -1 src/sys/dev/null/null.c 1.54 +1 -1 src/sys/kern/subr_disk.c 1.22 +1 -1 src/sys/sys/disk.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 3:32:26 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.sat.t.u-tokyo.ac.jp (nat.keisu.t.u-tokyo.ac.jp [133.11.68.2]) by hub.freebsd.org (Postfix) with ESMTP id 54D8B37B404; Tue, 9 Apr 2002 03:32:19 -0700 (PDT) Received: from ett.sat.t.u-tokyo.ac.jp (ett.sat.t.u-tokyo.ac.jp [10.6.1.30]) by mail.sat.t.u-tokyo.ac.jp (Postfix) with ESMTP id 028042DAC2; Tue, 9 Apr 2002 19:32:17 +0900 (JST) Date: Tue, 09 Apr 2002 19:32:17 +0900 Message-ID: From: Hidetoshi Shimokawa To: Nick Hibma Cc: Josef Karthauser , Hidetoshi Shimokawa , "cvs-committers@FreeBSD.org" , "cvs-all@FreeBSD.org" Subject: Re: cvs commit: src/sys/cam/scsi scsi_all.c scsi_da.c In-Reply-To: <20020409102222.M374-100000@heather.van-laarhoven.org> References: <20020409102222.M374-100000@heather.van-laarhoven.org> User-Agent: Wanderlust/2.4.1 (Stand By Me) REMI/1.14.3 (Matsudai) FLIM/1.13.2 (Kasanui) APEL/10.3 MULE XEmacs/21.2 (beta19) (Shinjuku) (i386-unknown-freebsd3.2) X-Face: OE([KxWyJI0r[R~S/>7ia}SJ)i%a,$-9%7{*yihQk|]gl}2p#"oXmX/fT}Bn7:#j7i14gu$ jgR\S*&C3R/pJX List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Tue, 9 Apr 2002 10:23:24 +0200 (CEST), Nick Hibma wrote: > > > The umass driver returns the error just fine. See many postings on this > > > in the appropriate mailing lists. > > > > some drives(not driver) do, but some don't. > > Don't do what? Return an error on receiving a command they don't > understand? In that case your patch doesn't solve anything as the driver > doesn't add or remove any error messages. As fas as I observed at CAM layer, my USB HDD doesn't return any (CAM or SCSI) error for READ_6, but csio->resid is still positive. > > > At the moment the 6 byte commands are converted inside the umass driver > > > to their 10 byte equivalents, so there should be no need for your patch > > > in the first place (apart from the T_RBC bits of course, which looks > > > like a good thing to me). > > > > I made this patch for SBP-II devices. > > Did you try it with the umass driver from current? No. It's really fine if current umass doesn't need quirks, because many peopole suffer from 6 bytes command problem. As for SBP-II/Firewire, I don't like to treat raw scsi commands in SBP layer, so I decided to implement it in CAM layer. I think it's nice because some SCSI like protocols(umass, sbp, iSCSI?) can share the code. /\ Hidetoshi Shimokawa \/ simokawa@sat.t.u-tokyo.ac.jp PGP public key: http://www.sat.t.u-tokyo.ac.jp/~simokawa/pgp.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 3:35:42 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.sat.t.u-tokyo.ac.jp (nat.keisu.t.u-tokyo.ac.jp [133.11.68.2]) by hub.freebsd.org (Postfix) with ESMTP id 911BB37B416; Tue, 9 Apr 2002 03:35:39 -0700 (PDT) Received: from ett.sat.t.u-tokyo.ac.jp (ett.sat.t.u-tokyo.ac.jp [10.6.1.30]) by mail.sat.t.u-tokyo.ac.jp (Postfix) with ESMTP id B7B6F2DAC2; Tue, 9 Apr 2002 19:35:38 +0900 (JST) Date: Tue, 09 Apr 2002 19:35:38 +0900 Message-ID: From: Hidetoshi Shimokawa To: Nick Hibma Cc: Josef Karthauser , Hidetoshi Shimokawa , "cvs-committers@FreeBSD.org" , "cvs-all@FreeBSD.org" Subject: Re: cvs commit: src/sys/cam/scsi scsi_all.c scsi_da.c In-Reply-To: References: <20020409102222.M374-100000@heather.van-laarhoven.org> User-Agent: Wanderlust/2.4.1 (Stand By Me) REMI/1.14.3 (Matsudai) FLIM/1.13.2 (Kasanui) APEL/10.3 MULE XEmacs/21.2 (beta19) (Shinjuku) (i386-unknown-freebsd3.2) X-Face: OE([KxWyJI0r[R~S/>7ia}SJ)i%a,$-9%7{*yihQk|]gl}2p#"oXmX/fT}Bn7:#j7i14gu$ jgR\S*&C3R/pJX List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Tue, 09 Apr 2002 19:32:17 +0900, Hidetoshi Shimokawa wrote: > > Did you try it with the umass driver from current? > > No. It's really fine if current umass doesn't need quirks, because > many peopole suffer from 6 bytes command problem. BTW, when I tried to test -current umass about a monthe ago, the usb stack seems broken. It is stable again now? /\ Hidetoshi Shimokawa \/ simokawa@sat.t.u-tokyo.ac.jp PGP public key: http://www.sat.t.u-tokyo.ac.jp/~simokawa/pgp.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 3:55: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 7AC5437B404; Tue, 9 Apr 2002 03:55:14 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39AtEG63146; Tue, 9 Apr 2002 03:55:14 -0700 (PDT) (envelope-from phk) Message-Id: <200204091055.g39AtEG63146@freefall.freebsd.org> From: Poul-Henning Kamp Date: Tue, 9 Apr 2002 03:55:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin Makefile src/sbin/kget Makefile kget.8 kget.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/04/09 03:55:14 PDT Modified files: sbin Makefile Removed files: sbin/kget Makefile kget.8 kget.c Log: GC kget(1), userconfig is long dead. Revision Changes Path 1.102 +0 -1 src/sbin/Makefile 1.9 +0 -7 src/sbin/kget/Makefile (dead) 1.11 +0 -72 src/sbin/kget/kget.8 (dead) 1.8 +0 -119 src/sbin/kget/kget.c (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 3: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 A90D337B400; Tue, 9 Apr 2002 03:57:27 -0700 (PDT) Received: (from sada@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39AvRq63641; Tue, 9 Apr 2002 03:57:27 -0700 (PDT) (envelope-from sada) Message-Id: <200204091057.g39AvRq63641@freefall.freebsd.org> From: SADA Kenji Date: Tue, 9 Apr 2002 03:57:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/netscape4-communicator 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/04/09 03:57:27 PDT Modified files: japanese/netscape4-communicator Makefile Log: Rename depending port: bdf-fonts to alias-fonts. Revision Changes Path 1.40 +1 -1 ports/japanese/netscape4-communicator/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 4: 4: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 1D3C437B400; Tue, 9 Apr 2002 04:04:43 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39B4hK69112; Tue, 9 Apr 2002 04:04:43 -0700 (PDT) (envelope-from phk) Message-Id: <200204091104.g39B4hK69112@freefall.freebsd.org> From: Poul-Henning Kamp Date: Tue, 9 Apr 2002 04:04:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/include uc_device.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/04/09 04:04:42 PDT Removed files: sys/i386/include uc_device.h Log: machine/uc_device.h was only here for USERCONFIG and kget(1). We have neither anymore. Revision Changes Path 1.2 +0 -73 src/sys/i386/include/uc_device.h (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 4:18: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 E972837B41A; Tue, 9 Apr 2002 04:18:46 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39BIkW75566; Tue, 9 Apr 2002 04:18:46 -0700 (PDT) (envelope-from phk) Message-Id: <200204091118.g39BIkW75566@freefall.freebsd.org> From: Poul-Henning Kamp Date: Tue, 9 Apr 2002 04:18:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES src/sys/dev/eisa eisaconf.c src/sys/dev/fb vga.c src/sys/dev/kbd atkbd.c src/sys/i386/conf GENERIC NEWCARD src/sys/i386/i386 machdep.c src/sys/i386/include md_var.h src/sys/i386/isa ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/09 04:18:46 PDT Modified files: sys/alpha/alpha machdep.c sys/conf NOTES sys/dev/eisa eisaconf.c sys/dev/fb vga.c sys/dev/kbd atkbd.c sys/i386/conf GENERIC NEWCARD sys/i386/i386 machdep.c sys/i386/include md_var.h sys/i386/isa isa_device.h sys/i386/isa/pcvt pcvt_drv.c sys/ia64/ia64 machdep.c sys/isa pnpreg.h sys/pc98/conf GENERIC sys/pc98/i386 machdep.c sys/powerpc/powerpc machdep.c Log: GC various bits and pieces of USERCONFIG from all over the place. Revision Changes Path 1.176 +0 -12 src/sys/alpha/alpha/machdep.c 1.1018 +1 -6 src/sys/conf/NOTES 1.61 +1 -2 src/sys/dev/eisa/eisaconf.c 1.16 +2 -3 src/sys/dev/fb/vga.c 1.34 +1 -1 src/sys/dev/kbd/atkbd.c 1.338 +0 -2 src/sys/i386/conf/GENERIC 1.62 +0 -2 src/sys/i386/conf/NEWCARD 1.516 +0 -6 src/sys/i386/i386/machdep.c 1.49 +0 -1 src/sys/i386/include/md_var.h 1.75 +1 -2 src/sys/i386/isa/isa_device.h 1.72 +2 -2 src/sys/i386/isa/pcvt/pcvt_drv.c 1.91 +0 -12 src/sys/ia64/ia64/machdep.c 1.5 +1 -9 src/sys/isa/pnpreg.h 1.201 +0 -2 src/sys/pc98/conf/GENERIC 1.277 +0 -6 src/sys/pc98/i386/machdep.c 1.28 +0 -12 src/sys/powerpc/powerpc/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 4:23: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 1388937B41B; Tue, 9 Apr 2002 04:23:27 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39BNQw77826; Tue, 9 Apr 2002 04:23:26 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204091123.g39BNQw77826@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 9 Apr 2002 04:23:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/libbonoboui 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/04/09 04:23:26 PDT Modified files: x11-toolkits/libbonoboui Makefile Log: Fix excessive indentation. Revision Changes Path 1.2 +1 -1 ports/x11-toolkits/libbonoboui/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 4:39: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 0DE6237B41B; Tue, 9 Apr 2002 04:39:06 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39Bd5f83364; Tue, 9 Apr 2002 04:39:05 -0700 (PDT) (envelope-from ru) Message-Id: <200204091139.g39Bd5f83364@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 9 Apr 2002 04:39:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen getobjformat.c strtofflags.c src/usr.bin/colldef parse.y scan.l src/usr.bin/xinstall xinstall.c src/usr.bin/yacc closure.c error.c lalr.c lr0.c main.c mkpar.c output.c reader.c skeleton.c symtab.c verbose.c warshall.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/04/09 04:39:05 PDT Modified files: lib/libc/gen getobjformat.c strtofflags.c usr.bin/colldef parse.y scan.l usr.bin/xinstall xinstall.c usr.bin/yacc closure.c error.c lalr.c lr0.c main.c mkpar.c output.c reader.c skeleton.c symtab.c verbose.c warshall.c Log: No longer needed to #ifdef __FBSDID, this is now handled by Makefile.inc1. Revision Changes Path 1.6 +0 -2 src/lib/libc/gen/getobjformat.c 1.21 +0 -2 src/lib/libc/gen/strtofflags.c 1.24 +0 -3 src/usr.bin/colldef/parse.y 1.17 +0 -3 src/usr.bin/colldef/scan.l 1.50 +0 -3 src/usr.bin/xinstall/xinstall.c 1.12 +0 -2 src/usr.bin/yacc/closure.c 1.15 +0 -2 src/usr.bin/yacc/error.c 1.13 +0 -2 src/usr.bin/yacc/lalr.c 1.12 +0 -2 src/usr.bin/yacc/lr0.c 1.20 +0 -2 src/usr.bin/yacc/main.c 1.19 +0 -2 src/usr.bin/yacc/mkpar.c 1.26 +0 -2 src/usr.bin/yacc/output.c 1.16 +0 -2 src/usr.bin/yacc/reader.c 1.34 +0 -2 src/usr.bin/yacc/skeleton.c 1.12 +0 -2 src/usr.bin/yacc/symtab.c 1.13 +0 -2 src/usr.bin/yacc/verbose.c 1.12 +0 -2 src/usr.bin/yacc/warshall.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 4:58: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from ns2.freenix.org (ns2.freenix.org [194.117.194.82]) by hub.freebsd.org (Postfix) with ESMTP id D546B37B419; Tue, 9 Apr 2002 04:57:53 -0700 (PDT) Received: by ns2.freenix.org (Postfix/TLS, from userid 1002) id B95A212C7B7; Tue, 9 Apr 2002 13:57:52 +0200 (CEST) Date: Tue, 9 Apr 2002 13:57:52 +0200 From: Ollivier Robert To: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/sys ioccom.h Message-ID: <20020409115752.GA32649@ns2.freenix.org> Mail-Followup-To: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org References: <20020408210151.B18407@xor.obsecurity.org> <20020408.222429.22925353.imp@village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020408.222429.22925353.imp@village.org> User-Agent: Mutt/1.3.24i X-Operating-System: FreeBSD 5.0-CURRENT/IPv6 Sony VAIO Z505SX Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG According to M. Warner Losh: > screen needs to be fixed. here's a real patch: vim has the same problem and the solution is alost the same. -- Ollivier ROBERT -=- Eurocontrol EEC/ITM -=- Ollivier.Robert@eurocontrol.fr FreeBSD caerdonn.eurocontrol.fr 5.0-CURRENT #6: Thu Aug 10 17:36:11 CEST 2000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 5:25:11 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 9C1EF37B41B; Tue, 9 Apr 2002 05:25:06 -0700 (PDT) Received: from fledge.pr.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.6/8.11.6) with ESMTP id g39COxw83572; Tue, 9 Apr 2002 08:24:59 -0400 (EDT) (envelope-from rwatson@FreeBSD.org) Date: Tue, 9 Apr 2002 08:24:59 -0400 (EDT) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Jeff Roberson Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/sys/conf options src/sys/kern vfs_cache.c vfs_syscalls.c vfs_vnops.c In-Reply-To: <200204090514.g395EIw84686@freefall.freebsd.org> Message-ID: <20020409082409.K86521-100000@fledge.watson.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 There are still one or two unlocked instances of vop_getattr() lying around -- in particular, there may be one or two in the VM/swap code, and at least one more somewhere in kern/. Robert N M Watson FreeBSD Core Team, TrustedBSD Project robert@fledge.watson.org NAI Labs, Safeport Network Services On Mon, 8 Apr 2002, Jeff Roberson wrote: > jeff 2002/04/08 22:14:18 PDT > > Modified files: > sys/conf options > sys/kern vfs_cache.c vfs_syscalls.c vfs_vnops.c > Log: > Turn #ifdef LOOKUP_SHARED into #ifndef LOOKUP_EXCLUSIVE to enable this > behavior by default. Also, change the options line to reflect this. > > If there are no problems reported this will become the only behavior and the > knob will be removed in a month or so. > > Demanded by: obrien > > Revision Changes Path > 1.311 +2 -1 src/sys/conf/options > 1.71 +4 -4 src/sys/kern/vfs_cache.c > 1.246 +1 -1 src/sys/kern/vfs_syscalls.c > 1.143 +5 -5 src/sys/kern/vfs_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 Apr 9 5:26: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 6EB4837B419; Tue, 9 Apr 2002 05:26:53 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39CQrR94807; Tue, 9 Apr 2002 05:26:53 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204091226.g39CQrR94807@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 9 Apr 2002 05:26:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/libgnomeui 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/04/09 05:26:53 PDT Modified files: x11-toolkits/libgnomeui Makefile Log: Fix LIB_DEPENDS. Revision Changes Path 1.2 +1 -1 ports/x11-toolkits/libgnomeui/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 5:29: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 3011C37B404; Tue, 9 Apr 2002 05:29:10 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39CTAd95215; Tue, 9 Apr 2002 05:29:10 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204091229.g39CTAd95215@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 9 Apr 2002 05:29:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/libbonoboui 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 sobomax 2002/04/09 05:29:10 PDT Modified files: x11-toolkits/libbonoboui Makefile pkg-plist Log: Set --localstatedir and --datadir to be consistent with other GNOME core ports. Revision Changes Path 1.3 +2 -0 ports/x11-toolkits/libbonoboui/Makefile 1.2 +3 -2 ports/x11-toolkits/libbonoboui/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 Apr 9 5:55: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 70DF537B400; Tue, 9 Apr 2002 05:55:46 -0700 (PDT) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39Ctk102971; Tue, 9 Apr 2002 05:55:46 -0700 (PDT) (envelope-from joe) Message-Id: <200204091255.g39Ctk102971@freefall.freebsd.org> From: Josef Karthauser Date: Tue, 9 Apr 2002 05:55:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb 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/04/09 05:55:46 PDT Modified files: sys/dev/usb usb.c Log: Slight tidy up to reduce the differences between our version and NetBSD's. (No functional changes). Revision Changes Path 1.77 +9 -9 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 Tue Apr 9 6: 2: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 8F77437B42B; Tue, 9 Apr 2002 06:02:26 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39D2QV05151; Tue, 9 Apr 2002 06:02:26 -0700 (PDT) (envelope-from ru) Message-Id: <200204091302.g39D2QV05151@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 9 Apr 2002 06:02:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/lib/libreadline/readline 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/04/09 06:02:26 PDT Modified files: gnu/lib/libreadline/readline Makefile Log: -ltermcap is spelled -lncurses nowadays. Revision Changes Path 1.9 +3 -3 src/gnu/lib/libreadline/readline/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 6: 4: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 513E037B41D; Tue, 9 Apr 2002 06:04:33 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39D4Xa05531; Tue, 9 Apr 2002 06:04:33 -0700 (PDT) (envelope-from ru) Message-Id: <200204091304.g39D4Xa05531@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 9 Apr 2002 06:04:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libedit 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/04/09 06:04:32 PDT Modified files: lib/libedit Makefile Log: -ltermcap is spelled -lncurses nowadays. Revision Changes Path 1.25 +3 -3 src/lib/libedit/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 6:10: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 310FB37B405; Tue, 9 Apr 2002 06:10:15 -0700 (PDT) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39DAE310203; Tue, 9 Apr 2002 06:10:14 -0700 (PDT) (envelope-from sos) Message-Id: <200204091310.g39DAE310203@freefall.freebsd.org> From: Søren Schmidt Date: Tue, 9 Apr 2002 06:10:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-dma.c ata-pci.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 sos 2002/04/09 06:10:11 PDT Modified files: (Branch: RELENG_4) sys/dev/ata ata-dma.c ata-pci.c Log: MFC: Add yet another ATA133 Promise chip. Revision Changes Path 1.35.2.24 +1 -0 src/sys/dev/ata/ata-dma.c 1.32.2.6 +2 -0 src/sys/dev/ata/ata-pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 6:12: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 F287937B419; Tue, 9 Apr 2002 06:12:38 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39DCcL10731; Tue, 9 Apr 2002 06:12:38 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204091312.g39DCcL10731@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 9 Apr 2002 06:12:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/cli 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/04/09 06:12:38 PDT Modified files: lang/cli Makefile Log: Grammar nit: I_AGREE_TO_A_LICENSE_TERMS -> I_AGREE_TO_LICENSE_TERMS. Submitted by: mwlucas Revision Changes Path 1.5 +3 -3 ports/lang/cli/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 6:15:50 2002 Delivered-To: cvs-all@freebsd.org Received: from tao.org.uk (genius.tao.org.uk [212.135.162.51]) by hub.freebsd.org (Postfix) with ESMTP id B299D37B416; Tue, 9 Apr 2002 06:15:43 -0700 (PDT) Received: by tao.org.uk (Postfix, from userid 100) id 47F6BD0; Tue, 9 Apr 2002 14:14:36 +0100 (BST) Date: Tue, 9 Apr 2002 14:14:36 +0100 From: Josef Karthauser To: Hidetoshi Shimokawa Cc: Nick Hibma , Hidetoshi Shimokawa , "cvs-committers@FreeBSD.org" , "cvs-all@FreeBSD.org" Subject: Re: cvs commit: src/sys/cam/scsi scsi_all.c scsi_da.c Message-ID: <20020409131436.GA1653@genius.tao.org.uk> References: <20020409102222.M374-100000@heather.van-laarhoven.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dDRMvlgZJXvWKvBx" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.28i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --dDRMvlgZJXvWKvBx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 09, 2002 at 07:35:38PM +0900, Hidetoshi Shimokawa wrote: > At Tue, 09 Apr 2002 19:32:17 +0900, > Hidetoshi Shimokawa wrote: > > > Did you try it with the umass driver from current? > >=20 > > No. It's really fine if current umass doesn't need quirks, because > > many peopole suffer from 6 bytes command problem. >=20 > BTW, when I tried to test -current umass about a monthe ago, > the usb stack seems broken. It is stable again now? It's not completely broken ;). Joe --dDRMvlgZJXvWKvBx 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 iEYEARECAAYFAjyy6TsACgkQXVIcjOaxUBbQhQCg4WSck/2+EWUlsnKFc/MmLXbx LR8Anj04ChAqUtCcweqpV/2PYfVdbIsC =UDsC -----END PGP SIGNATURE----- --dDRMvlgZJXvWKvBx-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 6: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 D056937B405; Tue, 9 Apr 2002 06:19:10 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39DJA012194; Tue, 9 Apr 2002 06:19:10 -0700 (PDT) (envelope-from ru) Message-Id: <200204091319.g39DJA012194@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 9 Apr 2002 06:19:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.libnames.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/04/09 06:19:10 PDT Modified files: share/mk bsd.libnames.mk Log: Fixed broken dependency in lib/libpam/modules/pam_krb5. Revision Changes Path 1.53 +1 -0 src/share/mk/bsd.libnames.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 6:23: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 3C9B837B416; Tue, 9 Apr 2002 06:23:27 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39DNQ316577; Tue, 9 Apr 2002 06:23:26 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204091323.g39DNQ316577@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 9 Apr 2002 06:23:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/centericq 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/04/09 06:23:26 PDT Modified files: net/centericq Makefile Log: add libiconv dependence PR: 36924 Submitted by: Peter van Dijk Revision Changes Path 1.32 +2 -1 ports/net/centericq/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 6:52: 1 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 456AF37B416; Tue, 9 Apr 2002 06:51:54 -0700 (PDT) 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 XAA22723; Tue, 9 Apr 2002 23:51:52 +1000 Date: Tue, 9 Apr 2002 23:51:59 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/lib/libedit Makefile In-Reply-To: <200204091304.g39D4Xa05531@freefall.freebsd.org> Message-ID: <20020409235052.E3391-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, 9 Apr 2002, Ruslan Ermilov wrote: > ru 2002/04/09 06:04:32 PDT > > Modified files: > lib/libedit Makefile > Log: > -ltermcap is spelled -lncurses nowadays. That is a (bad) implementation detail. libedit only needs termcap features. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 7: 3: 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 C425337B404; Tue, 9 Apr 2002 07:03:03 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39E33245215; Tue, 9 Apr 2002 07:03:03 -0700 (PDT) (envelope-from phk) Message-Id: <200204091403.g39E33245215@freefall.freebsd.org> From: Poul-Henning Kamp Date: Tue, 9 Apr 2002 07:03:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys bio.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/04/09 07:03:03 PDT Modified files: sys/sys bio.h Log: Constifixion of bio_attribute. Revision Changes Path 1.114 +1 -1 src/sys/sys/bio.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 7:45:37 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail12.speakeasy.net [216.254.0.212]) by hub.freebsd.org (Postfix) with ESMTP id 53F4137B417 for ; Tue, 9 Apr 2002 07:45:23 -0700 (PDT) Received: (qmail 3617 invoked from network); 9 Apr 2002 14:45:14 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail12.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 9 Apr 2002 14:45:14 -0000 Received: from laptop.baldwin.cx (john@laptop.baldwin.cx [192.168.0.4]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g39Ejev49011; Tue, 9 Apr 2002 10:45:41 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <200204091118.g39BIkW75566@freefall.freebsd.org> Date: Tue, 09 Apr 2002 10:44:54 -0400 (EDT) From: John Baldwin To: Poul-Henning Kamp Subject: RE: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES 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-Apr-2002 Poul-Henning Kamp wrote: > phk 2002/04/09 04:18:46 PDT > > Modified files: > sys/alpha/alpha machdep.c > sys/conf NOTES > sys/dev/eisa eisaconf.c > sys/dev/fb vga.c > sys/dev/kbd atkbd.c > sys/i386/conf GENERIC NEWCARD > sys/i386/i386 machdep.c > sys/i386/include md_var.h > sys/i386/isa isa_device.h > sys/i386/isa/pcvt pcvt_drv.c > sys/ia64/ia64 machdep.c > sys/isa pnpreg.h > sys/pc98/conf GENERIC > sys/pc98/i386 machdep.c > sys/powerpc/powerpc machdep.c > Log: > GC various bits and pieces of USERCONFIG from all over the place. Have you implemented the replacement yet? :) In my mind it was kind of there as a reminder that we needed to do that. -- 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 Apr 9 7:45:37 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail17.speakeasy.net [216.254.0.217]) by hub.freebsd.org (Postfix) with ESMTP id 5856137B41A for ; Tue, 9 Apr 2002 07:45:23 -0700 (PDT) Received: (qmail 32052 invoked from network); 9 Apr 2002 14:45:14 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail17.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 9 Apr 2002 14:45:14 -0000 Received: from laptop.baldwin.cx (john@laptop.baldwin.cx [192.168.0.4]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g39Ejgv49027; Tue, 9 Apr 2002 10:45:42 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <200204090534.g395YNp87485@freefall.freebsd.org> Date: Tue, 09 Apr 2002 10:44:55 -0400 (EDT) From: John Baldwin To: "David E. O'Brien" Subject: RE: cvs commit: src/lib/libstand Makefile 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-Apr-2002 David E. O'Brien wrote: > obrien 2002/04/08 22:34:23 PDT > > Modified files: > lib/libstand Makefile > Log: > Break the sparc64 build. I expect those that complained about this commit > to fix the sparc64 case to their liking. Umm, -ffree-standing will be needed for all arch's when we go to gcc 3.1 and it doesn't break on 2.95. Thus, you have broken ia64 as well. Why? -- 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 Apr 9 7:54:57 2002 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by hub.freebsd.org (Postfix) with ESMTP id 37A1037B400; Tue, 9 Apr 2002 07:54:52 -0700 (PDT) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g39Es5Y9017394; Tue, 9 Apr 2002 16:54:05 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: John Baldwin Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES In-Reply-To: Your message of "Tue, 09 Apr 2002 10:44:54 EDT." Date: Tue, 09 Apr 2002 16:54:04 +0200 Message-ID: <17393.1018364044@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-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 , John Baldwin writes: >Have you implemented the replacement yet? :) In my mind it was kind of there >as a reminder that we needed to do that. No I havn't and neither have anybody else it seems. And quite frankly, it doesn't look like the market pressure is there, given the existence of the hints file. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 8:10: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 F30A737B405; Tue, 9 Apr 2002 08:10:16 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39F9ta39994; Tue, 9 Apr 2002 08:09:55 -0700 (PDT) (envelope-from phk) Message-Id: <200204091509.g39F9ta39994@freefall.freebsd.org> From: Poul-Henning Kamp Date: Tue, 9 Apr 2002 08:09:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys disk.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/04/09 08:09:55 PDT Modified files: sys/sys disk.h Log: Describe the generic disk ioctls in some detail. Sponsored by: DARPA & NAI Labs Revision Changes Path 1.23 +29 -2 src/sys/sys/disk.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 8: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 DE5B237B41A; Tue, 9 Apr 2002 08:12:05 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39FC5a41727; Tue, 9 Apr 2002 08:12:05 -0700 (PDT) (envelope-from phk) Message-Id: <200204091512.g39FC5a41727@freefall.freebsd.org> From: Poul-Henning Kamp Date: Tue, 9 Apr 2002 08:12:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom.h geom_io.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/04/09 08:12:05 PDT Modified files: sys/geom geom.h geom_io.c Log: Constifixation of attribute argument to g_io_[gs]etattr() Sponsored by: DARPA & NAI Labs Revision Changes Path 1.9 +2 -2 src/sys/geom/geom.h 1.6 +2 -2 src/sys/geom/geom_io.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 8:13: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 3465437B400; Tue, 9 Apr 2002 08:13:43 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39FDhh42778; Tue, 9 Apr 2002 08:13:43 -0700 (PDT) (envelope-from phk) Message-Id: <200204091513.g39FDhh42778@freefall.freebsd.org> From: Poul-Henning Kamp Date: Tue, 9 Apr 2002 08:13:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom.h geom_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 phk 2002/04/09 08:13:43 PDT Modified files: sys/geom geom.h geom_subr.c Log: Introduce the convenience function g_getattr() and make it DWIM. Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.10 +2 -0 src/sys/geom/geom.h 1.7 +13 -0 src/sys/geom/geom_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 Apr 9 8:18: 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 40AD437B416; Tue, 9 Apr 2002 08:18:03 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39FI3U45253; Tue, 9 Apr 2002 08:18:03 -0700 (PDT) (envelope-from phk) Message-Id: <200204091518.g39FI3U45253@freefall.freebsd.org> From: Poul-Henning Kamp Date: Tue, 9 Apr 2002 08:17:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_dev.c geom_pc98.c geom_sunlabel.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/04/09 08:17:59 PDT Modified files: sys/geom geom_dev.c geom_pc98.c geom_sunlabel.c Log: Various stylistic nit picking. Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.11 +2 -2 src/sys/geom/geom_dev.c 1.3 +8 -8 src/sys/geom/geom_pc98.c 1.7 +6 -6 src/sys/geom/geom_sunlabel.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 8:32:59 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 2B0E337B400; Tue, 9 Apr 2002 08:32:53 -0700 (PDT) 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 g39FWli97267; Tue, 9 Apr 2002 09:32:48 -0600 (MDT) (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 g39FWkc29464; Tue, 9 Apr 2002 09:32:47 -0600 (MDT) (envelope-from imp@village.org) Date: Tue, 09 Apr 2002 09:32:44 -0600 (MDT) Message-Id: <20020409.093244.03949888.imp@village.org> To: roberto@ns2.freenix.org Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/sys ioccom.h From: "M. Warner Losh" In-Reply-To: <20020409115752.GA32649@ns2.freenix.org> References: <20020408.222429.22925353.imp@village.org> <20020409115752.GA32649@ns2.freenix.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: <20020409115752.GA32649@ns2.freenix.org> Ollivier Robert writes: : According to M. Warner Losh: : > screen needs to be fixed. here's a real patch: : : vim has the same problem and the solution is alost the same. I've sent off a patch to the vim folks and am waiting to hear back from them. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 8:34:30 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 BC64737B416; Tue, 9 Apr 2002 08:34:23 -0700 (PDT) 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 g39FYMi97282; Tue, 9 Apr 2002 09:34:22 -0600 (MDT) (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 g39FYLc29476; Tue, 9 Apr 2002 09:34:21 -0600 (MDT) (envelope-from imp@village.org) Date: Tue, 09 Apr 2002 09:34:19 -0600 (MDT) Message-Id: <20020409.093419.28170072.imp@village.org> To: phk@critter.freebsd.dk Cc: jhb@FreeBSD.org, cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES From: "M. Warner Losh" In-Reply-To: <17393.1018364044@critter.freebsd.dk> References: <17393.1018364044@critter.freebsd.dk> 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: <17393.1018364044@critter.freebsd.dk> Poul-Henning Kamp writes: : In message , John Baldwin writes: : : >Have you implemented the replacement yet? :) In my mind it was kind of there : >as a reminder that we needed to do that. : : No I havn't and neither have anybody else it seems. Actually, that's not correct. There has been at least one 'C' implementation of USERCONFIG that people have ignored. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 8:35:12 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 C913C37B416; Tue, 9 Apr 2002 08:35:04 -0700 (PDT) Received: from localhost (localhost [::1]) by castle.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) with ESMTP/inet6 id g39FYhv02814; Wed, 10 Apr 2002 00:34:44 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) Cc: jhb@FreeBSD.org, cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org In-Reply-To: <17393.1018364044@critter.freebsd.dk> References: <17393.1018364044@critter.freebsd.dk> X-User-Agent: Mew/1.94.2 XEmacs/21.5 (bamboo) 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: 15 From: Makoto Matsushita To: phk@critter.freebsd.dk Subject: Re: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES Date: Wed, 10 Apr 2002 00:34:41 +0900 Message-Id: <20020410003441E.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 phk> No I havn't and neither have anybody else it seems. I doubt that nobody doesn't implement USERCONFIG replacement. Yokota-san wrote a patch for loader(8) in Oct/2001, which implements a new command 'userconfig'. It helps users to tweak hint.* loader variables. See his email posted to current@FreeBSD.org for more details: -- - 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 Tue Apr 9 8:41: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 9631337B405; Tue, 9 Apr 2002 08:41:17 -0700 (PDT) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39FfHj53819; Tue, 9 Apr 2002 08:41:17 -0700 (PDT) (envelope-from keramida) Message-Id: <200204091541.g39FfHj53819@freefall.freebsd.org> From: Giorgos Keramidas Date: Tue, 9 Apr 2002 08:41:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/arp arp.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 keramida 2002/04/09 08:41:06 PDT Modified files: (Branch: RELENG_4) usr.sbin/arp arp.8 Log: MFC: 1.18: Fix typo: It the -> If the. Not objected to by: ru Revision Changes Path 1.8.2.9 +1 -1 src/usr.sbin/arp/arp.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 8: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 C777937B428; Tue, 9 Apr 2002 08:43:33 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39FhXK55970; Tue, 9 Apr 2002 08:43:33 -0700 (PDT) (envelope-from phk) Message-Id: <200204091543.g39FhXK55970@freefall.freebsd.org> From: Poul-Henning Kamp Date: Tue, 9 Apr 2002 08:43:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys disk.h src/sys/kern subr_disk.c src/sys/geom geom_bsd.c geom_dev.c geom_disk.c geom_mbr.c geom_pc98.c geom_slice.c geom_slice.h geom_sunlabel.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/04/09 08:43:33 PDT Modified files: sys/sys disk.h sys/kern subr_disk.c sys/geom geom_bsd.c geom_dev.c geom_disk.c geom_mbr.c geom_pc98.c geom_slice.c geom_slice.h geom_sunlabel.c Log: Implement DIOCGFRONTSTUFF ioctl which reports how many bytes from the start of the device magic stuff might occupy. Sponsored by: DARPA & NAI Labs. Revision Changes Path 1.11 +11 -10 src/sys/geom/geom_bsd.c 1.12 +4 -1 src/sys/geom/geom_dev.c 1.9 +2 -0 src/sys/geom/geom_disk.c 1.7 +28 -15 src/sys/geom/geom_mbr.c 1.4 +8 -9 src/sys/geom/geom_pc98.c 1.9 +26 -3 src/sys/geom/geom_slice.c 1.5 +2 -0 src/sys/geom/geom_slice.h 1.8 +6 -5 src/sys/geom/geom_sunlabel.c 1.55 +4 -0 src/sys/kern/subr_disk.c 1.24 +8 -0 src/sys/sys/disk.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 9:26: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 CED4937B400; Tue, 9 Apr 2002 09:26:37 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39GQbL01708; Tue, 9 Apr 2002 09:26:37 -0700 (PDT) (envelope-from jhb) Message-Id: <200204091626.g39GQbL01708@freefall.freebsd.org> From: John Baldwin Date: Tue, 9 Apr 2002 09:26:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_intr.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/04/09 09:26:37 PDT Modified files: sys/kern kern_intr.c Log: Don't lock the ithread lock in ithread_create(). The ithread isn't on any lists or in any tables yet so there are no other references to it, thus we don't need to lock it. Revision Changes Path 1.73 +0 -2 src/sys/kern/kern_intr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 9:31:31 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail14.speakeasy.net [216.254.0.214]) by hub.freebsd.org (Postfix) with ESMTP id 39F5D37B419 for ; Tue, 9 Apr 2002 09:31:24 -0700 (PDT) Received: (qmail 16494 invoked from network); 9 Apr 2002 16:31:21 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail14.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 9 Apr 2002 16:31:21 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g39GW4v49319; Tue, 9 Apr 2002 12:32:04 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <17393.1018364044@critter.freebsd.dk> Date: Tue, 09 Apr 2002 12:31:11 -0400 (EDT) From: John Baldwin To: Poul-Henning Kamp Subject: Re: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES Cc: cvs-committers@FreeBSD.org, cvs-all@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-Apr-2002 Poul-Henning Kamp wrote: > In message , John Baldwin writes: > >>Have you implemented the replacement yet? :) In my mind it was kind of there >>as a reminder that we needed to do that. > > No I havn't and neither have anybody else it seems. > > And quite frankly, it doesn't look like the market pressure is there, > given the existence of the hints file. The replacement would specifically be a nice front-end to the hints concept that would manipulate the default hints set via the loader environment. It might need an extra metadata file to match device drivers mentioned in the hints to human-readable text strings, etc. -- 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 Apr 9 9:59: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 CF7BE37B416; Tue, 9 Apr 2002 09:59:17 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39GxHm18190; Tue, 9 Apr 2002 09:59:17 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204091659.g39GxHm18190@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 9 Apr 2002 09:59:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/amaya 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/04/09 09:59:17 PDT Modified files: www/amaya Makefile Log: take over maintainership PR: 36928 Submitted by: Adam Kranzel Revision Changes Path 1.25 +1 -1 ports/www/amaya/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 10: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 AD74B37B41E; Tue, 9 Apr 2002 10:19:20 -0700 (PDT) Received: (from mwlucas@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39HJK732395; Tue, 9 Apr 2002 10:19:20 -0700 (PDT) (envelope-from mwlucas) Message-Id: <200204091719.g39HJK732395@freefall.freebsd.org> From: Michael Lucas Date: Tue, 9 Apr 2002 10:19:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.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 mwlucas 2002/04/09 10:19:19 PDT Modified files: en_US.ISO8859-1/books/faq book.sgml Log: New FAQ: the infamous "(null)""(null)" pccardd error. Revision Changes Path 1.425 +25 -0 doc/en_US.ISO8859-1/books/faq/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 10:29: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 B5DA137B417; Tue, 9 Apr 2002 10:29:30 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39HTUw34240; Tue, 9 Apr 2002 10:29:30 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204091729.g39HTUw34240@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Tue, 9 Apr 2002 10:29:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/wicontrol wicontrol.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 asmodai 2002/04/09 10:29:30 PDT Modified files: usr.sbin/wicontrol wicontrol.8 Log: Change typo, 2347 -> 2047. Submitted by: moses Revision Changes Path 1.27 +2 -2 src/usr.sbin/wicontrol/wicontrol.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 10: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 E98FA37B405; Tue, 9 Apr 2002 10:45:28 -0700 (PDT) Received: (from dcs@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39HjSh36686; Tue, 9 Apr 2002 10:45:28 -0700 (PDT) (envelope-from dcs) Message-Id: <200204091745.g39HjSh36686@freefall.freebsd.org> From: "Daniel C. Sobral" Date: Tue, 9 Apr 2002 10:45:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/ficl Makefile dict.c ficl.c ficl.h fileaccess.c float.c loader.c math64.c math64.h prefix.c search.c stack.c testmain.c tools.c vm.c words.c src/sys/boot/ficl/alpha sysdep.h src/sys/boot/ficl/i386 sysdep.h src/sys/boot/ficl/ia64 ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dcs 2002/04/09 10:45:28 PDT Modified files: sys/boot/ficl Makefile dict.c ficl.c ficl.h loader.c math64.c math64.h prefix.c search.c stack.c testmain.c tools.c vm.c words.c sys/boot/ficl/alpha sysdep.h sys/boot/ficl/i386 sysdep.h sys/boot/ficl/ia64 sysdep.h sys/boot/ficl/softwords ifbrack.fr marker.fr oo.fr prefix.fr softcore.fr Added files: sys/boot/ficl fileaccess.c float.c sys/boot/ficl/softwords ficlclass.fr fileaccess.fr forml.fr Log: Upgrade to FICL version 3.02. Anything wrong is my fault, everything right is due Jon Mini. PR: 36308 Submitted by: Jon Mini MFC after: 4 weeks Revision Changes Path 1.27 +4 -3 src/sys/boot/ficl/Makefile 1.8 +38 -18 src/sys/boot/ficl/alpha/sysdep.h 1.13 +97 -18 src/sys/boot/ficl/dict.c 1.18 +106 -61 src/sys/boot/ficl/ficl.c 1.20 +257 -147 src/sys/boot/ficl/ficl.h 1.1 +425 -0 src/sys/boot/ficl/fileaccess.c (new) 1.1 +1064 -0 src/sys/boot/ficl/float.c (new) 1.7 +38 -18 src/sys/boot/ficl/i386/sysdep.h 1.2 +37 -15 src/sys/boot/ficl/ia64/sysdep.h 1.7 +10 -10 src/sys/boot/ficl/loader.c 1.4 +7 -9 src/sys/boot/ficl/math64.c 1.4 +7 -9 src/sys/boot/ficl/math64.h 1.2 +22 -14 src/sys/boot/ficl/prefix.c 1.2 +19 -21 src/sys/boot/ficl/search.c 1.1 +86 -0 src/sys/boot/ficl/softwords/ficlclass.fr (new) 1.1 +26 -0 src/sys/boot/ficl/softwords/fileaccess.fr (new) 1.1 +75 -0 src/sys/boot/ficl/softwords/forml.fr (new) 1.3 +7 -13 src/sys/boot/ficl/softwords/ifbrack.fr 1.2 +2 -0 src/sys/boot/ficl/softwords/marker.fr 1.4 +238 -127 src/sys/boot/ficl/softwords/oo.fr 1.2 +1 -1 src/sys/boot/ficl/softwords/prefix.fr 1.12 +35 -5 src/sys/boot/ficl/softwords/softcore.fr 1.5 +8 -10 src/sys/boot/ficl/stack.c 1.8 +65 -27 src/sys/boot/ficl/testmain.c 1.2 +220 -113 src/sys/boot/ficl/tools.c 1.9 +100 -21 src/sys/boot/ficl/vm.c 1.37 +951 -635 src/sys/boot/ficl/words.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 11: 1: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 A9B7037B400; Tue, 9 Apr 2002 11:01:26 -0700 (PDT) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39I1Qm39673; Tue, 9 Apr 2002 11:01:26 -0700 (PDT) (envelope-from silby) Message-Id: <200204091801.g39I1Qm39673@freefall.freebsd.org> From: Mike Silbersack Date: Tue, 9 Apr 2002 11:01:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet in.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 silby 2002/04/09 11:01:26 PDT Modified files: sys/netinet in.h Log: Update comments to reflect the recent ephemeral port range change. Noticed by: ru MFC After: 1 day Revision Changes Path 1.64 +4 -3 src/sys/netinet/in.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 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 0C1D037B417; Tue, 9 Apr 2002 11:03:19 -0700 (PDT) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39I3JH40054; Tue, 9 Apr 2002 11:03:19 -0700 (PDT) (envelope-from silby) Message-Id: <200204091803.g39I3JH40054@freefall.freebsd.org> From: Mike Silbersack Date: Tue, 9 Apr 2002 11:03:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 ip.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 silby 2002/04/09 11:03:18 PDT Modified files: share/man/man4 ip.4 Log: Update ip(4) manpage to reflect recent ephemeral port range change. Noticed by: ru MFC after: 1 day Revision Changes Path 1.25 +3 -3 src/share/man/man4/ip.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 11:16: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 0254437B404; Tue, 9 Apr 2002 11:16:38 -0700 (PDT) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39IGbJ46253; Tue, 9 Apr 2002 11:16:37 -0700 (PDT) (envelope-from silby) Message-Id: <200204091816.g39IGbJ46253@freefall.freebsd.org> From: Mike Silbersack Date: Tue, 9 Apr 2002 11:16:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING 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/04/09 11:16:37 PDT Modified files: (Branch: RELENG_4) . UPDATING Log: Add a note about the ephemeral port change. Approved by: imp Revision Changes Path 1.73.2.56 +9 -0 src/UPDATING To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 11:18: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 4626137B419; Tue, 9 Apr 2002 11:18:44 -0700 (PDT) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39IIiF46649; Tue, 9 Apr 2002 11:18:44 -0700 (PDT) (envelope-from silby) Message-Id: <200204091818.g39IIiF46649@freefall.freebsd.org> From: Mike Silbersack Date: Tue, 9 Apr 2002 11:18:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet in_pcb.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 silby 2002/04/09 11:18:44 PDT Modified files: (Branch: RELENG_4) sys/netinet in_pcb.c Log: MFC rev 1.101 Change the ephemeral port range from 1024-5000 to 49152-65535. Revision Changes Path 1.59.2.22 +2 -2 src/sys/netinet/in_pcb.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 11:19: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 E276837B400; Tue, 9 Apr 2002 11:19:31 -0700 (PDT) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39IJVw46731; Tue, 9 Apr 2002 11:19:31 -0700 (PDT) (envelope-from silby) Message-Id: <200204091819.g39IJVw46731@freefall.freebsd.org> From: Mike Silbersack Date: Tue, 9 Apr 2002 11:19:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet in.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 silby 2002/04/09 11:19:31 PDT Modified files: (Branch: RELENG_4) sys/netinet in.h Log: MFC rev 1.64 Update comments to reflect the recent ephemeral port range change. Revision Changes Path 1.48.2.6 +4 -3 src/sys/netinet/in.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 11:20: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 7397337B416; Tue, 9 Apr 2002 11:20:55 -0700 (PDT) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39IKrU46920; Tue, 9 Apr 2002 11:20:53 -0700 (PDT) (envelope-from silby) Message-Id: <200204091820.g39IKrU46920@freefall.freebsd.org> From: Mike Silbersack Date: Tue, 9 Apr 2002 11:20:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 ip.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 silby 2002/04/09 11:20:53 PDT Modified files: (Branch: RELENG_4) share/man/man4 ip.4 Log: MFC rev 1.25 Update ip(4) manpage to reflect recent ephemeral port range change. Revision Changes Path 1.13.2.8 +2 -2 src/share/man/man4/ip.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 11:25: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 E24D937B400; Tue, 9 Apr 2002 11:25:47 -0700 (PDT) Received: (from bmilekic@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39IPlu47806; Tue, 9 Apr 2002 11:25:47 -0700 (PDT) (envelope-from bmilekic) Message-Id: <200204091825.g39IPlu47806@freefall.freebsd.org> From: Bosko Milekic Date: Tue, 9 Apr 2002 11:25:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin Makefile src/share/examples/etc make.conf src/usr.bin 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 bmilekic 2002/04/09 11:25:47 PDT Modified files: bin Makefile share/examples/etc make.conf usr.bin Makefile Log: Introduce NO_RCMNDS flag so as to not compile rsh, rlogin, and rcp on will, and document in share/examples/etc/make.conf Submitted by: Aleksandar Simic MFC after: 1 week Revision Changes Path 1.20 +4 -1 src/bin/Makefile 1.184 +1 -0 src/share/examples/etc/make.conf 1.189 +5 -2 src/usr.bin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 11:27: 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 E05FB37B400; Tue, 9 Apr 2002 11:26:58 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39IQwp48087; Tue, 9 Apr 2002 11:26:58 -0700 (PDT) (envelope-from jhb) Message-Id: <200204091826.g39IQwp48087@freefall.freebsd.org> From: John Baldwin Date: Tue, 9 Apr 2002 11:26:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf NOTES src/sys/i386/conf NOTES X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/09 11:26:58 PDT Modified files: sys/conf NOTES sys/i386/conf NOTES Log: Round 2 of munging the MI/MD split in NOTES. Put almost all the device drivers with MI portions into the MI notes. Device drivers such as busses like the isa, eisa, and pci devices are now in the MD NOTES section even though they have some MI code. This will ensure that only the proper bits of device drivers will be included due to the optional bits dependent on the busses in sys/conf/files. This commit also takes the stance that since hints are ignored in NOTES anyways, it is ok to include hints for a bus that may not be present. Advice from: bde Revision Changes Path 1.1019 +359 -8 src/sys/conf/NOTES 1.1017 +6 -383 src/sys/i386/conf/NOTES To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 11:35: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail17.speakeasy.net [216.254.0.217]) by hub.freebsd.org (Postfix) with ESMTP id 0211737B416 for ; Tue, 9 Apr 2002 11:34:56 -0700 (PDT) Received: (qmail 32575 invoked from network); 9 Apr 2002 18:34:55 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail17.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 9 Apr 2002 18:34:55 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g39IZhv49646; Tue, 9 Apr 2002 14:35:43 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <200204091826.g39IQwp48087@freefall.freebsd.org> Date: Tue, 09 Apr 2002 14:34:46 -0400 (EDT) From: John Baldwin To: John Baldwin Subject: RE: cvs commit: src/sys/conf NOTES src/sys/i386/conf NOTES 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-Apr-2002 John Baldwin wrote: > jhb 2002/04/09 11:26:58 PDT > > Modified files: > sys/conf NOTES > sys/i386/conf NOTES > Log: > Round 2 of munging the MI/MD split in NOTES. Put almost all the device > drivers with MI portions into the MI notes. Device drivers such as busses > like the isa, eisa, and pci devices are now in the MD NOTES section even > though they have some MI code. This will ensure that only the proper bits > of device drivers will be included due to the optional bits dependent on > the busses in sys/conf/files. This commit also takes the stance that since > hints are ignored in NOTES anyways, it is ok to include hints for a bus > that may not be present. > > Advice from: bde > > Revision Changes Path > 1.1019 +359 -8 src/sys/conf/NOTES > 1.1017 +6 -383 src/sys/i386/conf/NOTES Probably the rules for where a driver or option should go should be something like this: 1) If it is implemented completely in either MI or MD files, it goes in either the MI or MD NOTES respectively. 2) If the code shares MI and MD parts it becomes trickier. If the MD parts are optional on something like the isa bus which is defined in MD NOTES and the MD code is an attachment or layer above the MI code, then the driver should be in the MI NOTES. Otherwise, the driver should be in the MD NOTES. Currently the only one I think I may have wrong is ACPI. It has lots of MI files but it depends on some MD files AFAIK, so I should probably move it back into the MD NOTES based on these rules and then it should be ok to start creating NOTES files for other architectures. Comments? -- 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 Apr 9 12: 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 A1CC937B416; Tue, 9 Apr 2002 12:00:54 -0700 (PDT) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39J0sf54937; Tue, 9 Apr 2002 12:00:54 -0700 (PDT) (envelope-from znerd) Message-Id: <200204091900.g39J0sf54937@freefall.freebsd.org> From: Ernst de Haan Date: Tue, 9 Apr 2002 12:00:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/jakarta-tomcat Makefile distinfo pkg-comment pkg-deinstall pkg-descr pkg-install pkg-plist ports/www/jakarta-tomcat/files daemonctl.c jakarta-tomcat.sh patch-aa 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/04/09 12:00:54 PDT Removed files: www/jakarta-tomcat Makefile distinfo pkg-comment pkg-deinstall pkg-descr pkg-install pkg-plist www/jakarta-tomcat/files daemonctl.c jakarta-tomcat.sh patch-aa tomcatctl.1 Log: This port moved to www/jakarta-tomcat4. Revision Changes Path 1.34 +0 -176 ports/www/jakarta-tomcat/Makefile (dead) 1.7 +0 -1 ports/www/jakarta-tomcat/distinfo (dead) 1.6 +0 -470 ports/www/jakarta-tomcat/files/daemonctl.c (dead) 1.4 +0 -32 ports/www/jakarta-tomcat/files/jakarta-tomcat.sh (dead) 1.5 +0 -44 ports/www/jakarta-tomcat/files/patch-aa (dead) 1.5 +0 -75 ports/www/jakarta-tomcat/files/tomcatctl.1 (dead) 1.3 +0 -1 ports/www/jakarta-tomcat/pkg-comment (dead) 1.5 +0 -45 ports/www/jakarta-tomcat/pkg-deinstall (dead) 1.2 +0 -5 ports/www/jakarta-tomcat/pkg-descr (dead) 1.2 +0 -46 ports/www/jakarta-tomcat/pkg-install (dead) 1.16 +0 -1074 ports/www/jakarta-tomcat/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 Tue Apr 9 12:10: 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 C4E3437B404; Tue, 9 Apr 2002 12:10:03 -0700 (PDT) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39JA3i60095; Tue, 9 Apr 2002 12:10:03 -0700 (PDT) (envelope-from znerd) Message-Id: <200204091910.g39JA3i60095@freefall.freebsd.org> From: Ernst de Haan Date: Tue, 9 Apr 2002 12:10:03 -0700 (PDT) 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 znerd 2002/04/09 12:10:03 PDT Modified files: . modules Log: jakarta-tomcat3 --> ports/www/jakarta-tomcat3 jakarta-tomcat4 --> ports/www/jakarta-tomcat4 Removed jakarta-tomcat Revision Changes Path 1.4966 +2 -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 Tue Apr 9 12:13: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 07FB137B41C; Tue, 9 Apr 2002 12:13:44 -0700 (PDT) Received: (from ambrisko@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39JDhj60843; Tue, 9 Apr 2002 12:13:44 -0700 (PDT) (envelope-from ambrisko) Message-Id: <200204091913.g39JDhj60843@freefall.freebsd.org> From: Doug Ambrisko Date: Tue, 9 Apr 2002 12:13:43 -0700 (PDT) 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 ambrisko 2002/04/09 12:13:43 PDT Modified files: libexec/tftpd tftpd.c Log: Better handle the case with a network that drops packets by retrying with a back off. This was discovered when Luigi sent me code to handle this for Etherboot. The Etherboot patch worked okay but FreeBSD's tftpd had trouble handling it and would fail to transfer the file since it would abort on send and not retry. Submitted by: luigi MFC after: 1 week Revision Changes Path 1.23 +13 -3 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 Tue Apr 9 12:40: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 1EC4937B41A; Tue, 9 Apr 2002 12:40:21 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39JeLt66201; Tue, 9 Apr 2002 12:40:21 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204091940.g39JeLt66201@freefall.freebsd.org> From: Tom Rhodes Date: Tue, 9 Apr 2002 12:40:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/advocacy myths.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 trhodes 2002/04/09 12:40:20 PDT Modified files: en/advocacy myths.sgml Log: Change a line to reflect my REAL email address. Revision Changes Path 1.2 +1 -1 www/en/advocacy/myths.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 12:43: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 288E437B416; Tue, 9 Apr 2002 12:43:20 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39JhGM66669; Tue, 9 Apr 2002 12:43:16 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204091943.g39JhGM66669@freefall.freebsd.org> From: Tom Rhodes Date: Tue, 9 Apr 2002 12:43:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/advocacy myths.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 trhodes 2002/04/09 12:43:16 PDT Modified files: en/advocacy myths.sgml Log: Fix a dead email link, not changed in last commit. Revision Changes Path 1.3 +1 -1 www/en/advocacy/myths.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 12:51: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 30A7937B416; Tue, 9 Apr 2002 12:51:51 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39Jppw71413; Tue, 9 Apr 2002 12:51:51 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204091951.g39Jppw71413@freefall.freebsd.org> From: Tom Rhodes Date: Tue, 9 Apr 2002 12:51:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dumpon dumpon.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 trhodes 2002/04/09 12:51:51 PDT Modified files: sbin/dumpon dumpon.8 Log: Update dumpon manual page to explain single/multi-user usability PR: 36465 No Objections from: ru Revision Changes Path 1.23 +4 -6 src/sbin/dumpon/dumpon.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 12: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 2A50537B405; Tue, 9 Apr 2002 12:58:39 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39JwdG83764; Tue, 9 Apr 2002 12:58:39 -0700 (PDT) (envelope-from jhb) Message-Id: <200204091958.g39JwdG83764@freefall.freebsd.org> From: John Baldwin Date: Tue, 9 Apr 2002 12:58:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_acct.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/04/09 12:58:39 PDT Modified files: sys/kern kern_acct.c Log: - Remove an early KSE diagnostic panic. The thread pointer here is always curthread. - We don't need Giant to do suser() checks now, so don't lock Giant until after the check. Revision Changes Path 1.43 +2 -4 src/sys/kern/kern_acct.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13: 1: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 2016A37B41B; Tue, 9 Apr 2002 13:00:41 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39K0fY87525; Tue, 9 Apr 2002 13:00:41 -0700 (PDT) (envelope-from jhb) Message-Id: <200204092000.g39K0fY87525@freefall.freebsd.org> From: John Baldwin Date: Tue, 9 Apr 2002 13:00:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: 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 jhb 2002/04/09 13:00:41 PDT Modified files: sys/kern kern_exit.c Log: We don't need Giant to read the pgrp ID since the proc lock has protected p_pgrp since the pgrp locking went in. We also don't need it to check for invalid values in the options argument to wait1(), so push Giant down slightly. Revision Changes Path 1.155 +3 -5 src/sys/kern/kern_exit.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13: 1: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 003D037B420; Tue, 9 Apr 2002 13:01:18 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39K1IN87777; Tue, 9 Apr 2002 13:01:18 -0700 (PDT) (envelope-from jhb) Message-Id: <200204092001.g39K1IN87777@freefall.freebsd.org> From: John Baldwin Date: Tue, 9 Apr 2002 13:01:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_fork.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/04/09 13:01:18 PDT Modified files: sys/kern kern_fork.c Log: Whitespace changes to wrap long lines. Revision Changes Path 1.146 +8 -4 src/sys/kern/kern_fork.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13: 4: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 2EBAB37B41B; Tue, 9 Apr 2002 13:04:11 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39K4BX90504; Tue, 9 Apr 2002 13:04:11 -0700 (PDT) (envelope-from jhb) Message-Id: <200204092004.g39K4BX90504@freefall.freebsd.org> From: John Baldwin Date: Tue, 9 Apr 2002 13:04:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet in_pcb.c in_pcb.h ip_divert.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/04/09 13:04:11 PDT Modified files: sys/netinet in_pcb.c in_pcb.h ip_divert.c Log: Change the first argument of prison_xinpcb() to be a thread pointer instead of a proc pointer so that prison_xinpcb() can use td_ucred. Revision Changes Path 1.103 +3 -3 src/sys/netinet/in_pcb.c 1.48 +1 -1 src/sys/netinet/in_pcb.h 1.58 +1 -2 src/sys/netinet/ip_divert.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13: 5: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 CFE0337B405; Tue, 9 Apr 2002 13:05:47 -0700 (PDT) Received: (from julian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39K5lb92379; Tue, 9 Apr 2002 13:05:47 -0700 (PDT) (envelope-from julian) Message-Id: <200204092005.g39K5lb92379@freefall.freebsd.org> From: Julian Elischer Date: Tue, 9 Apr 2002 13:05:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph netgraph.h ng_etf.c ng_etf.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 julian 2002/04/09 13:05:47 PDT Modified files: (Branch: RELENG_4) sys/netgraph netgraph.h Added files: (Branch: RELENG_4) sys/netgraph ng_etf.c ng_etf.h Log: MFC the ethertype filter node. also fix braino in netgraph.h Revision Changes Path 1.6.2.6 +2 -2 src/sys/netgraph/netgraph.h 1.1.2.1 +498 -0 src/sys/netgraph/ng_etf.c (new) 1.1.2.1 +92 -0 src/sys/netgraph/ng_etf.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13: 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 8C9A137B405; Tue, 9 Apr 2002 13:06:39 -0700 (PDT) Received: (from julian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39K6dI95501; Tue, 9 Apr 2002 13:06:39 -0700 (PDT) (envelope-from julian) Message-Id: <200204092006.g39K6dI95501@freefall.freebsd.org> From: Julian Elischer Date: Tue, 9 Apr 2002 13:06:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules/netgraph/etf 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 julian 2002/04/09 13:06:39 PDT Added files: (Branch: RELENG_4) sys/modules/netgraph/etf Makefile Log: MFC ethertype filter node moadule makefile. Revision Changes Path 1.2.2.1 +9 -0 src/sys/modules/netgraph/etf/Makefile (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13: 8: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 0D3C637B41E; Tue, 9 Apr 2002 13:08:10 -0700 (PDT) Received: (from mi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39K8Ap96261; Tue, 9 Apr 2002 13:08:10 -0700 (PDT) (envelope-from mi) Message-Id: <200204092008.g39K8Ap96261@freefall.freebsd.org> From: Mikhail Teterin Date: Tue, 9 Apr 2002 13:08:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/palm/coldsync Makefile 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 mi 2002/04/09 13:08:09 PDT Modified files: palm/coldsync Makefile pkg-descr Log: Update the MASTER_SITES (per maintainer's request) and the WWW tag (my own initiative). Submitted by: maintainer Revision Changes Path 1.14 +1 -1 ports/palm/coldsync/Makefile 1.5 +1 -1 ports/palm/coldsync/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13:10: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 2E11B37B404; Tue, 9 Apr 2002 13:10:42 -0700 (PDT) Received: (from mi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39KAgi98538; Tue, 9 Apr 2002 13:10:42 -0700 (PDT) (envelope-from mi) Message-Id: <200204092010.g39KAgi98538@freefall.freebsd.org> From: Mikhail Teterin Date: Tue, 9 Apr 2002 13:10:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/qtella 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 mi 2002/04/09 13:10:42 PDT Modified files: net/qtella Makefile distinfo pkg-plist Log: Upgrade from 0.4.0 to 0.5.1 Approved by: maintainer Revision Changes Path 1.3 +1 -1 ports/net/qtella/Makefile 1.3 +1 -1 ports/net/qtella/distinfo 1.3 +6 -0 ports/net/qtella/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 Apr 9 13:11: 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 D219837B41F; Tue, 9 Apr 2002 13:10:46 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39KAkf98593; Tue, 9 Apr 2002 13:10:46 -0700 (PDT) (envelope-from jhb) Message-Id: <200204092010.g39KAkf98593@freefall.freebsd.org> From: John Baldwin Date: Tue, 9 Apr 2002 13:10:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linprocfs linprocfs.c src/sys/compat/pecoff imgact_pecoff.c src/sys/kern imgact_aout.c kern_proc.c 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 jhb 2002/04/09 13:10:46 PDT Modified files: sys/compat/linprocfs linprocfs.c sys/compat/pecoff imgact_pecoff.c sys/kern imgact_aout.c kern_proc.c sys_process.c Log: - Change fill_kinfo_proc() to require that the process is locked when it is called. - Change sysctl_out_proc() to require that the process is locked when it is called and to drop the lock before it returns. If this proves too complex we can change sysctl_out_proc() to simply acquire the lock at the very end and have the calling code drop the lock right after it returns. - Lock the process we are going to export before the p_cansee() in the loop in sysctl_kern_proc() and hold the lock until we call sysctl_out_proc(). - Don't call p_cansee() on the process about to be exported twice in the aforementioned loop. Revision Changes Path 1.50 +2 -2 src/sys/compat/linprocfs/linprocfs.c 1.15 +5 -2 src/sys/compat/pecoff/imgact_pecoff.c 1.77 +2 -0 src/sys/kern/imgact_aout.c 1.128 +20 -14 src/sys/kern/kern_proc.c 1.88 +2 -0 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 Tue Apr 9 13:14: 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 0A0FE37B41A; Tue, 9 Apr 2002 13:13:50 -0700 (PDT) Received: (from sada@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39KDoW02322; Tue, 9 Apr 2002 13:13:50 -0700 (PDT) (envelope-from sada) Message-Id: <200204092013.g39KDoW02322@freefall.freebsd.org> From: SADA Kenji Date: Tue, 9 Apr 2002 13:13:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/mozilla-jlp 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/04/09 13:13:49 PDT Modified files: japanese/mozilla-jlp Makefile Log: depending port ja-bdf-fonts was renamed to ja-alias-fonts Revision Changes Path 1.32 +1 -1 ports/japanese/mozilla-jlp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13:17: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 CFDEB37B400; Tue, 9 Apr 2002 13:17:17 -0700 (PDT) Received: (from julian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39KHHn06578; Tue, 9 Apr 2002 13:17:17 -0700 (PDT) (envelope-from julian) Message-Id: <200204092017.g39KHHn06578@freefall.freebsd.org> From: Julian Elischer Date: Tue, 9 Apr 2002 13:17:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 ng_etf.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 julian 2002/04/09 13:17:17 PDT Added files: (Branch: RELENG_4) share/man/man4 ng_etf.4 Log: MFC the man page for the etf (ethertype filter) netgraph node. Revision Changes Path 1.3.2.1 +154 -0 src/share/man/man4/ng_etf.4 (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13:20:39 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 C36AF37B41D; Tue, 9 Apr 2002 13:19:53 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g39KJqYm036688; Tue, 9 Apr 2002 13:19:52 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g39KIbur036665; Tue, 9 Apr 2002 13:18:37 -0700 (PDT) Date: Tue, 9 Apr 2002 13:18:37 -0700 From: "David O'Brien" To: Alfred Perlstein Cc: "M. Warner Losh" , jhb@FreeBSD.org, kris@obsecurity.org, cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/sys ioccom.h Message-ID: <20020409131837.D35868@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20020408210151.B18407@xor.obsecurity.org> <20020408.222429.22925353.imp@village.org> <20020409064242.GJ93885@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: <20020409064242.GJ93885@elvis.mu.org>; from bright@mu.org on Mon, Apr 08, 2002 at 11:42:42PM -0700 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, Apr 08, 2002 at 11:42:42PM -0700, Alfred Perlstein wrote: > > : No, I already said that I reverted the ()'s locally and it still failed to > > : compile. Yes, I was editing /usr/include/sys/ioccom.h and not > > : /sys/sys/ioccom.h. I also tried putting __P() back in, but it didn't build > > : then either. I'm wondering if the pollution in screen's osdef.h is new? ... > > The real problem is at osdef.h:81: > > extern int ioctl __P((int, int, char *)); > > > > Note the two problems with this: > > 1) int doesn't match unsgined long > > 2) char * doesn't match ... > > > > screen needs to be fixed. here's a real patch: ... > I don't have the emails offhand, but the screen people were pretty > quick to respond to a help message from me. Have you contacted them > about bringing in this fix? While fixing screen is a good thing to do. Nobody seems to be able to determine just WHICH commit broke building it. I think we should determine that before "fixing" it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13: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 1519237B47A; Tue, 9 Apr 2002 13:20:37 -0700 (PDT) Received: (from sada@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39KKao10937; Tue, 9 Apr 2002 13:20:36 -0700 (PDT) (envelope-from sada) Message-Id: <200204092020.g39KKao10937@freefall.freebsd.org> From: SADA Kenji Date: Tue, 9 Apr 2002 13:20:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese Makefile ports/japanese/bdf-fonts Makefile pkg-comment pkg-deinstall pkg-descr pkg-install 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 sada 2002/04/09 13:20:36 PDT Modified files: japanese Makefile Removed files: japanese/bdf-fonts Makefile pkg-comment pkg-deinstall pkg-descr pkg-install pkg-plist Log: ja/bdf-fonts is replaced with ja/alias-fonts which was repo.copied from ja/netscape-fonts. Revision Changes Path 1.417 +0 -1 ports/japanese/Makefile 1.3 +0 -40 ports/japanese/bdf-fonts/Makefile (dead) 1.2 +0 -1 ports/japanese/bdf-fonts/pkg-comment (dead) 1.2 +0 -22 ports/japanese/bdf-fonts/pkg-deinstall (dead) 1.2 +0 -1 ports/japanese/bdf-fonts/pkg-descr (dead) 1.3 +0 -142 ports/japanese/bdf-fonts/pkg-install (dead) 1.2 +0 -1 ports/japanese/bdf-fonts/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 Tue Apr 9 13:23: 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 0D2F337B434; Tue, 9 Apr 2002 13:22:42 -0700 (PDT) Received: (from sada@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39KMgv12804; Tue, 9 Apr 2002 13:22:42 -0700 (PDT) (envelope-from sada) Message-Id: <200204092022.g39KMgv12804@freefall.freebsd.org> From: SADA Kenji Date: Tue, 9 Apr 2002 13:22:41 -0700 (PDT) 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 sada 2002/04/09 13:22:41 PDT Modified files: . modules Log: remove ja-bdf-fonts entry which was replaced with ja-alias-fonts. Revision Changes Path 1.4967 +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 Tue Apr 9 13:24: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 91BB237B404; Tue, 9 Apr 2002 13:24:23 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39KONk15280; Tue, 9 Apr 2002 13:24:23 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204092024.g39KONk15280@freefall.freebsd.org> From: Tom Rhodes Date: Tue, 9 Apr 2002 13:24:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/chown chown.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 trhodes 2002/04/09 13:24:23 PDT Modified files: usr.sbin/chown chown.8 Log: chown(8) was not describing symlinks correctly, fixed. PR: 36447 No objections from: ru MFC after: 3 days Revision Changes Path 1.18 +7 -4 src/usr.sbin/chown/chown.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13:27:41 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail13.speakeasy.net [216.254.0.213]) by hub.freebsd.org (Postfix) with ESMTP id D975237B416 for ; Tue, 9 Apr 2002 13:27:30 -0700 (PDT) Received: (qmail 11044 invoked from network); 9 Apr 2002 20:27:29 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail13.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 9 Apr 2002 20:27:29 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g39KSHv50041; Tue, 9 Apr 2002 16:28:17 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <20020409131837.D35868@dragon.nuxi.com> Date: Tue, 09 Apr 2002 16:27:20 -0400 (EDT) From: John Baldwin To: "David O'Brien" Subject: Re: cvs commit: src/sys/sys ioccom.h Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, kris@obsecurity.org, "M. Warner Losh" , Alfred Perlstein Sender: owner-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-Apr-2002 David O'Brien wrote: > On Mon, Apr 08, 2002 at 11:42:42PM -0700, Alfred Perlstein wrote: >> > : No, I already said that I reverted the ()'s locally and it still failed >> > : to >> > : compile. Yes, I was editing /usr/include/sys/ioccom.h and not >> > : /sys/sys/ioccom.h. I also tried putting __P() back in, but it didn't >> > : build >> > : then either. I'm wondering if the pollution in screen's osdef.h is new? > ... >> > The real problem is at osdef.h:81: >> > extern int ioctl __P((int, int, char *)); >> > >> > Note the two problems with this: >> > 1) int doesn't match unsgined long >> > 2) char * doesn't match ... >> > >> > screen needs to be fixed. here's a real patch: > ... >> I don't have the emails offhand, but the screen people were pretty >> quick to respond to a help message from me. Have you contacted them >> about bringing in this fix? > > While fixing screen is a good thing to do. Nobody seems to be able to > determine just WHICH commit broke building it. I think we should determine > that before "fixing" it. Warner did already. The de- __P()'ing did because the regex they use to find function prototypes in the system headers didn't match the de- __P()'d prototypes. This was the same breakage that broke hylafax and vim according to Warner's earlier e-mail. -- 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 Apr 9 13:38: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 146F837B41A; Tue, 9 Apr 2002 13:38:30 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39KcUV27865; Tue, 9 Apr 2002 13:38:30 -0700 (PDT) (envelope-from obrien) Message-Id: <200204092038.g39KcUV27865@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 9 Apr 2002 13:38:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libstand 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/04/09 13:38:29 PDT Modified files: lib/libstand Makefile Log: Use -ffreestanding. It is REQUIRED by GCC 3.1 on all architectures. I don't like putting this very-GCC centric option here; but no one as given a better idea of handling it. Reviewed by: jhb Revision Changes Path 1.34 +2 -2 src/lib/libstand/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13:40: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 A27B237B419; Tue, 9 Apr 2002 13:40:24 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39KeO528230; Tue, 9 Apr 2002 13:40:24 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204092040.g39KeO528230@freefall.freebsd.org> From: Tom Rhodes Date: Tue, 9 Apr 2002 13:40:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/compress compress.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 trhodes 2002/04/09 13:40:24 PDT Modified files: usr.bin/compress compress.1 Log: compress(1) has an erroneous description of zcat, fixed. PR: 36453 No objections from: ru Revision Changes Path 1.12 +8 -9 src/usr.bin/compress/compress.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13:46:54 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 8138A37B405; Tue, 9 Apr 2002 13:46:47 -0700 (PDT) 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 g39Kkii98657; Tue, 9 Apr 2002 14:46:44 -0600 (MDT) (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 g39Kkgc31451; Tue, 9 Apr 2002 14:46:42 -0600 (MDT) (envelope-from imp@village.org) Date: Tue, 09 Apr 2002 14:46:36 -0600 (MDT) Message-Id: <20020409.144636.59877321.imp@village.org> To: obrien@FreeBSD.org Cc: bright@mu.org, jhb@FreeBSD.org, kris@obsecurity.org, cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/sys ioccom.h From: "M. Warner Losh" In-Reply-To: <20020409131837.D35868@dragon.nuxi.com> References: <20020408.222429.22925353.imp@village.org> <20020409064242.GJ93885@elvis.mu.org> <20020409131837.D35868@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: <20020409131837.D35868@dragon.nuxi.com> "David O'Brien" writes: : While fixing screen is a good thing to do. Nobody seems to be able to : determine just WHICH commit broke building it. I think we should determine : that before "fixing" it. The problem was tracked down. The config programs are doing bogus things to make sure that the prototype is defined. That's why things aren't working. They are using a regular expression that doesn't get all possible legal prototypes. I sent a rather extensive message to cvs-commmitters with the details last night. I don't know about people, but I am able to determine which fix broke it, why and what {screen,ddd,vim,hylafax} are doing that is bogus. They all seem to have code that was copied in some way from some original source (well, the ddd problem is due to bugs in autogen): sed < $srcdir/osdef.h.in -n -e '/^extern/s@.*[)* ][)* ]*\([^ *]*\) __P.*@/[)*, ]\1[ (]/i\\\ \\/\\[^a-zA-Z_\\]\1 __P\\/d@p' > osdef1.sed is the root of the evil for screen. This should read something more like the following: sed < $srcdir/osdef.h.in -n -e '/^extern/s@.*[)* ][)* ]*\([^ *]*\) __P.*@/[)*, ][(]*\1[)]*[ (]/i\\\ \\/\\[^a-zA-Z_\\]\1 __P\\/d@p' > osdef1.sed to have a chance of working. I'm starting to think that too many people are doing too many bogus things in their autoconfig stuff, so that we should revert back to the 1.10 version and fix the set of ports that that breaks. This isn't a 'C' language issue, but rather a brain-dead automatic configuration issue. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13:47: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 725A537B417; Tue, 9 Apr 2002 13:47:17 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39KlHq35536; Tue, 9 Apr 2002 13:47:17 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204092047.g39KlHq35536@freefall.freebsd.org> From: Tom Rhodes Date: Tue, 9 Apr 2002 13:47:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/timed/timed timed.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 trhodes 2002/04/09 13:47:17 PDT Modified files: usr.sbin/timed/timed timed.8 Log: timed(8) manual page has some incorrect grammer PR: 36457 No objections from: ru Revision Changes Path 1.12 +3 -5 src/usr.sbin/timed/timed/timed.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13:54:31 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 19DA537B417; Tue, 9 Apr 2002 13:54:28 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g39KsQYm037053; Tue, 9 Apr 2002 13:54:26 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g39KrBRc037048; Tue, 9 Apr 2002 13:53:11 -0700 (PDT) Date: Tue, 9 Apr 2002 13:53:11 -0700 From: "David O'Brien" To: "M. Warner Losh" Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/sys ioccom.h Message-ID: <20020409135311.C36893@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20020408.222429.22925353.imp@village.org> <20020409064242.GJ93885@elvis.mu.org> <20020409131837.D35868@dragon.nuxi.com> <20020409.144636.59877321.imp@village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020409.144636.59877321.imp@village.org>; from imp@village.org on Tue, Apr 09, 2002 at 02:46:36PM -0600 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, Apr 09, 2002 at 02:46:36PM -0600, M. Warner Losh wrote: > The problem was tracked down. The config programs are doing bogus I did not understand your earlier message on 1st read. I've read it again and now understand what you were saying. Thanks for the detective work. That will help a lot to getting the author's of the various pieces of software to change their code. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13:56:29 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 2DA7437B404; Tue, 9 Apr 2002 13:56:22 -0700 (PDT) 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 g39KuCi98758; Tue, 9 Apr 2002 14:56:12 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id g39KuCc31597; Tue, 9 Apr 2002 14:56:12 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200204092056.g39KuCc31597@harmony.village.org> To: John Baldwin Subject: Re: cvs commit: src/sys/sys ioccom.h Cc: "David O'Brien" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, kris@obsecurity.org, Alfred Perlstein In-reply-to: Your message of "Tue, 09 Apr 2002 16:27:20 EDT." References: Date: Tue, 09 Apr 2002 14:56:12 -0600 From: Warner Losh Sender: owner-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 John Baldwin writes: : Warner did already. The de- __P()'ing did because the regex they use to find : function prototypes in the system headers didn't match the de- __P()'d : prototypes. This was the same breakage that broke hylafax and vim according to : Warner's earlier e-mail. Actually, that's not entirely accurate. The de-__P()ing caused a problem with programs that unwisely defined an ioctl macro before include sys/ioctl.h. As a work around for that, I made the prototype int (ioctl)(etc); rather than put the __P() back. This caused an unwanted side effect of chaning the regular expression that prototypes from system headers matched slightly, which broke some programs automatic configuraiton mechanisms when they couldn't find them in the pre-processed output. Since __P() resulted in something that did match the pre-processed output, it was the 'safest' of all the definitions in the face of non-conformant programs/proceedures in the world. I now have a good "why" for David's change, and am happy with it if he wants to make it. I would have never in a million years thought that there were so many programs using a 'broken' regular expression for thier autoconfiguration sequences. Given that I've found at least 4 variations on this theme, I feel like I'm holding back the tide by insisting on the int (ioctl) version. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 13:59: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 B070237B416; Tue, 9 Apr 2002 13:59:34 -0700 (PDT) Received: (from dcs@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39KxYq41649; Tue, 9 Apr 2002 13:59:34 -0700 (PDT) (envelope-from dcs) Message-Id: <200204092059.g39KxYq41649@freefall.freebsd.org> From: "Daniel C. Sobral" Date: Tue, 9 Apr 2002 13:59:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/common interp_forth.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 dcs 2002/04/09 13:59:34 PDT Modified files: sys/boot/common interp_forth.c Log: Upgrade FICL to 3.02. Forgot this one, sorry. PR: 36308 Submitted by: dcs Revision Changes Path 1.22 +7 -6 src/sys/boot/common/interp_forth.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 14: 0:22 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 787F137B404; Tue, 9 Apr 2002 14:00:10 -0700 (PDT) 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 g39L08i98834; Tue, 9 Apr 2002 15:00:08 -0600 (MDT) (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 g39L07c31641; Tue, 9 Apr 2002 15:00:07 -0600 (MDT) (envelope-from imp@village.org) Date: Tue, 09 Apr 2002 15:00:03 -0600 (MDT) Message-Id: <20020409.150003.121190777.imp@village.org> To: obrien@FreeBSD.org Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/sys ioccom.h From: "M. Warner Losh" In-Reply-To: <20020409135311.C36893@dragon.nuxi.com> References: <20020409131837.D35868@dragon.nuxi.com> <20020409.144636.59877321.imp@village.org> <20020409135311.C36893@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: <20020409135311.C36893@dragon.nuxi.com> "David O'Brien" writes: : On Tue, Apr 09, 2002 at 02:46:36PM -0600, M. Warner Losh wrote: : > The problem was tracked down. The config programs are doing bogus : : I did not understand your earlier message on 1st read. I've read it : again and now understand what you were saying. : : Thanks for the detective work. That will help a lot to getting the : author's of the various pieces of software to change their code. Yes, but it doesn't help that there appear to be at least three different ways that this is done (maybe 4) and one of them is now in autoconf. The vim/screen way is easy enough to fix, since those are the only programs that do that, but hylafax does it one way, and autoconf does it another. Getting autoconf fixed may be hard or easy (I don't know for sure how hard it is to get the fix into the distribution, since I've not dealt with them). This makes me uneasy and seems a high price to pay just to have X11 compile. It was a good idea, but one which I don't think is in line with common practice to justify the pain to our users. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 14: 5: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 834A537B400; Tue, 9 Apr 2002 14:05:18 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39L5Ik43836; Tue, 9 Apr 2002 14:05:18 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204092105.g39L5Ik43836@freefall.freebsd.org> From: Tom Rhodes Date: Tue, 9 Apr 2002 14:05:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man8 intro.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 trhodes 2002/04/09 14:05:18 PDT Modified files: share/man/man8 intro.8 Log: intro(8) is lacking a command status explanation, added. PR: 36448 No objections from: ru MFC after: 3 days Revision Changes Path 1.6 +12 -1 src/share/man/man8/intro.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 14: 9: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail11.speakeasy.net [216.254.0.211]) by hub.freebsd.org (Postfix) with ESMTP id 9400737B419 for ; Tue, 9 Apr 2002 14:08:57 -0700 (PDT) Received: (qmail 30659 invoked from network); 9 Apr 2002 21:08:56 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail11.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 9 Apr 2002 21:08:56 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g39L9iv50199; Tue, 9 Apr 2002 17:09:44 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <200204092056.g39KuCc31597@harmony.village.org> Date: Tue, 09 Apr 2002 17:08:47 -0400 (EDT) From: John Baldwin To: Warner Losh Subject: Re: cvs commit: src/sys/sys ioccom.h Cc: Alfred Perlstein , kris@obsecurity.org, cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, "David O'Brien" Sender: owner-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-Apr-2002 Warner Losh wrote: > In message John Baldwin writes: >: Warner did already. The de- __P()'ing did because the regex they use to >: find >: function prototypes in the system headers didn't match the de- __P()'d >: prototypes. This was the same breakage that broke hylafax and vim according >: to >: Warner's earlier e-mail. > > Actually, that's not entirely accurate. The de-__P()ing caused a > problem with programs that unwisely defined an ioctl macro before > include sys/ioctl.h. As a work around for that, I made the prototype > int (ioctl)(etc); rather than put the __P() back. This caused an > unwanted side effect of chaning the regular expression that prototypes > from system headers matched slightly, which broke some programs > automatic configuraiton mechanisms when they couldn't find them in the > pre-processed output. Since __P() resulted in something that did > match the pre-processed output, it was the 'safest' of all the > definitions in the face of non-conformant programs/proceedures in the > world. > > I now have a good "why" for David's change, and am happy with it if he > wants to make it. I would have never in a million years thought that > there were so many programs using a 'broken' regular expression for > thier autoconfiguration sequences. Given that I've found at least 4 > variations on this theme, I feel like I'm holding back the tide by > insisting on the int (ioctl) version. Argh! Ok. I guess we should fix the misbehaving ports like X that try to define a ioctl macro instead. > Warner -- 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 Apr 9 14:19:49 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 AB5FA37B404; Tue, 9 Apr 2002 14:19:41 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g39LJeYm037278; Tue, 9 Apr 2002 14:19:40 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g39LIPYt037273; Tue, 9 Apr 2002 14:18:25 -0700 (PDT) Date: Tue, 9 Apr 2002 14:18:25 -0700 From: "David O'Brien" To: Warner Losh Cc: John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, kris@obsecurity.org, Alfred Perlstein Subject: Re: cvs commit: src/sys/sys ioccom.h Message-ID: <20020409141825.E36893@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200204092056.g39KuCc31597@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200204092056.g39KuCc31597@harmony.village.org>; from imp@harmony.village.org on Tue, Apr 09, 2002 at 02:56:12PM -0600 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, Apr 09, 2002 at 02:56:12PM -0600, Warner Losh wrote: > I now have a good "why" for David's change, and am happy with it if he > wants to make it. I would have never in a million years thought that ... > variations on this theme, I feel like I'm holding back the tide by > insisting on the int (ioctl) version. Now that the situation is fully understood; I also can go either way. > This makes me uneasy and seems a high price to pay just to have X11 > compile. It was a good idea, but one which I don't think is in line > with common practice to justify the pain to our users. Yes. Yesterday it was feeling like 5.0 was becoming Linux in which we are making all kinds of changes from the tradition Unix way. Thus we are becoming a weird eccentric platform to develop for. Vs. that we used to be very easy to develop for because we were BSD and people know(knew) what to expect from BSD thru its long lineage. JHB: > Argh! Ok. I guess we should fix the misbehaving ports like X that try > to define a ioctl macro instead. That was my opinion and why I made the commit I did. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 14:24:24 2002 Delivered-To: cvs-all@freebsd.org Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by hub.freebsd.org (Postfix) with ESMTP id 33D2337B405; Tue, 9 Apr 2002 14:24:17 -0700 (PDT) Received: (from jake@localhost) by k6.locore.ca (8.11.6/8.11.6) id g39LROb30353; Tue, 9 Apr 2002 17:27:24 -0400 (EDT) (envelope-from jake) Date: Tue, 9 Apr 2002 17:27:23 -0400 From: Jake Burkholder To: John Baldwin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_fork.c Message-ID: <20020409172723.K199@locore.ca> References: <200204092001.g39K1IN87777@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: <200204092001.g39K1IN87777@freefall.freebsd.org>; from jhb@FreeBSD.org on Tue, Apr 09, 2002 at 01:01:18PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Apparently, On Tue, Apr 09, 2002 at 01:01:18PM -0700, John Baldwin said words to the effect of; > jhb 2002/04/09 13:01:18 PDT > > Modified files: > sys/kern kern_fork.c > Log: > Whitespace changes to wrap long lines. > > Revision Changes Path > 1.146 +8 -4 src/sys/kern/kern_fork.c Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 14: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 526CC37B41E; Tue, 9 Apr 2002 14:30:13 -0700 (PDT) Received: (from julian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39LUDK52066; Tue, 9 Apr 2002 14:30:13 -0700 (PDT) (envelope-from julian) Message-Id: <200204092130.g39LUDK52066@freefall.freebsd.org> From: Julian Elischer Date: Tue, 9 Apr 2002 14:30:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules/netgraph 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 julian 2002/04/09 14:30:13 PDT Modified files: (Branch: RELENG_4) sys/modules/netgraph Makefile Log: link in etf module Revision Changes Path 1.8.2.6 +2 -1 src/sys/modules/netgraph/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 14:32: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 028B037B404; Tue, 9 Apr 2002 14:32:35 -0700 (PDT) Received: (from julian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39LWYq52362; Tue, 9 Apr 2002 14:32:34 -0700 (PDT) (envelope-from julian) Message-Id: <200204092132.g39LWYq52362@freefall.freebsd.org> From: Julian Elischer Date: Tue, 9 Apr 2002 14:32:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 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 julian 2002/04/09 14:32:34 PDT Modified files: (Branch: RELENG_4) share/man/man4 Makefile Log: Do the man page for ng_etf Revision Changes Path 1.83.2.39 +1 -0 src/share/man/man4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 14:34: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 86A8B37B416; Tue, 9 Apr 2002 14:34:36 -0700 (PDT) Received: (from julian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39LYam52660; Tue, 9 Apr 2002 14:34:36 -0700 (PDT) (envelope-from julian) Message-Id: <200204092134.g39LYam52660@freefall.freebsd.org> From: Julian Elischer Date: Tue, 9 Apr 2002 14:34:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 Makefile ng_etf.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 julian 2002/04/09 14:34:36 PDT Modified files: share/man/man4 Makefile ng_etf.4 Log: Slight correction to ng_etf man page and add it to the list of man pages to install. Revision Changes Path 1.152 +1 -0 src/share/man/man4/Makefile 1.4 +1 -1 src/share/man/man4/ng_etf.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 14: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 5955C37B417; Tue, 9 Apr 2002 14:38:14 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39LcEk53217; Tue, 9 Apr 2002 14:38:14 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204092138.g39LcEk53217@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 9 Apr 2002 14:38:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/cli Makefile ports/lang/cli/files patch-pal::unix::configure patch-rotorenv::bin::makefile.def X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/09 14:38:14 PDT Modified files: lang/cli Makefile lang/cli/files patch-pal::unix::configure patch-rotorenv::bin::makefile.def Log: Teach the creature how properly create shared libs on FreeBSD, so that binaries linked to librotor_palrt.so no longer hardcode patch to a specific location of librotor_palrt.so. Bump PORTREVISION. Reported by: many Revision Changes Path 1.6 +1 -0 ports/lang/cli/Makefile 1.2 +3 -3 ports/lang/cli/files/patch-pal::unix::configure 1.2 +13 -4 ports/lang/cli/files/patch-rotorenv::bin::makefile.def To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 15:33: 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 EEE2E37B400; Tue, 9 Apr 2002 15:32:59 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39MWx464711; Tue, 9 Apr 2002 15:32:59 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204092232.g39MWx464711@freefall.freebsd.org> From: Tom Rhodes Date: Tue, 9 Apr 2002 15:32:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libcrypt crypt.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2002/04/09 15:32:59 PDT Modified files: lib/libcrypt crypt.3 Log: crypt(3) incorrectly documents md5 salt, fixed. PR: 36782 No objections from: ru MFC after: 3 days Revision Changes Path 1.25 +1 -1 src/lib/libcrypt/crypt.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 15:38: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 E9BDE37B405; Tue, 9 Apr 2002 15:38:40 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39Mcev65527; Tue, 9 Apr 2002 15:38:40 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204092238.g39Mcev65527@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 9 Apr 2002 15:38:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/cli Makefile ports/lang/cli/files patch-pal::unix::file::file.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/04/09 15:38:40 PDT Modified files: lang/cli Makefile Added files: lang/cli/files patch-pal::unix::file::file.c Log: Fix a silly permission bug, which results in a 777 permission all over the WRKSRC. The problem was that when trying to map read-only FAT attribute into *nix permission, MS assumed that if that attribute isn't set then write permissions should be granted to everyone. Funny, eh? Bump PORTREVISION. Revision Changes Path 1.7 +1 -2 ports/lang/cli/Makefile 1.1 +25 -0 ports/lang/cli/files/patch-pal::unix::file::file.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 Apr 9 16:11:52 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 31BCA37B416; Tue, 9 Apr 2002 16:11:49 -0700 (PDT) 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 g39NBli99275; Tue, 9 Apr 2002 17:11:47 -0600 (MDT) (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 g39NBjc32188; Tue, 9 Apr 2002 17:11:46 -0600 (MDT) (envelope-from imp@village.org) Date: Tue, 09 Apr 2002 17:11:40 -0600 (MDT) Message-Id: <20020409.171140.119268251.imp@village.org> To: jhb@FreeBSD.org Cc: bright@mu.org, kris@obsecurity.org, cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, obrien@FreeBSD.org Subject: Re: cvs commit: src/sys/sys ioccom.h From: "M. Warner Losh" In-Reply-To: References: <200204092056.g39KuCc31597@harmony.village.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: John Baldwin writes: : Argh! Ok. I guess we should fix the misbehaving ports like X that try to : define a ioctl macro instead. That's what I'm going to try to do tonight. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 16:36: 1 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 51C6137B419; Tue, 9 Apr 2002 16:35:57 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g39NZsYm042958; Tue, 9 Apr 2002 16:35:54 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g39NYeoB042937; Tue, 9 Apr 2002 16:34:40 -0700 (PDT) Date: Tue, 9 Apr 2002 16:34:39 -0700 From: "David O'Brien" To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin Makefile Message-ID: <20020409163439.C37507@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200204082038.g38KcuJ36871@freefall.freebsd.org> <20020409082654.GE73475@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: <20020409082654.GE73475@sunbay.com>; from ru@FreeBSD.org on Tue, Apr 09, 2002 at 11:26:54AM +0300 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, Apr 09, 2002 at 11:26:54AM +0300, Ruslan Ermilov wrote: > > Modified files: > > gnu/usr.bin Makefile > > Log: > > GCC and Gperf do not work on ia64 or sparc64 yet. > > Also do not try to compile Groff if NO_CXX is set. > > > > Revision Changes Path > > 1.59 +10 -2 src/gnu/usr.bin/Makefile > > > This is IMHO bogus. NO_CXX only means that (GNU) c++ shouldn't > be built, This is what we do for PERL. If you have NO_PERL, it perl is not used in src/secure/lib/libcrypto/Makefile. Why does that not bother you. (I don't need an answer to that) > it doesn't imply that the host doesn't have another > working (probably non-GNU) c++ compiler that can build Groff. We cannot depend on there being "another working (probably non-GNU) c++ compiler", thus we WILL NOT. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 16:52: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 794CC37B41B; Tue, 9 Apr 2002 16:52:25 -0700 (PDT) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g39NqOk80619; Tue, 9 Apr 2002 16:52:24 -0700 (PDT) (envelope-from alfred) Message-Id: <200204092352.g39NqOk80619@freefall.freebsd.org> From: Alfred Perlstein Date: Tue, 9 Apr 2002 16:52:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/smp index.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 alfred 2002/04/09 16:52:24 PDT Modified files: en/smp index.sgml Log: Note that Jonathan Mini has completed both the pargs and sysctl locking TODO items here. Revision Changes Path 1.73 +5 -5 www/en/smp/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 17: 4:21 2002 Delivered-To: cvs-all@freebsd.org Received: from fw.wemm.org (12-232-135-171.client.attbi.com [12.232.135.171]) by hub.freebsd.org (Postfix) with ESMTP id 2DA1C37B400; Tue, 9 Apr 2002 17:04:16 -0700 (PDT) Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by fw.wemm.org (8.11.6/8.11.6) with ESMTP id g3A05OQ21736; Tue, 9 Apr 2002 17:05:24 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id C0BA638CC; Tue, 9 Apr 2002 17:12:34 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: obrien@FreeBSD.org Cc: Ruslan Ermilov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin Makefile In-Reply-To: <20020409163439.C37507@dragon.nuxi.com> Date: Tue, 09 Apr 2002 17:12:34 -0700 From: Peter Wemm Message-Id: <20020410001234.C0BA638CC@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 "David O'Brien" wrote: > On Tue, Apr 09, 2002 at 11:26:54AM +0300, Ruslan Ermilov wrote: > > > Modified files: > > > gnu/usr.bin Makefile > > > Log: > > > GCC and Gperf do not work on ia64 or sparc64 yet. > > > Also do not try to compile Groff if NO_CXX is set. > > > > > > Revision Changes Path > > > 1.59 +10 -2 src/gnu/usr.bin/Makefile > > > > > This is IMHO bogus. NO_CXX only means that (GNU) c++ shouldn't > > be built, > > This is what we do for PERL. If you have NO_PERL, it perl is not used in > src/secure/lib/libcrypto/Makefile. Why does that not bother you. (I > don't need an answer to that) > > > > it doesn't imply that the host doesn't have another > > working (probably non-GNU) c++ compiler that can build Groff. > > We cannot depend on there being "another working (probably non-GNU) c++ > compiler", thus we WILL NOT. This is still bogus. We need to be able to do a 'make all' at the top of the tree and use external tools. Disconnecting the *building* of gcc etc is one thing, but disconnecting the use of the language is something entirely different. groff, gperf and getconf are perfectly fine on ia64, for example, and you destroyed the build for them as a result of this. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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 Tue Apr 9 17:18: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 810F737B41A; Tue, 9 Apr 2002 17:18:14 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A0IEe87395; Tue, 9 Apr 2002 17:18:14 -0700 (PDT) (envelope-from obrien) Message-Id: <200204100018.g3A0IEe87395@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 9 Apr 2002 17:18:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin 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/04/09 17:18:14 PDT Modified files: gnu/usr.bin Makefile Log: Back out most of revision 1.59. Revision Changes Path 1.62 +2 -6 src/gnu/usr.bin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 17:21:50 2002 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id 64C3737B405; Tue, 9 Apr 2002 17:21:44 -0700 (PDT) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 02275816DA; Wed, 10 Apr 2002 09:51:42 +0930 (CST) Date: Wed, 10 Apr 2002 09:51:41 +0930 From: Greg 'groggy' Lehey To: John Baldwin Cc: Poul-Henning Kamp , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) Message-ID: <20020410095141.M9535@wantadilla.lemis.com> References: <17393.1018364044@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.23i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-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, 9 April 2002 at 12:31:11 -0400, John Baldwin wrote: > > On 09-Apr-2002 Poul-Henning Kamp wrote: >> In message , John Baldwin writes: >> >>> Have you implemented the replacement yet? :) In my mind it was kind of there >>> as a reminder that we needed to do that. >> >> No I havn't and neither have anybody else it seems. >> >> And quite frankly, it doesn't look like the market pressure is there, >> given the existence of the hints file. > > The replacement would specifically be a nice front-end to the hints concept > that would manipulate the default hints set via the loader environment. It > might need an extra metadata file to match device drivers mentioned in the > hints to human-readable text strings, etc. Why do we need to cut Uesrconfig out until there's some replacement? Specifically, what do people do when they're installing the system from CD on an old ISA machine? It looks like they're stuck. I'm concerned about things being removed from the system just because the committer in question doesn't see a need for them. The same thing happened with KTR_EXTEND; I can only conclude that you don't use remote serial debugging, but by so doing you're further limiting the number of people who are prepared to do low-level kernel debug work. I think both of these commits should be backed out. Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 17:24: 1 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 C01CE37B405; Tue, 9 Apr 2002 17:23:58 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3A0NvYm045557; Tue, 9 Apr 2002 17:23:57 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3A0MgGH045527; Tue, 9 Apr 2002 17:22:42 -0700 (PDT) Date: Tue, 9 Apr 2002 17:22:42 -0700 From: "David O'Brien" To: Bosko Milekic Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin Makefile src/share/examples/etc make.conf src/usr.bin Makefile Message-ID: <20020409172242.A45459@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200204091825.g39IPlu47806@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: <200204091825.g39IPlu47806@freefall.freebsd.org>; from bmilekic@FreeBSD.org on Tue, Apr 09, 2002 at 11:25:47AM -0700 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, Apr 09, 2002 at 11:25:47AM -0700, Bosko Milekic wrote: > bin Makefile > share/examples/etc make.conf > usr.bin Makefile > Log: > Introduce NO_RCMNDS flag so as to not compile rsh, rlogin, and rcp on will, > and document in share/examples/etc/make.conf This is going too far -- are we soon going to have NO_LS ?? What is the problem with compiling rsh/rlogin/rcp? I can not think of any good reason. Are you trying to reduce the number of set UID binaries? Why not add a NO_SUID knob and catch everything? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 17:34:58 2002 Delivered-To: cvs-all@freebsd.org Received: from winston.freebsd.org (adsl-64-173-15-98.dsl.sntc01.pacbell.net [64.173.15.98]) by hub.freebsd.org (Postfix) with ESMTP id 91FC737B416; Tue, 9 Apr 2002 17:34:52 -0700 (PDT) Received: from winston.freebsd.org (jkh@localhost [127.0.0.1]) by winston.freebsd.org (8.11.6/8.11.6) with ESMTP id g3A0Xi349080; Tue, 9 Apr 2002 17:33:45 -0700 (PDT) (envelope-from jkh@winston.freebsd.org) To: David Malone Cc: Christopher Masto , Murray Stokely , "Greg 'groggy' Lehey" , msmith@FreeBSD.ORG, "David E. O'Brien" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: Configuring XFree 4 (was: cvs commit: src/usr.sbin/sysinstall Makefile dispatch.c dist.c install.c menus.c sysinstall.8) In-Reply-To: Message from David Malone of "Mon, 08 Apr 2002 20:11:13 BST." <20020408191113.GA56982@walton.maths.tcd.ie> Date: Tue, 09 Apr 2002 17:33:44 -0700 Message-ID: <49076.1018398824@winston.freebsd.org> From: Jordan Hubbard Sender: owner-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 this is the same problem on a variety of hardware, I tend to think > > it's not the BIOS writers on crack, but rather a misunderstanding in > > FreeBSD's MTRR code. > > *suddenly wakes up* > > I've some patches which makes the MTRR code a bit more robust, but > my BIOS is still acting funny and unfortunately the AMD docs which > are likely to describe this stuff are under NDA. Woohoo! You rock! I'm now looking at a 1280x1024x32 screen on this same desktop machine, admirably panic-free since applying your patches! When I launched the X -configure this time, it printed the following stuff out on the console: MSR 26e, old=1515151515151515 new=101010101010101 MSR 26f, old=1515151515151515 new=101010101010101 Apr 9 13:02:06 freebsd /kernel: MSR 26e, old=1515151515151515 new=101010101010101 Apr 9 13:02:06 freebsd /kernel: MSR 26e, old=1515151515151515 new=101010101010101 Apr 9 13:02:06 freebsd /kernel: MSR 26f, old=1515151515151515 new=101010101010101 Apr 9 13:02:06 freebsd /kernel: MSR 26f, old=1515151515151515 new=101010101010101 Mike Smith would certainly be the man to review your patches since he wrote much (all?) of the original MTRR code. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 17:53:50 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 9D39337B41C; Tue, 9 Apr 2002 17:53:43 -0700 (PDT) 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 g3A0rgi99614; Tue, 9 Apr 2002 18:53:42 -0600 (MDT) (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 g3A0rfc32551; Tue, 9 Apr 2002 18:53:41 -0600 (MDT) (envelope-from imp@village.org) Date: Tue, 09 Apr 2002 18:53:39 -0600 (MDT) Message-Id: <20020409.185339.11814548.imp@village.org> To: grog@FreeBSD.org Cc: jhb@FreeBSD.org, phk@critter.freebsd.dk, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement From: "M. Warner Losh" In-Reply-To: <20020410095141.M9535@wantadilla.lemis.com> References: <17393.1018364044@critter.freebsd.dk> <20020410095141.M9535@wantadilla.lemis.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: <20020410095141.M9535@wantadilla.lemis.com> "Greg 'groggy' Lehey" writes: : Why do we need to cut Uesrconfig out until there's some replacement? : Specifically, what do people do when they're installing the system : from CD on an old ISA machine? It looks like they're stuck. Because there is no userconfig right now that works, as far as I can tell. At least that was my experience last time I tried it. Users booting from cd on an old ISA machine can set hints, no big deal, except that it is a little archane. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 18: 2:40 2002 Delivered-To: cvs-all@freebsd.org Received: from pebkac.owp.csus.edu (pebkac.owp.csus.edu [130.86.232.245]) by hub.freebsd.org (Postfix) with ESMTP id 7ECA437B417; Tue, 9 Apr 2002 18:02:35 -0700 (PDT) Received: (from root@localhost) by pebkac.owp.csus.edu (8.9.3/8.9.3) id SAA39299; Tue, 9 Apr 2002 18:05:42 -0700 (PDT) (envelope-from joseph.scott@owp.csus.edu) Received: from localhost (scottj@localhost) by pebkac.owp.csus.edu (8.9.3/8.9.3av) with ESMTP id SAA39292; Tue, 9 Apr 2002 18:05:40 -0700 (PDT) (envelope-from joseph.scott@owp.csus.edu) Date: Tue, 9 Apr 2002 18:05:40 -0700 (PDT) From: Joseph Scott X-Sender: scottj@pebkac.owp.csus.edu To: "David O'Brien" Cc: Bosko Milekic , cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/bin Makefile src/share/examples/etc make.conf src/usr.bin Makefile In-Reply-To: <20020409172242.A45459@dragon.nuxi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS perl-10 Sender: owner-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, 9 Apr 2002, David O'Brien wrote: # On Tue, Apr 09, 2002 at 11:25:47AM -0700, Bosko Milekic wrote: # > bin Makefile # > share/examples/etc make.conf # > usr.bin Makefile # > Log: # > Introduce NO_RCMNDS flag so as to not compile rsh, rlogin, and rcp on will, # > and document in share/examples/etc/make.conf # # This is going too far -- are we soon going to have NO_LS ?? # What is the problem with compiling rsh/rlogin/rcp? I can not think of # any good reason. Are you trying to reduce the number of set UID # binaries? Why not add a NO_SUID knob and catch everything? That's an interesting idea. If there was a running list of what's normally suid then admins could go through and only set suid on programs of their choice. Which of course brings up the question, if NO_SUID is set, should a port that wants to install a suid program be allowed to? Or should it ask if you still want to continue with the install? Ug, perhaps a IS_SUID for ports :-/ -Joseph To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 18:12: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 C5FA737B400; Tue, 9 Apr 2002 18:12:55 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A1Ctv02310; Tue, 9 Apr 2002 18:12:55 -0700 (PDT) (envelope-from brian) Message-Id: <200204100112.g3A1Ctv02310@freefall.freebsd.org> From: Brian Somers Date: Tue, 9 Apr 2002 18:12:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/digi CX.c CX_PCI.c EPCX.c EPCX_PCI.c Xe.c Xem.c Xr.c digi.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/04/09 18:12:55 PDT Modified files: sys/dev/digi CX.c CX_PCI.c EPCX.c EPCX_PCI.c Xe.c Xem.c Xr.c digi.c Log: Add some missing MODULE_VERSIONs Without these, the kern_linker interface doesn't record these pseudo-drivers, making them unavailable via modlist_lookup2*(). Revision Changes Path 1.2 +1 -0 src/sys/dev/digi/CX.c 1.2 +1 -0 src/sys/dev/digi/CX_PCI.c 1.2 +1 -0 src/sys/dev/digi/EPCX.c 1.2 +1 -0 src/sys/dev/digi/EPCX_PCI.c 1.2 +1 -0 src/sys/dev/digi/Xe.c 1.2 +1 -0 src/sys/dev/digi/Xem.c 1.2 +1 -0 src/sys/dev/digi/Xr.c 1.22 +2 -0 src/sys/dev/digi/digi.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 18:14: 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 0FDEA37B416; Tue, 9 Apr 2002 18:13:58 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A1DwZ02558; Tue, 9 Apr 2002 18:13:58 -0700 (PDT) (envelope-from brian) Message-Id: <200204100113.g3A1DwZ02558@freefall.freebsd.org> From: Brian Somers Date: Tue, 9 Apr 2002 18:13:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/digi digi.c src/sys/kern kern_linker.c src/sys/sys linker.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 brian 2002/04/09 18:13:58 PDT Modified files: sys/dev/digi digi.c sys/kern kern_linker.c sys/sys linker.h Log: Change linker_reference_module() so that it's passed a struct mod_depend * (which may be NULL). The only consumer of this function at the moment is digi_loadmoduledata(), and that passes a NULL mod_depend *. In linker_reference_module(), check to see if we've already got the required module loaded. If we have, bump the reference count and return that, otherwise continue the module search as normal. Revision Changes Path 1.23 +8 -2 src/sys/dev/digi/digi.c 1.87 +14 -3 src/sys/kern/kern_linker.c 1.29 +4 -1 src/sys/sys/linker.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 18: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 80D7137B41C; Tue, 9 Apr 2002 18:14:45 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A1Ejb02730; Tue, 9 Apr 2002 18:14:45 -0700 (PDT) (envelope-from brian) Message-Id: <200204100114.g3A1Ejb02730@freefall.freebsd.org> From: Brian Somers Date: Tue, 9 Apr 2002 18:14:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_linker.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/04/09 18:14:45 PDT Modified files: sys/kern kern_linker.c Log: In linker_load_module(), check that rootdev != NODEV before calling linker_search_module(). Without this, modules loaded from loader.conf that then try to load in additional modules (such as digi.ko loading a card's BIOS) die badly in the vn_open() called from linker_search_module(). It may be worth checking (KASSERTing?) that rootdev != NODEV in vn_open() too. Revision Changes Path 1.88 +5 -3 src/sys/kern/kern_linker.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 18:15: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 5526637B405; Tue, 9 Apr 2002 18:15:26 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A1FPE02896; Tue, 9 Apr 2002 18:15:25 -0700 (PDT) (envelope-from brian) Message-Id: <200204100115.g3A1FPE02896@freefall.freebsd.org> From: Brian Somers Date: Tue, 9 Apr 2002 18:15:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/digi digi.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/04/09 18:15:25 PDT Modified files: sys/dev/digi digi.c Log: Use the PCI port for pci cards, not just for PCIXR cards. Add the card name to the error message for the first initialisation failure, giving us more info about what was actually discovered. This code has been tested by Robert Suetterlin to work on a PCI Xem card. Revision Changes Path 1.24 +6 -6 src/sys/dev/digi/digi.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 18:16:50 2002 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 34E1F37B405; Tue, 9 Apr 2002 18:16:38 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [IPv6:fec0::1:12]) by Awfulhak.org (8.12.2/8.11.6) with ESMTP id g3A1Gaoi027302; Wed, 10 Apr 2002 02:16:36 +0100 (BST) (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.12.2/8.12.2) with ESMTP id g3A1GZOF004892; Wed, 10 Apr 2002 02:16:35 +0100 (BST) (envelope-from brian@freebsd-services.com) Message-Id: <200204100116.g3A1GZOF004892@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Brian Somers Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/sys/kern kern_linker.c In-Reply-To: Message from Brian Somers of "Tue, 09 Apr 2002 18:14:45 PDT." <200204100114.g3A1Ejb02730@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 10 Apr 2002 02:16:35 +0100 From: Brian Somers Sender: owner-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/04/09 18:14:45 PDT > > Modified files: > sys/kern kern_linker.c > Log: > In linker_load_module(), check that rootdev != NODEV before calling > linker_search_module(). > > Without this, modules loaded from loader.conf that then try to load > in additional modules (such as digi.ko loading a card's BIOS) die > badly in the vn_open() called from linker_search_module(). > > It may be worth checking (KASSERTing?) that rootdev != NODEV in > vn_open() too. > > Revision Changes Path > 1.88 +5 -3 src/sys/kern/kern_linker.c After these changes, it's possible for digi to find it's BIOS/FEPOS from one of the digi_* modules at boot time - as long as that digi_* module is already available (either built into the kernel or ``loaded'' at boot time). However, digi fails to initialise the card - I think due to tsleep failing... but I'm not sure yet. -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 18:19: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 24CB237B41C; Tue, 9 Apr 2002 18:19:54 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A1JsL03609; Tue, 9 Apr 2002 18:19:54 -0700 (PDT) (envelope-from jhb) Message-Id: <200204100119.g3A1JsL03609@freefall.freebsd.org> From: John Baldwin Date: Tue, 9 Apr 2002 18:19:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: 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/04/09 18:19:54 PDT Modified files: sys/kern subr_witness.c Log: Cosmetic fixup in output of lock types in show locks output. Revision Changes Path 1.107 +1 -1 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 Apr 9 18: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 6C46E37B41F; Tue, 9 Apr 2002 18:25:11 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A1PBL04399; Tue, 9 Apr 2002 18:25:11 -0700 (PDT) (envelope-from jhb) Message-Id: <200204100125.g3A1PBL04399@freefall.freebsd.org> From: John Baldwin Date: Tue, 9 Apr 2002 18:25:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: 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/04/09 18:25:11 PDT Modified files: sys/kern subr_witness.c Log: Display the recursion count in the lock_instance in the show locks output. Indirectly requested by: peter Revision Changes Path 1.108 +2 -1 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 Apr 9 18:36: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 0B5B937B416; Tue, 9 Apr 2002 18:36:41 -0700 (PDT) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A1afA05876; Tue, 9 Apr 2002 18:36:41 -0700 (PDT) (envelope-from keramida) Message-Id: <200204100136.g3A1afA05876@freefall.freebsd.org> From: Giorgos Keramidas Date: Tue, 9 Apr 2002 18:36:40 -0700 (PDT) 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 keramida 2002/04/09 18:36:40 PDT Modified files: en support.sgml Log: Add a link to the problem-reports article at the #gnats section. PR: docs/36558 Submitted by: Gary W. Swearingen Revision Changes Path 1.257 +9 -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 Apr 9 18:42: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 3977737B423; Tue, 9 Apr 2002 18:42:33 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A1gX906506; Tue, 9 Apr 2002 18:42:33 -0700 (PDT) (envelope-from brian) Message-Id: <200204100142.g3A1gX906506@freefall.freebsd.org> From: Brian Somers Date: Tue, 9 Apr 2002 18:42:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet in.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/04/09 18:42:33 PDT Modified files: sys/netinet in.c Log: Don't add host routes for interface addresses of 0.0.0.0/8 -> 0.255.255.255. This change allows bootp to work with more than one interface, at the expense of some rather ``wrong'' looking code. I plan to MFC this in place of luigi's recent #ifdef BOOTP stuff that was committed to this file in -stable, as that's slightly more wrong that this is. Offered for review on: -arch, -net MFC after: 2 weeks Revision Changes Path 1.64 +18 -6 src/sys/netinet/in.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 18:42: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 869AF37B42A; Tue, 9 Apr 2002 18:42:44 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A1giH06544; Tue, 9 Apr 2002 18:42:44 -0700 (PDT) (envelope-from brian) Message-Id: <200204100142.g3A1giH06544@freefall.freebsd.org> From: Brian Somers Date: Tue, 9 Apr 2002 18:42:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet in.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/04/09 18:42:44 PDT Modified files: sys/netinet in.c Log: Remove the code that masks an EEXIST returned from rtinit() when calling ioctl(SIOC[AS]IFADDR). This allows the following: ifconfig xx0 inet 1.2.3.1 netmask 0xffffff00 ifconfig xx0 inet 1.2.3.17 netmask 0xfffffff0 alias ifconfig xx0 inet 1.2.3.25 netmask 0xfffffff8 alias ifconfig xx0 inet 1.2.3.26 netmask 0xffffffff alias but would (given the above) reject this: ifconfig xx0 inet 1.2.3.27 netmask 0xfffffff8 alias due to the conflicting netmasks. I would assert that it's wrong to mask the EEXIST returned from rtinit() as in the above scenario, the deletion of the 1.2.3.25 address will leave the 1.2.3.27 address as unroutable as it was in the first place. Offered for review on: -arch, -net Discussed with: stephen macmanus MFC after: 3 weeks Revision Changes Path 1.65 +0 -4 src/sys/netinet/in.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 18:48: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 434A037B419; Tue, 9 Apr 2002 18:48:47 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A1ml308031; Tue, 9 Apr 2002 18:48:47 -0700 (PDT) (envelope-from obrien) Message-Id: <200204100148.g3A1ml308031@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 9 Apr 2002 18:48:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/cc/cc1 Makefile src/gnu/usr.bin/cc/cc1obj Makefile src/gnu/usr.bin/cc/cc1plus 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/04/09 18:48:47 PDT Modified files: gnu/usr.bin/cc/cc1 Makefile gnu/usr.bin/cc/cc1obj Makefile gnu/usr.bin/cc/cc1plus Makefile Log: Change YACCing. Submited by: ru Revision Changes Path 1.25 +5 -8 src/gnu/usr.bin/cc/cc1/Makefile 1.19 +6 -8 src/gnu/usr.bin/cc/cc1obj/Makefile 1.26 +5 -6 src/gnu/usr.bin/cc/cc1plus/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 18:52: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 2AFF437B41A; Tue, 9 Apr 2002 18:52:51 -0700 (PDT) Received: (from jeff@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A1qpi11085; Tue, 9 Apr 2002 18:52:51 -0700 (PDT) (envelope-from jeff) Message-Id: <200204100152.g3A1qpi11085@freefall.freebsd.org> From: Jeff Roberson Date: Tue, 9 Apr 2002 18:52:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm uma_core.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 jeff 2002/04/09 18:52:51 PDT Modified files: sys/vm uma_core.c Log: Remember to unlock the zone if the fill count is too high. Pointed out by: pete, jake, jhb Revision Changes Path 1.11 +4 -3 src/sys/vm/uma_core.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 19: 0:24 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 A3E3337B416; Tue, 9 Apr 2002 19:00:08 -0700 (PDT) Received: from InterJet.elischer.org ([12.232.206.8]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020410020008.ZRCL15826.rwcrmhc54.attbi.com@InterJet.elischer.org>; Wed, 10 Apr 2002 02:00:08 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id SAA59116; Tue, 9 Apr 2002 18:52:25 -0700 (PDT) Date: Tue, 9 Apr 2002 18:52:24 -0700 (PDT) From: Julian Elischer To: Brian Somers Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_linker.c In-Reply-To: <200204100114.g3A1Ejb02730@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 if you are in there, you may find out why loading ng_??? no longer forces teh loading of module "netgraph" (there is a deopendency and it USED to work.... at one stage if you tried to make a node of type xxx it would try load modul ng_xxx. (the code is in ng_base.c) but it stopped working a while ago.. On Tue, 9 Apr 2002, Brian Somers wrote: > brian 2002/04/09 18:14:45 PDT > > Modified files: > sys/kern kern_linker.c > Log: > In linker_load_module(), check that rootdev != NODEV before calling > linker_search_module(). > > Without this, modules loaded from loader.conf that then try to load > in additional modules (such as digi.ko loading a card's BIOS) die > badly in the vn_open() called from linker_search_module(). > > It may be worth checking (KASSERTing?) that rootdev != NODEV in > vn_open() too. > > Revision Changes Path > 1.88 +5 -3 src/sys/kern/kern_linker.c > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 19: 5: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 79C1737B416; Tue, 9 Apr 2002 19:05:55 -0700 (PDT) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A25th16012; Tue, 9 Apr 2002 19:05:55 -0700 (PDT) (envelope-from keramida) Message-Id: <200204100205.g3A25th16012@freefall.freebsd.org> From: Giorgos Keramidas Date: Tue, 9 Apr 2002 19:05:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/cvs-freebsd 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/04/09 19:05:55 PDT Modified files: en_US.ISO8859-1/articles/cvs-freebsd article.sgml Log: - Use &a.joe; for referring to Joe Karthauser. - Fix description of chown(8) when changing only the gid of a file and not uid too. Revision Changes Path 1.4 +3 -3 doc/en_US.ISO8859-1/articles/cvs-freebsd/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 Apr 9 19: 8: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail16.speakeasy.net [216.254.0.216]) by hub.freebsd.org (Postfix) with ESMTP id DE23D37B400 for ; Tue, 9 Apr 2002 19:07:56 -0700 (PDT) Received: (qmail 10356 invoked from network); 10 Apr 2002 02:07:56 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail16.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 10 Apr 2002 02:07:56 -0000 Received: from laptop.baldwin.cx (john@laptop.baldwin.cx [192.168.0.4]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g3A28lv50872; Tue, 9 Apr 2002 22:08:47 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <200204100116.g3A1GZOF004892@hak.lan.Awfulhak.org> Date: Tue, 09 Apr 2002 22:07:53 -0400 (EDT) From: John Baldwin To: Brian Somers Subject: Re: cvs commit: src/sys/kern kern_linker.c Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Brian Somers Sender: owner-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 10-Apr-2002 Brian Somers wrote: >> brian 2002/04/09 18:14:45 PDT >> >> Modified files: >> sys/kern kern_linker.c >> Log: >> In linker_load_module(), check that rootdev != NODEV before calling >> linker_search_module(). >> >> Without this, modules loaded from loader.conf that then try to load >> in additional modules (such as digi.ko loading a card's BIOS) die >> badly in the vn_open() called from linker_search_module(). >> >> It may be worth checking (KASSERTing?) that rootdev != NODEV in >> vn_open() too. >> >> Revision Changes Path >> 1.88 +5 -3 src/sys/kern/kern_linker.c > > After these changes, it's possible for digi to find it's BIOS/FEPOS > from one of the digi_* modules at boot time - as long as that > digi_* module is already available (either built into the kernel or > ``loaded'' at boot time). However, digi fails to initialise the > card - I think due to tsleep failing... but I'm not sure yet. tsleep/wakeup don't work during the boot device probe. More specifically, interrupt handlers don't run, so you will never get woken up. Also, since timeouts aren't working yet the tsleep() won't timeout either. Thus, if you try to tsleep() during this time period, tsleep() will return immediately. -- 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 Apr 9 19: 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 67EB337B41A; Tue, 9 Apr 2002 19:08:29 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A28Ts19654; Tue, 9 Apr 2002 19:08:29 -0700 (PDT) (envelope-from obrien) Message-Id: <200204100208.g3A28Ts19654@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 9 Apr 2002 19:08:29 -0700 (PDT) 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/04/09 19:08:29 PDT Modified files: editors/vim Makefile distinfo Log: Update to Vim 6.1 patchlevel 14 and fix to build on 5-CURRENT. Revision Changes Path 1.188 +1 -1 ports/editors/vim/Makefile 1.117 +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 Tue Apr 9 19: 9: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 A8F4D37B41B; Tue, 9 Apr 2002 19:08:41 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A28fa19699; Tue, 9 Apr 2002 19:08:41 -0700 (PDT) (envelope-from obrien) Message-Id: <200204100208.g3A28fa19699@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 9 Apr 2002 19:08:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/vim/files patch-osdef.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 obrien 2002/04/09 19:08:41 PDT Added files: editors/vim/files patch-osdef.sh Log: Update to Vim 6.1 patchlevel 14 and fix to build on 5-CURRENT. Revision Changes Path 1.1 +26 -0 ports/editors/vim/files/patch-osdef.sh (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 19:11: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 5293A37B405; Tue, 9 Apr 2002 19:11:38 -0700 (PDT) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A2Bcb20192; Tue, 9 Apr 2002 19:11:38 -0700 (PDT) (envelope-from keramida) Message-Id: <200204100211.g3A2Bcb20192@freefall.freebsd.org> From: Giorgos Keramidas Date: Tue, 9 Apr 2002 19:11:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/dd dd.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 keramida 2002/04/09 19:11:38 PDT Modified files: (Branch: RELENG_4) bin/dd dd.1 Log: MFC: 1.19: Misc mdoc fixes, submitted by ru@FreeBSD.org Revision Changes Path 1.15.2.3 +54 -44 src/bin/dd/dd.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 19:20: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 D94D237B400; Tue, 9 Apr 2002 19:20:48 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A2Kmm21686; Tue, 9 Apr 2002 19:20:48 -0700 (PDT) (envelope-from obrien) Message-Id: <200204100220.g3A2Kmm21686@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 9 Apr 2002 19:20:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/cc/collect2 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/04/09 19:20:48 PDT Modified files: gnu/usr.bin/cc/collect2 Makefile Log: In the cross case we need to provide TARGET_MACHINE. Revision Changes Path 1.4 +4 -1 src/gnu/usr.bin/cc/collect2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 19:31:29 2002 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 1133C37B400; Tue, 9 Apr 2002 19:31:19 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [IPv6:fec0::1:12]) by Awfulhak.org (8.12.2/8.11.6) with ESMTP id g3A2VFoi027771; Wed, 10 Apr 2002 03:31:16 +0100 (BST) (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.12.2/8.12.2) with ESMTP id g3A2VEOF005953; Wed, 10 Apr 2002 03:31:14 +0100 (BST) (envelope-from brian@freebsd-services.com) Message-Id: <200204100231.g3A2VEOF005953@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: John Baldwin Cc: Brian Somers , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_linker.c In-Reply-To: Message from John Baldwin of "Tue, 09 Apr 2002 22:07:53 EDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 10 Apr 2002 03:31:14 +0100 From: Brian Somers Sender: owner-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 10-Apr-2002 Brian Somers wrote: > >> brian 2002/04/09 18:14:45 PDT > >> > >> Modified files: > >> sys/kern kern_linker.c > >> Log: > >> In linker_load_module(), check that rootdev != NODEV before calling > >> linker_search_module(). > >> > >> Without this, modules loaded from loader.conf that then try to load > >> in additional modules (such as digi.ko loading a card's BIOS) die > >> badly in the vn_open() called from linker_search_module(). > >> > >> It may be worth checking (KASSERTing?) that rootdev != NODEV in > >> vn_open() too. > >> > >> Revision Changes Path > >> 1.88 +5 -3 src/sys/kern/kern_linker.c > > > > After these changes, it's possible for digi to find it's BIOS/FEPOS > > from one of the digi_* modules at boot time - as long as that > > digi_* module is already available (either built into the kernel or > > ``loaded'' at boot time). However, digi fails to initialise the > > card - I think due to tsleep failing... but I'm not sure yet. > > tsleep/wakeup don't work during the boot device probe. More > specifically, interrupt handlers don't run, so you will never get woken > up. Also, since timeouts aren't working yet the tsleep() won't timeout > either. Thus, if you try to tsleep() during this time period, tsleep() > will return immediately. Is DELAY() the only alternative ? It seems that if I DELAY(), it has a rather noticeable effect on the machine (everything seems to lock up 'till the DELAY()s are done). Maybe I should look at having the driver ``test'' tsleep and use DELAY() instead if it doesn't work ? > -- > > John Baldwin <>< http://www.FreeBSD.org/~jhb/ > "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 19:45: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 B1EEA37B405; Tue, 9 Apr 2002 19:45:22 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A2jMj25185; Tue, 9 Apr 2002 19:45:22 -0700 (PDT) (envelope-from obrien) Message-Id: <200204100245.g3A2jMj25185@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 9 Apr 2002 19:45:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.sys.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 obrien 2002/04/09 19:45:22 PDT Modified files: share/mk bsd.sys.mk Log: Add WARNS levels 5 and 6: 5 gives us -Wuninitialized rather than -Wno-uninitialized 6 gives us full BDECFLAGS Revision Changes Path 1.7 +8 -1 src/share/mk/bsd.sys.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 19:46:35 2002 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 602F337B405; Tue, 9 Apr 2002 19:46:26 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [IPv6:fec0::1:12]) by Awfulhak.org (8.12.2/8.11.6) with ESMTP id g3A2kGoi027799; Wed, 10 Apr 2002 03:46:17 +0100 (BST) (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.12.2/8.12.2) with ESMTP id g3A2kEOF006117; Wed, 10 Apr 2002 03:46:15 +0100 (BST) (envelope-from brian@freebsd-services.com) Message-Id: <200204100246.g3A2kEOF006117@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Julian Elischer Cc: Brian Somers , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_linker.c In-Reply-To: Message from Julian Elischer of "Tue, 09 Apr 2002 18:52:24 PDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 10 Apr 2002 03:46:14 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hmm, This seems to work ok. For example, if I kldload ng_ether or ng_pppoe when nothing is loaded, netgraph is auto-loaded. I can even run ngctl(1), and ng_socket & netgraph are magically loaded. I'm running with an April 3 kernel (I reverted it because kernels over the past few days have dysfunctional shared library support). Perhaps the problem is only in -stable (I know there are some funny problems in -stable when for example options NETGRAPH is in the kernel and you try to kldload ng_xxx) ? > if you are in there, you may find out why loading ng_??? no longer forces > teh loading of module "netgraph" (there is a deopendency > and it USED to work.... > at one stage if you tried to make a node of type xxx it would try load > modul ng_xxx. (the code is in ng_base.c) but it stopped working a while > ago.. > > > On Tue, 9 Apr 2002, Brian Somers wrote: > > > brian 2002/04/09 18:14:45 PDT > > > > Modified files: > > sys/kern kern_linker.c > > Log: > > In linker_load_module(), check that rootdev != NODEV before calling > > linker_search_module(). > > > > Without this, modules loaded from loader.conf that then try to load > > in additional modules (such as digi.ko loading a card's BIOS) die > > badly in the vn_open() called from linker_search_module(). > > > > It may be worth checking (KASSERTing?) that rootdev != NODEV in > > vn_open() too. > > > > Revision Changes Path > > 1.88 +5 -3 src/sys/kern/kern_linker.c -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 19:48:47 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail17.speakeasy.net [216.254.0.217]) by hub.freebsd.org (Postfix) with ESMTP id AF97137B404 for ; Tue, 9 Apr 2002 19:48:39 -0700 (PDT) Received: (qmail 1256 invoked from network); 10 Apr 2002 02:48:38 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail17.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 10 Apr 2002 02:48:38 -0000 Received: from laptop.baldwin.cx (john@laptop.baldwin.cx [192.168.0.4]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g3A2nOv50996; Tue, 9 Apr 2002 22:49:24 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <200204100231.g3A2VEOF005953@hak.lan.Awfulhak.org> Date: Tue, 09 Apr 2002 22:48:34 -0400 (EDT) From: John Baldwin To: Brian Somers Subject: Re: cvs commit: src/sys/kern kern_linker.c Cc: cvs-committers@FreeBSD.org, cvs-all@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 10-Apr-2002 Brian Somers wrote: >> On 10-Apr-2002 Brian Somers wrote: >> >> brian 2002/04/09 18:14:45 PDT >> >> >> >> Modified files: >> >> sys/kern kern_linker.c >> >> Log: >> >> In linker_load_module(), check that rootdev != NODEV before calling >> >> linker_search_module(). >> >> >> >> Without this, modules loaded from loader.conf that then try to load >> >> in additional modules (such as digi.ko loading a card's BIOS) die >> >> badly in the vn_open() called from linker_search_module(). >> >> >> >> It may be worth checking (KASSERTing?) that rootdev != NODEV in >> >> vn_open() too. >> >> >> >> Revision Changes Path >> >> 1.88 +5 -3 src/sys/kern/kern_linker.c >> > >> > After these changes, it's possible for digi to find it's BIOS/FEPOS >> > from one of the digi_* modules at boot time - as long as that >> > digi_* module is already available (either built into the kernel or >> > ``loaded'' at boot time). However, digi fails to initialise the >> > card - I think due to tsleep failing... but I'm not sure yet. >> >> tsleep/wakeup don't work during the boot device probe. More >> specifically, interrupt handlers don't run, so you will never get woken >> up. Also, since timeouts aren't working yet the tsleep() won't timeout >> either. Thus, if you try to tsleep() during this time period, tsleep() >> will return immediately. > > Is DELAY() the only alternative ? It seems that if I DELAY(), it has > a rather noticeable effect on the machine (everything seems to lock > up 'till the DELAY()s are done). > > Maybe I should look at having the driver ``test'' tsleep and use > DELAY() instead if it doesn't work ? During boot you want to defer things that depend on interrupts until later like the ATA probe does. DELAY() will basically hang the machine, yes. You can tell if tsleep works or not by testing the 'cold' variable. If it is true, then tsleep doesn't work. -- 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 Apr 9 19:52:42 2002 Delivered-To: cvs-all@freebsd.org Received: from yello.shallow.net (yello.shallow.net [203.18.243.120]) by hub.freebsd.org (Postfix) with ESMTP id 519AF37B41D; Tue, 9 Apr 2002 19:52:37 -0700 (PDT) Received: by yello.shallow.net (Postfix, from userid 1001) id 409DC2A69; Wed, 10 Apr 2002 12:52:30 +1000 (EST) Date: Wed, 10 Apr 2002 12:52:30 +1000 From: Joshua Goodall To: David O'Brien Cc: Bosko Milekic , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin Makefile src/share/examples/etc make.conf src/usr.bin Makefile Message-ID: <20020410025230.GA8927@roughtrade.net> References: <200204091825.g39IPlu47806@freefall.freebsd.org> <20020409172242.A45459@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020409172242.A45459@dragon.nuxi.com> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 09, 2002 at 05:22:42PM -0700, David O'Brien wrote: > On Tue, Apr 09, 2002 at 11:25:47AM -0700, Bosko Milekic wrote: > > bin Makefile > > share/examples/etc make.conf > > usr.bin Makefile > > Log: > > Introduce NO_RCMNDS flag so as to not compile rsh, rlogin, and rcp on will, > > and document in share/examples/etc/make.conf > > This is going too far -- are we soon going to have NO_LS ?? > What is the problem with compiling rsh/rlogin/rcp? I can not think of > any good reason. Are you trying to reduce the number of set UID > binaries? Why not add a NO_SUID knob and catch everything? I don't know how standard the practise is, but part of my standard server-hardening procedure is to remove the rsh/rcp tools. I don't allow my users to even think about risking their use: they have been fully superseded in functionality in every way by ssh. I would rather not have them installed at all, and a make.conf knob seems a perfectly fine way to sustain this policy. It certainly beats schg'ing a dummy replacement, or unlinking after each installworld. Total removal and migration to ports would be a bikeshed; I suspect some folk still have production uses, and not everyone trusts openssh, either. Tangentially, NO_SUID sounds like an excellent idea, although admins wanting that should really be looking at nosuid for the appropriate mount. Joshua To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 20: 0: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 10C4E37B404; Tue, 9 Apr 2002 20:00:51 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A30pa27497; Tue, 9 Apr 2002 20:00:51 -0700 (PDT) (envelope-from obrien) Message-Id: <200204100300.g3A30pa27497@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 9 Apr 2002 20:00:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/yacc output.c reader.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/04/09 20:00:50 PDT Modified files: usr.bin/yacc output.c reader.c Log: Quiet uninitialized warnings. Revision Changes Path 1.27 +1 -0 src/usr.bin/yacc/output.c 1.17 +1 -0 src/usr.bin/yacc/reader.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 20: 5: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 0822E37B404; Tue, 9 Apr 2002 20:05:03 -0700 (PDT) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A352I28070; Tue, 9 Apr 2002 20:05:02 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200204100305.g3A352I28070@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Tue, 9 Apr 2002 20:05:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/sendmail - Imported sources X-FreeBSD-CVS-Branch: SENDMAIL Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro 2002/04/09 20:05:01 PDT src/contrib/sendmail - Imported sources Update of /home/ncvs/src/contrib/sendmail In directory freefall.freebsd.org:/d/home/gshapiro/Work/sendmail-8.12.3 Log Message: Import sendmail 8.12.3 Status: Vendor Tag: SENDMAIL Release Tags: v8_12_3 U src/contrib/sendmail/Makefile U src/contrib/sendmail/FAQ U src/contrib/sendmail/INSTALL U src/contrib/sendmail/KNOWNBUGS U src/contrib/sendmail/LICENSE U src/contrib/sendmail/PGPKEYS U src/contrib/sendmail/README U src/contrib/sendmail/RELEASE_NOTES U src/contrib/sendmail/src/Makefile U src/contrib/sendmail/src/Makefile.m4 U src/contrib/sendmail/src/README U src/contrib/sendmail/src/SECURITY U src/contrib/sendmail/src/TRACEFLAGS U src/contrib/sendmail/src/TUNING U src/contrib/sendmail/src/alias.c U src/contrib/sendmail/src/aliases U src/contrib/sendmail/src/aliases.5 U src/contrib/sendmail/src/arpadate.c U src/contrib/sendmail/src/bf.h U src/contrib/sendmail/src/bf.c U src/contrib/sendmail/src/collect.c C src/contrib/sendmail/src/conf.c C src/contrib/sendmail/src/conf.h U src/contrib/sendmail/src/control.c U src/contrib/sendmail/src/convtime.c U src/contrib/sendmail/src/daemon.c U src/contrib/sendmail/src/deliver.c U src/contrib/sendmail/src/domain.c U src/contrib/sendmail/src/envelope.c U src/contrib/sendmail/src/err.c U src/contrib/sendmail/src/headers.c U src/contrib/sendmail/src/helpfile U src/contrib/sendmail/src/macro.c U src/contrib/sendmail/src/mailq.1 U src/contrib/sendmail/src/main.c U src/contrib/sendmail/src/map.c C src/contrib/sendmail/src/mci.c U src/contrib/sendmail/src/milter.c U src/contrib/sendmail/src/mime.c U src/contrib/sendmail/src/newaliases.1 U src/contrib/sendmail/src/parseaddr.c U src/contrib/sendmail/src/queue.c U src/contrib/sendmail/src/readcf.c U src/contrib/sendmail/src/recipient.c U src/contrib/sendmail/src/savemail.c U src/contrib/sendmail/src/sendmail.8 U src/contrib/sendmail/src/sendmail.h U src/contrib/sendmail/src/sasl.c U src/contrib/sendmail/src/sfsasl.c U src/contrib/sendmail/src/sfsasl.h U src/contrib/sendmail/src/shmticklib.c U src/contrib/sendmail/src/sm_resolve.c U src/contrib/sendmail/src/sm_resolve.h U src/contrib/sendmail/src/srvrsmtp.c U src/contrib/sendmail/src/stab.c U src/contrib/sendmail/src/stats.c U src/contrib/sendmail/src/statusd_shm.h U src/contrib/sendmail/src/sysexits.c U src/contrib/sendmail/src/timers.c U src/contrib/sendmail/src/timers.h U src/contrib/sendmail/src/tls.c U src/contrib/sendmail/src/trace.c U src/contrib/sendmail/src/udb.c U src/contrib/sendmail/src/usersmtp.c U src/contrib/sendmail/src/util.c U src/contrib/sendmail/src/version.c U src/contrib/sendmail/doc/op/Makefile U src/contrib/sendmail/doc/op/op.me U src/contrib/sendmail/libsmutil/Makefile U src/contrib/sendmail/libsmutil/Makefile.m4 U src/contrib/sendmail/libsmutil/cf.c U src/contrib/sendmail/libsmutil/debug.c U src/contrib/sendmail/libsmutil/err.c U src/contrib/sendmail/libsmutil/lockfile.c U src/contrib/sendmail/libsmutil/safefile.c U src/contrib/sendmail/libsmutil/snprintf.c U src/contrib/sendmail/mail.local/Makefile U src/contrib/sendmail/mail.local/Makefile.m4 U src/contrib/sendmail/mail.local/README U src/contrib/sendmail/mail.local/mail.local.8 C src/contrib/sendmail/mail.local/mail.local.c U src/contrib/sendmail/mailstats/Makefile U src/contrib/sendmail/mailstats/Makefile.m4 U src/contrib/sendmail/mailstats/mailstats.8 U src/contrib/sendmail/mailstats/mailstats.c U src/contrib/sendmail/makemap/Makefile U src/contrib/sendmail/makemap/Makefile.m4 U src/contrib/sendmail/makemap/makemap.8 U src/contrib/sendmail/makemap/makemap.c U src/contrib/sendmail/smrsh/Makefile U src/contrib/sendmail/smrsh/Makefile.m4 U src/contrib/sendmail/smrsh/README U src/contrib/sendmail/smrsh/smrsh.8 U src/contrib/sendmail/smrsh/smrsh.c U src/contrib/sendmail/test/Makefile U src/contrib/sendmail/test/Makefile.m4 U src/contrib/sendmail/test/README U src/contrib/sendmail/test/Results U src/contrib/sendmail/test/t_dropgid.c U src/contrib/sendmail/test/t_exclopen.c U src/contrib/sendmail/test/t_pathconf.c U src/contrib/sendmail/test/t_seteuid.c U src/contrib/sendmail/test/t_setgid.c U src/contrib/sendmail/test/t_setreuid.c U src/contrib/sendmail/test/t_setuid.c U src/contrib/sendmail/test/t_snprintf.c U src/contrib/sendmail/include/sendmail/mailstats.h U src/contrib/sendmail/include/sendmail/pathnames.h U src/contrib/sendmail/include/sendmail/sendmail.h U src/contrib/sendmail/include/sm/assert.h U src/contrib/sendmail/include/sm/bitops.h U src/contrib/sendmail/include/sm/cdefs.h U src/contrib/sendmail/include/sm/cf.h U src/contrib/sendmail/include/sm/clock.h U src/contrib/sendmail/include/sm/conf.h U src/contrib/sendmail/include/sm/config.h U src/contrib/sendmail/include/sm/debug.h U src/contrib/sendmail/include/sm/errstring.h U src/contrib/sendmail/include/sm/exc.h U src/contrib/sendmail/include/sm/fdset.h U src/contrib/sendmail/include/sm/gen.h U src/contrib/sendmail/include/sm/heap.h U src/contrib/sendmail/include/sm/io.h U src/contrib/sendmail/include/sm/ldap.h U src/contrib/sendmail/include/sm/limits.h U src/contrib/sendmail/include/sm/mbdb.h U src/contrib/sendmail/include/sm/path.h U src/contrib/sendmail/include/sm/rpool.h U src/contrib/sendmail/include/sm/setjmp.h U src/contrib/sendmail/include/sm/shm.h U src/contrib/sendmail/include/sm/signal.h U src/contrib/sendmail/include/sm/string.h U src/contrib/sendmail/include/sm/sysexits.h U src/contrib/sendmail/include/sm/test.h U src/contrib/sendmail/include/sm/types.h U src/contrib/sendmail/include/sm/varargs.h U src/contrib/sendmail/include/sm/xtrap.h U src/contrib/sendmail/include/sm/os/sm_os_aix.h U src/contrib/sendmail/include/sm/os/sm_os_freebsd.h U src/contrib/sendmail/include/sm/os/sm_os_hp.h U src/contrib/sendmail/include/sm/os/sm_os_irix.h U src/contrib/sendmail/include/sm/os/sm_os_linux.h U src/contrib/sendmail/include/sm/os/sm_os_mpeix.h U src/contrib/sendmail/include/sm/os/sm_os_next.h U src/contrib/sendmail/include/sm/os/sm_os_openbsd.h U src/contrib/sendmail/include/sm/os/sm_os_openunix.h U src/contrib/sendmail/include/sm/os/sm_os_osf1.h U src/contrib/sendmail/include/sm/os/sm_os_sunos.h U src/contrib/sendmail/include/sm/os/sm_os_ultrix.h U src/contrib/sendmail/include/sm/os/sm_os_unixware.h U src/contrib/sendmail/include/libsmdb/smdb.h U src/contrib/sendmail/include/libmilter/mfdef.h U src/contrib/sendmail/include/libmilter/mfapi.h U src/contrib/sendmail/include/libmilter/milter.h U src/contrib/sendmail/libsm/Makefile U src/contrib/sendmail/libsm/Makefile.m4 U src/contrib/sendmail/libsm/README U src/contrib/sendmail/libsm/assert.c U src/contrib/sendmail/libsm/assert.html U src/contrib/sendmail/libsm/b-strcmp.c U src/contrib/sendmail/libsm/b-strl.c U src/contrib/sendmail/libsm/cdefs.html U src/contrib/sendmail/libsm/cf.c U src/contrib/sendmail/libsm/clock.c U src/contrib/sendmail/libsm/clrerr.c U src/contrib/sendmail/libsm/config.c U src/contrib/sendmail/libsm/debug.c U src/contrib/sendmail/libsm/debug.html U src/contrib/sendmail/libsm/errstring.c U src/contrib/sendmail/libsm/exc.c U src/contrib/sendmail/libsm/exc.html U src/contrib/sendmail/libsm/fclose.c U src/contrib/sendmail/libsm/feof.c U src/contrib/sendmail/libsm/ferror.c U src/contrib/sendmail/libsm/fflush.c U src/contrib/sendmail/libsm/fget.c U src/contrib/sendmail/libsm/findfp.c U src/contrib/sendmail/libsm/flags.c U src/contrib/sendmail/libsm/fopen.c U src/contrib/sendmail/libsm/fpos.c U src/contrib/sendmail/libsm/fprintf.c U src/contrib/sendmail/libsm/fpurge.c U src/contrib/sendmail/libsm/fput.c U src/contrib/sendmail/libsm/fread.c U src/contrib/sendmail/libsm/fscanf.c U src/contrib/sendmail/libsm/fseek.c U src/contrib/sendmail/libsm/fvwrite.c U src/contrib/sendmail/libsm/fvwrite.h U src/contrib/sendmail/libsm/fwalk.c U src/contrib/sendmail/libsm/fwrite.c U src/contrib/sendmail/libsm/gen.html U src/contrib/sendmail/libsm/get.c U src/contrib/sendmail/libsm/glue.h U src/contrib/sendmail/libsm/heap.c U src/contrib/sendmail/libsm/heap.html U src/contrib/sendmail/libsm/index.html U src/contrib/sendmail/libsm/io.html U src/contrib/sendmail/libsm/ldap.c U src/contrib/sendmail/libsm/local.h U src/contrib/sendmail/libsm/makebuf.c U src/contrib/sendmail/libsm/match.c U src/contrib/sendmail/libsm/mbdb.c U src/contrib/sendmail/libsm/mpeix.c U src/contrib/sendmail/libsm/niprop.c U src/contrib/sendmail/libsm/path.c U src/contrib/sendmail/libsm/put.c U src/contrib/sendmail/libsm/refill.c U src/contrib/sendmail/libsm/rpool.c U src/contrib/sendmail/libsm/rewind.c U src/contrib/sendmail/libsm/rpool.html U src/contrib/sendmail/libsm/setvbuf.c U src/contrib/sendmail/libsm/shm.c U src/contrib/sendmail/libsm/signal.c U src/contrib/sendmail/libsm/smstdio.c U src/contrib/sendmail/libsm/snprintf.c U src/contrib/sendmail/libsm/sscanf.c U src/contrib/sendmail/libsm/stdio.c U src/contrib/sendmail/libsm/strcasecmp.c U src/contrib/sendmail/libsm/strrevcmp.c U src/contrib/sendmail/libsm/strdup.c U src/contrib/sendmail/libsm/strerror.c U src/contrib/sendmail/libsm/strexit.c U src/contrib/sendmail/libsm/string.c U src/contrib/sendmail/libsm/stringf.c U src/contrib/sendmail/libsm/strio.c U src/contrib/sendmail/libsm/strl.c U src/contrib/sendmail/libsm/strto.c U src/contrib/sendmail/libsm/syslogio.c U src/contrib/sendmail/libsm/t-cf.c U src/contrib/sendmail/libsm/t-event.c U src/contrib/sendmail/libsm/t-exc.c U src/contrib/sendmail/libsm/t-float.c U src/contrib/sendmail/libsm/t-fopen.c U src/contrib/sendmail/libsm/t-heap.c U src/contrib/sendmail/libsm/t-shm.c U src/contrib/sendmail/libsm/t-match.c U src/contrib/sendmail/libsm/t-path.c U src/contrib/sendmail/libsm/t-rpool.c U src/contrib/sendmail/libsm/t-scanf.c U src/contrib/sendmail/libsm/t-smstdio.c U src/contrib/sendmail/libsm/t-string.c U src/contrib/sendmail/libsm/t-strio.c U src/contrib/sendmail/libsm/t-strl.c U src/contrib/sendmail/libsm/t-strrevcmp.c U src/contrib/sendmail/libsm/t-types.c U src/contrib/sendmail/libsm/test.c U src/contrib/sendmail/libsm/ungetc.c U src/contrib/sendmail/libsm/vasprintf.c U src/contrib/sendmail/libsm/vfprintf.c U src/contrib/sendmail/libsm/vfscanf.c U src/contrib/sendmail/libsm/vprintf.c U src/contrib/sendmail/libsm/vsnprintf.c U src/contrib/sendmail/libsm/vsprintf.c U src/contrib/sendmail/libsm/vsscanf.c U src/contrib/sendmail/libsm/wbuf.c U src/contrib/sendmail/libsm/wsetup.c U src/contrib/sendmail/libsm/xtrap.c U src/contrib/sendmail/cf/README U src/contrib/sendmail/cf/sendmail.schema U src/contrib/sendmail/cf/cf/Makefile U src/contrib/sendmail/cf/cf/README U src/contrib/sendmail/cf/cf/chez.cs.mc U src/contrib/sendmail/cf/cf/clientproto.mc U src/contrib/sendmail/cf/cf/cs-hpux10.mc U src/contrib/sendmail/cf/cf/cs-hpux9.mc U src/contrib/sendmail/cf/cf/cs-osf1.mc U src/contrib/sendmail/cf/cf/cs-solaris2.mc U src/contrib/sendmail/cf/cf/cs-sunos4.1.mc U src/contrib/sendmail/cf/cf/cs-ultrix4.mc U src/contrib/sendmail/cf/cf/cyrusproto.mc U src/contrib/sendmail/cf/cf/generic-bsd4.4.mc U src/contrib/sendmail/cf/cf/generic-hpux10.mc U src/contrib/sendmail/cf/cf/generic-hpux9.mc U src/contrib/sendmail/cf/cf/generic-linux.mc U src/contrib/sendmail/cf/cf/generic-mpeix.mc U src/contrib/sendmail/cf/cf/generic-nextstep3.3.mc U src/contrib/sendmail/cf/cf/generic-osf1.mc U src/contrib/sendmail/cf/cf/generic-solaris.mc U src/contrib/sendmail/cf/cf/generic-sunos4.1.mc U src/contrib/sendmail/cf/cf/generic-ultrix4.mc U src/contrib/sendmail/cf/cf/huginn.cs.mc U src/contrib/sendmail/cf/cf/knecht.mc U src/contrib/sendmail/cf/cf/mail.cs.mc U src/contrib/sendmail/cf/cf/mail.eecs.mc U src/contrib/sendmail/cf/cf/mailspool.cs.mc U src/contrib/sendmail/cf/cf/python.cs.mc U src/contrib/sendmail/cf/cf/s2k-osf1.mc U src/contrib/sendmail/cf/cf/s2k-ultrix4.mc U src/contrib/sendmail/cf/cf/submit.cf U src/contrib/sendmail/cf/cf/submit.mc U src/contrib/sendmail/cf/cf/tcpproto.mc U src/contrib/sendmail/cf/cf/ucbarpa.mc U src/contrib/sendmail/cf/cf/ucbvax.mc U src/contrib/sendmail/cf/cf/uucpproto.mc U src/contrib/sendmail/cf/cf/vangogh.cs.mc U src/contrib/sendmail/cf/domain/Berkeley.EDU.m4 U src/contrib/sendmail/cf/domain/CS.Berkeley.EDU.m4 U src/contrib/sendmail/cf/domain/EECS.Berkeley.EDU.m4 U src/contrib/sendmail/cf/domain/S2K.Berkeley.EDU.m4 U src/contrib/sendmail/cf/domain/generic.m4 U src/contrib/sendmail/cf/domain/berkeley-only.m4 U src/contrib/sendmail/cf/feature/accept_unqualified_senders.m4 U src/contrib/sendmail/cf/feature/accept_unresolvable_domains.m4 U src/contrib/sendmail/cf/feature/access_db.m4 U src/contrib/sendmail/cf/feature/allmasquerade.m4 U src/contrib/sendmail/cf/feature/always_add_domain.m4 U src/contrib/sendmail/cf/feature/authinfo.m4 U src/contrib/sendmail/cf/feature/bestmx_is_local.m4 U src/contrib/sendmail/cf/feature/bitdomain.m4 U src/contrib/sendmail/cf/feature/blacklist_recipients.m4 U src/contrib/sendmail/cf/feature/compat_check.m4 U src/contrib/sendmail/cf/feature/delay_checks.m4 U src/contrib/sendmail/cf/feature/dnsbl.m4 U src/contrib/sendmail/cf/feature/domaintable.m4 U src/contrib/sendmail/cf/feature/enhdnsbl.m4 U src/contrib/sendmail/cf/feature/generics_entire_domain.m4 U src/contrib/sendmail/cf/feature/genericstable.m4 U src/contrib/sendmail/cf/feature/ldap_routing.m4 U src/contrib/sendmail/cf/feature/msp.m4 U src/contrib/sendmail/cf/feature/limited_masquerade.m4 U src/contrib/sendmail/cf/feature/local_lmtp.m4 U src/contrib/sendmail/cf/feature/local_no_masquerade.m4 U src/contrib/sendmail/cf/feature/local_procmail.m4 U src/contrib/sendmail/cf/feature/lookupdotdomain.m4 U src/contrib/sendmail/cf/feature/loose_relay_check.m4 U src/contrib/sendmail/cf/feature/mailertable.m4 U src/contrib/sendmail/cf/feature/masquerade_entire_domain.m4 U src/contrib/sendmail/cf/feature/masquerade_envelope.m4 U src/contrib/sendmail/cf/feature/no_default_msa.m4 U src/contrib/sendmail/cf/feature/nocanonify.m4 U src/contrib/sendmail/cf/feature/nodns.m4 U src/contrib/sendmail/cf/feature/notsticky.m4 U src/contrib/sendmail/cf/feature/nouucp.m4 U src/contrib/sendmail/cf/feature/nullclient.m4 U src/contrib/sendmail/cf/feature/preserve_local_plus_detail.m4 U src/contrib/sendmail/cf/feature/preserve_luser_host.m4 U src/contrib/sendmail/cf/feature/promiscuous_relay.m4 U src/contrib/sendmail/cf/feature/queuegroup.m4 U src/contrib/sendmail/cf/feature/redirect.m4 U src/contrib/sendmail/cf/feature/relay_based_on_MX.m4 U src/contrib/sendmail/cf/feature/relay_entire_domain.m4 U src/contrib/sendmail/cf/feature/relay_hosts_only.m4 U src/contrib/sendmail/cf/feature/relay_local_from.m4 U src/contrib/sendmail/cf/feature/relay_mail_from.m4 U src/contrib/sendmail/cf/feature/smrsh.m4 U src/contrib/sendmail/cf/feature/stickyhost.m4 U src/contrib/sendmail/cf/feature/use_ct_file.m4 U src/contrib/sendmail/cf/feature/use_cw_file.m4 U src/contrib/sendmail/cf/feature/uucpdomain.m4 U src/contrib/sendmail/cf/feature/virtuser_entire_domain.m4 U src/contrib/sendmail/cf/feature/virtusertable.m4 U src/contrib/sendmail/cf/hack/cssubdomain.m4 U src/contrib/sendmail/cf/m4/cf.m4 U src/contrib/sendmail/cf/m4/cfhead.m4 U src/contrib/sendmail/cf/m4/proto.m4 U src/contrib/sendmail/cf/m4/version.m4 U src/contrib/sendmail/cf/mailer/cyrus.m4 U src/contrib/sendmail/cf/mailer/fax.m4 U src/contrib/sendmail/cf/mailer/local.m4 U src/contrib/sendmail/cf/mailer/mail11.m4 U src/contrib/sendmail/cf/mailer/phquery.m4 U src/contrib/sendmail/cf/mailer/pop.m4 U src/contrib/sendmail/cf/mailer/procmail.m4 U src/contrib/sendmail/cf/mailer/qpage.m4 U src/contrib/sendmail/cf/mailer/smtp.m4 U src/contrib/sendmail/cf/mailer/usenet.m4 U src/contrib/sendmail/cf/mailer/uucp.m4 U src/contrib/sendmail/cf/ostype/aix3.m4 U src/contrib/sendmail/cf/ostype/aix4.m4 U src/contrib/sendmail/cf/ostype/aix5.m4 U src/contrib/sendmail/cf/ostype/altos.m4 U src/contrib/sendmail/cf/ostype/amdahl-uts.m4 U src/contrib/sendmail/cf/ostype/a-ux.m4 U src/contrib/sendmail/cf/ostype/bsd4.3.m4 U src/contrib/sendmail/cf/ostype/bsd4.4.m4 U src/contrib/sendmail/cf/ostype/bsdi.m4 U src/contrib/sendmail/cf/ostype/bsdi1.0.m4 U src/contrib/sendmail/cf/ostype/bsdi2.0.m4 U src/contrib/sendmail/cf/ostype/darwin.m4 U src/contrib/sendmail/cf/ostype/dgux.m4 U src/contrib/sendmail/cf/ostype/domainos.m4 U src/contrib/sendmail/cf/ostype/dynix3.2.m4 U src/contrib/sendmail/cf/ostype/freebsd4.m4 U src/contrib/sendmail/cf/ostype/freebsd5.m4 U src/contrib/sendmail/cf/ostype/gnu.m4 U src/contrib/sendmail/cf/ostype/hpux10.m4 U src/contrib/sendmail/cf/ostype/hpux11.m4 U src/contrib/sendmail/cf/ostype/hpux9.m4 U src/contrib/sendmail/cf/ostype/irix4.m4 U src/contrib/sendmail/cf/ostype/irix5.m4 U src/contrib/sendmail/cf/ostype/irix6.m4 U src/contrib/sendmail/cf/ostype/isc4.1.m4 U src/contrib/sendmail/cf/ostype/linux.m4 U src/contrib/sendmail/cf/ostype/maxion.m4 U src/contrib/sendmail/cf/ostype/mklinux.m4 U src/contrib/sendmail/cf/ostype/mpeix.m4 U src/contrib/sendmail/cf/ostype/nextstep.m4 U src/contrib/sendmail/cf/ostype/openbsd.m4 U src/contrib/sendmail/cf/ostype/osf1.m4 U src/contrib/sendmail/cf/ostype/powerux.m4 U src/contrib/sendmail/cf/ostype/ptx2.m4 U src/contrib/sendmail/cf/ostype/qnx.m4 U src/contrib/sendmail/cf/ostype/riscos4.5.m4 U src/contrib/sendmail/cf/ostype/sco-uw-2.1.m4 U src/contrib/sendmail/cf/ostype/sco3.2.m4 U src/contrib/sendmail/cf/ostype/sinix.m4 U src/contrib/sendmail/cf/ostype/solaris2.m4 U src/contrib/sendmail/cf/ostype/solaris2.ml.m4 U src/contrib/sendmail/cf/ostype/solaris2.pre5.m4 U src/contrib/sendmail/cf/ostype/solaris8.m4 U src/contrib/sendmail/cf/ostype/sunos3.5.m4 U src/contrib/sendmail/cf/ostype/sunos4.1.m4 U src/contrib/sendmail/cf/ostype/svr4.m4 U src/contrib/sendmail/cf/ostype/ultrix4.m4 U src/contrib/sendmail/cf/ostype/unixware7.m4 U src/contrib/sendmail/cf/ostype/unknown.m4 U src/contrib/sendmail/cf/ostype/uxpds.m4 U src/contrib/sendmail/cf/sh/makeinfo.sh U src/contrib/sendmail/cf/siteconfig/uucp.cogsci.m4 U src/contrib/sendmail/cf/siteconfig/uucp.old.arpa.m4 U src/contrib/sendmail/cf/siteconfig/uucp.ucbarpa.m4 U src/contrib/sendmail/cf/siteconfig/uucp.ucbvax.m4 U src/contrib/sendmail/praliases/Makefile U src/contrib/sendmail/praliases/Makefile.m4 U src/contrib/sendmail/praliases/praliases.8 U src/contrib/sendmail/praliases/praliases.c U src/contrib/sendmail/rmail/Makefile U src/contrib/sendmail/rmail/Makefile.m4 U src/contrib/sendmail/rmail/rmail.8 U src/contrib/sendmail/rmail/rmail.c U src/contrib/sendmail/contrib/README U src/contrib/sendmail/contrib/bitdomain.c U src/contrib/sendmail/contrib/bounce-resender.pl U src/contrib/sendmail/contrib/bsdi.mc U src/contrib/sendmail/contrib/buildvirtuser U src/contrib/sendmail/contrib/cidrexpand U src/contrib/sendmail/contrib/dnsblaccess.m4 U src/contrib/sendmail/contrib/domainmap.m4 U src/contrib/sendmail/contrib/doublebounce.pl U src/contrib/sendmail/contrib/etrn.pl U src/contrib/sendmail/contrib/expn.pl U src/contrib/sendmail/contrib/link_hash.sh U src/contrib/sendmail/contrib/mail.local.linux U src/contrib/sendmail/contrib/mailprio U src/contrib/sendmail/contrib/mh.patch U src/contrib/sendmail/contrib/mmuegel U src/contrib/sendmail/contrib/movemail.conf U src/contrib/sendmail/contrib/movemail.pl U src/contrib/sendmail/contrib/oldbind.compat.c U src/contrib/sendmail/contrib/passwd-to-alias.pl U src/contrib/sendmail/contrib/qtool.pl U src/contrib/sendmail/contrib/qtool.8 U src/contrib/sendmail/contrib/re-mqueue.pl U src/contrib/sendmail/contrib/rmail.oldsys.patch U src/contrib/sendmail/contrib/smcontrol.pl U src/contrib/sendmail/editmap/Makefile U src/contrib/sendmail/editmap/Makefile.m4 U src/contrib/sendmail/editmap/editmap.8 U src/contrib/sendmail/editmap/editmap.c U src/contrib/sendmail/libsmdb/Makefile U src/contrib/sendmail/libsmdb/Makefile.m4 U src/contrib/sendmail/libsmdb/smdb.c U src/contrib/sendmail/libsmdb/smdb1.c U src/contrib/sendmail/libsmdb/smdb2.c U src/contrib/sendmail/libsmdb/smndbm.c U src/contrib/sendmail/libmilter/Makefile U src/contrib/sendmail/libmilter/Makefile.m4 U src/contrib/sendmail/libmilter/README U src/contrib/sendmail/libmilter/comm.c U src/contrib/sendmail/libmilter/engine.c U src/contrib/sendmail/libmilter/handler.c U src/contrib/sendmail/libmilter/listener.c U src/contrib/sendmail/libmilter/main.c U src/contrib/sendmail/libmilter/libmilter.h U src/contrib/sendmail/libmilter/signal.c U src/contrib/sendmail/libmilter/sm_gethost.c U src/contrib/sendmail/libmilter/smfi.c U src/contrib/sendmail/libmilter/docs/api.html U src/contrib/sendmail/libmilter/docs/design.html U src/contrib/sendmail/libmilter/docs/figure1.fig U src/contrib/sendmail/libmilter/docs/figure1.jpg U src/contrib/sendmail/libmilter/docs/figure1.ps U src/contrib/sendmail/libmilter/docs/figure2.fig U src/contrib/sendmail/libmilter/docs/figure2.jpg U src/contrib/sendmail/libmilter/docs/figure2.ps U src/contrib/sendmail/libmilter/docs/index.html U src/contrib/sendmail/libmilter/docs/installation.html U src/contrib/sendmail/libmilter/docs/other.html U src/contrib/sendmail/libmilter/docs/overview.html U src/contrib/sendmail/libmilter/docs/sample.html U src/contrib/sendmail/libmilter/docs/smfi_addheader.html U src/contrib/sendmail/libmilter/docs/smfi_addrcpt.html U src/contrib/sendmail/libmilter/docs/smfi_chgheader.html U src/contrib/sendmail/libmilter/docs/smfi_delrcpt.html U src/contrib/sendmail/libmilter/docs/smfi_getpriv.html U src/contrib/sendmail/libmilter/docs/smfi_getsymval.html U src/contrib/sendmail/libmilter/docs/smfi_main.html U src/contrib/sendmail/libmilter/docs/xxfi_abort.html U src/contrib/sendmail/libmilter/docs/smfi_register.html U src/contrib/sendmail/libmilter/docs/smfi_replacebody.html N src/contrib/sendmail/libmilter/docs/smfi_setbacklog.html U src/contrib/sendmail/libmilter/docs/smfi_setconn.html U src/contrib/sendmail/libmilter/docs/smfi_setpriv.html U src/contrib/sendmail/libmilter/docs/smfi_setreply.html U src/contrib/sendmail/libmilter/docs/smfi_settimeout.html U src/contrib/sendmail/libmilter/docs/xxfi_body.html U src/contrib/sendmail/libmilter/docs/xxfi_close.html U src/contrib/sendmail/libmilter/docs/xxfi_connect.html U src/contrib/sendmail/libmilter/docs/xxfi_envfrom.html U src/contrib/sendmail/libmilter/docs/xxfi_envrcpt.html U src/contrib/sendmail/libmilter/docs/xxfi_eoh.html U src/contrib/sendmail/libmilter/docs/xxfi_eom.html U src/contrib/sendmail/libmilter/docs/xxfi_header.html U src/contrib/sendmail/libmilter/docs/xxfi_helo.html U src/contrib/sendmail/vacation/Makefile U src/contrib/sendmail/vacation/Makefile.m4 C src/contrib/sendmail/vacation/vacation.1 U src/contrib/sendmail/vacation/vacation.c 5 conflicts created by this import. Use the following command to help the merge: cvs checkout -jSENDMAIL:yesterday -jSENDMAIL src/contrib/sendmail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 20: 6: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 8DA6137B416; Tue, 9 Apr 2002 20:06:22 -0700 (PDT) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A36M531987; Tue, 9 Apr 2002 20:06:22 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200204100306.g3A36M531987@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Tue, 9 Apr 2002 20:06:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/sendmail/mail.local mail.local.c src/contrib/sendmail/src conf.c conf.h mci.c src/contrib/sendmail/vacation vacation.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 gshapiro 2002/04/09 20:06:22 PDT Modified files: contrib/sendmail/mail.local mail.local.c contrib/sendmail/src conf.c conf.h mci.c contrib/sendmail/vacation vacation.1 Log: Fix conflicts from sendmail 8.12.3 import Revision Changes Path 1.16 +2 -2 src/contrib/sendmail/mail.local/mail.local.c 1.13 +63 -12 src/contrib/sendmail/src/conf.c 1.16 +2 -2 src/contrib/sendmail/src/conf.h 1.9 +5 -6 src/contrib/sendmail/src/mci.c 1.6 +47 -20 src/contrib/sendmail/vacation/vacation.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 20: 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 790C537B405; Tue, 9 Apr 2002 20:06:58 -0700 (PDT) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A36w932061; Tue, 9 Apr 2002 20:06:58 -0700 (PDT) (envelope-from pat) Message-Id: <200204100306.g3A36w932061@freefall.freebsd.org> From: Patrick Li Date: Tue, 9 Apr 2002 20:06:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/qtfw/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 pat 2002/04/09 20:06:58 PDT Modified files: security/qtfw/files patch-configure Log: Fix another case when build breaks when qt versions 1 and 2 coexist Revision Changes Path 1.3 +11 -2 ports/security/qtfw/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 Tue Apr 9 20: 7: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 EEE4737B400; Tue, 9 Apr 2002 20:07:25 -0700 (PDT) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A37Pk32163; Tue, 9 Apr 2002 20:07:25 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200204100307.g3A37Pk32163@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Tue, 9 Apr 2002 20:07:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/sendmail 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 gshapiro 2002/04/09 20:07:25 PDT Modified files: contrib/sendmail FREEBSD-upgrade Log: Record sendmail 8.12.3 import Revision Changes Path 1.13 +4 -4 src/contrib/sendmail/FREEBSD-upgrade To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 20: 8: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 6D16137B404; Tue, 9 Apr 2002 20:08:35 -0700 (PDT) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A38ZF32372; Tue, 9 Apr 2002 20:08:35 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200204100308.g3A38ZF32372@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Tue, 9 Apr 2002 20:08:35 -0700 (PDT) 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 gshapiro 2002/04/09 20:08:35 PDT Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Record sendmail 8.12.3 import Revision Changes Path 1.316 +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 Tue Apr 9 20:10: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 83B8037B405; Tue, 9 Apr 2002 20:10:03 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A3A3n32628; Tue, 9 Apr 2002 20:10:03 -0700 (PDT) (envelope-from obrien) Message-Id: <200204100310.g3A3A3n32628@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 9 Apr 2002 20:10:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/awk 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/04/09 20:10:03 PDT Modified files: usr.bin/awk Makefile Log: Style. Revision Changes Path 1.8 +3 -3 src/usr.bin/awk/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 20:10:39 2002 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id B1CE537B400; Tue, 9 Apr 2002 20:10:28 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [IPv6:fec0::1:12]) by Awfulhak.org (8.12.2/8.11.6) with ESMTP id g3A3APoi027887; Wed, 10 Apr 2002 04:10:25 +0100 (BST) (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.12.2/8.12.2) with ESMTP id g3A3ANOF006501; Wed, 10 Apr 2002 04:10:23 +0100 (BST) (envelope-from brian@freebsd-services.com) Message-Id: <200204100310.g3A3ANOF006501@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: John Baldwin Cc: Brian Somers , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_linker.c In-Reply-To: Message from John Baldwin of "Tue, 09 Apr 2002 22:48:34 EDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 10 Apr 2002 04:10:23 +0100 From: Brian Somers Sender: owner-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 10-Apr-2002 Brian Somers wrote: > >> On 10-Apr-2002 Brian Somers wrote: > >> >> brian 2002/04/09 18:14:45 PDT > >> >> > >> >> Modified files: > >> >> sys/kern kern_linker.c > >> >> Log: > >> >> In linker_load_module(), check that rootdev != NODEV before calling > >> >> linker_search_module(). > >> >> > >> >> Without this, modules loaded from loader.conf that then try to load > >> >> in additional modules (such as digi.ko loading a card's BIOS) die > >> >> badly in the vn_open() called from linker_search_module(). > >> >> > >> >> It may be worth checking (KASSERTing?) that rootdev != NODEV in > >> >> vn_open() too. > >> >> > >> >> Revision Changes Path > >> >> 1.88 +5 -3 src/sys/kern/kern_linker.c > >> > > >> > After these changes, it's possible for digi to find it's BIOS/FEPOS > >> > from one of the digi_* modules at boot time - as long as that > >> > digi_* module is already available (either built into the kernel or > >> > ``loaded'' at boot time). However, digi fails to initialise the > >> > card - I think due to tsleep failing... but I'm not sure yet. > >> > >> tsleep/wakeup don't work during the boot device probe. More > >> specifically, interrupt handlers don't run, so you will never get woken > >> up. Also, since timeouts aren't working yet the tsleep() won't timeout > >> either. Thus, if you try to tsleep() during this time period, tsleep() > >> will return immediately. > > > > Is DELAY() the only alternative ? It seems that if I DELAY(), it has > > a rather noticeable effect on the machine (everything seems to lock > > up 'till the DELAY()s are done). > > > > Maybe I should look at having the driver ``test'' tsleep and use > > DELAY() instead if it doesn't work ? > > During boot you want to defer things that depend on interrupts until later > like the ATA probe does. DELAY() will basically hang the machine, yes. > You can tell if tsleep works or not by testing the 'cold' variable. If it > is true, then tsleep doesn't work. That does the trick. Thank you ! The DELAY/tsleep is required once the driver has uploaded the firmware onto the card - it needs to poll the card 'till it reports that it's initialised itself. The tsleep() calls in question were all tsleep(...., 1) with no wakeups, so it's pretty safe to use at boot time. > -- > > John Baldwin <>< http://www.FreeBSD.org/~jhb/ > "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 20:12: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 48C0F37B405; Tue, 9 Apr 2002 20:12:08 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3A3C6Ym054159; Tue, 9 Apr 2002 20:12:06 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3A3Ap6D054082; Tue, 9 Apr 2002 20:10:51 -0700 (PDT) Date: Tue, 9 Apr 2002 20:10:51 -0700 From: "David O'Brien" To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.sys.mk Message-ID: <20020409201051.A53917@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200204071703.g37H36t31847@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: <200204071703.g37H36t31847@freefall.freebsd.org>; from ru@FreeBSD.org on Sun, Apr 07, 2002 at 10:03:06AM -0700 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, Apr 07, 2002 at 10:03:06AM -0700, Ruslan Ermilov wrote: > ru 2002/04/07 10:03:06 PDT > > Modified files: > share/mk bsd.sys.mk > Log: > FreeBSD prior to 4.5-RELEASE and older versions of 5.0-CURRENT do not > have the __FBSDID() macro in . Fix this once and for all > for tools that need to be bootstrapped. Will this still work after BDE removes __RCSID from cdefs.h? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 20:13: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 9A00437B405; Tue, 9 Apr 2002 20:13:28 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A3DSt33125; Tue, 9 Apr 2002 20:13:28 -0700 (PDT) (envelope-from brian) Message-Id: <200204100313.g3A3DSt33125@freefall.freebsd.org> From: Brian Somers Date: Tue, 9 Apr 2002 20:13:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/digi digi.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/04/09 20:13:28 PDT Modified files: sys/dev/digi digi.c Log: Add a digi_delay() function and use it instead of tsleep() when polling the card for command completion. digi_delay() uses either tsleep() or DELAY() depending on the value of ``cold''. Pointed in the right direction by: jhb Revision Changes Path 1.25 +14 -5 src/sys/dev/digi/digi.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 20:18:39 2002 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id EABBF37B400; Tue, 9 Apr 2002 20:18:35 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [IPv6:fec0::1:12]) by Awfulhak.org (8.12.2/8.11.6) with ESMTP id g3A3IYoi027926; Wed, 10 Apr 2002 04:18:35 +0100 (BST) (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.12.2/8.12.2) with ESMTP id g3A3IXOF013706; Wed, 10 Apr 2002 04:18:33 +0100 (BST) (envelope-from brian@freebsd-services.com) Message-Id: <200204100318.g3A3IXOF013706@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Joshua Goodall Cc: "David O'Brien" , Bosko Milekic , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin Makefile src/share/examples/etc make.conf src/usr.bin Makefile In-Reply-To: Message from Joshua Goodall of "Wed, 10 Apr 2002 12:52:30 +1000." <20020410025230.GA8927@roughtrade.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 10 Apr 2002 04:18:33 +0100 From: Brian Somers Sender: owner-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 don't know how standard the practise is, but part of my standard > server-hardening procedure is to remove the rsh/rcp tools. I don't > allow my users to even think about risking their use: they have > been fully superseded in functionality in every way by ssh. I would [.....] I think ssh needs a ``-c none'' option before it can claim to have superseded rsh. Until then, ssh isn't the right tool to transfer across a fast, trusted network. -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 20:27:15 2002 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 4008837B400; Tue, 9 Apr 2002 20:27:11 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [IPv6:fec0::1:12]) by Awfulhak.org (8.12.2/8.11.6) with ESMTP id g3A3R9oi027943; Wed, 10 Apr 2002 04:27:10 +0100 (BST) (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.12.2/8.12.2) with ESMTP id g3A3R7OF022218; Wed, 10 Apr 2002 04:27:08 +0100 (BST) (envelope-from brian@freebsd-services.com) Message-Id: <200204100327.g3A3R7OF022218@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Brian Somers Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/digi digi.c In-Reply-To: Message from Brian Somers of "Tue, 09 Apr 2002 20:13:28 PDT." <200204100313.g3A3DSt33125@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 10 Apr 2002 04:27:07 +0100 From: Brian Somers Sender: owner-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/04/09 20:13:28 PDT > > Modified files: > sys/dev/digi digi.c > Log: > Add a digi_delay() function and use it instead of tsleep() when polling > the card for command completion. > > digi_delay() uses either tsleep() or DELAY() depending on the value of > ``cold''. > > Pointed in the right direction by: jhb > > Revision Changes Path > 1.25 +14 -5 src/sys/dev/digi/digi.c After this change, it's possible to either build digi and whatever digi_* drivers you need into the kernel, or to kldload them at boot time. -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 20:32: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 8198337B419; Tue, 9 Apr 2002 20:32:10 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A3WAn35768; Tue, 9 Apr 2002 20:32:10 -0700 (PDT) (envelope-from obrien) Message-Id: <200204100332.g3A3WAn35768@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 9 Apr 2002 20:32:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gcc295 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/04/09 20:32:10 PDT Modified files: lang/gcc295 Makefile Log: Since I cannot think of any reason one would use this port for FORTRAN or Java compilers (the newer versions are much better); trim this port down to just the parts we will need when GCC 3.1 becomes the -CURRENT compiler. Revision Changes Path 1.83 +10 -15 ports/lang/gcc295/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 20:51: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 6D52637B416; Tue, 9 Apr 2002 20:51:49 -0700 (PDT) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A3pnt38067; Tue, 9 Apr 2002 20:51:49 -0700 (PDT) (envelope-from dd) Message-Id: <200204100351.g3A3pnt38067@freefall.freebsd.org> From: Dima Dorfman Date: Tue, 9 Apr 2002 20:51:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/snp snp.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 dd 2002/04/09 20:51:49 PDT Modified files: sys/dev/snp snp.c Log: Treat input on the snp device as an `unsigned char'. According to the submitter, this permits Russian (and probably other locales') characters to be entered via watch(8). PR: 35636 Submitted by: Gleb Smirnoff Revision Changes Path 1.73 +1 -1 src/sys/dev/snp/snp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 20:58:34 2002 Delivered-To: cvs-all@freebsd.org Received: from carbon.slackerbsd.org (pcp01400762pcs.glnodn01.pa.comcast.net [68.80.148.54]) by hub.freebsd.org (Postfix) with ESMTP id 9F8AD37B405 for ; Tue, 9 Apr 2002 20:58:27 -0700 (PDT) Received: from carbon.slackerbsd.org (cschmidt@localhost [127.0.0.1]) by carbon.slackerbsd.org (8.12.2/8.12.2) with ESMTP id g3A3wQsc008153 for ; Wed, 10 Apr 2002 03:58:26 GMT (envelope-from cschmidt@slackerbsd.org) Received: (from cschmidt@localhost) by carbon.slackerbsd.org (8.12.2/8.12.2/Submit) id g3A3wQTe008152 for cvs-all@FreeBSD.ORG; Wed, 10 Apr 2002 03:58:26 GMT X-Authentication-Warning: carbon.slackerbsd.org: cschmidt set sender to cschmidt@slackerbsd.org using -f Date: Tue, 9 Apr 2002 23:58:26 -0400 From: Carl Schmidt To: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/bin Makefile src/share/examples/etc make.conf src/usr.bin Makefile Message-ID: <20020410035825.GA7883@carbon.slackerbsd.org> Reply-To: Carl Schmidt Mail-Followup-To: cvs-all@FreeBSD.ORG References: <20020410025230.GA8927@roughtrade.net> <200204100318.g3A3IXOF013706@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204100318.g3A3IXOF013706@hak.lan.Awfulhak.org> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 10, 2002 at 04:18:33AM +0100, Brian Somers wrote: > > I don't know how standard the practise is, but part of my standard > > server-hardening procedure is to remove the rsh/rcp tools. I don't > > allow my users to even think about risking their use: they have > > been fully superseded in functionality in every way by ssh. I would > [.....] > > I think ssh needs a ``-c none'' option before it can claim to have > superseded rsh. Until then, ssh isn't the right tool to transfer > across a fast, trusted network. Perhaps it is just -current but: oxygen# rsh -c rsh: illegal option -- c oxygen# rcp -c rcp: illegal option -- c The one machine i have running -stable does not have the 'r' tools installed so I can't test but I do have the manual pages for each command and neither rcp nor rsh have this "-c" option documented. Could you explain what it is supposed to do? -- Carl Schmidt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 20:58: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 5C4C037B416; Tue, 9 Apr 2002 20:58:40 -0700 (PDT) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A3weB39270; Tue, 9 Apr 2002 20:58:40 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200204100358.g3A3weB39270@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Tue, 9 Apr 2002 20:58:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults periodic.conf src/etc/periodic/daily 440.status-mailq 500.queuerun src/share/man/man5 periodic.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro 2002/04/09 20:58:40 PDT Modified files: etc/defaults periodic.conf etc/periodic/daily 440.status-mailq 500.queuerun share/man/man5 periodic.conf.5 Log: Update mail queue related periodic scripts to account for sendmail 8.12's clientmqueue (submit mail queue). The new mailq display is only active if both the old daily_status_mailq_enable is set to "YES" and the new daily_status_include_submit_mailq is set to "YES" so people who disabled 440.status-mailq won't have any surprises. Likewise, the new queue run is only active if both the old daily_queuerun_enable is set to "YES" and the new daily_submit_queuerun is set to "YES" so people who disabled 500.queuerun won't have any surprises. While I am here, remove the [ ! -d /var/spool/mqueue ] checks from both scripts as the queue directory isn't always /var/spool/mqueue for the main daemon -- it can be set to anything in the sendmail.cf file. MFC after: 1 week Revision Changes Path 1.19 +3 -1 src/etc/defaults/periodic.conf 1.7 +24 -7 src/etc/periodic/daily/440.status-mailq 1.2 +8 -6 src/etc/periodic/daily/500.queuerun 1.41 +19 -0 src/share/man/man5/periodic.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 21: 9: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 8CA5F37B419; Tue, 9 Apr 2002 21:09:07 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A497A44392; Tue, 9 Apr 2002 21:09:07 -0700 (PDT) (envelope-from jhb) Message-Id: <200204100409.g3A497A44392@freefall.freebsd.org> From: John Baldwin Date: Tue, 9 Apr 2002 21:09:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_time.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/04/09 21:09:07 PDT Modified files: sys/kern kern_time.c Log: - Change settime() to take a thread as its first argument instead of a proc so it can use td_ucred. - Push Giant down into the end of settime() where we actually set the time on the timecounter and time of day clock. - Remove Giant from clock_settime(). - Push Giant down in settimeofday() to just protect the 'tz' global variable. Revision Changes Path 1.80 +27 -36 src/sys/kern/kern_time.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 21:18: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 2AFE937B417; Tue, 9 Apr 2002 21:18:43 -0700 (PDT) Received: (from suz@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A4IhH45727; Tue, 9 Apr 2002 21:18:43 -0700 (PDT) (envelope-from suz) Message-Id: <200204100418.g3A4IhH45727@freefall.freebsd.org> From: SUZUKI Shinsuke Date: Tue, 9 Apr 2002 21:18:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if.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 suz 2002/04/09 21:18:43 PDT Modified files: sys/net if.c Log: fixed a kernel crash when enabling multicast on vlan interface owing to a NULL argument to vlan_ioctl() at if_allmulti(). Reviewed by: ume MFC after: 1 week Revision Changes Path 1.138 +9 -4 src/sys/net/if.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 21:46: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 1DFD237B416; Tue, 9 Apr 2002 21:46:10 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A4kAH49328; Tue, 9 Apr 2002 21:46:10 -0700 (PDT) (envelope-from imp) Message-Id: <200204100446.g3A4kAH49328@freefall.freebsd.org> From: Warner Losh Date: Tue, 9 Apr 2002 21:46:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/XFree86-4-libraries/files patch-ioctl X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/09 21:46:10 PDT Added files: x11/XFree86-4-libraries/files patch-ioctl Log: Fix ioctl #define abuse Revision Changes Path 1.1 +12 -0 ports/x11/XFree86-4-libraries/files/patch-ioctl (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 21:48:24 2002 Delivered-To: cvs-all@freebsd.org Received: from kayak.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by hub.freebsd.org (Postfix) with ESMTP id 3EA2F37B416; Tue, 9 Apr 2002 21:48:20 -0700 (PDT) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by kayak.xcllnt.net (8.11.6/8.11.4) with ESMTP id g3A4mJJ18937; Tue, 9 Apr 2002 21:48:19 -0700 (PDT) (envelope-from marcel@kayak.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp01.pn.xcllnt.net (8.12.2/8.12.2) with ESMTP id g3A4mMJv010202; Tue, 9 Apr 2002 21:48:22 -0700 (PDT) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.2/8.12.2/Submit) id g3A4mLgl010201; Tue, 9 Apr 2002 21:48:21 -0700 (PDT) Date: Tue, 9 Apr 2002 21:48:21 -0700 From: Marcel Moolenaar To: "David O'Brien" Cc: Peter Wemm , Ruslan Ermilov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr Message-ID: <20020410044821.GA10113@dhcp01.pn.xcllnt.net> References: <20020408144719.B92702@dragon.nuxi.com> <20020408232040.459C33811@overcee.wemm.org> <20020408191029.B93005@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020408191029.B93005@dragon.nuxi.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 Mon, Apr 08, 2002 at 07:10:29PM -0700, David O'Brien wrote: > On Mon, Apr 08, 2002 at 04:20:40PM -0700, Peter Wemm wrote: > > > Please commit this as it does improve things. As Peter mentioned it > > > would be nice to add the libstdc++ dependancy also. But even w/o that, > > > this patch is a help. > > > > No, do what Max Khon suggested. Use PROG_CXX like NetBSD does. > > Why can't we do both? If we can make PROG=foo do the right thing in the > common case we should make it do so. The common case is all C. That already works. If you do both, you break the uncommon case, in which you have C++ source files (or at least named like them) but want C linkage. You cannot use PROG= anymore. This can only lead to a third one PROG_C, which is almost exactly like PROG. This is confusing. I think only PROG_CXX is better. This automaticly means that PROG is for C. Always... -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 21:53: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 39B7B37B404; Tue, 9 Apr 2002 21:53:38 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A4rct50291; Tue, 9 Apr 2002 21:53:38 -0700 (PDT) (envelope-from imp) Message-Id: <200204100453.g3A4rct50291@freefall.freebsd.org> From: Warner Losh Date: Tue, 9 Apr 2002 21:53:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys ioccom.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/04/09 21:53:38 PDT Modified files: sys/sys ioccom.h Log: I've fixed the X11 port, so I can remove the (ioctl) hack. This hack turns out to be a bad idea. Many auto configuration scripts will #include a bunch of system headers, run it through cpp and then grep/sed to see if there was really a prototype. The regular expressions that are used to test this didn't accept all possible legal ANSI-C prototypes. In particular, they didn't accept the () around ioctl. Several different programs do this, so eliminating the parans will keep FreeBSD maximally compatible with other systems. Appologies to: obrien (he was right in the end) This potentally breaks some ports (and fixes vim and others that haven't been fixed to deal with the parens). Revision Changes Path 1.14 +1 -6 src/sys/sys/ioccom.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 21:58: 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 19D9437B417; Tue, 9 Apr 2002 21:58:05 -0700 (PDT) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A4w5451069; Tue, 9 Apr 2002 21:58:05 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200204100458.g3A4w5451069@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Tue, 9 Apr 2002 21:58:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/sendmail/libmilter/docs figure1.jpg figure2.jpg 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 gshapiro 2002/04/09 21:58:05 PDT Added files: (Branch: RELENG_4) contrib/sendmail/libmilter/docs figure1.jpg figure2.jpg Log: Add two files to RELENG_4 that were missed in the sendmail-8.12.2 MFC. Revision Changes Path 1.1.1.1.2.1 +136 -0 src/contrib/sendmail/libmilter/docs/figure1.jpg (new) 1.1.1.1.2.1 +257 -0 src/contrib/sendmail/libmilter/docs/figure2.jpg (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 21:58:32 2002 Delivered-To: cvs-all@freebsd.org Received: from kayak.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by hub.freebsd.org (Postfix) with ESMTP id 9FFA037B404; Tue, 9 Apr 2002 21:58:27 -0700 (PDT) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by kayak.xcllnt.net (8.11.6/8.11.4) with ESMTP id g3A4wRJ18963; Tue, 9 Apr 2002 21:58:27 -0700 (PDT) (envelope-from marcel@kayak.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp01.pn.xcllnt.net (8.12.2/8.12.2) with ESMTP id g3A4wUJv010239; Tue, 9 Apr 2002 21:58:30 -0700 (PDT) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.2/8.12.2/Submit) id g3A4wURq010238; Tue, 9 Apr 2002 21:58:30 -0700 (PDT) Date: Tue, 9 Apr 2002 21:58:30 -0700 From: Marcel Moolenaar To: Ruslan Ermilov Cc: "David E. O'Brien" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin Makefile Message-ID: <20020410045830.GB10113@dhcp01.pn.xcllnt.net> References: <200204082038.g38KcuJ36871@freefall.freebsd.org> <20020409082654.GE73475@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020409082654.GE73475@sunbay.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 Tue, Apr 09, 2002 at 11:26:54AM +0300, Ruslan Ermilov wrote: > > Log: > > GCC and Gperf do not work on ia64 or sparc64 yet. > > Also do not try to compile Groff if NO_CXX is set. > > > > Revision Changes Path > > 1.59 +10 -2 src/gnu/usr.bin/Makefile > > > This is IMHO bogus. NO_CXX only means that (GNU) c++ shouldn't > be built, it doesn't imply that the host doesn't have another > working (probably non-GNU) c++ compiler that can build Groff. Unfortunately this is irrelevant, because a buildworld will not use it if it exists. The bottomline is that if you don't build libstdc++, you cannot build anything that depends on it. Hence, making gperf conditional on NO_CXX is correct. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 22: 0:38 2002 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by hub.freebsd.org (Postfix) with ESMTP id E5E2537B417; Tue, 9 Apr 2002 22:00:30 -0700 (PDT) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g3A4xreZ002240; Wed, 10 Apr 2002 06:59:54 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: "Greg 'groggy' Lehey" Cc: John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) In-Reply-To: Your message of "Wed, 10 Apr 2002 09:51:41 +0930." <20020410095141.M9535@wantadilla.lemis.com> Date: Wed, 10 Apr 2002 06:59:53 +0200 Message-ID: <2239.1018414793@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-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 <20020410095141.M9535@wantadilla.lemis.com>, "Greg 'groggy' Lehey" w rites: >Why do we need to cut Uesrconfig out until there's some replacement? Suggest you revisit the cvs log for a blow by blow account. >Specifically, what do people do when they're installing the system >from CD on an old ISA machine? It looks like they're stuck. They uses the loader and their hints file. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 22: 5:39 2002 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id DD78937B416; Tue, 9 Apr 2002 22:05:33 -0700 (PDT) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 58B1E814A5; Wed, 10 Apr 2002 14:35:19 +0930 (CST) Date: Wed, 10 Apr 2002 14:35:19 +0930 From: Greg 'groggy' Lehey To: Poul-Henning Kamp Cc: John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) Message-ID: <20020410143519.B22430@wantadilla.lemis.com> References: <20020410095141.M9535@wantadilla.lemis.com> <2239.1018414793@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2239.1018414793@critter.freebsd.dk> User-Agent: Mutt/1.3.23i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-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 Wednesday, 10 April 2002 at 6:59:53 +0200, Poul-Henning Kamp wrote: > In message <20020410095141.M9535@wantadilla.lemis.com>, "Greg 'groggy' Lehey" w > rites: > >> Why do we need to cut Uesrconfig out until there's some replacement? > > Suggest you revisit the cvs log for a blow by blow account. Which one? And why can't you summarize. >> Specifically, what do people do when they're installing the system >> from CD on an old ISA machine? It looks like they're stuck. > > They uses the loader and their hints file. Is that documented? This looks very much like hand-washing to me. Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 22:12:24 2002 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by hub.freebsd.org (Postfix) with ESMTP id 08B5C37B416; Tue, 9 Apr 2002 22:12:16 -0700 (PDT) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g3A5BeeZ004869; Wed, 10 Apr 2002 07:11:40 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: "Greg 'groggy' Lehey" Cc: John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) In-Reply-To: Your message of "Wed, 10 Apr 2002 14:35:19 +0930." <20020410143519.B22430@wantadilla.lemis.com> Date: Wed, 10 Apr 2002 07:11:40 +0200 Message-ID: <4868.1018415500@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-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 <20020410143519.B22430@wantadilla.lemis.com>, "Greg 'groggy' Lehey" writes: >On Wednesday, 10 April 2002 at 6:59:53 +0200, Poul-Henning Kamp wrote: >> In message <20020410095141.M9535@wantadilla.lemis.com>, "Greg 'groggy' Lehey" w >> rites: >> >>> Why do we need to cut Uesrconfig out until there's some replacement? >> >> Suggest you revisit the cvs log for a blow by blow account. > >Which one? And why can't you summarize. The one you appearantly missed two years ago when userconfig disappeared. I could, except this happened nearly two years ago, so I would have expected that you had noticed by now: ] src/sys/i386/conf/GENERIC revision 1.261 ] date: 2000/06/22 06:01:02; author: peter; state: Exp; lines: +2 -1 ] Add SOFTUPDATES to GENERIC (BOOTMFS has this filtered out) ] ---------------------------- ] revision 1.260 ] date: 2000/06/13 22:28:46; author: peter; state: Exp; lines: +40 -46 ] Borrow phk's axe and apply the next stage of config(8)'s evolution. ] ] Use Warner Losh's "hint" driver to decode ascii strings to fill the ] resource table at boot time. ] ] config(8) no longer generates an ioconf.c table - ie: the configuration ] no longer has to be compiled into the kernel. You can reconfigure your ] isa devices with the likes of this at loader(8) time: ] set hint.ed.0.port=0x320 ] ] userconfig will be rewritten to use this style interface one day and will ] move to /boot/userconfig.4th or something like that. ] ] [...] >>> Specifically, what do people do when they're installing the system >>> from CD on an old ISA machine? It looks like they're stuck. >> >> They uses the loader and their hints file. > >Is that documented? This looks very much like hand-washing to me. And your email sounds like somebody who is a little too jumpy about my commits and who can't be bothered to check his own facts... -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 22:16: 2 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 627A937B41C; Tue, 9 Apr 2002 22:15:52 -0700 (PDT) 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 g3A5Foi00780; Tue, 9 Apr 2002 23:15:50 -0600 (MDT) (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 g3A5Fmc33876; Tue, 9 Apr 2002 23:15:48 -0600 (MDT) (envelope-from imp@village.org) Date: Tue, 09 Apr 2002 23:15:48 -0600 (MDT) Message-Id: <20020409.231548.56168135.imp@village.org> To: grog@FreeBSD.org Cc: phk@critter.freebsd.dk, jhb@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement From: "M. Warner Losh" In-Reply-To: <20020410143519.B22430@wantadilla.lemis.com> References: <20020410095141.M9535@wantadilla.lemis.com> <2239.1018414793@critter.freebsd.dk> <20020410143519.B22430@wantadilla.lemis.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: <20020410143519.B22430@wantadilla.lemis.com> "Greg 'groggy' Lehey" writes: : On Wednesday, 10 April 2002 at 6:59:53 +0200, Poul-Henning Kamp wrote: : > In message <20020410095141.M9535@wantadilla.lemis.com>, "Greg 'groggy' Lehey" w : > rites: : > : >> Why do we need to cut Uesrconfig out until there's some replacement? : > : > Suggest you revisit the cvs log for a blow by blow account. : : Which one? And why can't you summarize. Look at the config changes that moved things from being in a funky format to using the hints to get its config information, and the corresponding changes to various parts of the kernel. The structure that USERCONFIG was built on was torn down around it as the hints mechanism was added. : >> Specifically, what do people do when they're installing the system : >> from CD on an old ISA machine? It looks like they're stuck. : > : > They uses the loader and their hints file. : : Is that documented? This looks very much like hand-washing to me. It is as documented as the hints mechanism in current is documented. which is what makes it archane and prompted my archane comment. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 22:16: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 3B9E037B400; Tue, 9 Apr 2002 22:16:45 -0700 (PDT) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A5GjF57280; Tue, 9 Apr 2002 22:16:45 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200204100516.g3A5GjF57280@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Tue, 9 Apr 2002 22:16:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/sendmail 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 gshapiro 2002/04/09 22:16:45 PDT Modified files: contrib/sendmail FREEBSD-upgrade Log: A couple more sendmail-related files Revision Changes Path 1.14 +2 -0 src/contrib/sendmail/FREEBSD-upgrade To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 22:21: 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 3CAC837B41B; Tue, 9 Apr 2002 22:20:58 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A5KwQ57815; Tue, 9 Apr 2002 22:20:58 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204100520.g3A5KwQ57815@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 9 Apr 2002 22:20:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/borzoi 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/04/09 22:20:58 PDT Modified files: security/borzoi Makefile distinfo Log: upgrade to 0.9.5 Revision Changes Path 1.7 +1 -1 ports/security/borzoi/Makefile 1.5 +1 -1 ports/security/borzoi/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 22:27:57 2002 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id 31F3137B41A; Tue, 9 Apr 2002 22:27:51 -0700 (PDT) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id ECA0581472; Wed, 10 Apr 2002 14:57:47 +0930 (CST) Date: Wed, 10 Apr 2002 14:57:47 +0930 From: Greg 'groggy' Lehey To: Poul-Henning Kamp Cc: John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) Message-ID: <20020410145747.C22430@wantadilla.lemis.com> References: <20020410143519.B22430@wantadilla.lemis.com> <4868.1018415500@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4868.1018415500@critter.freebsd.dk> User-Agent: Mutt/1.3.23i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-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 Wednesday, 10 April 2002 at 7:11:40 +0200, Poul-Henning Kamp wrote: > In message <20020410143519.B22430@wantadilla.lemis.com>, "Greg 'groggy' Lehey" > writes: >> On Wednesday, 10 April 2002 at 6:59:53 +0200, Poul-Henning Kamp wrote: >>> In message <20020410095141.M9535@wantadilla.lemis.com>, "Greg 'groggy' Lehey" w >>> rites: >>> >>>> Why do we need to cut Uesrconfig out until there's some replacement? >>> >>> Suggest you revisit the cvs log for a blow by blow account. >> >> Which one? > > The one you appearantly missed two years ago when userconfig > disappeared. And you expect me to know that's the one you mean? > And why can't you summarize. > > I could, except this happened nearly two years ago, so I would have > expected that you had noticed by now: > >> revision 1.260 >> date: 2000/06/13 22:28:46; author: peter; state: Exp; lines: +40 -46 >> Borrow phk's axe and apply the next stage of config(8)'s evolution. >> >> userconfig will be rewritten to use this style interface one day and will >> move to /boot/userconfig.4th or something like that. I don't see any evidence there that this meant that userconfig was going away. >>>> Specifically, what do people do when they're installing the system >>>> from CD on an old ISA machine? It looks like they're stuck. >>> >>> They uses the loader and their hints file. >> >> Is that documented? This looks very much like hand-washing to me. > > And your email sounds like somebody who is a little too jumpy about > my commits and who can't be bothered to check his own facts... Well, that's what I was doing. And yes, since it hasn't been documented anywhere (not even in the commit log), I'm a little jumpy. We're still telling people in the documentation that Userconfig is functional, and I believe it still is in -STABLE. But there's nothing in UPDATING, and to me it looks like you've decided we don't need it any more. Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 22:38:18 2002 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by hub.freebsd.org (Postfix) with ESMTP id 748CB37B405; Tue, 9 Apr 2002 22:38:11 -0700 (PDT) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g3A5bZeZ009646; Wed, 10 Apr 2002 07:37:36 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: "Greg 'groggy' Lehey" Cc: John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) In-Reply-To: Your message of "Wed, 10 Apr 2002 14:57:47 +0930." <20020410145747.C22430@wantadilla.lemis.com> Date: Wed, 10 Apr 2002 07:37:35 +0200 Message-ID: <9645.1018417055@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-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 <20020410145747.C22430@wantadilla.lemis.com>, "Greg 'groggy' Lehey" writes: >>> revision 1.260 >>> date: 2000/06/13 22:28:46; author: peter; state: Exp; lines: +40 -46 >>> Borrow phk's axe and apply the next stage of config(8)'s evolution. >>> >>> userconfig will be rewritten to use this style interface one day and will >>> move to /boot/userconfig.4th or something like that. > >I don't see any evidence there that this meant that userconfig was >going away. The little "[...]" and the end is indicative that there is more to be found at the source. I don't think the majority of committers need a two year old very long commit entry repeated just because you can't be bothered to look it up. >>>>> Specifically, what do people do when they're installing the system >>>>> from CD on an old ISA machine? It looks like they're stuck. >>>> >>>> They uses the loader and their hints file. >>> >>> Is that documented? This looks very much like hand-washing to me. >> >> And your email sounds like somebody who is a little too jumpy about >> my commits and who can't be bothered to check his own facts... > >Well, that's what I was doing. And yes, since it hasn't been >documented anywhere (not even in the commit log), I'm a little jumpy. Rubbish, look in the commitlog. >We're still telling people in the documentation that Userconfig is >functional, and I believe it still is in -STABLE. But there's nothing >in UPDATING, and to me it looks like you've decided we don't need it >any more. So I take it that you didn't even notice the "peter" in the part of the commit message I pasted ? I havn't killed userconfig, other people did that. All I did here was pick up various assorted remaining bits which had not been removed some of which had even been copy/pasted to new architectures like sparc64 and ia64 despite the fact that they are unlikely to ever see an ISA slot. Considering that we have all sorts of facilities to examine cvs logs, not the least of which are the linecounts in my original commit message, it seems a bit to me like you must have a procmail filter which goes "a commit by phk generated followup: PANIC" and that you immediately assume that I'm guilty of something, rather than spend 3 minutes to look up the subject matter before making a fool of yourself in public with your ignorance... You could of course also have sent private email instead, then I might not have been as offended by your tone as I am now. Just my not so humble opinion of course... -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 22:42: 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 72D2237B417; Tue, 9 Apr 2002 22:41:59 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A5fxn61042; Tue, 9 Apr 2002 22:41:59 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204100541.g3A5fxn61042@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 9 Apr 2002 22:41:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/catdvi 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/04/09 22:41:59 PDT Modified files: print/catdvi Makefile distinfo Log: upgrade to 0.13 Revision Changes Path 1.2 +5 -2 ports/print/catdvi/Makefile 1.2 +1 -1 ports/print/catdvi/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 22:42: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 55DCA37B405; Tue, 9 Apr 2002 22:42:25 -0700 (PDT) Received: (from vanilla@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A5gPl61317; Tue, 9 Apr 2002 22:42:25 -0700 (PDT) (envelope-from vanilla) Message-Id: <200204100542.g3A5gPl61317@freefall.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 9 Apr 2002 22:42:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/p5-GdkImlib Makefile distinfo ports/x11-toolkits/p5-GdkPixbuf Makefile distinfo ports/x11-toolkits/p5-Glade Makefile distinfo ports/x11-toolkits/p5-Gnome 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 vanilla 2002/04/09 22:42:25 PDT Modified files: x11-toolkits/p5-GdkImlib Makefile distinfo x11-toolkits/p5-GdkPixbuf Makefile distinfo x11-toolkits/p5-Glade Makefile distinfo x11-toolkits/p5-Gnome Makefile distinfo x11-toolkits/p5-GnomeApplet Makefile distinfo print/p5-GnomePrint Makefile distinfo x11-toolkits/p5-Gtk Makefile distinfo x11-toolkits/p5-Gtk/files patch-Makefile.PL x11-toolkits/p5-GtkXmHTML Makefile distinfo Log: Upgrade to 0.7008 Revision Changes Path 1.4 +2 -2 ports/print/p5-GnomePrint/Makefile 1.3 +1 -1 ports/print/p5-GnomePrint/distinfo 1.8 +2 -2 ports/x11-toolkits/p5-GdkImlib/Makefile 1.4 +1 -1 ports/x11-toolkits/p5-GdkImlib/distinfo 1.9 +2 -2 ports/x11-toolkits/p5-GdkPixbuf/Makefile 1.4 +1 -1 ports/x11-toolkits/p5-GdkPixbuf/distinfo 1.9 +2 -2 ports/x11-toolkits/p5-Glade/Makefile 1.4 +1 -1 ports/x11-toolkits/p5-Glade/distinfo 1.9 +3 -3 ports/x11-toolkits/p5-Gnome/Makefile 1.4 +1 -1 ports/x11-toolkits/p5-Gnome/distinfo 1.3 +2 -2 ports/x11-toolkits/p5-GnomeApplet/Makefile 1.3 +1 -1 ports/x11-toolkits/p5-GnomeApplet/distinfo 1.38 +2 -2 ports/x11-toolkits/p5-Gtk/Makefile 1.13 +1 -1 ports/x11-toolkits/p5-Gtk/distinfo 1.4 +8 -8 ports/x11-toolkits/p5-Gtk/files/patch-Makefile.PL 1.8 +2 -2 ports/x11-toolkits/p5-GtkXmHTML/Makefile 1.4 +1 -1 ports/x11-toolkits/p5-GtkXmHTML/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 22:42:57 2002 Delivered-To: cvs-all@freebsd.org Received: from a96180.upc-a.chello.nl (a96180.upc-a.chello.nl [62.163.96.180]) by hub.freebsd.org (Postfix) with ESMTP id 58AB237B416; Tue, 9 Apr 2002 22:42:50 -0700 (PDT) Received: by a96180.upc-a.chello.nl (Postfix, from userid 1001) id CCA642170; Wed, 10 Apr 2002 07:42:48 +0200 (CEST) Date: Wed, 10 Apr 2002 07:42:48 +0200 From: Jeroen Ruigrok/asmodai To: Greg 'groggy' Lehey Cc: Poul-Henning Kamp , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) Message-ID: <20020410054248.GY40979@daemon.ninth-circle.org> References: <20020410143519.B22430@wantadilla.lemis.com> <4868.1018415500@critter.freebsd.dk> <20020410145747.C22430@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020410145747.C22430@wantadilla.lemis.com> User-Agent: Mutt/1.3.28i Organisation: Ninth Circle Enterprises Sender: owner-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 [20020410 07:30], Greg 'groggy' Lehey (grog@FreeBSD.org) wrote: >We're still telling people in the documentation that Userconfig is >functional, and I believe it still is in -STABLE. Doc does not document CURRENT. Unless policy changed while I was gone. :) [Or if I never paid really close attention in the first place. :) ] -- Jeroen Ruigrok van der Werven / asmodai / Kita no Mono asmodai@[wxs.nl|xmach.org], finger asmodai@ninth-circle.org http://www.softweyr.com/asmodai/ | http://www.[tendra|xmach].org/ United we stand, divided we fall... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 22:55:33 2002 Delivered-To: cvs-all@freebsd.org Received: from a96180.upc-a.chello.nl (a96180.upc-a.chello.nl [62.163.96.180]) by hub.freebsd.org (Postfix) with ESMTP id 3D19D37B419; Tue, 9 Apr 2002 22:55:29 -0700 (PDT) Received: by a96180.upc-a.chello.nl (Postfix, from userid 1001) id CD82A2171; Wed, 10 Apr 2002 07:55:27 +0200 (CEST) Date: Wed, 10 Apr 2002 07:55:27 +0200 From: Jeroen Ruigrok/asmodai To: Ying-Chieh Liao Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/net/centericq Makefile Message-ID: <20020410055527.GZ40979@daemon.ninth-circle.org> References: <200204091323.g39DNQ316577@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204091323.g39DNQ316577@freefall.freebsd.org> User-Agent: Mutt/1.3.28i Organisation: Ninth Circle Enterprises Sender: owner-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 [20020409 15:30], Ying-Chieh Liao (ijliao@FreeBSD.org) wrote: > add libiconv dependence I've noticed this before, and consulted ade@, but he was apparently busy with his gettext mega commit, so I held off. I hope this doesn't conflict with his work. We'll see. -- Jeroen Ruigrok van der Werven / asmodai / Kita no Mono asmodai@[wxs.nl|xmach.org], finger asmodai@ninth-circle.org http://www.softweyr.com/asmodai/ | http://www.[tendra|xmach].org/ Hope is a letter that never arrives, delivered by the postman of my fear... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 23: 1: 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 4395137B400; Tue, 9 Apr 2002 23:01:05 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A615064625; Tue, 9 Apr 2002 23:01:05 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204100601.g3A615064625@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 9 Apr 2002 23:01:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/hexcurse 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/04/09 23:01:05 PDT Modified files: editors/hexcurse Makefile distinfo Log: upgrade to 1.40 Revision Changes Path 1.5 +1 -1 ports/editors/hexcurse/Makefile 1.5 +1 -1 ports/editors/hexcurse/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 23: 7: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 A50DD37B404; Tue, 9 Apr 2002 23:07:16 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A67GT69264; Tue, 9 Apr 2002 23:07:16 -0700 (PDT) (envelope-from peter) Message-Id: <200204100607.g3A67GT69264@freefall.freebsd.org> From: Peter Wemm Date: Tue, 9 Apr 2002 23:07:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if.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/04/09 23:07:16 PDT Modified files: sys/net if.c Log: Add missing 'struct ifreq ifr;' that was forgotten in the last commit. Revision Changes Path 1.139 +1 -0 src/sys/net/if.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 23: 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 05F9237B41F; Tue, 9 Apr 2002 23:07:26 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A67PB69295; Tue, 9 Apr 2002 23:07:25 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204100607.g3A67PB69295@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 9 Apr 2002 23:07:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/asir2000 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/04/09 23:07:25 PDT Modified files: math/asir2000 Makefile distinfo Log: upgrade to 0410 PR: 36949 Submitted by: maintainer Revision Changes Path 1.4 +1 -1 ports/math/asir2000/Makefile 1.4 +1 -1 ports/math/asir2000/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 23:16: 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 1865C37B400; Tue, 9 Apr 2002 23:16:02 -0700 (PDT) Received: (from vanilla@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A6G2a70666; Tue, 9 Apr 2002 23:16:02 -0700 (PDT) (envelope-from vanilla) Message-Id: <200204100616.g3A6G2a70666@freefall.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 9 Apr 2002 23:16:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/irssi 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 vanilla 2002/04/09 23:16:01 PDT Modified files: irc/irssi Makefile Log: Fix plist on current. Revision Changes Path 1.58 +1 -1 ports/irc/irssi/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Apr 9 23: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 731F937B41B; Tue, 9 Apr 2002 23:24:45 -0700 (PDT) Received: (from vanilla@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A6OjQ72251; Tue, 9 Apr 2002 23:24:45 -0700 (PDT) (envelope-from vanilla) Message-Id: <200204100624.g3A6OjQ72251@freefall.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 9 Apr 2002 23:24:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/enlightenment/files patch-ae 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 vanilla 2002/04/09 23:24:45 PDT Added files: x11-wm/enlightenment/files patch-configure Removed files: x11-wm/enlightenment/files patch-ae Log: Fix plist. Submitted by: bento Revision Changes Path 1.8 +0 -27 ports/x11-wm/enlightenment/files/patch-ae (dead) 1.1 +46 -0 ports/x11-wm/enlightenment/files/patch-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 Apr 9 23: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 6875337B41D; Tue, 9 Apr 2002 23:49:34 -0700 (PDT) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A6nYX77483; Tue, 9 Apr 2002 23:49:34 -0700 (PDT) (envelope-from znerd) Message-Id: <200204100649.g3A6nYX77483@freefall.freebsd.org> From: Ernst de Haan Date: Tue, 9 Apr 2002 23:49:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/jakarta-tomcat3 Makefile ports/www/orion 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 znerd 2002/04/09 23:49:34 PDT Modified files: www/jakarta-tomcat3 Makefile www/orion Makefile Log: Now using daemonctl.c from www/jakarta-tomcat4, since that was renamed from www/jakarta-tomcat. Bumped PORTREVISION. Revision Changes Path 1.29 +2 -2 ports/www/jakarta-tomcat3/Makefile 1.40 +2 -2 ports/www/orion/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 0:19: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from mao.stokely.org (mao.stokely.org [65.84.64.228]) by hub.freebsd.org (Postfix) with ESMTP id F0F4037B416; Wed, 10 Apr 2002 00:18:10 -0700 (PDT) Received: by mao.stokely.org (Postfix, from userid 2074) id C20424B669; Wed, 10 Apr 2002 00:18:05 -0700 (PDT) Date: Wed, 10 Apr 2002 00:18:05 -0700 From: Murray Stokely To: Jeroen Ruigrok/asmodai Cc: Greg 'groggy' Lehey , Poul-Henning Kamp , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) Message-ID: <20020410071805.GE22522@freebsdmall.com> References: <20020410143519.B22430@wantadilla.lemis.com> <4868.1018415500@critter.freebsd.dk> <20020410145747.C22430@wantadilla.lemis.com> <20020410054248.GY40979@daemon.ninth-circle.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020410054248.GY40979@daemon.ninth-circle.org> User-Agent: Mutt/1.3.25i X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D Sender: owner-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, Apr 10, 2002 at 07:42:48AM +0200, Jeroen Ruigrok/asmodai wrote: > Doc does not document CURRENT. Unless policy changed while I was gone. :) > [Or if I never paid really close attention in the first place. :) ] The FreeBSD Handbook attempts to document some -CURRENT features. Some of the articles go out of the way to talk about devfs, the md vs vn devices, and other assorted differences. If doc does not document -CURRENT, I think it is because the authors are unfamiliar with the code. We should certainly encourage the documenting of -CURRENT features. We certainly aren't going to be able to catch up with 2.5 years worth of changes immediately after 5.0 is released. The only way for us to continue to have relevant documentation is to accept -CURRENT submissions now. A few days ago I submitted a PR for us to document FFS snapshots and background fsck in the Handbook. The 2nd Edition FreeBSD Handbook was printed with additional 5.0-CURRENT material added, so that it could have a longer shelf life. - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 0:27:42 2002 Delivered-To: cvs-all@freebsd.org Received: from web21101.mail.yahoo.com (web21101.mail.yahoo.com [216.136.227.103]) by hub.freebsd.org (Postfix) with SMTP id CD10937B416 for ; Wed, 10 Apr 2002 00:27:35 -0700 (PDT) Message-ID: <20020410072735.87057.qmail@web21101.mail.yahoo.com> Received: from [62.254.0.5] by web21101.mail.yahoo.com via HTTP; Wed, 10 Apr 2002 00:27:35 PDT Date: Wed, 10 Apr 2002 00:27:35 -0700 (PDT) From: Hiten Pandya Reply-To: hiten@uk.FreeBSD.org Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) To: Murray Stokely , Jeroen Ruigrok/asmodai Cc: Greg 'groggy' Lehey , Poul-Henning Kamp , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20020410071805.GE22522@freebsdmall.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 --- Murray Stokely wrote: > The FreeBSD Handbook attempts to document some -CURRENT features. > Some of the articles go out of the way to talk about devfs, the md vs > vn devices, and other assorted differences. If doc does not document > -CURRENT, I think it is because the authors are unfamiliar with the > code. We should certainly encourage the documenting of -CURRENT > features. We certainly aren't going to be able to catch up with 2.5 > years worth of changes immediately after 5.0 is released. The only > way for us to continue to have relevant documentation is to accept > -CURRENT submissions now. /me gives first _least_good_ suggestion: How about having a "Guide to FreeBSD 5.0-CURRENT" This would have all the cooked up information for what people can expect from -current. I am sure a lot of people would be interested in having such a guide (, not
). -- Hiten __________________________________________________ Do You Yahoo!? Yahoo! Tax Center - online filing with TurboTax http://taxes.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 0:28: 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 726D237B400; Wed, 10 Apr 2002 00:28:03 -0700 (PDT) Received: (from demon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A7S3N87955; Wed, 10 Apr 2002 00:28:03 -0700 (PDT) (envelope-from demon) Message-Id: <200204100728.g3A7S3N87955@freefall.freebsd.org> From: Dmitry Sivachenko Date: Wed, 10 Apr 2002 00:28:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/mrtg 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/04/10 00:28:03 PDT Modified files: net/mrtg Makefile distinfo Log: Backout (at least temporary) upgrade to pre4. It only works with perl 5.6. Revision Changes Path 1.44 +2 -2 ports/net/mrtg/Makefile 1.27 +1 -1 ports/net/mrtg/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 0:35: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 91C6737B419; Wed, 10 Apr 2002 00:35:28 -0700 (PDT) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A7ZSw89784; Wed, 10 Apr 2002 00:35:28 -0700 (PDT) (envelope-from n_hibma) Message-Id: <200204100735.g3A7ZSw89784@freefall.freebsd.org> From: Nick Hibma Date: Wed, 10 Apr 2002 00:35:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/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 n_hibma 2002/04/10 00:35:28 PDT Modified files: sys/dev/pci pci.c Log: intline == 0 is not a valid intline on 386. See pci_cfgintr() in sys/i386/pci/pci_cfgreg.c. This should resolve some cases where adding USB support to the kernel produced an interrupt storm. Revision Changes Path 1.189 +5 -1 src/sys/dev/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 Wed Apr 10 0:35:56 2002 Delivered-To: cvs-all@freebsd.org Received: from mao.stokely.org (mao.stokely.org [65.84.64.228]) by hub.freebsd.org (Postfix) with ESMTP id D9E4437B400; Wed, 10 Apr 2002 00:35:02 -0700 (PDT) Received: by mao.stokely.org (Postfix, from userid 2074) id 9D3F44B669; Wed, 10 Apr 2002 00:34:57 -0700 (PDT) Date: Wed, 10 Apr 2002 00:34:57 -0700 From: Murray Stokely To: hiten@uk.FreeBSD.org Cc: Jeroen Ruigrok/asmodai , Greg 'groggy' Lehey , Poul-Henning Kamp , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) Message-ID: <20020410073457.GF22522@freebsdmall.com> Reply-To: freebsd-doc@freebsd.org References: <20020410071805.GE22522@freebsdmall.com> <20020410072735.87057.qmail@web21101.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020410072735.87057.qmail@web21101.mail.yahoo.com> User-Agent: Mutt/1.3.25i X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D Sender: owner-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, Apr 10, 2002 at 12:27:35AM -0700, Hiten Pandya wrote: > /me gives first _least_good_ suggestion: > How about having a "Guide to FreeBSD 5.0-CURRENT" By the time it is finished, it will be the guide to 5.0-RELEASE, which is why it is simply information that belongs in the Handbook. We do not need to split off a new version of the Handbook for each different version of FreeBSD. That would be a huge waste of resources. > This would have all the cooked up information for what people can expect > from -current. I am sure a lot of people would be interested in having > such a guide (, not
). Point those people to the Handbook, tell them to search for 'devfs', etc.. If they can't find the material they are looking for, then ask them to submit minor patches to clarify 5.0 functionality, rather than write a whole new book. - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 0:40:22 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 93B2E37B405; Wed, 10 Apr 2002 00:40:01 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g3A7dk405740; Wed, 10 Apr 2002 10:39:46 +0300 (EEST) (envelope-from ru) Date: Wed, 10 Apr 2002 10:39:46 +0300 From: Ruslan Ermilov To: "David O'Brien" , Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.sys.mk Message-ID: <20020410073946.GB98684@sunbay.com> References: <200204071703.g37H36t31847@freefall.freebsd.org> <20020409201051.A53917@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bCsyhTFzCvuiizWE" Content-Disposition: inline In-Reply-To: <20020409201051.A53917@dragon.nuxi.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 --bCsyhTFzCvuiizWE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 09, 2002 at 08:10:51PM -0700, David O'Brien wrote: > On Sun, Apr 07, 2002 at 10:03:06AM -0700, Ruslan Ermilov wrote: > > ru 2002/04/07 10:03:06 PDT > >=20 > > Modified files: > > share/mk bsd.sys.mk=20 > > Log: > > FreeBSD prior to 4.5-RELEASE and older versions of 5.0-CURRENT do not > > have the __FBSDID() macro in . Fix this once and for all > > for tools that need to be bootstrapped. >=20 > Will this still work after BDE removes __RCSID from cdefs.h? >=20 After Bruce removes __RCSID from cdefs.h we will have to modify this to check if the host's has __FBSDID macro (by simply grepping it). We will never have a system without both __RCSID and __FBSDID, I hope :-). Cheers, --=20 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 --bCsyhTFzCvuiizWE 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 iD8DBQE8s+xCUkv4P6juNwoRAiJsAJ0ScmTnpP46iaxDWRrhcViH08y/lgCfTxqB FFLxK5AP5HSPQ1xCRcQP4Mg= =UNzc -----END PGP SIGNATURE----- --bCsyhTFzCvuiizWE-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 0:44: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 B337A37B405; Wed, 10 Apr 2002 00:44:35 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A7iZm91292; Wed, 10 Apr 2002 00:44:35 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204100744.g3A7iZm91292@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 10 Apr 2002 00:44:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/russian/wmcyrx 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/04/10 00:44:35 PDT Modified files: russian/wmcyrx Makefile Log: last commit markp changed the wrong line Revision Changes Path 1.12 +2 -3 ports/russian/wmcyrx/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 0:52: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from web21107.mail.yahoo.com (web21107.mail.yahoo.com [216.136.227.109]) by hub.freebsd.org (Postfix) with SMTP id F217A37B41D for ; Wed, 10 Apr 2002 00:51:48 -0700 (PDT) Message-ID: <20020410075148.86487.qmail@web21107.mail.yahoo.com> Received: from [62.254.0.5] by web21107.mail.yahoo.com via HTTP; Wed, 10 Apr 2002 00:51:48 PDT Date: Wed, 10 Apr 2002 00:51:48 -0700 (PDT) From: Hiten Pandya Reply-To: hiten@uk.FreeBSD.org Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) To: freebsd-doc@freebsd.org, hiten@uk.FreeBSD.org Cc: Jeroen Ruigrok/asmodai , Greg 'groggy' Lehey , Poul-Henning Kamp , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20020410073457.GF22522@freebsdmall.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 --- Murray Stokely wrote: > Point those people to the Handbook, tell them to search for 'devfs', > etc.. If they can't find the material they are looking for, then ask > them to submit minor patches to clarify 5.0 functionality, rather than > write a whole new book. I do understand, but wouldn't be useful to have a chapter, which points out the new features with short/medium sized descriptions, rather than bits lurking around the whole handbook? -- Hiten __________________________________________________ Do You Yahoo!? Yahoo! Tax Center - online filing with TurboTax http://taxes.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 0:57:26 2002 Delivered-To: cvs-all@freebsd.org Received: from yello.shallow.net (yello.shallow.net [203.18.243.120]) by hub.freebsd.org (Postfix) with ESMTP id DD49E37B405; Wed, 10 Apr 2002 00:57:20 -0700 (PDT) Received: by yello.shallow.net (Postfix, from userid 1001) id F24512A69; Wed, 10 Apr 2002 17:57:13 +1000 (EST) Date: Wed, 10 Apr 2002 17:57:13 +1000 From: Joshua Goodall To: Brian Somers Cc: David O'Brien , Bosko Milekic , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin Makefile src/share/examples/etc make.conf src/usr.bin Makefile Message-ID: <20020410075713.GA13260@roughtrade.net> References: <20020410025230.GA8927@roughtrade.net> <200204100318.g3A3IXOF013706@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204100318.g3A3IXOF013706@hak.lan.Awfulhak.org> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 10, 2002 at 04:18:33AM +0100, Brian Somers wrote: > > I don't know how standard the practise is, but part of my standard > > server-hardening procedure is to remove the rsh/rcp tools. I don't > > allow my users to even think about risking their use: they have > > been fully superseded in functionality in every way by ssh. I would > [.....] > > I think ssh needs a ``-c none'' option before it can claim to have > superseded rsh. Until then, ssh isn't the right tool to transfer > across a fast, trusted network. You won't be surprised to learn that it's there, and off by default. This turns it on, for protocol v1 at any rate: diff -u -r1.2.2.4 cipher.c --- crypto/openssh/cipher.c 28 Sep 2001 01:33:33 -0000 1.2.2.4 +++ crypto/openssh/cipher.c 10 Apr 2002 07:25:23 -0000 @@ -425,6 +425,7 @@ cipher_mask_ssh1(int client) { u_int mask = 0; + mask |= 1 << SSH_CIPHER_NONE; mask |= 1 << SSH_CIPHER_3DES; /* Mandatory */ mask |= 1 << SSH_CIPHER_BLOWFISH; if (client) { That's an argument for something. I'm not sure what ;) J To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 0:58:58 2002 Delivered-To: cvs-all@freebsd.org Received: from nelly.internal.irrelevant.org (irrelevant.demon.co.uk [158.152.220.121]) by hub.freebsd.org (Postfix) with ESMTP id 098F837B405 for ; Wed, 10 Apr 2002 00:58:54 -0700 (PDT) Received: from simond by nelly.internal.irrelevant.org with local (Exim 3.35 #1) id 16vD07-0000nI-00; Wed, 10 Apr 2002 08:58:43 +0100 Date: Wed, 10 Apr 2002 08:58:43 +0100 From: Simon Dick To: Carl Schmidt Cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/bin Makefile src/share/examples/etc make.conf src/usr.bin Makefile Message-ID: <20020410075843.GB2686@irrelevant.org> References: <20020410025230.GA8927@roughtrade.net> <200204100318.g3A3IXOF013706@hak.lan.Awfulhak.org> <20020410035825.GA7883@carbon.slackerbsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020410035825.GA7883@carbon.slackerbsd.org> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 09, 2002 at 11:58:26PM -0400, Carl Schmidt wrote: > On Wed, Apr 10, 2002 at 04:18:33AM +0100, Brian Somers wrote: > > > I don't know how standard the practise is, but part of my standard > > > server-hardening procedure is to remove the rsh/rcp tools. I don't > > > allow my users to even think about risking their use: they have > > > been fully superseded in functionality in every way by ssh. I would > > [.....] > > > > I think ssh needs a ``-c none'' option before it can claim to have > > superseded rsh. Until then, ssh isn't the right tool to transfer > > across a fast, trusted network. > > Perhaps it is just -current but: > > oxygen# rsh -c > rsh: illegal option -- c > oxygen# rcp -c > rcp: illegal option -- c > > The one machine i have running -stable does not have the 'r' tools installed > so I can't test but I do have the manual pages for each command and neither > rcp nor rsh have this "-c" option documented. Could you explain what it is > supposed to do? I believe he is talking about the ssh -c option which allows you to select what cipher you want to use, he wanted -c none to specify that all that was needed was to send the data across the network when it's not required to encrypt it, which would mean less load on each machine and possibly faster transfers. -- Simon Dick simond@irrelevant.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 1: 1:30 2002 Delivered-To: cvs-all@freebsd.org Received: from a96180.upc-a.chello.nl (a96180.upc-a.chello.nl [62.163.96.180]) by hub.freebsd.org (Postfix) with ESMTP id 1E01937B417; Wed, 10 Apr 2002 01:01:26 -0700 (PDT) Received: by a96180.upc-a.chello.nl (Postfix, from userid 1001) id D0EC62170; Wed, 10 Apr 2002 10:01:23 +0200 (CEST) Date: Wed, 10 Apr 2002 10:01:23 +0200 From: Jeroen Ruigrok/asmodai To: hiten@uk.FreeBSD.org Cc: freebsd-doc@freebsd.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) Message-ID: <20020410080123.GB40979@daemon.ninth-circle.org> References: <20020410073457.GF22522@freebsdmall.com> <20020410075148.86487.qmail@web21107.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020410075148.86487.qmail@web21107.mail.yahoo.com> User-Agent: Mutt/1.3.28i Organisation: Ninth Circle Enterprises Sender: owner-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 [20020410 10:00], Hiten Pandya (hitmaster2k@yahoo.com) wrote: >I do understand, but wouldn't be useful to have a chapter, which points >out the new features with short/medium sized descriptions, rather than >bits lurking around the whole handbook? I think Bruce Mah's Release Notes go a long way in accomplishing that. -- Jeroen Ruigrok van der Werven / asmodai / Kita no Mono asmodai@[wxs.nl|xmach.org], finger asmodai@ninth-circle.org http://www.softweyr.com/asmodai/ | http://www.[tendra|xmach].org/ Buried deep are the Souls that are waiting for you... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 1: 3:34 2002 Delivered-To: cvs-all@freebsd.org Received: from relay1.macomnet.ru (relay1.macomnet.ru [195.128.64.10]) by hub.freebsd.org (Postfix) with ESMTP id 300E637B417; Wed, 10 Apr 2002 01:03:25 -0700 (PDT) Received: from news1.macomnet.ru (news1.macomnet.ru [195.128.64.14]) by relay1.macomnet.ru (8.11.6/8.11.6) with ESMTP id g3A83NU10331303; Wed, 10 Apr 2002 12:03:23 +0400 (MSD) Date: Wed, 10 Apr 2002 12:03:23 +0400 (MSD) From: Maxim Konovalov To: Bosko Milekic Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/bin Makefile src/share/examples/etc make.conf src/usr.bin Makefile In-Reply-To: <200204091825.g39IPlu47806@freefall.freebsd.org> Message-ID: <20020410115605.M64464-100000@news1.macomnet.ru> 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 11:25-0700, Apr 9, 2002, Bosko Milekic wrote: > bmilekic 2002/04/09 11:25:47 PDT > > Modified files: > bin Makefile > share/examples/etc make.conf > usr.bin Makefile > Log: > Introduce NO_RCMNDS flag so as to not compile rsh, rlogin, and rcp on will, > and document in share/examples/etc/make.conf > > Submitted by: Aleksandar Simic > MFC after: 1 week What about the next patch for make.conf(5): Index: man5/make.conf.5 =================================================================== RCS file: /home/ncvs/src/share/man/man5/make.conf.5,v retrieving revision 1.39 diff -u -r1.39 make.conf.5 --- man5/make.conf.5 21 Mar 2002 09:15:39 -0000 1.39 +++ man5/make.conf.5 10 Apr 2002 07:54:27 -0000 @@ -414,6 +414,13 @@ Set to avoid building .Xr perl 1 . (Also disables OpenSSL optimizations.) +.It Va NO_RCMNDS +.Pq Vt bool +Set to not build +.Xr rcp 1 , +.Xr rlogin 1 +and +.Xr rsh 1 . .It Va NO_SENDMAIL .Pq Vt bool Set to not build %%% -- Maxim Konovalov, MAcomnet, Internet Dept., system engineer phone: +7 (095) 796-9079, mailto:maxim@macomnet.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 1:12:53 2002 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by hub.freebsd.org (Postfix) with ESMTP id 851E437B416; Wed, 10 Apr 2002 01:12:45 -0700 (PDT) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g3A8C3eZ038319; Wed, 10 Apr 2002 10:12:03 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: freebsd-doc@FreeBSD.org Cc: hiten@uk.FreeBSD.org, Jeroen Ruigrok/asmodai , "Greg 'groggy' Lehey" , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) In-Reply-To: Your message of "Wed, 10 Apr 2002 00:34:57 PDT." <20020410073457.GF22522@freebsdmall.com> Date: Wed, 10 Apr 2002 10:12:03 +0200 Message-ID: <38318.1018426323@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-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 <20020410073457.GF22522@freebsdmall.com>, Murray Stokely writes: >Point those people to the Handbook, tell them to search for 'devfs', >etc.. If they can't find the material they are looking for, then ask >them to submit minor patches to clarify 5.0 functionality, rather than >write a whole new book. When as a kid I first learned about "ghost-writers" I became very very upset. I felt cheated because what I thought were some famous person having written his own memoirs were in fact what some random bloke had written after talking to that person and not 1st hand evidence so to speak. Now, having come to an age where I have learned, often the hard way, that "having an idea", "implementing an idea" and "communicating an idea" are three entirely different things which require three entirely different skill-sets, I feel a lot more relaxed about the concept of "ghost-writers" because I realize that what they do is really translation. Anyone who has listened to a tape-recording of Niels Bohr will know how apt that metaphor _really_ is. I will readily admit that it is certainly not the fault of the doc team that so little documentation has come out of my own effort: whenever I have produced something they have jumped on it like hawks on a slice of roastbeef. Right now for instance, I have a patch to geom(4) sitting in my inbox which as far as I can see changes every second source line or so. And that is not an encouraging batting average for someone like me to sit down and stare at an empty editor... I guess the bit that I feel missing is: to me as a developer "the doc team" is a bit too nebulous an entity to get into a stable and productive relationship with, it becomes an case by case thing which never really finds its own rythm and regularity. My suggestion to the doc-team would be: identify the developers who you want to get documentation from and try to find a ghostwriter who would be a good match for that developer. I think it would work better for at least some of the developers like me. And I am more than willing to take my own medicine. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 1:14:29 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 871C437B405; Wed, 10 Apr 2002 01:14:15 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g3A8DxO09979; Wed, 10 Apr 2002 11:13:59 +0300 (EEST) (envelope-from ru) Date: Wed, 10 Apr 2002 11:13:59 +0300 From: Ruslan Ermilov To: Maxim Konovalov Cc: Bosko Milekic , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin Makefile src/share/examples/etc make.conf src/usr.bin Makefile Message-ID: <20020410081359.GD98684@sunbay.com> References: <200204091825.g39IPlu47806@freefall.freebsd.org> <20020410115605.M64464-100000@news1.macomnet.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ylS2wUBXLOxYXZFQ" Content-Disposition: inline In-Reply-To: <20020410115605.M64464-100000@news1.macomnet.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 --ylS2wUBXLOxYXZFQ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 10, 2002 at 12:03:23PM +0400, Maxim Konovalov wrote: > On 11:25-0700, Apr 9, 2002, Bosko Milekic wrote: >=20 > > bmilekic 2002/04/09 11:25:47 PDT > > > > Modified files: > > bin Makefile > > share/examples/etc make.conf > > usr.bin Makefile > > Log: > > Introduce NO_RCMNDS flag so as to not compile rsh, rlogin, and rcp on= will, > > and document in share/examples/etc/make.conf > > > > Submitted by: Aleksandar Simic > > MFC after: 1 week >=20 > What about the next patch for make.conf(5): >=20 > Index: man5/make.conf.5 > =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/src/share/man/man5/make.conf.5,v > retrieving revision 1.39 > diff -u -r1.39 make.conf.5 > --- man5/make.conf.5 21 Mar 2002 09:15:39 -0000 1.39 > +++ man5/make.conf.5 10 Apr 2002 07:54:27 -0000 > @@ -414,6 +414,13 @@ > Set to avoid building > .Xr perl 1 . > (Also disables OpenSSL optimizations.) > +.It Va NO_RCMNDS > +.Pq Vt bool > +Set to not build > +.Xr rcp 1 , > +.Xr rlogin 1 > +and > +.Xr rsh 1 . > .It Va NO_SENDMAIL > .Pq Vt bool > Set to not build >=20 > %%% Yes please. Cheers, --=20 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 --ylS2wUBXLOxYXZFQ 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 iD8DBQE8s/RHUkv4P6juNwoRAt+UAJ9O10ZryBlqdL5kXnPkerjcv/K7QACfeWHj 1Jw/9zrfP+XmFWyQEglyY1A= =hN1Z -----END PGP SIGNATURE----- --ylS2wUBXLOxYXZFQ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 1:25: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 BFDB737B400; Wed, 10 Apr 2002 01:25:52 -0700 (PDT) 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 SAA06019; Wed, 10 Apr 2002 18:25:50 +1000 Date: Wed, 10 Apr 2002 18:26:00 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Ruslan Ermilov Cc: "David O'Brien" , Bruce Evans , , Subject: Re: cvs commit: src/share/mk bsd.sys.mk In-Reply-To: <20020410073946.GB98684@sunbay.com> Message-ID: <20020410182220.Q7066-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, 10 Apr 2002, Ruslan Ermilov wrote: > On Tue, Apr 09, 2002 at 08:10:51PM -0700, David O'Brien wrote: > > On Sun, Apr 07, 2002 at 10:03:06AM -0700, Ruslan Ermilov wrote: > > > ru 2002/04/07 10:03:06 PDT > > > > > > Modified files: > > > share/mk bsd.sys.mk > > > Log: > > > FreeBSD prior to 4.5-RELEASE and older versions of 5.0-CURRENT do not > > > have the __FBSDID() macro in . Fix this once and for all > > > for tools that need to be bootstrapped. > > > > Will this still work after BDE removes __RCSID from cdefs.h? > > > After Bruce removes __RCSID from cdefs.h we will have to modify this > to check if the host's has __FBSDID macro (by simply > grepping it). We will never have a system without both __RCSID and > __FBSDID, I hope :-). This gives me more to check before deciding if removing it easy enough :-). I think modifying the sources files to not produce syntax errors for foreign macros should be acceptable in most cases, since files in contrib should be portable so they can't depend on OS-dependent macros, and files outside of contrib get modified anyway. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 1: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 45CE837B419; Wed, 10 Apr 2002 01:34:10 -0700 (PDT) Received: (from vanilla@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A8YAC06504; Wed, 10 Apr 2002 01:34:10 -0700 (PDT) (envelope-from vanilla) Message-Id: <200204100834.g3A8YAC06504@freefall.freebsd.org> From: "Vanilla I. Shu" Date: Wed, 10 Apr 2002 01:34:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/vtcl 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 vanilla 2002/04/10 01:34:10 PDT Modified files: devel/vtcl Makefile distinfo pkg-plist Log: Upgrade to 1.6.0a2 Revision Changes Path 1.25 +1 -1 ports/devel/vtcl/Makefile 1.9 +1 -1 ports/devel/vtcl/distinfo 1.8 +2 -0 ports/devel/vtcl/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 Apr 10 2: 1:33 2002 Delivered-To: cvs-all@freebsd.org Received: from mailout01.sul.t-online.com (mailout01.sul.t-online.com [194.25.134.80]) by hub.freebsd.org (Postfix) with ESMTP id 56D8E37B416; Wed, 10 Apr 2002 02:01:29 -0700 (PDT) Received: from fwd11.sul.t-online.de by mailout01.sul.t-online.com with smtp id 16vDyl-0006TB-04; Wed, 10 Apr 2002 11:01:23 +0200 Received: from Magelan.Leidinger.net (520065502893-0001@[80.131.116.187]) by fmrl11.sul.t-online.com with esmtp id 16vDyg-1GVBeyC; Wed, 10 Apr 2002 11:01:18 +0200 Received: from Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.2/8.12.2) with ESMTP id g3A91CHA000612; Wed, 10 Apr 2002 11:01:16 +0200 (CEST) (envelope-from netchild@Leidinger.net) Message-Id: <200204100901.g3A91CHA000612@Magelan.Leidinger.net> Date: Wed, 10 Apr 2002 11:01:12 +0200 (CEST) From: Alexander Leidinger Subject: Re: cvs commit: src/sys/kern kern_linker.c To: brian@freebsd-services.com Cc: julian@elischer.org, brian@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-Reply-To: <200204100246.g3A2kEOF006117@hak.lan.Awfulhak.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii X-Sender: 520065502893-0001@t-dialin.net Sender: owner-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 10 Apr, Brian Somers wrote: > I'm running with an April 3 kernel (I reverted it because kernels > over the past few days have dysfunctional shared library support). Can you a little bit more specific? I've a Apr 7 kernel here, and I can't see any problems (after turning of tagged queuing for ATA). Bye, Alexander. -- Actually, Microsoft is sort of a mixture between the Borg and the Ferengi. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 2:18: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 C07A837B41D; Wed, 10 Apr 2002 02:18:52 -0700 (PDT) Received: (from ceri@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A9IqD16413; Wed, 10 Apr 2002 02:18:52 -0700 (PDT) (envelope-from ceri) Message-Id: <200204100918.g3A9IqD16413@freefall.freebsd.org> From: Ceri Davies Date: Wed, 10 Apr 2002 02:18:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.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 ceri 2002/04/10 02:18:52 PDT Modified files: en_US.ISO8859-1/books/faq book.sgml Log: Update the list of reasons why mail to FreeBSD.org may be rejected. Inspired by: spamfest on -questions Approved by: murray Revision Changes Path 1.426 +23 -1 doc/en_US.ISO8859-1/books/faq/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 2:23: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 B0DF037B419; Wed, 10 Apr 2002 02:23:38 -0700 (PDT) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3A9NcC16902; Wed, 10 Apr 2002 02:23:38 -0700 (PDT) (envelope-from maxim) Message-Id: <200204100923.g3A9NcC16902@freefall.freebsd.org> From: Maxim Konovalov Date: Wed, 10 Apr 2002 02:23:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 make.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/10 02:23:38 PDT Modified files: share/man/man5 make.conf.5 Log: Document NO_RCMNDS flag introduced in rev. 1.20 src/bin/Makefile. Approved by: ru MFC after: 1 week Revision Changes Path 1.40 +7 -0 src/share/man/man5/make.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 2:24:32 2002 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 7883E37B416; Wed, 10 Apr 2002 02:24:23 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [IPv6:fec0::1:12]) by Awfulhak.org (8.12.2/8.11.6) with ESMTP id g3A9OHoi028920; Wed, 10 Apr 2002 10:24:18 +0100 (BST) (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.12.2/8.12.2) with ESMTP id g3A9OEOF049763; Wed, 10 Apr 2002 10:24:14 +0100 (BST) (envelope-from brian@freebsd-services.com) Message-Id: <200204100924.g3A9OEOF049763@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Alexander Leidinger Cc: brian@freebsd-services.com, julian@elischer.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_linker.c In-Reply-To: Message from Alexander Leidinger of "Wed, 10 Apr 2002 11:01:12 +0200." <200204100901.g3A91CHA000612@Magelan.Leidinger.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 10 Apr 2002 10:24:14 +0100 From: Brian Somers Sender: owner-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 10 Apr, Brian Somers wrote: > > > I'm running with an April 3 kernel (I reverted it because kernels > > over the past few days have dysfunctional shared library support). > > Can you a little bit more specific? I've a Apr 7 kernel here, and I > can't see any problems (after turning of tagged queuing for ATA). I was seeing this at boot: : Clearing /tmp:/usr/libexec/ld-elf.so.1: /usr/lib/libc.so.5: invalid file format : . : Additional daemons: syslogd/usr/libexec/ld-elf.so.1: /usr/lib/libc.so.5: invalid file format : . : Checking for core dump: Mediasize = 1048576000 : Sectorsize = 512 : savecore: Parity error on last dump header on /dev/ad1s1b : : Doing additional network setup: named/usr/libexec/ld-elf.so.1: /usr/lib/libc.so.5: invalid file format : timed/usr/libexec/ld-elf.so.1: /usr/lib/libutil.so.3: invalid file format : rpcbind/usr/libexec/ld-elf.so.1: /usr/lib/libwrap.so.3: invalid file format : ypbind/usr/libexec/ld-elf.so.1: /usr/lib/libc.so.5: invalid file format : . : Starting final network daemons: mountd^\Reboot interrupted : Enter full pathname of shell or RETURN for /bin/sh: pid 221 (mountd), uid 0: exited on signal 3 (core dumped) Booting from an April 3 kernel is ok (with an April 9 userland). I also had my entire / partition completely garbled *twice* during the week (since mkcusick's fsck_ffs changes - although I don't suspect they're the problem) after a clean shutdown - directories such as sbin being replaced by character specials, directories becoming large (size 3*10^38) files etc. I haven't said much however because I haven't had time to diagnose anything :-( -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 2:34:37 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 9DFD937B416; Wed, 10 Apr 2002 02:34:33 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3A9YXYm058989; Wed, 10 Apr 2002 02:34:33 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3A9XH0c058979; Wed, 10 Apr 2002 02:33:17 -0700 (PDT) Date: Wed, 10 Apr 2002 02:33:17 -0700 From: "David O'Brien" To: Ruslan Ermilov Cc: Maxim Konovalov , Bosko Milekic , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin Makefile src/share/examples/etc make.conf src/usr.bin Makefile Message-ID: <20020410023316.A58709@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200204091825.g39IPlu47806@freefall.freebsd.org> <20020410115605.M64464-100000@news1.macomnet.ru> <20020410081359.GD98684@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: <20020410081359.GD98684@sunbay.com>; from ru@FreeBSD.org on Wed, Apr 10, 2002 at 11:13:59AM +0300 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, Apr 10, 2002 at 11:13:59AM +0300, Ruslan Ermilov wrote: > > What about the next patch for make.conf(5): ... > Yes please. Seriously, I would like to see more discussion on this. I was serious aboiut where do we stop? NO_LS? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 2:57:54 2002 Delivered-To: cvs-all@freebsd.org Received: from carbon.slackerbsd.org (pcp01400762pcs.glnodn01.pa.comcast.net [68.80.148.54]) by hub.freebsd.org (Postfix) with ESMTP id CEE9C37B400 for ; Wed, 10 Apr 2002 02:57:47 -0700 (PDT) Received: from carbon.slackerbsd.org (cschmidt@localhost [127.0.0.1]) by carbon.slackerbsd.org (8.12.2/8.12.2) with ESMTP id g3A9vlsc013753 for ; Wed, 10 Apr 2002 09:57:47 GMT (envelope-from cschmidt@slackerbsd.org) Received: (from cschmidt@localhost) by carbon.slackerbsd.org (8.12.2/8.12.2/Submit) id g3A9vkoU013752 for cvs-all@FreeBSD.ORG; Wed, 10 Apr 2002 09:57:46 GMT X-Authentication-Warning: carbon.slackerbsd.org: cschmidt set sender to cschmidt@slackerbsd.org using -f Date: Wed, 10 Apr 2002 05:57:46 -0400 From: Carl Schmidt To: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/bin Makefile src/share/examples/etc make.conf src/usr.bin Makefile Message-ID: <20020410095746.GA11336@carbon.slackerbsd.org> Reply-To: Carl Schmidt Mail-Followup-To: cvs-all@FreeBSD.ORG References: <200204091825.g39IPlu47806@freefall.freebsd.org> <20020410115605.M64464-100000@news1.macomnet.ru> <20020410081359.GD98684@sunbay.com> <20020410023316.A58709@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020410023316.A58709@dragon.nuxi.com> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 10, 2002 at 02:33:17AM -0700, David O'Brien wrote: > On Wed, Apr 10, 2002 at 11:13:59AM +0300, Ruslan Ermilov wrote: > > > What about the next patch for make.conf(5): > ... > > Yes please. > > Seriously, I would like to see more discussion on this. I was serious > aboiut where do we stop? NO_LS? You stop when you get to the point of NO_LS. One could say that this spawns from the lack of fine-grained "automated" control over what gets installed. However something such as this is useful for at least this one reason: schg. Some, if not all (I don't recall), of the 'r' commands are installed with chflags schg and this causes a problem for people running in securelevel > 0 because you can't chflags noschg a file with schg once securelevel is so high. You might argue the need to remove binaries at all from the base system and I would argue that userland pollution is annoying and if there is a binary installed which I don't need, it will be removed. The inability of rm'ing a schg'ed binary is annoying and having to go to single user mode just to do it is even more annoying. So when you have a group of commands, such as NO_UUCP, I would say it is okay. If you get down to disabling one command with NO_WHATEVER, I would say it is probably, though not definitely, something to really care about. I agree with the change. -- Carl Schmidt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 3:10: 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 5A02937B400; Wed, 10 Apr 2002 03:09:50 -0700 (PDT) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AA9ol28924; Wed, 10 Apr 2002 03:09:50 -0700 (PDT) (envelope-from yoichi) Message-Id: <200204101009.g3AA9ol28924@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Wed, 10 Apr 2002 03:09:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/ndtpd 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 yoichi 2002/04/10 03:09:50 PDT Modified files: japanese/ndtpd Makefile Log: Don't run autoconf. It has configure script and the use of autoconf 2.53 cause breakage of it. PR: ports/36864 Submitted by: maintainer Revision Changes Path 1.22 +0 -3 ports/japanese/ndtpd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 3: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 361E037B405; Wed, 10 Apr 2002 03:30:27 -0700 (PDT) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AAUQR33030; Wed, 10 Apr 2002 03:30:27 -0700 (PDT) (envelope-from kuriyama) Message-Id: <200204101030.g3AAUQR33030@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 10 Apr 2002 03:30:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/net-snmp 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/04/10 03:30:26 PDT Modified files: net/net-snmp Makefile Log: I've mistaken the treatment of --with-mib-modules configure argument with multiple modules. With this fix, both of host and ucd-snmp/diskio modules are activated. Spotted by: Alexandr Listopad Revision Changes Path 1.69 +3 -5 ports/net/net-snmp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 3:36: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 747FE37B400; Wed, 10 Apr 2002 03:36:24 -0700 (PDT) Received: (from mike@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AAaOH34263; Wed, 10 Apr 2002 03:36:24 -0700 (PDT) (envelope-from mike) Message-Id: <200204101036.g3AAaOH34263@freefall.freebsd.org> From: Mike Barcroft Date: Wed, 10 Apr 2002 03:36:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys param.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 mike 2002/04/10 03:36:24 PDT Modified files: sys/sys param.h Log: Stop exporting ntohl(), ntohs(), htonl(), and htons() to userland in . Revision Changes Path 1.122 +1 -4 src/sys/sys/param.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 3:38: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 31AB937B417; Wed, 10 Apr 2002 03:38:45 -0700 (PDT) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AAcj834631; Wed, 10 Apr 2002 03:38:45 -0700 (PDT) (envelope-from sheldonh) Message-Id: <200204101038.g3AAcj834631@freefall.freebsd.org> From: Sheldon Hearn Date: Wed, 10 Apr 2002 03:38:45 -0700 (PDT) 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 sheldonh 2002/04/10 03:38:45 PDT Modified files: usr.sbin/newsyslog newsyslog.c Log: Close a very small window during which new (empty) instances of rotated log files are owned by the caller of newsyslog (usually root:wheel) even if alternative ownerships were specified in newsyslog.conf. Note that this is part of a wider problem which is fully addressed in OpenBSD. Anyone with the time and inclination to incorporate the full fix for the wider problem will receive no complaints from me and should feel free to walk all over this delta. PR: bin/36738 MFC after: 1 week Revision Changes Path 1.41 +13 -4 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 Wed Apr 10 3:45:11 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 1102137B416; Wed, 10 Apr 2002 03:45:06 -0700 (PDT) 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 UAA17228; Wed, 10 Apr 2002 20:45:03 +1000 Date: Wed, 10 Apr 2002 20:45:13 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Brian Somers Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/sys/dev/digi digi.c In-Reply-To: <200204100313.g3A3DSt33125@freefall.freebsd.org> Message-ID: <20020410204138.C7535-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, 9 Apr 2002, Brian Somers wrote: > brian 2002/04/09 20:13:28 PDT > > Modified files: > sys/dev/digi digi.c > Log: > Add a digi_delay() function and use it instead of tsleep() when polling > the card for command completion. > > digi_delay() uses either tsleep() or DELAY() depending on the value of > ``cold''. > > Pointed in the right direction by: jhb Maybe tsleep() should sleep when cold if given a timeout. This is not quite right, since the semantics of the timeout arg is to give a maximum wait, not a delay, but it is better than ... > > Revision Changes Path > 1.25 +14 -5 src/sys/dev/digi/digi.c N * (+14 -5) in N drivers. All drivers that support dynamic loading need something like this, since busy-waiting on running systems is unacceptable. Not that I will ever want to use this misfeature. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 3:52: 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 B861837B41A; Wed, 10 Apr 2002 03:51:53 -0700 (PDT) Received: (from mike@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AAprH36421; Wed, 10 Apr 2002 03:51:53 -0700 (PDT) (envelope-from mike) Message-Id: <200204101051.g3AAprH36421@freefall.freebsd.org> From: Mike Barcroft Date: Wed, 10 Apr 2002 03:51:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include/arpa inet.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 mike 2002/04/10 03:51:53 PDT Modified files: include/arpa inet.h Log: Be more strict about exposing BSD-specific functions when a standard has been requested. Unconditionalize the definition of INET_ADDRSTRLEN and INET6_ADDRSTRLEN. Doing this helps expose bogus redefinitions in 3rd party software. Revision Changes Path 1.22 +4 -10 src/include/arpa/inet.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 3:52:18 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 03EF337B41C; Wed, 10 Apr 2002 03:52:06 -0700 (PDT) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 16vFlY-000DT7-00; Wed, 10 Apr 2002 12:55:52 +0200 From: Sheldon Hearn To: cvs-committers@FreeBSD.org Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/newsyslog newsyslog.c In-reply-to: Your message of "Wed, 10 Apr 2002 03:38:45 MST." <200204101038.g3AAcj834631@freefall.freebsd.org> Date: Wed, 10 Apr 2002 12:55:52 +0200 Message-ID: <51776.1018436152@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 Wed, 10 Apr 2002 03:38:45 MST, Sheldon Hearn wrote: > sheldonh 2002/04/10 03:38:45 PDT > > Modified files: > usr.sbin/newsyslog newsyslog.c > Log: > Close a very small window during which new (empty) instances of rotated log > files are owned by the caller of newsyslog (usually root:wheel) even if > alternative ownerships were specified in newsyslog.conf. > > Note that this is part of a wider problem which is fully addressed in > OpenBSD. Anyone with the time and inclination to incorporate the full > fix for the wider problem will receive no complaints from me and should > feel free to walk all over this delta. > > PR: bin/36738 > MFC after: 1 week I should probably have mentioned (since people tend not to assume it) that the PR contains precise pointers to the appropriate revision of the "wider scope fix" in OpenBSD. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 3:59: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 235E837B419; Wed, 10 Apr 2002 03:59:20 -0700 (PDT) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AAxKM37552; Wed, 10 Apr 2002 03:59:20 -0700 (PDT) (envelope-from maxim) Message-Id: <200204101059.g3AAxKM37552@freefall.freebsd.org> From: Maxim Konovalov Date: Wed, 10 Apr 2002 03:59:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/renice renice.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 maxim 2002/04/10 03:59:19 PDT Modified files: usr.bin/renice renice.c Log: style(9) cleanup. Reviewed by: bde MFC after: 1 week Revision Changes Path 1.9 +22 -22 src/usr.bin/renice/renice.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 4: 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 E4E4F37B405; Wed, 10 Apr 2002 04:09:46 -0700 (PDT) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AB9kG46848; Wed, 10 Apr 2002 04:09:46 -0700 (PDT) (envelope-from maxim) Message-Id: <200204101109.g3AB9kG46848@freefall.freebsd.org> From: Maxim Konovalov Date: Wed, 10 Apr 2002 04:09:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/renice renice.8 renice.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 maxim 2002/04/10 04:09:46 PDT Modified files: usr.bin/renice renice.8 renice.c Log: Implement POSIX -n option, cleanup an arguments parsing a bit. PR: bin/34076, bin/35929 Reviewed by: bde Obtained from: NetBSD MFC after: 1 week Revision Changes Path 1.10 +9 -2 src/usr.bin/renice/renice.8 1.10 +47 -7 src/usr.bin/renice/renice.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 4:16:50 2002 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by hub.freebsd.org (Postfix) with ESMTP id 908A637B400; Wed, 10 Apr 2002 04:16:45 -0700 (PDT) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g3ABG8eZ072289; Wed, 10 Apr 2002 13:16:08 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Bruce Evans Cc: Brian Somers , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/digi digi.c In-Reply-To: Your message of "Wed, 10 Apr 2002 20:45:13 +1000." <20020410204138.C7535-100000@gamplex.bde.org> Date: Wed, 10 Apr 2002 13:16:07 +0200 Message-ID: <72288.1018437367@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-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 <20020410204138.C7535-100000@gamplex.bde.org>, Bruce Evans writes: >> >> Revision Changes Path >> 1.25 +14 -5 src/sys/dev/digi/digi.c > >N * (+14 -5) in N drivers. All drivers that support dynamic loading need >something like this, since busy-waiting on running systems is unacceptable. >Not that I will ever want to use this misfeature. No, the solution is to move timer initialization up in the boot sequence so that timeouts work for normal device probes. Many of our drivers need to be able to probe attach in the "normal" kernel environment anyway because they also support dynamic hardware like PCcard etc. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 4:18: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 8848737B400; Wed, 10 Apr 2002 04:18:07 -0700 (PDT) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3ABI7L48287; Wed, 10 Apr 2002 04:18:07 -0700 (PDT) (envelope-from sos) Message-Id: <200204101118.g3ABI7L48287@freefall.freebsd.org> From: Søren Schmidt Date: Wed, 10 Apr 2002 04:18:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-all.c ata-raid.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/04/10 04:18:07 PDT Modified files: sys/dev/ata ata-all.c ata-raid.c Log: Fix the FreeBSD native ATA RAID code a bit. Revision Changes Path 1.149 +1 -1 src/sys/dev/ata/ata-all.c 1.45 +33 -30 src/sys/dev/ata/ata-raid.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 4:18:51 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 025B737B419; Wed, 10 Apr 2002 04:18:35 -0700 (PDT) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 16vGAY-000DfD-00; Wed, 10 Apr 2002 13:21:42 +0200 From: Sheldon Hearn To: Joseph Scott Cc: "David O'Brien" , Bosko Milekic , cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/bin Makefile src/share/examples/etc make.conf src/usr.bin Makefile In-reply-to: Your message of "Tue, 09 Apr 2002 18:05:40 MST." Date: Wed, 10 Apr 2002 13:21:42 +0200 Message-ID: <52526.1018437702@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, 09 Apr 2002 18:05:40 MST, Joseph Scott wrote: > That's an interesting idea. If there was a running list of what's > normally suid then admins could go through and only set suid on programs > of their choice. Provide and commit to maintaining this, and you'll be a hero. > Which of course brings up the question, if NO_SUID is set, should > a port that wants to install a suid program be allowed to? Or should it > ask if you still want to continue with the install? Ug, perhaps a IS_SUID > for ports :-/ The ports tree already has a relatively graceful method of handling setuid stuff, by warning the operator of any setuid (perhaps only setuid root? doesn't matter...) binaries installed. So I don't think whatever you do with this in the base system needs to interact with the ports tree. I'd quite like an ALLOWED_SETUID_PROGS make.conf variable which, if defined, contains a list of binaries which are allowed to be installed with the setuid bit set. That would allow folks who don't define it to get the default set of setuid programs installed. Folks who "opt in" by defining the variable commit to keeping it updated as the base system inherits new setuid programs. That's also a good thing. It's a win win scenario that doesn't require a "list of setuid binaries in the base system" maintainer, although such a person's efforts would still be appreciated regardless, especially if said list included brief descriptions of why the setuid bit was required for each binary and what would break if it were turned off. So there you go; two ideas, each of which requires a volunteer to do some work. Neither of which I'm volunteering to work on. Sponsored by: The Ideas Brigade Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 4:57:53 2002 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 506CB37B404; Wed, 10 Apr 2002 04:57:47 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [IPv6:fec0::1:12]) by Awfulhak.org (8.12.2/8.11.6) with ESMTP id g3ABvhoi029286; Wed, 10 Apr 2002 12:57:44 +0100 (BST) (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.12.2/8.12.2) with ESMTP id g3ABveOF052165; Wed, 10 Apr 2002 12:57:40 +0100 (BST) (envelope-from brian@freebsd-services.com) Message-Id: <200204101157.g3ABveOF052165@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Bruce Evans Cc: Brian Somers , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/digi digi.c In-Reply-To: Message from Bruce Evans of "Wed, 10 Apr 2002 20:45:13 +1000." <20020410204138.C7535-100000@gamplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 10 Apr 2002 12:57:40 +0100 From: Brian Somers Sender: owner-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, 9 Apr 2002, Brian Somers wrote: > > > brian 2002/04/09 20:13:28 PDT > > > > Modified files: > > sys/dev/digi digi.c > > Log: > > Add a digi_delay() function and use it instead of tsleep() when polling > > the card for command completion. > > > > digi_delay() uses either tsleep() or DELAY() depending on the value of > > ``cold''. > > > > Pointed in the right direction by: jhb > > Maybe tsleep() should sleep when cold if given a timeout. This is not quite > right, since the semantics of the timeout arg is to give a maximum wait, > not a delay, but it is better than ... Well, I guess I'm abusing tsleep() - using it as a DELAY() that doesn't spin.... but I don't know of anything more suitable. > > > > Revision Changes Path > > 1.25 +14 -5 src/sys/dev/digi/digi.c > > N * (+14 -5) in N drivers. All drivers that support dynamic loading need > something like this, since busy-waiting on running systems is unacceptable. > Not that I will ever want to use this misfeature. Perhaps we just need to rename digi_delay() to delay() and put it somewhere more interesting ? > Bruce -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 4:59: 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 91A4037B400; Wed, 10 Apr 2002 04:59:02 -0700 (PDT) Received: (from mike@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3ABx2e55901; Wed, 10 Apr 2002 04:59:02 -0700 (PDT) (envelope-from mike) Message-Id: <200204101159.g3ABx2e55901@freefall.freebsd.org> From: Mike Barcroft Date: Wed, 10 Apr 2002 04:59:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet in.h src/sys/netinet6 in6.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 mike 2002/04/10 04:59:02 PDT Modified files: sys/netinet in.h sys/netinet6 in6.h Log: Unconditionalize the definition of INET_ADDRSTRLEN and INET6_ADDRSTRLEN. Doing this helps expose bogus redefinitions in 3rd party software. Revision Changes Path 1.65 +0 -2 src/sys/netinet/in.h 1.18 +0 -2 src/sys/netinet6/in6.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 5: 1:24 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 3025D37B400; Wed, 10 Apr 2002 05:01:13 -0700 (PDT) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.6/8.11.6) with SMTP id g3AC10w66206; Wed, 10 Apr 2002 08:01:01 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Wed, 10 Apr 2002 08:01:00 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: hiten@uk.FreeBSD.org Cc: freebsd-doc@freebsd.org, Jeroen Ruigrok/asmodai , "Greg 'groggy' Lehey" , Poul-Henning Kamp , John Baldwin , cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) In-Reply-To: <20020410075148.86487.qmail@web21107.mail.yahoo.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, 10 Apr 2002, Hiten Pandya wrote: > --- Murray Stokely wrote: > > Point those people to the Handbook, tell them to search for 'devfs', > > etc.. If they can't find the material they are looking for, then ask > > them to submit minor patches to clarify 5.0 functionality, rather than > > write a whole new book. > > I do understand, but wouldn't be useful to have a chapter, which points > out the new features with short/medium sized descriptions, rather than > bits lurking around the whole handbook? Those would be the release notes. The typical model is that you want a document that lasts after the release process, and becomes the "normal" documentation. There will be many new chapters for 5.0-RELEASE features, we just need to note that they came into existence in 5.0. That way you get a volume at the end of the day that covers 4.x and 5.0, since they'll co-exist for some time. For the TrustedBSD features, we anticipate a number of new handbook chapters, each carefully marked "FreeBSD 5.0 and higher" :-). I don't see a conflict here: many of the underlying paradigms of the system remain the same from the user perspective. There are marked differences, but they can be clearly identified, and are often in the form of new chapters rather than specific changes to existing management procedure (assuming that libh and sysinstallng don't turn up :-). 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 Apr 10 5: 3: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 8D90B37B417; Wed, 10 Apr 2002 05:03:37 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AC3aI56848; Wed, 10 Apr 2002 05:03:36 -0700 (PDT) (envelope-from brian) Message-Id: <200204101203.g3AC3aI56848@freefall.freebsd.org> From: Brian Somers Date: Wed, 10 Apr 2002 05:03:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/digi digi.c digi.h digi_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 brian 2002/04/10 05:03:36 PDT Modified files: sys/dev/digi digi.c digi.h digi_isa.c Log: Change more uses of tsleep() to digi_delay() and make the loop counts more sane. Revision Changes Path 1.26 +7 -7 src/sys/dev/digi/digi.c 1.11 +1 -0 src/sys/dev/digi/digi.h 1.8 +14 -12 src/sys/dev/digi/digi_isa.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 5: 5:58 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 C229937B405; Wed, 10 Apr 2002 05:05:32 -0700 (PDT) Received: (from jhay@localhost) by zibbi.icomtek.csir.co.za (8.11.6/8.11.6) id g3AC5Eg34971; Wed, 10 Apr 2002 14:05:15 +0200 (SAT) (envelope-from jhay) From: John Hay Message-Id: <200204101205.g3AC5Eg34971@zibbi.icomtek.csir.co.za> Subject: Re: cvs commit: ports/net/net-snmp Makefile In-Reply-To: <200204101030.g3AAUQR33030@freefall.freebsd.org> from Jun Kuriyama at "Apr 10, 2002 03:30:26 am" To: kuriyama@FreeBSD.org (Jun Kuriyama) Date: Wed, 10 Apr 2002 14:05:14 +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 I see that if you do a snmpwalk to a machine with IPv6 that it die with a message like this: ################## dolphin:~ > snmpwalk dolphin public > /tmp/snmpwalk.out Error: OID not increasing: udp.ipv6UdpTable.ipv6UdpEntry.ipv6UdpLocalAddress.'................'.1645.0 >= udp.ipv6UdpTable.ipv6UdpEntry.ipv6UdpLocalAddress.'................'.161.0 dolphin:~ > tail /tmp/snmpwalk.out udp.udpTable.udpEntry.udpLocalAddress.127.0.0.1.123 = IpAddress: 127.0.0.1 udp.udpTable.udpEntry.udpLocalAddress.146.64.28.14.123 = IpAddress: 146.64.28.14 udp.udpTable.udpEntry.udpLocalPort.0.0.0.0.123 = 123 udp.udpTable.udpEntry.udpLocalPort.0.0.0.0.161 = 161 udp.udpTable.udpEntry.udpLocalPort.0.0.0.0.514 = 514 udp.udpTable.udpEntry.udpLocalPort.0.0.0.0.1645 = 1645 udp.udpTable.udpEntry.udpLocalPort.127.0.0.1.123 = 123 udp.udpTable.udpEntry.udpLocalPort.146.64.28.14.123 = 123 udp.ipv6UdpTable.ipv6UdpEntry.ipv6UdpLocalAddress.'................'.1645.0 = 0:0:0:0:0:0:0:0 udp.ipv6UdpTable.ipv6UdpEntry.ipv6UdpLocalAddress.'................'.161.0 = 0:0:0:0:0:0:0:0 dolphin:~ > ####################### 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 Apr 10 5:15:13 2002 Delivered-To: cvs-all@freebsd.org Received: from white.imgsrc.co.jp (ns.imgsrc.co.jp [210.226.20.2]) by hub.freebsd.org (Postfix) with ESMTP id 91DC137B422; Wed, 10 Apr 2002 05:11:45 -0700 (PDT) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2::130]) by white.imgsrc.co.jp (Postfix) with ESMTP id 9802824D1C; Wed, 10 Apr 2002 21:11:44 +0900 (JST) Received: from waterblue.imgsrc.co.jp (waterblue.imgsrc.co.jp [2001:218:422:2::160]) by black.imgsrc.co.jp (Postfix) with ESMTP id A33421E46EE; Wed, 10 Apr 2002 21:11:39 +0900 (JST) Date: Wed, 10 Apr 2002 21:11:27 +0900 Message-ID: <7mr8ln7nyo.wl@waterblue.imgsrc.co.jp> From: Jun Kuriyama To: John Hay Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/net/net-snmp Makefile In-Reply-To: <200204101205.g3AC5Eg34971@zibbi.icomtek.csir.co.za> References: <200204101030.g3AAUQR33030@freefall.freebsd.org> <200204101205.g3AC5Eg34971@zibbi.icomtek.csir.co.za> User-Agent: Wanderlust/2.9.7 (Unchained Melody) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-4?Q?Unebigory=F2mae?=) APEL/10.3 Emacs/21.1 (i386--freebsd) MULE/5.0 (=?ISO-2022-JP?B?GyRCOC1MWhsoQg==?=) 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 At Wed, 10 Apr 2002 14:05:14 +0200 (SAT), John Hay wrote: > I see that if you do a snmpwalk to a machine with IPv6 that it die with > a message like this: Hmm, this is (a sort of) expected behavior since 4.2.x (I forgot exact version). Use "-Cc" option to snmpwalk for a workaround. I'll modify snmpd to return sorted entries for that mib, but priority for that is not so high... -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 5:17: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 0A77137B400; Wed, 10 Apr 2002 05:17:09 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3ACH8n62858; Wed, 10 Apr 2002 05:17:08 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204101217.g3ACH8n62858@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 10 Apr 2002 05:17:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ccache 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/04/10 05:17:07 PDT Modified files: devel/ccache Makefile distinfo Log: Update to 1.7. PR: 36961 Submitted by: maintainer Revision Changes Path 1.5 +1 -1 ports/devel/ccache/Makefile 1.5 +1 -1 ports/devel/ccache/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 5:18:29 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 AB82337B416; Wed, 10 Apr 2002 05:18:17 -0700 (PDT) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 10 Apr 2002 13:18:16 +0100 (BST) To: Jordan Hubbard Cc: Christopher Masto , Murray Stokely , Greg 'groggy' Lehey , msmith@FreeBSD.ORG, "David E. O'Brien" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: Configuring XFree 4 (was: cvs commit: src/usr.sbin/sysinstall Makefile dispatch.c dist.c install.c menus.c sysinstall.8) In-reply-to: Your message of "Tue, 09 Apr 2002 17:33:44 PDT." <49076.1018398824@winston.freebsd.org> X-Request-Do: Date: Wed, 10 Apr 2002 13:18:16 +0100 From: David Malone Message-ID: <200204101318.aa20574@salmon.maths.tcd.ie> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Woohoo! You rock! I'm now looking at a 1280x1024x32 screen on this > same desktop machine, admirably panic-free since applying your > patches! Excilent. Any complications when shutting down? I've tracked the complications I'm seeing, and it is something to do with ACPI calls causing the machine to hang up - I think my BIOS is just nuts actually... > When I launched the X -configure this time, it printed the following stuff > out on the console: > MSR 26e, old=1515151515151515 new=101010101010101 > MSR 26f, old=1515151515151515 new=101010101010101 Yep - 0x15 is what the bios is setting the MTRR to, which according to most documentation should cause a GPF. The old code goes mad when it finds these undocumented values. The 0x01 value X is writing in should be perfectly legal, so I don't understand why it is upsetting ACPI calls. > Mike Smith would certainly be the man to review your patches since he wrote > much (all?) of the original MTRR code. If Mike could review them, that would be perfect as he is probably the best man to comment on the ACPI interaction. I'll see if I can find anyone else to cast an eye over them. Should I aim to get these into 4.6? David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 5:43:37 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.tcoip.com.br (cerberus.tcoip.com.br [200.220.254.3]) by hub.freebsd.org (Postfix) with ESMTP id 75C0137B417; Wed, 10 Apr 2002 05:43:26 -0700 (PDT) Received: from tcoip.com.br ([192.168.60.194]) by mail.tcoip.com.br (8.11.6/8.11.6) with ESMTP id g3AChE424795; Wed, 10 Apr 2002 09:43:15 -0300 Message-ID: <3CB43361.9080104@tcoip.com.br> Date: Wed, 10 Apr 2002 09:43:13 -0300 From: "Daniel C. Sobral" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.9) Gecko/20020401 X-Accept-Language: en, pt-br, ja MIME-Version: 1.0 To: "M. Warner Losh" Cc: grog@FreeBSD.org, jhb@FreeBSD.org, phk@critter.freebsd.dk, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement References: <17393.1018364044@critter.freebsd.dk> <20020410095141.M9535@wantadilla.lemis.com> <20020409.185339.11814548.imp@village.org> Content-Type: text/plain; charset=us-ascii; format=flowed 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 M. Warner Losh wrote: > In message: <20020410095141.M9535@wantadilla.lemis.com> > "Greg 'groggy' Lehey" writes: > : Why do we need to cut Uesrconfig out until there's some replacement? > : Specifically, what do people do when they're installing the system > : from CD on an old ISA machine? It looks like they're stuck. > > Because there is no userconfig right now that works, as far as I can > tell. At least that was my experience last time I tried it. > > Users booting from cd on an old ISA machine can set hints, no big > deal, except that it is a little archane. For the record, I got Jon Mini interested in writing a userconfig replacement when I find out that there was no userconfig anymore on current (and the extent of my lack of contact with current should be enough of an indicator of why I'm not doing it myself). Since there seemed to be no further need, he went in another direction. -- Daniel C. Sobral (8-DCS) Daniel.Sobral@tcoip.com.br dcs@newsguy.com dcs@freebsd.org capo@notorious.bsdconspiracy.net New York now leads the world's great cities in the number of people around whom you shouldn't make a sudden move. -- David Letterman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 5:54: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 DBAA337B41B; Wed, 10 Apr 2002 05:54:25 -0700 (PDT) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3ACsPu69907; Wed, 10 Apr 2002 05:54:25 -0700 (PDT) (envelope-from kuriyama) Message-Id: <200204101254.g3ACsPu69907@freefall.freebsd.org> From: Jun Kuriyama Date: Wed, 10 Apr 2002 05:54:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/cvs-freebsd 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 kuriyama 2002/04/10 05:54:25 PDT Modified files: en_US.ISO8859-1/articles/cvs-freebsd article.sgml Log: Unbreak. Includes "DocBook Author Entities" to extract &a.joe; entity. Revision Changes Path 1.5 +2 -0 doc/en_US.ISO8859-1/articles/cvs-freebsd/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 Apr 10 6: 2:54 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 C85D237B404; Wed, 10 Apr 2002 06:02:49 -0700 (PDT) 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 XAA28575; Wed, 10 Apr 2002 23:02:42 +1000 Date: Wed, 10 Apr 2002 23:02:53 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Brian Somers Cc: Brian Somers , , Subject: Re: cvs commit: src/sys/dev/digi digi.c In-Reply-To: <200204101157.g3ABveOF052165@hak.lan.Awfulhak.org> Message-ID: <20020410225848.O527-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, 10 Apr 2002, Brian Somers wrote: > [bde wrote] > > ... > > N * (+14 -5) in N drivers. All drivers that support dynamic loading need > > something like this, since busy-waiting on running systems is unacceptable. > > Not that I will ever want to use this misfeature. > > Perhaps we just need to rename digi_delay() to delay() and put it > somewhere more interesting ? I think delay() is reserved for renaming DELAY() :-). NetBSD has delay() but still has DELAY() which is implemented as delay(). At least in a 2+ year old version. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 6: 6:35 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail17.speakeasy.net [216.254.0.217]) by hub.freebsd.org (Postfix) with ESMTP id 5969A37B419 for ; Wed, 10 Apr 2002 06:06:23 -0700 (PDT) Received: (qmail 5390 invoked from network); 10 Apr 2002 13:06:21 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail17.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 10 Apr 2002 13:06:21 -0000 Received: from laptop.baldwin.cx (john@laptop.baldwin.cx [192.168.0.4]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g3AD78v52788; Wed, 10 Apr 2002 09:07:08 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <20020410204138.C7535-100000@gamplex.bde.org> Date: Wed, 10 Apr 2002 09:06:18 -0400 (EDT) From: John Baldwin To: Bruce Evans Subject: Re: cvs commit: src/sys/dev/digi digi.c Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Brian Somers Sender: owner-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 10-Apr-2002 Bruce Evans wrote: > On Tue, 9 Apr 2002, Brian Somers wrote: > >> brian 2002/04/09 20:13:28 PDT >> >> Modified files: >> sys/dev/digi digi.c >> Log: >> Add a digi_delay() function and use it instead of tsleep() when polling >> the card for command completion. >> >> digi_delay() uses either tsleep() or DELAY() depending on the value of >> ``cold''. >> >> Pointed in the right direction by: jhb > > Maybe tsleep() should sleep when cold if given a timeout. This is not quite > right, since the semantics of the timeout arg is to give a maximum wait, > not a delay, but it is better than ... > >> >> Revision Changes Path >> 1.25 +14 -5 src/sys/dev/digi/digi.c > > N * (+14 -5) in N drivers. All drivers that support dynamic loading need > something like this, since busy-waiting on running systems is unacceptable. > Not that I will ever want to use this misfeature. I've thought about having some sort of separate API for code that just ways to delay. Right now they use tsleep() on a channel that never gets woken up with a timeout. If we had a delay(int timo) function then it could use a callout when callouts were working and fall back to DELAY() in the cold case. > 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 Apr 10 6:22: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 3DD3437B400; Wed, 10 Apr 2002 06:22:15 -0700 (PDT) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3ADMF878838; Wed, 10 Apr 2002 06:22:15 -0700 (PDT) (envelope-from n_hibma) Message-Id: <200204101322.g3ADMF878838@freefall.freebsd.org> From: Nick Hibma Date: Wed, 10 Apr 2002 06:22:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb umass.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 n_hibma 2002/04/10 06:22:13 PDT Modified files: sys/dev/usb umass.c Log: Postpone I/O to the device until attach has finished. This fixes attachment after boot in some cases where the device gets confused if spoken to over two different pipes simultaneously (resulting in TIMEOUT errors on requesting INQUIRY data). This solution is far from perfect, as after umass_attach has returned the USB stack fetches the string descriptors in order for creating the event that is sent to userland. It just makes the chances of collisions less likely. Tested by: Tomas Pluskal Revision Changes Path 1.58 +23 -21 src/sys/dev/usb/umass.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 6:38: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 5C03437B404; Wed, 10 Apr 2002 06:38:10 -0700 (PDT) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3ADcAQ82483; Wed, 10 Apr 2002 06:38:10 -0700 (PDT) (envelope-from maxim) Message-Id: <200204101338.g3ADcAQ82483@freefall.freebsd.org> From: Maxim Konovalov Date: Wed, 10 Apr 2002 06:38:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/renice renice.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 maxim 2002/04/10 06:38:10 PDT Modified files: usr.bin/renice renice.c Log: o Fix an arguments number check in -n case. o Remove duplicated prio check, donice() makes it for us. Spotted by: David Schultz MFC after: 1 week Revision Changes Path 1.11 +1 -6 src/usr.bin/renice/renice.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 7:32: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 A327437B404; Wed, 10 Apr 2002 07:32:56 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AEWu495914; Wed, 10 Apr 2002 07:32:56 -0700 (PDT) (envelope-from brian) Message-Id: <200204101432.g3AEWu495914@freefall.freebsd.org> From: Brian Somers Date: Wed, 10 Apr 2002 07:32:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/digi digi.c digi.h digi_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 brian 2002/04/10 07:32:56 PDT Modified files: sys/dev/digi digi.c digi.h digi_isa.c Log: Yet another adjustment of digi_delay(). The delay is now consistent irrespective of whether tsleep() or DELAY() is used. Revision Changes Path 1.27 +8 -8 src/sys/dev/digi/digi.c 1.12 +2 -1 src/sys/dev/digi/digi.h 1.9 +9 -9 src/sys/dev/digi/digi_isa.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 7:39: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 A55DB37B404; Wed, 10 Apr 2002 07:39:14 -0700 (PDT) Received: (from mike@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AEdE897368; Wed, 10 Apr 2002 07:39:14 -0700 (PDT) (envelope-from mike) Message-Id: <200204101439.g3AEdE897368@freefall.freebsd.org> From: Mike Barcroft Date: Wed, 10 Apr 2002 07:39:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/include endian.h src/sys/i386/include endian.h src/sys/ia64/include endian.h src/sys/powerpc/include endian.h src/sys/sparc64/include endian.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 mike 2002/04/10 07:39:14 PDT Modified files: sys/alpha/include endian.h sys/i386/include endian.h sys/ia64/include endian.h sys/powerpc/include endian.h sys/sparc64/include endian.h Log: Add manifest constants: _LITTLE_ENDIAN, _BIG_ENDIAN, _PDP_ENDIAN, and _BYTE_ORDER. These are far more useful than their non-underscored equivalents as these can be used in restricted namespace environments. Mark the non-underscored variants as deprecated. Revision Changes Path 1.10 +15 -6 src/sys/alpha/include/endian.h 1.33 +15 -6 src/sys/i386/include/endian.h 1.9 +15 -6 src/sys/ia64/include/endian.h 1.8 +15 -6 src/sys/powerpc/include/endian.h 1.8 +15 -6 src/sys/sparc64/include/endian.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 7:49:40 2002 Delivered-To: cvs-all@freebsd.org Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by hub.freebsd.org (Postfix) with ESMTP id AF8D937B404; Wed, 10 Apr 2002 07:49:32 -0700 (PDT) Received: (from jake@localhost) by k6.locore.ca (8.11.6/8.11.6) id g3AEq3c02194; Wed, 10 Apr 2002 10:52:03 -0400 (EDT) (envelope-from jake) Date: Wed, 10 Apr 2002 10:52:03 -0400 From: Jake Burkholder To: John Baldwin Cc: Bruce Evans , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Brian Somers Subject: Re: cvs commit: src/sys/dev/digi digi.c Message-ID: <20020410105203.B209@locore.ca> References: <20020410204138.C7535-100000@gamplex.bde.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 jhb@FreeBSD.org on Wed, Apr 10, 2002 at 09:06:18AM -0400 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Apparently, On Wed, Apr 10, 2002 at 09:06:18AM -0400, John Baldwin said words to the effect of; > > On 10-Apr-2002 Bruce Evans wrote: > > On Tue, 9 Apr 2002, Brian Somers wrote: > > > >> brian 2002/04/09 20:13:28 PDT > >> > >> Modified files: > >> sys/dev/digi digi.c > >> Log: > >> Add a digi_delay() function and use it instead of tsleep() when polling > >> the card for command completion. > >> > >> digi_delay() uses either tsleep() or DELAY() depending on the value of > >> ``cold''. > >> > >> Pointed in the right direction by: jhb > > > > Maybe tsleep() should sleep when cold if given a timeout. This is not quite > > right, since the semantics of the timeout arg is to give a maximum wait, > > not a delay, but it is better than ... > > > >> > >> Revision Changes Path > >> 1.25 +14 -5 src/sys/dev/digi/digi.c > > > > N * (+14 -5) in N drivers. All drivers that support dynamic loading need > > something like this, since busy-waiting on running systems is unacceptable. > > Not that I will ever want to use this misfeature. > > I've thought about having some sort of separate API for code that just ways to > delay. Right now they use tsleep() on a channel that never gets woken up with > a timeout. If we had a delay(int timo) function then it could use a callout > when callouts were working and fall back to DELAY() in the cold case. No, this is wrong. Anything that uses cold is wrong. The correct fix is to move the clock initialization earlier in boot to be before the device probe. Jake To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 8:17: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 3FD8737B428; Wed, 10 Apr 2002 08:17:38 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AFHcB08357; Wed, 10 Apr 2002 08:17:38 -0700 (PDT) (envelope-from marcus) Message-Id: <200204101517.g3AFHcB08357@freefall.freebsd.org> From: Joe Marcus Clarke Date: Wed, 10 Apr 2002 08:17:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/AbiWord Makefile distinfo pkg-plist ports/editors/AbiWord/files patch-autogen.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 marcus 2002/04/10 08:17:38 PDT Modified files: editors/AbiWord Makefile distinfo pkg-plist editors/AbiWord/files patch-autogen.sh Log: Update to 0.99.5. Reviewed by: sobomax Approved by: sobomax Revision Changes Path 1.44 +1 -1 ports/editors/AbiWord/Makefile 1.17 +1 -1 ports/editors/AbiWord/distinfo 1.3 +7 -8 ports/editors/AbiWord/files/patch-autogen.sh 1.16 +3 -0 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 Wed Apr 10 8:29:36 2002 Delivered-To: cvs-all@freebsd.org Received: from magic.adaptec.com (magic.adaptec.com [208.236.45.80]) by hub.freebsd.org (Postfix) with ESMTP id DD17F37B404; Wed, 10 Apr 2002 08:29:26 -0700 (PDT) Received: from redfish.adaptec.com (redfish.adaptec.com [162.62.50.11]) by magic.adaptec.com (8.10.2+Sun/8.10.2) with ESMTP id g3AFTQj04891; Wed, 10 Apr 2002 08:29:26 -0700 (PDT) Received: from btc.btc.adaptec.com (btc.btc.adaptec.com [10.100.0.52]) by redfish.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id IAA10441; Wed, 10 Apr 2002 08:29:25 -0700 (PDT) Received: from hollin.btc.adaptec.com (hollin [162.62.149.56]) by btc.btc.adaptec.com (8.8.8+Sun/8.8.8) with ESMTP id JAA21715; Wed, 10 Apr 2002 09:28:14 -0600 (MDT) Received: (from scottl@localhost) by hollin.btc.adaptec.com (8.11.6/8.11.6) id g3AFPho10669; Wed, 10 Apr 2002 09:25:43 -0600 (MDT) (envelope-from scott_long@btc.adaptec.com) X-Authentication-Warning: hollin.btc.adaptec.com: scottl set sender to scott_long@btc.adaptec.com using -f Subject: Re: cvs commit: src/sys/dev/digi digi.c digi.h digi_isa.c From: Scott Long To: Brian Somers Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org In-Reply-To: <200204101432.g3AEWu495914@freefall.freebsd.org> References: <200204101432.g3AEWu495914@freefall.freebsd.org> Content-Type: multipart/alternative; boundary="=-xfSIsHiHRNqKAAGwuGEK" X-Mailer: Evolution/1.0.1 Date: 10 Apr 2002 10:25:43 -0500 Message-Id: <1018452343.10637.2.camel@hollin.btc.adaptec.com> Mime-Version: 1.0 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-xfSIsHiHRNqKAAGwuGEK Content-Type: text/plain Content-Transfer-Encoding: 7bit On Wed, 2002-04-10 at 09:32, Brian Somers wrote: > brian 2002/04/10 07:32:56 PDT > > Modified files: > sys/dev/digi digi.c digi.h digi_isa.c > Log: > Yet another adjustment of digi_delay(). The delay is now consistent > irrespective of whether tsleep() or DELAY() is used. > > Revision Changes Path > 1.27 +8 -8 src/sys/dev/digi/digi.c > 1.12 +2 -1 src/sys/dev/digi/digi.h > 1.9 +9 -9 src/sys/dev/digi/digi_isa.c Brian, Instead of jumping through all of these hoops, why can't you do a config_intrhook_establish() to have the delay-sensitive operations done at a more appropriate time? This will work for both the at-boot and post-boot cases. Scott --=-xfSIsHiHRNqKAAGwuGEK Content-Type: text/html; charset=utf-8 On Wed, 2002-04-10 at 09:32, Brian Somers wrote:
> brian       2002/04/10 07:32:56 PDT
> 
>   Modified files:
>     sys/dev/digi         digi.c digi.h digi_isa.c 
>   Log:
>   Yet another adjustment of digi_delay().  The delay is now consistent
>   irrespective of whether tsleep() or DELAY() is used.
>   
>   Revision  Changes    Path
>   1.27      +8 -8      src/sys/dev/digi/digi.c
>   1.12      +2 -1      src/sys/dev/digi/digi.h
>   1.9       +9 -9      src/sys/dev/digi/digi_isa.c
Brian,

Instead of jumping through all of these hoops, why can't you do a config_intrhook_establish() to have the delay-sensitive operations done at a more appropriate time?  This will work for both the at-boot and post-boot cases.

Scott --=-xfSIsHiHRNqKAAGwuGEK-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 8:30: 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 68BDA37B4A2; Wed, 10 Apr 2002 08:29:53 -0700 (PDT) Received: (from vanilla@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AFTrr10311; Wed, 10 Apr 2002 08:29:53 -0700 (PDT) (envelope-from vanilla) Message-Id: <200204101529.g3AFTrr10311@freefall.freebsd.org> From: "Vanilla I. Shu" Date: Wed, 10 Apr 2002 08:29:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/enlightenment 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 vanilla 2002/04/10 08:29:53 PDT Modified files: x11-wm/enlightenment Makefile Log: Fix MASTER_SITES. Submitted by: fenner's reminder Revision Changes Path 1.69 +3 -7 ports/x11-wm/enlightenment/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 8:47:49 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 BA50237B404; Wed, 10 Apr 2002 08:47:22 -0700 (PDT) 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 g3AFlDi03199; Wed, 10 Apr 2002 09:47:14 -0600 (MDT) (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 g3AFl9c36776; Wed, 10 Apr 2002 09:47:13 -0600 (MDT) (envelope-from imp@village.org) Date: Wed, 10 Apr 2002 09:47:00 -0600 (MDT) Message-Id: <20020410.094700.119072531.imp@village.org> To: n_hibma@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/pci pci.c From: "M. Warner Losh" In-Reply-To: <200204100735.g3A7ZSw89784@freefall.freebsd.org> References: <200204100735.g3A7ZSw89784@freefall.freebsd.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: <200204100735.g3A7ZSw89784@freefall.freebsd.org> Nick Hibma writes: : n_hibma 2002/04/10 00:35:28 PDT : : Modified files: : sys/dev/pci pci.c : Log: : intline == 0 is not a valid intline on 386. See pci_cfgintr() in : sys/i386/pci/pci_cfgreg.c. : : This should resolve some cases where adding USB support to the kernel : produced an interrupt storm. Mike Smith and I have been talking about putting this into pci_cfgregread rather than making it a special case in the MD code that dev/pci is supposed to be. The machine specific ifdefs in dev/pci/pci.c are to be avoided. We do this re-mapping right now for tha APIC case on i386, but should also do it for other values in the non-apic case. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 8:55: 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 1B4C237B400; Wed, 10 Apr 2002 08:55:06 -0700 (PDT) Received: (from shige@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AFt6614394; Wed, 10 Apr 2002 08:55:06 -0700 (PDT) (envelope-from shige) Message-Id: <200204101555.g3AFt6614394@freefall.freebsd.org> From: Shigeyuki Fukushima Date: Wed, 10 Apr 2002 08:55:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/emacs20/files patch-an X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG shige 2002/04/10 08:55:05 PDT Modified files: editors/emacs20/files patch-an Log: Fix build-failure at makeinfo(4.1 or later). Submitted by: yoichi Obtained from: http://home.jp.freebsd.org/cgi-bin/showmail/ports-jp/12604 Revision Changes Path 1.3 +10 -1 ports/editors/emacs20/files/patch-an To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 8: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 9FC0B37B400; Wed, 10 Apr 2002 08:58:14 -0700 (PDT) Received: (from mike@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AFwE315090; Wed, 10 Apr 2002 08:58:14 -0700 (PDT) (envelope-from mike) Message-Id: <200204101558.g3AFwE315090@freefall.freebsd.org> From: Mike Barcroft Date: Wed, 10 Apr 2002 08:58:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/include ansi.h src/sys/i386/include ansi.h src/sys/ia64/include ansi.h src/sys/powerpc/include ansi.h src/sys/sparc64/include ansi.h 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 mike 2002/04/10 08:58:14 PDT Modified files: sys/alpha/include ansi.h sys/i386/include ansi.h sys/ia64/include ansi.h sys/powerpc/include ansi.h sys/sparc64/include ansi.h sys/sys types.h Log: Remove the hack for segsz_t from ; use the normal _BSD_FOO_T_ method for defining segsz_t. Revision Changes Path 1.27 +1 -0 src/sys/alpha/include/ansi.h 1.37 +1 -0 src/sys/i386/include/ansi.h 1.20 +1 -0 src/sys/ia64/include/ansi.h 1.20 +1 -0 src/sys/powerpc/include/ansi.h 1.14 +1 -0 src/sys/sparc64/include/ansi.h 1.60 +5 -5 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 Wed Apr 10 9: 2: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 95F4D37B41A; Wed, 10 Apr 2002 09:02:21 -0700 (PDT) Received: (from shige@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AG2Kj15710; Wed, 10 Apr 2002 09:02:20 -0700 (PDT) (envelope-from shige) Message-Id: <200204101602.g3AG2Kj15710@freefall.freebsd.org> From: Shigeyuki Fukushima Date: Wed, 10 Apr 2002 09:02:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/emacs20/files patch-an X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG shige 2002/04/10 09:02:19 PDT Modified files: editors/emacs20/files patch-an Log: Closed PR. PR: ports/36755 Submitted by: Scott Allendorf Revision Changes Path 1.4 +0 -0 ports/editors/emacs20/files/patch-an To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 9: 9: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 0E26737B405; Wed, 10 Apr 2002 09:09:31 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AG9VQ20642; Wed, 10 Apr 2002 09:09:31 -0700 (PDT) (envelope-from marcus) Message-Id: <200204101609.g3AG9VQ20642@freefall.freebsd.org> From: Joe Marcus Clarke Date: Wed, 10 Apr 2002 09:09:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gnomeicu 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 marcus 2002/04/10 09:09:30 PDT Modified files: net/gnomeicu Makefile distinfo pkg-plist Log: Update to 0.98.2. Reviewed by: sobomax Approved by: sobomax Revision Changes Path 1.41 +10 -5 ports/net/gnomeicu/Makefile 1.14 +1 -1 ports/net/gnomeicu/distinfo 1.14 +5 -0 ports/net/gnomeicu/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 Apr 10 9:29: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 51BA537B405; Wed, 10 Apr 2002 09:29:22 -0700 (PDT) Received: (from shige@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AGTMg24144; Wed, 10 Apr 2002 09:29:22 -0700 (PDT) (envelope-from shige) Message-Id: <200204101629.g3AGTMg24144@freefall.freebsd.org> From: Shigeyuki Fukushima Date: Wed, 10 Apr 2002 09:29:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/emacs20-emcws Makefile ports/japanese/emacs20-emcws/files patch-aa patch-ac patch-ad patch-ag patch-al patch-am patch-an patch-ao patch-ap patch-aq patch-ar patch-as patch-at patch-au patch-av patch-aw patch-bb X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG shige 2002/04/10 09:29:22 PDT Modified files: japanese/emacs20-emcws Makefile Removed files: japanese/emacs20-emcws/files patch-aa patch-ac patch-ad patch-ag patch-al patch-am patch-an patch-ao patch-ap patch-aq patch-ar patch-as patch-at patch-au patch-av patch-aw patch-bb Log: Fix wnn option. Don't build info (this package does not need info). Submitted by: NAKAJI Hiroyuki Obtained from: http://home.jp.freebsd.org/cgi-bin/showmail/ports-jp/12612 Revision Changes Path 1.6 +2 -2 ports/japanese/emacs20-emcws/Makefile 1.2 +0 -11 ports/japanese/emacs20-emcws/files/patch-aa (dead) 1.2 +0 -14 ports/japanese/emacs20-emcws/files/patch-ac (dead) 1.2 +0 -14 ports/japanese/emacs20-emcws/files/patch-ad (dead) 1.3 +0 -19 ports/japanese/emacs20-emcws/files/patch-ag (dead) 1.2 +0 -17 ports/japanese/emacs20-emcws/files/patch-al (dead) 1.2 +0 -14 ports/japanese/emacs20-emcws/files/patch-am (dead) 1.3 +0 -23 ports/japanese/emacs20-emcws/files/patch-an (dead) 1.2 +0 -26 ports/japanese/emacs20-emcws/files/patch-ao (dead) 1.2 +0 -13 ports/japanese/emacs20-emcws/files/patch-ap (dead) 1.2 +0 -20 ports/japanese/emacs20-emcws/files/patch-aq (dead) 1.2 +0 -24 ports/japanese/emacs20-emcws/files/patch-ar (dead) 1.2 +0 -15 ports/japanese/emacs20-emcws/files/patch-as (dead) 1.2 +0 -17 ports/japanese/emacs20-emcws/files/patch-at (dead) 1.2 +0 -14 ports/japanese/emacs20-emcws/files/patch-au (dead) 1.2 +0 -21 ports/japanese/emacs20-emcws/files/patch-av (dead) 1.2 +0 -16 ports/japanese/emacs20-emcws/files/patch-aw (dead) 1.2 +0 -13 ports/japanese/emacs20-emcws/files/patch-bb (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 9:34: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 0708A37B400; Wed, 10 Apr 2002 09:34:53 -0700 (PDT) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AGYrH24874; Wed, 10 Apr 2002 09:34:53 -0700 (PDT) (envelope-from dfr) Message-Id: <200204101634.g3AGYrH24874@freefall.freebsd.org> From: Doug Rabson Date: Wed, 10 Apr 2002 09:34:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 pmap.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 dfr 2002/04/10 09:34:52 PDT Modified files: sys/ia64/ia64 pmap.c Log: Initialise PCPU_GET(current_pmap) in pmap_bootstrap - cpu_switch needs to be sure that it is always correct and this was not true for the first call to cpu_switch. When thread0 resumed later, it ended up calling pmap_install with a null pmap, which is bad. Revision Changes Path 1.55 +1 -0 src/sys/ia64/ia64/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 9:35: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 31B1937B404; Wed, 10 Apr 2002 09:35:45 -0700 (PDT) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AGZju25086; Wed, 10 Apr 2002 09:35:45 -0700 (PDT) (envelope-from dfr) Message-Id: <200204101635.g3AGZju25086@freefall.freebsd.org> From: Doug Rabson Date: Wed, 10 Apr 2002 09:35:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 exception.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 dfr 2002/04/10 09:35:44 PDT Modified files: sys/ia64/ia64 exception.s Log: Call ast() from the syscall exit path as well as for full exception restores. Revision Changes Path 1.33 +42 -1 src/sys/ia64/ia64/exception.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 9: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 2DD0437B404; Wed, 10 Apr 2002 09:39:23 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AGdNN25687; Wed, 10 Apr 2002 09:39:23 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204101639.g3AGdNN25687@freefall.freebsd.org> From: Tom Rhodes Date: Wed, 10 Apr 2002 09:39:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/find find.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 trhodes 2002/04/10 09:39:23 PDT Modified files: usr.bin/find find.1 Log: find.1 does not encourage users to DTRT when piping to xargs(1) PR: 36602 Submitted by: Joshua Goodall No objections from: ru MFC after: 2 days Revision Changes Path 1.43 +7 -0 src/usr.bin/find/find.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 10: 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 B9F3D37B400; Wed, 10 Apr 2002 10:01:55 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AH1tu30052; Wed, 10 Apr 2002 10:01:55 -0700 (PDT) (envelope-from ru) Message-Id: <200204101701.g3AH1tu30052@freefall.freebsd.org> From: Ruslan Ermilov Date: Wed, 10 Apr 2002 10:01:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libmd 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/04/10 10:01:55 PDT Modified files: lib/libmd Makefile Log: Don't build manuals at inappropriate time. Collapse generation of md[245].3 manpages. Revision Changes Path 1.37 +6 -14 src/lib/libmd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 10:15:25 2002 Delivered-To: cvs-all@freebsd.org Received: from cheer.mahoroba.org (flets20-089.kamome.or.jp [218.45.20.89]) by hub.freebsd.org (Postfix) with ESMTP id BF18E37B404; Wed, 10 Apr 2002 10:15:20 -0700 (PDT) Received: from mille.mahoroba.org (IDENT:77CL2MYzN8WEBYvKXIj2XvytfLuJiep9536APg1ppf5q0F7v+zEgE+sbhcSAhit9@mille.mahoroba.org [IPv6:2001:200:301:0:202:2dff:fe0a:6bee]) (user=ume mech=CRAM-MD5 bits=0) by cheer.mahoroba.org (8.12.3/8.12.3) with ESMTP/inet6 id g3AHFHhw045786 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Thu, 11 Apr 2002 02:15:18 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Thu, 11 Apr 2002 02:15:17 +0900 Message-ID: From: Hajimu UMEMOTO To: Mike Barcroft Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in.h src/sys/netinet6 in6.h In-Reply-To: <200204101159.g3ABx2e55901@freefall.freebsd.org> References: <200204101159.g3ABx2e55901@freefall.freebsd.org> User-Agent: xcite1.38> Wanderlust/2.8.1 (Something) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-4?Q?Unebigory=F2mae?=) APEL/10.3 Emacs/21.2 (i386--freebsd) MULE/5.0 (=?ISO-2022-JP?B?GyRCOC1MWhsoQg==?=) X-Operating-System: FreeBSD 4.5-STABLE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by AMaViS-perl11-milter (http://amavis.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 Hi, >>>>> On Wed, 10 Apr 2002 04:59:02 -0700 (PDT) >>>>> Mike Barcroft said: mike> mike 2002/04/10 04:59:02 PDT mike> Modified files: mike> sys/netinet in.h mike> sys/netinet6 in6.h mike> Log: mike> Unconditionalize the definition of INET_ADDRSTRLEN and mike> INET6_ADDRSTRLEN. Doing this helps expose bogus redefinitions in 3rd mike> party software. I cannot understand why this change is required. RFC2553 says: addresses, the buffer must be at least 16-octets. In order to allow applications to easily declare buffers of the proper size to store IPv4 and IPv6 addresses in string form, the following two constants are defined in : #define INET_ADDRSTRLEN 16 #define INET6_ADDRSTRLEN 46 I believe this two define shouldn't appear in application side. -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@bisd.hitachi.co.jp ume@{,jp.}FreeBSD.org http://www.imasy.org/~ume/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 10:27: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 1434837B416; Wed, 10 Apr 2002 10:27:53 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AHRrX38010; Wed, 10 Apr 2002 10:27:53 -0700 (PDT) (envelope-from brian) Message-Id: <200204101727.g3AHRrX38010@freefall.freebsd.org> From: Brian Somers Date: Wed, 10 Apr 2002 10:27:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf NOTES X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/10 10:27:52 PDT Modified files: sys/conf NOTES Log: Don't suggest that the digi firmware modules are normally loaded dynamically, as this will only happen if you kldload digi after the machine has booted or explicitly mention them in loader.conf. Revision Changes Path 1.1020 +1 -1 src/sys/conf/NOTES To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 10:36:15 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 45CB037B404; Wed, 10 Apr 2002 10:35:52 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g3AHZjE76964; Wed, 10 Apr 2002 20:35:45 +0300 (EEST) (envelope-from ru) Date: Wed, 10 Apr 2002 20:35:45 +0300 From: Ruslan Ermilov To: "David O'Brien" Cc: Bruce Evans , Maxim Konovalov , Bosko Milekic , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin Makefile src/share/examples/etc make.conf src/usr.bin Makefile Message-ID: <20020410173545.GI98684@sunbay.com> References: <200204091825.g39IPlu47806@freefall.freebsd.org> <20020410115605.M64464-100000@news1.macomnet.ru> <20020410081359.GD98684@sunbay.com> <20020410023316.A58709@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="sdJFN6SSISdF2ksn" Content-Disposition: inline In-Reply-To: <20020410023316.A58709@dragon.nuxi.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 --sdJFN6SSISdF2ksn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 10, 2002 at 02:33:17AM -0700, David O'Brien wrote: > On Wed, Apr 10, 2002 at 11:13:59AM +0300, Ruslan Ermilov wrote: > > > What about the next patch for make.conf(5): > ... > > Yes please. >=20 > Seriously, I would like to see more discussion on this. I was serious > aboiut where do we stop? NO_LS? >=20 Hmm, that's an interesting idea! I'll try to implement this, so that it's possible to say NO_bin/csh and skip descending into bin/csh. Then various NO_'s could be encoded as a sequence of NO_path/to/component, in one place (default/make.conf, we'll resurrect it) without the need to modify individual top-level makefiles. Cheers, --=20 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 --sdJFN6SSISdF2ksn 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 iD8DBQE8tHfxUkv4P6juNwoRAvkGAJ4jecJBOHEQvHjJzFhE8KjO+070CgCfXJ53 pry0wPw0v1YsVeDB+Fi9DwE= =5k+/ -----END PGP SIGNATURE----- --sdJFN6SSISdF2ksn-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 10:43:22 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 64FD937B400; Wed, 10 Apr 2002 10:43:06 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g3AHgSO77597; Wed, 10 Apr 2002 20:42:28 +0300 (EEST) (envelope-from ru) Date: Wed, 10 Apr 2002 20:42:28 +0300 From: Ruslan Ermilov To: Marcel Moolenaar Cc: "David E. O'Brien" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin Makefile Message-ID: <20020410174228.GJ98684@sunbay.com> References: <200204082038.g38KcuJ36871@freefall.freebsd.org> <20020409082654.GE73475@sunbay.com> <20020410045830.GB10113@dhcp01.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="73fGQZLCrFzENemP" Content-Disposition: inline In-Reply-To: <20020410045830.GB10113@dhcp01.pn.xcllnt.net> 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 --73fGQZLCrFzENemP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 09, 2002 at 09:58:30PM -0700, Marcel Moolenaar wrote: > On Tue, Apr 09, 2002 at 11:26:54AM +0300, Ruslan Ermilov wrote: > > > Log: > > > GCC and Gperf do not work on ia64 or sparc64 yet. > > > Also do not try to compile Groff if NO_CXX is set. > > > =20 > > > Revision Changes Path > > > 1.59 +10 -2 src/gnu/usr.bin/Makefile > > >=20 > > This is IMHO bogus. NO_CXX only means that (GNU) c++ shouldn't > > be built, it doesn't imply that the host doesn't have another > > working (probably non-GNU) c++ compiler that can build Groff. >=20 > Unfortunately this is irrelevant, because a buildworld will not > use it if it exists. The bottomline is that if you don't build > libstdc++, you cannot build anything that depends on it. Hence, > making gperf conditional on NO_CXX is correct. >=20 I was talking about Groff. Cheers, --=20 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 --73fGQZLCrFzENemP 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 iD8DBQE8tHmEUkv4P6juNwoRAnC5AJ9c7GFp0rt4mDqOZq97mz0sV02/IwCdFdMK jKT9jopDtSFuy8NdS1icLyM= =H1PS -----END PGP SIGNATURE----- --73fGQZLCrFzENemP-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 10:44:42 2002 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id B689237B400; Wed, 10 Apr 2002 10:44:27 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [IPv6:fec0::1:12]) by Awfulhak.org (8.12.2/8.11.6) with ESMTP id g3AHi9oi031697; Wed, 10 Apr 2002 18:44:09 +0100 (BST) (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.12.2/8.12.2) with ESMTP id g3AHi4OF056430; Wed, 10 Apr 2002 18:44:04 +0100 (BST) (envelope-from brian@freebsd-services.com) Message-Id: <200204101744.g3AHi4OF056430@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Scott Long Cc: Brian Somers , cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/digi digi.c digi.h digi_isa.c In-Reply-To: Message from Scott Long of "10 Apr 2002 10:25:43 CDT." <1018452343.10637.2.camel@hollin.btc.adaptec.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 10 Apr 2002 18:44:04 +0100 From: Brian Somers Sender: owner-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, 2002-04-10 at 09:32, Brian Somers wrote: > > > brian 2002/04/10 07:32:56 PDT > > > > Modified files: > > sys/dev/digi digi.c digi.h digi_isa.c > > Log: > > Yet another adjustment of digi_delay(). The delay is now consistent > > irrespective of whether tsleep() or DELAY() is used. > > > > Revision Changes Path > > 1.27 +8 -8 src/sys/dev/digi/digi.c > > 1.12 +2 -1 src/sys/dev/digi/digi.h > > 1.9 +9 -9 src/sys/dev/digi/digi_isa.c > > Brian, > > Instead of jumping through all of these hoops, why can't you do a > config_intrhook_establish() to have the delay-sensitive operations done > at a more appropriate time? This will work for both the at-boot and > post-boot cases. Hi, While this would be a clean way of doing things, I'd prefer not to defer the card initialisation. Ultimately I'd like to be able to use the device as a console. As a few people have pointed out, the ``delay'' thing is a more generic problem. Many drivers will want to give their hardware instructions and then poll waiting for completion during probe and attach. Having the clock available at module initialisation time is probably the best answer. > Scott -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 10:47: 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 BE5EF37B404; Wed, 10 Apr 2002 10:46:59 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AHkxh41802; Wed, 10 Apr 2002 10:46:59 -0700 (PDT) (envelope-from ru) Message-Id: <200204101746.g3AHkxh41802@freefall.freebsd.org> From: Ruslan Ermilov Date: Wed, 10 Apr 2002 10:46:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/libpam 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/04/10 10:46:59 PDT Modified files: lib/libpam/libpam Makefile Log: Don't override standard _EXTRADEPEND actions, add to them. Fix CLEANFILES. Collapse openpam_static_modules.o generation. Revision Changes Path 1.32 +5 -5 src/lib/libpam/libpam/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 10:53: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 B3EFC37B41D; Wed, 10 Apr 2002 10:53:43 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AHrh943216; Wed, 10 Apr 2002 10:53:43 -0700 (PDT) (envelope-from ru) Message-Id: <200204101753.g3AHrh943216@freefall.freebsd.org> From: Ruslan Ermilov Date: Wed, 10 Apr 2002 10:53:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_krb5 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/04/10 10:53:43 PDT Modified files: lib/libpam/modules/pam_krb5 Makefile Log: Fix broken `checkdpadd'. -lroken is an installable library, there's no need to give an explicit path to it. In any case, -L paths should be specified in LDFLAGS if needed. Approved by: des Revision Changes Path 1.8 +1 -1 src/lib/libpam/modules/pam_krb5/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 11: 0: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 1687137B417; Wed, 10 Apr 2002 11:00:33 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AI0XS44441; Wed, 10 Apr 2002 11:00:33 -0700 (PDT) (envelope-from ru) Message-Id: <200204101800.g3AI0XS44441@freefall.freebsd.org> From: Ruslan Ermilov Date: Wed, 10 Apr 2002 11:00:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: 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 ru 2002/04/10 11:00:32 PDT Modified files: lib/libpam/modules/pam_unix Makefile Log: Fixed broken "make depend; make clean; make all" sequence. I've looked for this example for a long time, to demonstrate some people why it's a really BAD idea to use ${.OBJDIR} instead of ".". I hope these people are reading this. :-) Approved by: des Revision Changes Path 1.14 +1 -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 Apr 10 11: 7: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 B23C337B41C; Wed, 10 Apr 2002 11:07:05 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AI75B49381; Wed, 10 Apr 2002 11:07:05 -0700 (PDT) (envelope-from ru) Message-Id: <200204101807.g3AI75B49381@freefall.freebsd.org> From: Ruslan Ermilov Date: Wed, 10 Apr 2002 11:07:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules Makefile.inc src/lib/libpam/modules/pam_deny Makefile src/lib/libpam/modules/pam_ftp Makefile src/lib/libpam/modules/pam_kerberosIV Makefile src/lib/libpam/modules/pam_krb5 Makefile src/lib/libpam/modules/pam_lastlog 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/04/10 11:07:05 PDT Modified files: lib/libpam/modules Makefile.inc lib/libpam/modules/pam_deny Makefile lib/libpam/modules/pam_ftp Makefile lib/libpam/modules/pam_kerberosIV Makefile lib/libpam/modules/pam_krb5 Makefile lib/libpam/modules/pam_lastlog Makefile lib/libpam/modules/pam_login_access Makefile lib/libpam/modules/pam_nologin Makefile lib/libpam/modules/pam_opie Makefile lib/libpam/modules/pam_opieaccess Makefile lib/libpam/modules/pam_passwdqc Makefile lib/libpam/modules/pam_permit Makefile lib/libpam/modules/pam_radius Makefile lib/libpam/modules/pam_rootok Makefile lib/libpam/modules/pam_securetty Makefile lib/libpam/modules/pam_self Makefile lib/libpam/modules/pam_ssh Makefile lib/libpam/modules/pam_tacplus Makefile lib/libpam/modules/pam_unix Makefile lib/libpam/modules/pam_wheel Makefile Log: Moved SHLIB_NAME definition into one place. Approved by: des Revision Changes Path 1.11 +1 -0 src/lib/libpam/modules/Makefile.inc 1.6 +1 -2 src/lib/libpam/modules/pam_deny/Makefile 1.4 +0 -1 src/lib/libpam/modules/pam_ftp/Makefile 1.11 +1 -2 src/lib/libpam/modules/pam_kerberosIV/Makefile 1.9 +1 -2 src/lib/libpam/modules/pam_krb5/Makefile 1.4 +0 -1 src/lib/libpam/modules/pam_lastlog/Makefile 1.4 +0 -1 src/lib/libpam/modules/pam_login_access/Makefile 1.6 +0 -1 src/lib/libpam/modules/pam_nologin/Makefile 1.8 +1 -2 src/lib/libpam/modules/pam_opie/Makefile 1.3 +0 -1 src/lib/libpam/modules/pam_opieaccess/Makefile 1.2 +0 -1 src/lib/libpam/modules/pam_passwdqc/Makefile 1.6 +1 -2 src/lib/libpam/modules/pam_permit/Makefile 1.11 +1 -2 src/lib/libpam/modules/pam_radius/Makefile 1.5 +0 -1 src/lib/libpam/modules/pam_rootok/Makefile 1.4 +0 -1 src/lib/libpam/modules/pam_securetty/Makefile 1.3 +0 -1 src/lib/libpam/modules/pam_self/Makefile 1.13 +0 -1 src/lib/libpam/modules/pam_ssh/Makefile 1.7 +1 -2 src/lib/libpam/modules/pam_tacplus/Makefile 1.15 +1 -2 src/lib/libpam/modules/pam_unix/Makefile 1.5 +0 -1 src/lib/libpam/modules/pam_wheel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 11:26:59 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 47AE437B41A; Wed, 10 Apr 2002 11:26:56 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3AIQtYm082060; Wed, 10 Apr 2002 11:26:55 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3AIPdGn082053; Wed, 10 Apr 2002 11:25:39 -0700 (PDT) Date: Wed, 10 Apr 2002 11:25:39 -0700 From: "David O'Brien" To: David Malone Cc: Murray Stokely , msmith@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: Configuring XFree 4 (was: cvs commit: src/usr.sbin/sysinstall Makefile dispatch.c dist.c install.c menus.c sysinstall.8) Message-ID: <20020410112539.B80542@dragon.nuxi.com> Reply-To: David Malone , Murray Stokely , msmith@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <49076.1018398824@winston.freebsd.org> <200204101318.aa20574@salmon.maths.tcd.ie> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200204101318.aa20574@salmon.maths.tcd.ie>; from dwmalone@maths.tcd.ie on Wed, Apr 10, 2002 at 01:18:16PM +0100 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, Apr 10, 2002 at 01:18:16PM +0100, David Malone wrote: > Should I aim to get these into 4.6? Yes. I ate dinner with the 4.6 release engineer yesterday and he would like to see this patch reviewed and committed if the suitable reviewer agrees to them. We have hopes of using XFree86 4.2 in the upcoming FreeBSD 4.6 release. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 11:27:36 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail17.speakeasy.net [216.254.0.217]) by hub.freebsd.org (Postfix) with ESMTP id B8D6637B425 for ; Wed, 10 Apr 2002 11:27:18 -0700 (PDT) Received: (qmail 19519 invoked from network); 10 Apr 2002 18:27:17 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail17.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 10 Apr 2002 18:27:17 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g3AIS2v53537; Wed, 10 Apr 2002 14:28:02 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <20020410105203.B209@locore.ca> Date: Wed, 10 Apr 2002 14:27:06 -0400 (EDT) From: John Baldwin To: Jake Burkholder Subject: Re: cvs commit: src/sys/dev/digi digi.c Cc: Brian Somers , 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 10-Apr-2002 Jake Burkholder wrote: > Apparently, On Wed, Apr 10, 2002 at 09:06:18AM -0400, > John Baldwin said words to the effect of; > >> >> On 10-Apr-2002 Bruce Evans wrote: >> > On Tue, 9 Apr 2002, Brian Somers wrote: >> > >> >> brian 2002/04/09 20:13:28 PDT >> >> >> >> Modified files: >> >> sys/dev/digi digi.c >> >> Log: >> >> Add a digi_delay() function and use it instead of tsleep() when polling >> >> the card for command completion. >> >> >> >> digi_delay() uses either tsleep() or DELAY() depending on the value of >> >> ``cold''. >> >> >> >> Pointed in the right direction by: jhb >> > >> > Maybe tsleep() should sleep when cold if given a timeout. This is not >> > quite >> > right, since the semantics of the timeout arg is to give a maximum wait, >> > not a delay, but it is better than ... >> > >> >> >> >> Revision Changes Path >> >> 1.25 +14 -5 src/sys/dev/digi/digi.c >> > >> > N * (+14 -5) in N drivers. All drivers that support dynamic loading need >> > something like this, since busy-waiting on running systems is >> > unacceptable. >> > Not that I will ever want to use this misfeature. >> >> I've thought about having some sort of separate API for code that just ways >> to >> delay. Right now they use tsleep() on a channel that never gets woken up >> with >> a timeout. If we had a delay(int timo) function then it could use a callout >> when callouts were working and fall back to DELAY() in the cold case. > > No, this is wrong. Anything that uses cold is wrong. The correct fix is to > move the clock initialization earlier in boot to be before the device probe. I wouldn't object to doing that but that isn't trivial. I also have a pet peeve about (ab)using tsleep() to do delays but that is a more minor issue. > Jake -- 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 Apr 10 11:28: 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 1E72337B41C; Wed, 10 Apr 2002 11:27:40 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AIReA52524; Wed, 10 Apr 2002 11:27:40 -0700 (PDT) (envelope-from knu) Message-Id: <200204101827.g3AIReA52524@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 10 Apr 2002 11:27:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/ruby-freedb 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/04/10 11:27:40 PDT Modified files: audio/ruby-freedb Makefile distinfo Log: Update to 0.3. Revision Changes Path 1.3 +1 -1 ports/audio/ruby-freedb/Makefile 1.3 +1 -1 ports/audio/ruby-freedb/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 11:28:49 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 0371F37B422; Wed, 10 Apr 2002 11:28:22 -0700 (PDT) Received: (from mike@localhost) by espresso.q9media.com (8.11.6/8.11.6) id g3AILaS77291; Wed, 10 Apr 2002 14:21:36 -0400 (EDT) (envelope-from mike) Date: Wed, 10 Apr 2002 14:21:36 -0400 From: Mike Barcroft To: Hajimu UMEMOTO Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in.h src/sys/netinet6 in6.h Message-ID: <20020410142136.B70911@espresso.q9media.com> References: <200204101159.g3ABx2e55901@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: ; from ume@mahoroba.org on Thu, Apr 11, 2002 at 02:15:17AM +0900 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 Hajimu UMEMOTO writes: > Hi, > > >>>>> On Wed, 10 Apr 2002 04:59:02 -0700 (PDT) > >>>>> Mike Barcroft said: > > mike> mike 2002/04/10 04:59:02 PDT > > mike> Modified files: > mike> sys/netinet in.h > mike> sys/netinet6 in6.h > mike> Log: > mike> Unconditionalize the definition of INET_ADDRSTRLEN and > mike> INET6_ADDRSTRLEN. Doing this helps expose bogus redefinitions in 3rd > mike> party software. > > I cannot understand why this change is required. RFC2553 says: It isn't required, it's a matter of correctness. There was no need for them to be conditional in the first place; it was a mistake on my part to make them conditional. > addresses, the buffer must be at least 16-octets. In order to allow > applications to easily declare buffers of the proper size to store > IPv4 and IPv6 addresses in string form, the following two constants > are defined in : > > #define INET_ADDRSTRLEN 16 > #define INET6_ADDRSTRLEN 46 > > I believe this two define shouldn't appear in application side. Right, and if they did it would be considered bogus. 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 Wed Apr 10 11:31: 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 DE0C537B400; Wed, 10 Apr 2002 11:30:47 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g3AIUZ481618; Wed, 10 Apr 2002 21:30:35 +0300 (EEST) (envelope-from ru) Date: Wed, 10 Apr 2002 21:30:35 +0300 From: Ruslan Ermilov To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/awk Makefile Message-ID: <20020410183035.GL98684@sunbay.com> References: <200204100310.g3A3A3n32628@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XlS4q8O07AKt4+K1" Content-Disposition: inline In-Reply-To: <200204100310.g3A3A3n32628@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 --XlS4q8O07AKt4+K1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 09, 2002 at 08:10:03PM -0700, David E. O'Brien wrote: > obrien 2002/04/09 20:10:03 PDT >=20 > Modified files: > usr.bin/awk Makefile=20 > Log: > Style. > =20 > Revision Changes Path > 1.8 +3 -3 src/usr.bin/awk/Makefile >=20 Putting ln(1) arguments in non-alphabetical order doesn't enhance style. The first PROG=3D line in driven makefiles gives the basic indent (usually one tab). Lvalues in assignment lines that exceed this basic indent should use a single space after an operator. See the CFLAGS+=3D and CLEANFILES=3D lines in the same file for proper examples. Please back this change out. Thanks, --=20 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 --XlS4q8O07AKt4+K1 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 iD4DBQE8tITLUkv4P6juNwoRApJjAJiXgywmD0ydwqNqGRVg3I3DHoTmAJ9S2wtk byi08aF08+XxMQPC4IzRuA== =dXTq -----END PGP SIGNATURE----- --XlS4q8O07AKt4+K1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 11: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 1A68F37B405; Wed, 10 Apr 2002 11:34:47 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AIYli55332; Wed, 10 Apr 2002 11:34:47 -0700 (PDT) (envelope-from knu) Message-Id: <200204101834.g3AIYli55332@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 10 Apr 2002 11:34:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/ruby-rexml 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/04/10 11:34:46 PDT Modified files: textproc/ruby-rexml Makefile distinfo pkg-plist Log: Update to 2.1.0. Hmm, seems the author cannot make up his mind if he should include rdoc documents or not. ;) They aren't included in this version, so please create them using textproc/ruby-rdoc as necessary. Revision Changes Path 1.13 +2 -2 ports/textproc/ruby-rexml/Makefile 1.12 +1 -1 ports/textproc/ruby-rexml/distinfo 1.10 +0 -377 ports/textproc/ruby-rexml/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 Apr 10 11:37: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 D280E37B404; Wed, 10 Apr 2002 11:37:18 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AIbIn55812; Wed, 10 Apr 2002 11:37:18 -0700 (PDT) (envelope-from knu) Message-Id: <200204101837.g3AIbIn55812@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 10 Apr 2002 11:37:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/biology/ruby-bio 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/04/10 11:37:18 PDT Modified files: biology/ruby-bio Makefile distinfo Log: Update to 0.3.6. Revision Changes Path 1.5 +2 -3 ports/biology/ruby-bio/Makefile 1.5 +1 -1 ports/biology/ruby-bio/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 11:46: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from cheer.mahoroba.org (flets20-089.kamome.or.jp [218.45.20.89]) by hub.freebsd.org (Postfix) with ESMTP id C123937B404; Wed, 10 Apr 2002 11:46:04 -0700 (PDT) Received: from mille.mahoroba.org (IDENT:YyWJi/EqBhyvrBkjUNFi8A13bSdcw2ptBlLZIiw88jgZuNxEBsPsUiBNHzowUtvh@mille.mahoroba.org [IPv6:2001:200:301:0:202:2dff:fe0a:6bee]) (user=ume mech=CRAM-MD5 bits=0) by cheer.mahoroba.org (8.12.3/8.12.3) with ESMTP/inet6 id g3AIk1hw084105 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Thu, 11 Apr 2002 03:46:02 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Thu, 11 Apr 2002 03:46:01 +0900 Message-ID: From: Hajimu UMEMOTO To: Mike Barcroft Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in.h src/sys/netinet6 in6.h In-Reply-To: <20020410142136.B70911@espresso.q9media.com> References: <200204101159.g3ABx2e55901@freefall.freebsd.org> User-Agent: xcite1.38> Wanderlust/2.8.1 (Something) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-4?Q?Unebigory=F2mae?=) APEL/10.3 Emacs/21.2 (i386--freebsd) MULE/5.0 (=?ISO-2022-JP?B?GyRCOC1MWhsoQg==?=) X-Operating-System: FreeBSD 4.5-STABLE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by AMaViS-perl11-milter (http://amavis.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 Hi, >>>>> On Wed, 10 Apr 2002 14:21:36 -0400 >>>>> Mike Barcroft said: mike> It isn't required, it's a matter of correctness. There was no need mike> for them to be conditional in the first place; it was a mistake on my mike> part to make them conditional. Okay, I see. But, now, both include/arpa/inet.h and sys/netinet/in.h / sys/netinet/in.h have same defines explicitly. It seems nasty for applications which includes both arpa/inet.h and netinet/in.h. -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@bisd.hitachi.co.jp ume@{,jp.}FreeBSD.org http://www.imasy.org/~ume/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 11:51: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 84DF537B405; Wed, 10 Apr 2002 11:51:25 -0700 (PDT) Received: (from nork@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AIpPj58572; Wed, 10 Apr 2002 11:51:25 -0700 (PDT) (envelope-from nork) Message-Id: <200204101851.g3AIpPj58572@freefall.freebsd.org> From: Norikatsu Shigemura Date: Wed, 10 Apr 2002 11:51:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/wdm/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 nork 2002/04/10 11:51:25 PDT Modified files: x11/wdm/files patch-ag Log: Unbreak the port by getting rid of -ldl which we don't have. I submitted this fix to the author several days ago but got no answer yet. Approved by: knu (mentor) Revision Changes Path 1.5 +18 -5 ports/x11/wdm/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 Wed Apr 10 11:54:19 2002 Delivered-To: cvs-all@freebsd.org Received: from winston.freebsd.org (adsl-64-173-15-98.dsl.sntc01.pacbell.net [64.173.15.98]) by hub.freebsd.org (Postfix) with ESMTP id ADD2437B430; Wed, 10 Apr 2002 11:54:06 -0700 (PDT) Received: from winston.freebsd.org (jkh@localhost [127.0.0.1]) by winston.freebsd.org (8.11.6/8.11.6) with ESMTP id g3AInc351328; Wed, 10 Apr 2002 11:49:38 -0700 (PDT) (envelope-from jkh@winston.freebsd.org) To: David Malone Cc: Christopher Masto , Murray Stokely , "Greg 'groggy' Lehey" , msmith@FreeBSD.ORG, "David E. O'Brien" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: Configuring XFree 4 (was: cvs commit: src/usr.sbin/sysinstall Makefile dispatch.c dist.c install.c menus.c sysinstall.8) In-Reply-To: Message from David Malone of "Wed, 10 Apr 2002 13:18:16 BST." <200204101318.aa20574@salmon.maths.tcd.ie> Date: Wed, 10 Apr 2002 11:49:38 -0700 Message-ID: <51324.1018464578@winston.freebsd.org> From: Jordan Hubbard Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Excilent. Any complications when shutting down? I've tracked the > complications I'm seeing, and it is something to do with ACPI calls > causing the machine to hang up - I think my BIOS is just nuts actually... No, no complications - it shuts down as always. > If Mike could review them, that would be perfect as he is probably > the best man to comment on the ACPI interaction. I'll see if I can > find anyone else to cast an eye over them. Well, he's pretty busy too so you might end up just having to go ahead with them too and let the general population test it. :) > Should I aim to get these into 4.6? That's up to Murray and co, but it certainly would make *my* machine happy. :-) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 11: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 2EBFA37B405; Wed, 10 Apr 2002 11:58:08 -0700 (PDT) Received: (from demon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AIw8s60004; Wed, 10 Apr 2002 11:58:08 -0700 (PDT) (envelope-from demon) Message-Id: <200204101858.g3AIw8s60004@freefall.freebsd.org> From: Dmitry Sivachenko Date: Wed, 10 Apr 2002 11:58:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/mrtg 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/04/10 11:58:08 PDT Modified files: net/mrtg Makefile distinfo Log: Upgrade to pre5 which seems to work with perl 5.0. Revision Changes Path 1.45 +2 -2 ports/net/mrtg/Makefile 1.28 +1 -1 ports/net/mrtg/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12: 6: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 5092037B417; Wed, 10 Apr 2002 12:06:10 -0700 (PDT) Received: by squall.waterspout.com (Postfix, from userid 1050) id C52DC9B15; Wed, 10 Apr 2002 14:06:09 -0500 (EST) Date: Wed, 10 Apr 2002 14:06:09 -0500 From: Will Andrews To: Norikatsu Shigemura Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11/wdm/files patch-ag Message-ID: <20020410190609.GE65074@squall.waterspout.com> Mail-Followup-To: Norikatsu Shigemura , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200204101851.g3AIpPj58572@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204101851.g3AIpPj58572@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 Wed, Apr 10, 2002 at 11:51:25AM -0700, Norikatsu Shigemura wrote: > Modified files: > x11/wdm/files patch-ag > Log: > Unbreak the port by getting rid of -ldl which we don't have. > I submitted this fix to the author several days ago but got no > answer yet. As far as I know, the author is no longer developing WDM. The evidence: http://www.tcscs.com/wdm/ -- the last WDM release was almost two years ago. Hence, my justification for committing files/patch-Login.c. Regards, -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12: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 04F4237B41B; Wed, 10 Apr 2002 12:16:42 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJGfd68257; Wed, 10 Apr 2002 12:16:42 -0700 (PDT) (envelope-from knu) Message-Id: <200204101916.g3AJGfd68257@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 10 Apr 2002 12:16:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: projects/cvsweb ChangeLog cvsweb.cgi cvsweb.conf X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/10 12:16:41 PDT Modified files: cvsweb ChangeLog cvsweb.cgi cvsweb.conf Log: Perform an HTML cleanup. Submitted by: Ville Skytt,Ad(B Revision Changes Path 1.25 +5 -0 projects/cvsweb/ChangeLog 1.89 +209 -201 projects/cvsweb/cvsweb.cgi 1.30 +4 -4 projects/cvsweb/cvsweb.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12:22: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 8537937B404; Wed, 10 Apr 2002 12:22:45 -0700 (PDT) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJMj069158; Wed, 10 Apr 2002 12:22:45 -0700 (PDT) (envelope-from dfr) Message-Id: <200204101922.g3AJMj069158@freefall.freebsd.org> From: Doug Rabson Date: Wed, 10 Apr 2002 12:22:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/include ia64_cpu.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 dfr 2002/04/10 12:22:45 PDT Modified files: sys/ia64/include ia64_cpu.h Log: Add definitions for IA-32 exceptions, interrupts and intercepts. Revision Changes Path 1.16 +21 -0 src/sys/ia64/include/ia64_cpu.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12:23: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 CEEFC37B416; Wed, 10 Apr 2002 12:23:21 -0700 (PDT) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJNLc69322; Wed, 10 Apr 2002 12:23:21 -0700 (PDT) (envelope-from dfr) Message-Id: <200204101923.g3AJNLc69322@freefall.freebsd.org> From: Doug Rabson Date: Wed, 10 Apr 2002 12:23:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/include pcb.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 dfr 2002/04/10 12:23:21 PDT Modified files: sys/ia64/include pcb.h Log: Add fields for saving/restoring the IA-32 state. Revision Changes Path 1.7 +8 -0 src/sys/ia64/include/pcb.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12:24: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 AA98137B41A; Wed, 10 Apr 2002 12:23:54 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJNs469435; Wed, 10 Apr 2002 12:23:54 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204101923.g3AJNs469435@freefall.freebsd.org> From: Tom Rhodes Date: Wed, 10 Apr 2002 12:23:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/java-tomcat 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 trhodes 2002/04/10 12:23:54 PDT Added files: en_US.ISO8859-1/articles/java-tomcat Makefile article.sgml Log: New article on Java / Jakarta / Tomcat PR: 36722 Submitted by: Hiten Pandya Approved by: jim Revision Changes Path 1.1 +22 -0 doc/en_US.ISO8859-1/articles/java-tomcat/Makefile (new) 1.1 +597 -0 doc/en_US.ISO8859-1/articles/java-tomcat/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 Apr 10 12:24: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 06F0337B426; Wed, 10 Apr 2002 12:24:08 -0700 (PDT) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJO8u69492; Wed, 10 Apr 2002 12:24:08 -0700 (PDT) (envelope-from dfr) Message-Id: <200204101924.g3AJO8u69492@freefall.freebsd.org> From: Doug Rabson Date: Wed, 10 Apr 2002 12:24:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/include signal.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 dfr 2002/04/10 12:24:08 PDT Modified files: sys/ia64/include signal.h Log: Add ucode values for SIGFPE etc. Copied from i386/include/signal.h. Revision Changes Path 1.6 +13 -1 src/sys/ia64/include/signal.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12: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 7682737B41B; Wed, 10 Apr 2002 12:24:59 -0700 (PDT) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJOxH69736; Wed, 10 Apr 2002 12:24:59 -0700 (PDT) (envelope-from dfr) Message-Id: <200204101924.g3AJOxH69736@freefall.freebsd.org> From: Doug Rabson Date: Wed, 10 Apr 2002 12:24:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 trap.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 dfr 2002/04/10 12:24:59 PDT Modified files: sys/ia64/ia64 trap.c Log: Add exception and syscall support for executing IA-32 binaries. Revision Changes Path 1.49 +269 -0 src/sys/ia64/ia64/trap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12:25: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 0948037B419; Wed, 10 Apr 2002 12:25:12 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJPCM69816; Wed, 10 Apr 2002 12:25:12 -0700 (PDT) (envelope-from knu) Message-Id: <200204101925.g3AJPCM69816@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 10 Apr 2002 12:25:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: projects/cvsweb ChangeLog 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/04/10 12:25:11 PDT Modified files: cvsweb ChangeLog cvsweb.cgi Log: Call this version FreeBSD-cvsweb 2.0.1. Revision Changes Path 1.26 +2 -0 projects/cvsweb/ChangeLog 1.90 +1 -1 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 Apr 10 12:26:31 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 D2CE937B47C; Wed, 10 Apr 2002 12:26:02 -0700 (PDT) Received: by flood.ping.uio.no (Postfix, from userid 2602) id F1706530B; Wed, 10 Apr 2002 21:26:00 +0200 (CEST) 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: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/libpam Makefile References: <200204101746.g3AHkxh41802@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 10 Apr 2002 21:26:00 +0200 In-Reply-To: <200204101746.g3AHkxh41802@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 Ruslan Ermilov writes: > Log: > Don't override standard _EXTRADEPEND actions, add to them. > Fix CLEANFILES. > Collapse openpam_static_modules.o generation. Reviewed by: bde Approved by: des (in case anyone is wondering) 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 Apr 10 12: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 CACE337B416; Wed, 10 Apr 2002 12:26:49 -0700 (PDT) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJQne70085; Wed, 10 Apr 2002 12:26:49 -0700 (PDT) (envelope-from dfr) Message-Id: <200204101926.g3AJQne70085@freefall.freebsd.org> From: Doug Rabson Date: Wed, 10 Apr 2002 12:26:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 support.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 dfr 2002/04/10 12:26:49 PDT Modified files: sys/ia64/ia64 support.s Log: Add suhword() and fuhword() for accessing 32-bit values ("half words") in userland. All these functions should be renamed to be explicit about the size of value being read or written. Revision Changes Path 1.12 +55 -0 src/sys/ia64/ia64/support.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12:27:38 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail15.speakeasy.net [216.254.0.215]) by hub.freebsd.org (Postfix) with ESMTP id AF6E837B41A for ; Wed, 10 Apr 2002 12:27:30 -0700 (PDT) Received: (qmail 24095 invoked from network); 10 Apr 2002 19:27:29 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail15.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 10 Apr 2002 19:27:29 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g3AJSEv53807; Wed, 10 Apr 2002 15:28:14 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <200204101924.g3AJOxH69736@freefall.freebsd.org> Date: Wed, 10 Apr 2002 15:27:18 -0400 (EDT) From: John Baldwin To: Doug Rabson Subject: RE: cvs commit: src/sys/ia64/ia64 trap.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 10-Apr-2002 Doug Rabson wrote: > dfr 2002/04/10 12:24:59 PDT > > Modified files: > sys/ia64/ia64 trap.c > Log: > Add exception and syscall support for executing IA-32 binaries. You are evil. :) -- 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 Apr 10 12:28: 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 C02AB37B41C; Wed, 10 Apr 2002 12:27:50 -0700 (PDT) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJRos70210; Wed, 10 Apr 2002 12:27:50 -0700 (PDT) (envelope-from dfr) Message-Id: <200204101927.g3AJRos70210@freefall.freebsd.org> From: Doug Rabson Date: Wed, 10 Apr 2002 12:27:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 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 dfr 2002/04/10 12:27:50 PDT Modified files: sys/ia64/ia64 swtch.s Log: Save and restore the IA-32 state in cpu_switch(). Probably should only do this if the thread has been executing IA-32 code. Revision Changes Path 1.19 +46 -2 src/sys/ia64/ia64/swtch.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12:29:52 2002 Delivered-To: cvs-all@freebsd.org Received: from anchor-post-34.mail.demon.net (anchor-post-34.mail.demon.net [194.217.242.92]) by hub.freebsd.org (Postfix) with ESMTP id 21B6137B417; Wed, 10 Apr 2002 12:29:47 -0700 (PDT) Received: from mailgate.nlsystems.com ([62.49.251.130] helo=herring.nlsystems.com) by anchor-post-34.mail.demon.net with esmtp (Exim 3.35 #1) id 16vNms-000Jjp-0Y; Wed, 10 Apr 2002 20:29:46 +0100 Received: from salmon.nlsystems.com (salmon [10.0.0.3]) by herring.nlsystems.com (8.12.2/8.11.2) with ESMTP id g3AJTj3I015026; Wed, 10 Apr 2002 20:29:45 +0100 (BST) (envelope-from dfr@nlsystems.com) Date: Wed, 10 Apr 2002 20:29:45 +0100 (BST) From: Doug Rabson To: John Baldwin Cc: Doug Rabson , , Subject: RE: cvs commit: src/sys/ia64/ia64 trap.c In-Reply-To: Message-ID: <20020410202906.J16912-100000@salmon.nlsystems.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, 10 Apr 2002, John Baldwin wrote: > > On 10-Apr-2002 Doug Rabson wrote: > > dfr 2002/04/10 12:24:59 PDT > > > > Modified files: > > sys/ia64/ia64 trap.c > > Log: > > Add exception and syscall support for executing IA-32 binaries. > > You are evil. :) Oh yes. I just ran my first i386 binary on my ia64 box... -- Doug Rabson Mail: dfr@nlsystems.com Phone: +44 20 8348 6160 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12:31: 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 D015D37B400; Wed, 10 Apr 2002 12:30:58 -0700 (PDT) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJUw971794; Wed, 10 Apr 2002 12:30:58 -0700 (PDT) (envelope-from silby) Message-Id: <200204101930.g3AJUw971794@freefall.freebsd.org> From: Mike Silbersack Date: Wed, 10 Apr 2002 12:30:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet in.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 silby 2002/04/10 12:30:58 PDT Modified files: sys/netinet in.h Log: Totally nuke IPPORT_USERRESERVED, it is no longer used anywhere, update remaining comments to reflect new ephemeral port range. Reminded by: Maxim Konovalov MFC after: 3 days Revision Changes Path 1.66 +2 -4 src/sys/netinet/in.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12:32: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 9056937B422; Wed, 10 Apr 2002 12:31:19 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJVJm72022; Wed, 10 Apr 2002 12:31:19 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204101931.g3AJVJm72022@freefall.freebsd.org> From: Tom Rhodes Date: Wed, 10 Apr 2002 12:31:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/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 trhodes 2002/04/10 12:31:19 PDT Modified files: en_US.ISO8859-1/articles Makefile Log: Add the Java / Jakarta / Tomcat article to the doc build. Approved by: jim Revision Changes Path 1.30 +1 -0 doc/en_US.ISO8859-1/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 Apr 10 12:33: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 5BBF537B405; Wed, 10 Apr 2002 12:33:14 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJXEj72798; Wed, 10 Apr 2002 12:33:14 -0700 (PDT) (envelope-from knu) Message-Id: <200204101933.g3AJXEj72798@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 10 Apr 2002 12:33:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: projects/cvsweb ChangeLog X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/10 12:33:14 PDT Modified files: cvsweb ChangeLog Log: Oops, save this file with iso-8859-1. Revision Changes Path 1.27 +1 -1 projects/cvsweb/ChangeLog To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12:35: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 12A0937B41C; Wed, 10 Apr 2002 12:34:52 -0700 (PDT) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJYqu73129; Wed, 10 Apr 2002 12:34:52 -0700 (PDT) (envelope-from dfr) Message-Id: <200204101934.g3AJYqu73129@freefall.freebsd.org> From: Doug Rabson Date: Wed, 10 Apr 2002 12:34:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia32 Makefile ia32_proto.h ia32_syscall.h ia32_sysent.c imgact_ia32.c imgact_ia32.h syscalls.conf syscalls.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dfr 2002/04/10 12:34:52 PDT Added files: sys/ia64/ia32 Makefile ia32_proto.h ia32_syscall.h ia32_sysent.c imgact_ia32.c imgact_ia32.h syscalls.conf syscalls.master Log: Initial support for executing IA-32 binaries. This will not compile without a few patches for the rest of the kernel to allow the image activator to override exec_copyout_strings and setregs. None of the syscall argument translation has been done. Possibly, this translation layer can be shared with any platform that wants to support running ILP32 binaries on an LP64 host (e.g. sparc32 binaries?) Revision Changes Path 1.1 +15 -0 src/sys/ia64/ia32/Makefile (new) 1.1 +1529 -0 src/sys/ia64/ia32/ia32_proto.h (new) 1.1 +306 -0 src/sys/ia64/ia32/ia32_syscall.h (new) 1.1 +415 -0 src/sys/ia64/ia32/ia32_sysent.c (new) 1.1 +1445 -0 src/sys/ia64/ia32/imgact_ia32.c (new) 1.1 +112 -0 src/sys/ia64/ia32/imgact_ia32.h (new) 1.1 +12 -0 src/sys/ia64/ia32/syscalls.conf (new) 1.1 +562 -0 src/sys/ia64/ia32/syscalls.master (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12:35: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 DC3EE37B447; Wed, 10 Apr 2002 12:35:50 -0700 (PDT) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJZom73316; Wed, 10 Apr 2002 12:35:50 -0700 (PDT) (envelope-from dfr) Message-Id: <200204101935.g3AJZom73316@freefall.freebsd.org> From: Doug Rabson Date: Wed, 10 Apr 2002 12:35:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files.ia64 options.ia64 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dfr 2002/04/10 12:35:50 PDT Modified files: sys/conf files.ia64 options.ia64 Log: Add IA32 option for emulation of i386 binaries on the ia64 platform. Revision Changes Path 1.30 +2 -0 src/sys/conf/files.ia64 1.9 +3 -1 src/sys/conf/options.ia64 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12:36:43 2002 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by hub.freebsd.org (Postfix) with ESMTP id 40DD237B433; Wed, 10 Apr 2002 12:36:28 -0700 (PDT) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g3AJaHeZ063333; Wed, 10 Apr 2002 21:36:23 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Doug Rabson Cc: John Baldwin , Doug Rabson , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/ia64/ia64 trap.c In-Reply-To: Your message of "Wed, 10 Apr 2002 20:29:45 BST." <20020410202906.J16912-100000@salmon.nlsystems.com> Date: Wed, 10 Apr 2002 21:36:17 +0200 Message-ID: <63332.1018467377@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-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 <20020410202906.J16912-100000@salmon.nlsystems.com>, Doug Rabson wri tes: >On Wed, 10 Apr 2002, John Baldwin wrote: > >> >> On 10-Apr-2002 Doug Rabson wrote: >> > dfr 2002/04/10 12:24:59 PDT >> > >> > Modified files: >> > sys/ia64/ia64 trap.c >> > Log: >> > Add exception and syscall support for executing IA-32 binaries. >> >> You are evil. :) > >Oh yes. I just ran my first i386 binary on my ia64 box... Let me guess: cvsup ? :-) -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12:40: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from anchor-post-36.mail.demon.net (anchor-post-36.mail.demon.net [194.217.242.94]) by hub.freebsd.org (Postfix) with ESMTP id 9524137B400; Wed, 10 Apr 2002 12:39:57 -0700 (PDT) Received: from mailgate.nlsystems.com ([62.49.251.130] helo=herring.nlsystems.com) by anchor-post-36.mail.demon.net with esmtp (Exim 3.35 #1) id 16vNwi-000B75-0a; Wed, 10 Apr 2002 20:39:56 +0100 Received: from salmon.nlsystems.com (salmon [10.0.0.3]) by herring.nlsystems.com (8.12.2/8.11.2) with ESMTP id g3AJdu3I015133; Wed, 10 Apr 2002 20:39:56 +0100 (BST) (envelope-from dfr@nlsystems.com) Date: Wed, 10 Apr 2002 20:39:56 +0100 (BST) From: Doug Rabson To: Poul-Henning Kamp Cc: John Baldwin , Doug Rabson , , Subject: Re: cvs commit: src/sys/ia64/ia64 trap.c In-Reply-To: <63332.1018467377@critter.freebsd.dk> Message-ID: <20020410203838.C16912-100000@salmon.nlsystems.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, 10 Apr 2002, Poul-Henning Kamp wrote: > In message <20020410202906.J16912-100000@salmon.nlsystems.com>, Doug Rabson wri > tes: > >On Wed, 10 Apr 2002, John Baldwin wrote: > > > >> > >> On 10-Apr-2002 Doug Rabson wrote: > >> > dfr 2002/04/10 12:24:59 PDT > >> > > >> > Modified files: > >> > sys/ia64/ia64 trap.c > >> > Log: > >> > Add exception and syscall support for executing IA-32 binaries. > >> > >> You are evil. :) > > > >Oh yes. I just ran my first i386 binary on my ia64 box... > > Let me guess: cvsup ? :-) Hahahaha. I wish! It was this: int main(int argc, char** argv) { write(1, "Hello World!\n", 14); _exit(0); } Note that this is carefully crafted to not require any argument translation for the two syscalls it makes... -- Doug Rabson Mail: dfr@nlsystems.com Phone: +44 20 8348 6160 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12:42: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from mao.stokely.org (mao.stokely.org [65.84.64.228]) by hub.freebsd.org (Postfix) with ESMTP id 375CD37B404; Wed, 10 Apr 2002 12:41:49 -0700 (PDT) Received: by mao.stokely.org (Postfix, from userid 2074) id EC3854B66A; Wed, 10 Apr 2002 12:41:43 -0700 (PDT) Date: Wed, 10 Apr 2002 12:41:43 -0700 From: Murray Stokely To: David Malone Cc: Jordan Hubbard , Christopher Masto , Murray Stokely , Greg 'groggy' Lehey , msmith@FreeBSD.ORG, "David E. O'Brien" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: Configuring XFree 4 (was: cvs commit: src/usr.sbin/sysinstall Makefile dispatch.c dist.c install.c menus.c sysinstall.8) Message-ID: <20020410194143.GE23372@freebsdmall.com> References: <49076.1018398824@winston.freebsd.org> <200204101318.aa20574@salmon.maths.tcd.ie> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204101318.aa20574@salmon.maths.tcd.ie> User-Agent: Mutt/1.3.25i X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D Sender: owner-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, Apr 10, 2002 at 01:18:16PM +0100, David Malone wrote: > If Mike could review them, that would be perfect as he is probably > the best man to comment on the ACPI interaction. I'll see if I can > find anyone else to cast an eye over them. > > Should I aim to get these into 4.6? Yes! I would very much like to see this in 4.6. - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12: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 E81BB37B405; Wed, 10 Apr 2002 12:42:42 -0700 (PDT) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJggd74491; Wed, 10 Apr 2002 12:42:42 -0700 (PDT) (envelope-from anders) Message-Id: <200204101942.g3AJggd74491@freefall.freebsd.org> From: Anders Nordby Date: Wed, 10 Apr 2002 12:42:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms/minicom 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 anders 2002/04/10 12:42:42 PDT Modified files: comms/minicom Makefile Log: Unbreak build for users that has autoconf >= 2.52 installed. PR: 34593 Revision Changes Path 1.39 +3 -1 ports/comms/minicom/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12:45: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 68A7937B405; Wed, 10 Apr 2002 12:45:33 -0700 (PDT) Received: (from jeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJjX775166; Wed, 10 Apr 2002 12:45:33 -0700 (PDT) (envelope-from jeh) Message-Id: <200204101945.g3AJjX775166@freefall.freebsd.org> From: "James E. Housley" Date: Wed, 10 Apr 2002 12:45:33 -0700 (PDT) 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/04/10 12:45:33 PDT Modified files: security/uvscan-dat Makefile distinfo Log: Upgrade to 4196 Revision Changes Path 1.90 +1 -1 ports/security/uvscan-dat/Makefile 1.88 +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 Apr 10 12:49: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 86D5B37B400; Wed, 10 Apr 2002 12:49:16 -0700 (PDT) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJnGo75806; Wed, 10 Apr 2002 12:49:16 -0700 (PDT) (envelope-from anders) Message-Id: <200204101949.g3AJnGo75806@freefall.freebsd.org> From: Anders Nordby Date: Wed, 10 Apr 2002 12:49:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms/minicom 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/04/10 12:49:16 PDT Modified files: comms/minicom pkg-plist Log: Add missing locale files/dirs to pkg-plist (blush..). Revision Changes Path 1.10 +12 -0 ports/comms/minicom/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 Apr 10 12:52: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 B51BF37B404; Wed, 10 Apr 2002 12:52:21 -0700 (PDT) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJqLd76313; Wed, 10 Apr 2002 12:52:21 -0700 (PDT) (envelope-from silby) Message-Id: <200204101952.g3AJqLd76313@freefall.freebsd.org> From: Mike Silbersack Date: Wed, 10 Apr 2002 12:52:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 tcp.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 silby 2002/04/10 12:52:21 PDT Modified files: share/man/man4 tcp.4 Log: Update documentation relating to sysctls in a post-syncache world. Goodbye tcp.tcp_lq_overflow and tcp.strict_rfc1948, hello tcp.syncookies. MFC after: 3 days Revision Changes Path 1.24 +4 -13 src/share/man/man4/tcp.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 12:56:13 2002 Delivered-To: cvs-all@freebsd.org Received: from patrocles.silby.com (d82.as2.nwbl0.wi.voyager.net [169.207.92.82]) by hub.freebsd.org (Postfix) with ESMTP id 3613A37B478; Wed, 10 Apr 2002 12:55:19 -0700 (PDT) Received: from patrocles.silby.com (localhost [127.0.0.1]) by patrocles.silby.com (8.12.2/8.12.2) with ESMTP id g3B1spmi004960; Wed, 10 Apr 2002 20:54:51 -0500 (CDT) (envelope-from silby@silby.com) Received: from localhost (silby@localhost) by patrocles.silby.com (8.12.2/8.12.2/Submit) with ESMTP id g3B1sp1C004957; Wed, 10 Apr 2002 20:54:51 -0500 (CDT) X-Authentication-Warning: patrocles.silby.com: silby owned process doing -bs Date: Wed, 10 Apr 2002 20:54:50 -0500 (CDT) From: Mike Silbersack To: Doug Rabson Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/sys/ia64/ia32 Makefile ia32_proto.h ia32_syscall.h ia32_sysent.c imgact_ia32.c imgact_ia32.h syscalls.conf syscalls.master In-Reply-To: <200204101934.g3AJYqu73129@freefall.freebsd.org> Message-ID: <20020410205323.T4956-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, 10 Apr 2002, Doug Rabson wrote: > None of the syscall argument translation has been done. Possibly, this > translation layer can be shared with any platform that wants to support > running ILP32 binaries on an LP64 host (e.g. sparc32 binaries?) I seem to recall the paper on porting NetBSD to x86-64 talking about how they were able to share the same translation layer between sparc and x86-64. If you write it well, I'd guess that it could be shared three ways. 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 Wed Apr 10 12:59: 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 9D15837B404; Wed, 10 Apr 2002 12:58:54 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AJws577101; Wed, 10 Apr 2002 12:58:54 -0700 (PDT) (envelope-from knu) Message-Id: <200204101958.g3AJws577101@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 10 Apr 2002 12:58:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/cvsweb 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/04/10 12:58:54 PDT Modified files: devel/cvsweb Makefile distinfo Log: Update to FreeBSD-cvsweb 2.0.1. 2002-04-11 Akinori MUSHA * cvsweb.cgi, cvsweb.conf: Perform an HTML cleanup. [Submitted by: Ville Skytt,Ad(B ] * cvsweb.cgi: Call this version FreeBSD-cvsweb 2.0.1. 2002-04-05 Akinori MUSHA * INSTALL: Somehow description configuration doesn't work if you put trailing /'s in module names, so fix the document for the moment. [Submitted by: Mario Sergio Fujikawa Ferreira ] 2002-02-06 Akinori MUSHA * cvsweb.cgi: Use TMPDIR instead of the hardcoded /tmp. * cvsweb.cgi: Never pass 'MAIN' to cvs(1). 'HEAD' is the valid tag. Revision Changes Path 1.61 +1 -1 ports/devel/cvsweb/Makefile 1.45 +1 -1 ports/devel/cvsweb/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 13: 2: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 E9C7A37B417; Wed, 10 Apr 2002 13:02:31 -0700 (PDT) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 10 Apr 2002 21:02:30 +0100 (BST) To: Jordan Hubbard Cc: Christopher Masto , Murray Stokely , Greg 'groggy' Lehey , msmith@FreeBSD.ORG, "David E. O'Brien" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: Configuring XFree 4 (was: cvs commit: src/usr.sbin/sysinstall Makefile dispatch.c dist.c install.c menus.c sysinstall.8) In-reply-to: Your message of "Wed, 10 Apr 2002 11:49:38 PDT." <51324.1018464578@winston.freebsd.org> X-Request-Do: Date: Wed, 10 Apr 2002 21:02:30 +0100 From: David Malone Message-ID: <200204102102.aa16821@salmon.maths.tcd.ie> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > Excilent. Any complications when shutting down? I've tracked the > > complications I'm seeing, and it is something to do with ACPI calls > > causing the machine to hang up - I think my BIOS is just nuts actually... > No, no complications - it shuts down as always. -current or -stable? > Well, he's pretty busy too so you might end up just having to go ahead > with them too and let the general population test it. :) OK. I talked the problem through with Ian before writing the patches, so I'll see if he has time to review them. Failing that, I'll commit them and wait for the screams ;-) > > Should I aim to get these into 4.6? > That's up to Murray and co, but it certainly would make *my* machine > happy. :-) If it means it's easier to ship XFree 4.2 then it would probably be a good thing. I've included the patches below, with explaination. If anyone has time to comment on them please do. David. The problem with the old MTRR code is that it only expects to find documented values in the bytes of MTRR registers. To convert the MTRR byte into a FreeBSD "Memory Range Type" (mrt) it uses the byte value and looks it up in an array. If the value is not in range then the mrt value ends up containing random junk. This isn't an immediate problem. The mrt value is only used later when rewriting the MTRR registers. When we finally go to write a value back again, the function i686_mtrrtype() searches for the junk value and returns -1 when it fails to find it. This is converted to a byte (0xff) and written back to the register, causing a GPF as 0xff is an illegal value for a MTRR byte. To work around this problem I've added a new mrt flag MDF_UNKNOWN. We set this when we read a MTRR byte which we do not understand. If we try to convert a MDF_UNKNOWN back into a MTRR value, then the new function, i686_mrt2mtrr, just returns the old value of the MTRR byte. This leaves the memory range type unchanged. I've checked k6_mem.c and it doesn't seem to need any corrisponding changes as we understand all possible values of its equivelent of MTRRs. Alpha, ia64 and powerpc don't seem to support these sorts of memory range ioctls so I don't think they need any changes. Index: sys/i386/i386/i686_mem.c =================================================================== RCS file: /cvs/FreeBSD-CVS/src/sys/i386/i386/i686_mem.c,v retrieving revision 1.13 diff -u -r1.13 i686_mem.c --- sys/i386/i386/i686_mem.c 27 Apr 2001 19:28:19 -0000 1.13 +++ sys/i386/i386/i686_mem.c 10 Apr 2002 19:30:27 -0000 @@ -79,6 +79,8 @@ struct mem_range_desc *mrd); static void i686_mrfetch(struct mem_range_softc *sc); static int i686_mtrrtype(int flags); +static int i686_mrt2mtrr(int flags, int oldval); +static int i686_mtrrconflict(int flag1, int flag2); static void i686_mrstore(struct mem_range_softc *sc); static void i686_mrstoreone(void *arg); static struct mem_range_desc *i686_mtrrfixsearch(struct mem_range_softc *sc, @@ -94,29 +96,35 @@ static int i686_mtrrtomrt[] = { MDF_UNCACHEABLE, MDF_WRITECOMBINE, - 0, - 0, + MDF_UNKNOWN, + MDF_UNKNOWN, MDF_WRITETHROUGH, MDF_WRITEPROTECT, MDF_WRITEBACK }; +#define MTRRTOMRTLEN (sizeof(i686_mtrrtomrt) / sizeof(i686_mtrrtomrt[0])) + +static int +i686_mtrr2mrt(int val) { + if (val < 0 || val >= MTRRTOMRTLEN) + return MDF_UNKNOWN; + return i686_mtrrtomrt[val]; +} + /* - * i686 MTRR conflict matrix for overlapping ranges - * - * Specifically, this matrix allows writeback and uncached ranges - * to overlap (the overlapped region is uncached). The array index - * is the translated i686 code for the flags (because they map well). + * i686 MTRR conflicts. Writeback and uncachable may overlap. */ -static int i686_mtrrconflict[] = { - MDF_WRITECOMBINE | MDF_WRITETHROUGH | MDF_WRITEPROTECT, - MDF_ATTRMASK, - 0, - 0, - MDF_ATTRMASK, - MDF_ATTRMASK, - MDF_WRITECOMBINE | MDF_WRITETHROUGH | MDF_WRITEPROTECT -}; +static int +i686_mtrrconflict(int flag1, int flag2) { + flag1 &= MDF_ATTRMASK; + flag2 &= MDF_ATTRMASK; + if (flag1 == flag2 || + (flag1 == MDF_WRITEBACK && flag2 == MDF_UNCACHEABLE) || + (flag2 == MDF_WRITEBACK && flag1 == MDF_UNCACHEABLE)) + return 0; + return 1; +} /* * Look for an exactly-matching range. @@ -155,7 +163,7 @@ msrv = rdmsr(msr); for (j = 0; j < 8; j++, mrd++) { mrd->mr_flags = (mrd->mr_flags & ~MDF_ATTRMASK) | - i686_mtrrtomrt[msrv & 0xff] | + i686_mtrr2mrt(msrv & 0xff) | MDF_ACTIVE; if (mrd->mr_owner[0] == 0) strcpy(mrd->mr_owner, mem_owner_bios); @@ -167,7 +175,7 @@ msrv = rdmsr(msr); for (j = 0; j < 8; j++, mrd++) { mrd->mr_flags = (mrd->mr_flags & ~MDF_ATTRMASK) | - i686_mtrrtomrt[msrv & 0xff] | + i686_mtrr2mrt(msrv & 0xff) | MDF_ACTIVE; if (mrd->mr_owner[0] == 0) strcpy(mrd->mr_owner, mem_owner_bios); @@ -179,7 +187,7 @@ msrv = rdmsr(msr); for (j = 0; j < 8; j++, mrd++) { mrd->mr_flags = (mrd->mr_flags & ~MDF_ATTRMASK) | - i686_mtrrtomrt[msrv & 0xff] | + i686_mtrr2mrt(msrv & 0xff) | MDF_ACTIVE; if (mrd->mr_owner[0] == 0) strcpy(mrd->mr_owner, mem_owner_bios); @@ -193,7 +201,7 @@ for (; (mrd - sc->mr_desc) < sc->mr_ndesc; msr += 2, mrd++) { msrv = rdmsr(msr); mrd->mr_flags = (mrd->mr_flags & ~MDF_ATTRMASK) | - i686_mtrrtomrt[msrv & 0xff]; + i686_mtrr2mrt(msrv & 0xff); mrd->mr_base = msrv & 0x0000000ffffff000LL; msrv = rdmsr(msr + 1); mrd->mr_flags = (msrv & 0x800) ? @@ -219,8 +227,8 @@ flags &= MDF_ATTRMASK; - for (i = 0; i < (sizeof(i686_mtrrtomrt) / sizeof(i686_mtrrtomrt[0])); i++) { - if (i686_mtrrtomrt[i] == 0) + for (i = 0; i < MTRRTOMRTLEN; i++) { + if (i686_mtrrtomrt[i] == MDF_UNKNOWN) continue; if (flags == i686_mtrrtomrt[i]) return(i); @@ -228,6 +236,16 @@ return(-1); } +static int +i686_mrt2mtrr(int flags, int oldval) +{ + int val; + + if ((val = i686_mtrrtype(flags)) == -1) + return oldval & 0xff; + return val & 0xff; +} + /* * Update running CPU(s) MTRRs to match the ranges in the descriptor * list. @@ -262,7 +280,7 @@ { struct mem_range_softc *sc = (struct mem_range_softc *)arg; struct mem_range_desc *mrd; - u_int64_t msrv; + u_int64_t omsrv, msrv; int i, j, msr; u_int cr4save; @@ -280,9 +298,10 @@ msr = MSR_MTRR64kBase; for (i = 0; i < (MTRR_N64K / 8); i++, msr++) { msrv = 0; + omsrv = rdmsr(msr); for (j = 7; j >= 0; j--) { msrv = msrv << 8; - msrv |= (i686_mtrrtype((mrd + j)->mr_flags) & 0xff); + msrv |= i686_mrt2mtrr((mrd + j)->mr_flags, omsrv >> (j*8)); } wrmsr(msr, msrv); mrd += 8; @@ -290,9 +309,10 @@ msr = MSR_MTRR16kBase; for (i = 0; i < (MTRR_N16K / 8); i++, msr++) { msrv = 0; + omsrv = rdmsr(msr); for (j = 7; j >= 0; j--) { msrv = msrv << 8; - msrv |= (i686_mtrrtype((mrd + j)->mr_flags) & 0xff); + msrv |= i686_mrt2mtrr((mrd + j)->mr_flags, omsrv >> (j*8)); } wrmsr(msr, msrv); mrd += 8; @@ -300,9 +320,10 @@ msr = MSR_MTRR4kBase; for (i = 0; i < (MTRR_N4K / 8); i++, msr++) { msrv = 0; + omsrv = rdmsr(msr); for (j = 7; j >= 0; j--) { msrv = msrv << 8; - msrv |= (i686_mtrrtype((mrd + j)->mr_flags) & 0xff); + msrv |= i686_mrt2mtrr((mrd + j)->mr_flags, omsrv >> (j*8)); } wrmsr(msr, msrv); mrd += 8; @@ -313,9 +334,10 @@ msr = MSR_MTRRVarBase; for (; (mrd - sc->mr_desc) < sc->mr_ndesc; msr += 2, mrd++) { /* base/type register */ + omsrv = rdmsr(msr); if (mrd->mr_flags & MDF_ACTIVE) { msrv = mrd->mr_base & 0x0000000ffffff000LL; - msrv |= (i686_mtrrtype(mrd->mr_flags) & 0xff); + msrv |= i686_mrt2mtrr(mrd->mr_flags, omsrv); } else { msrv = 0; } @@ -416,8 +438,7 @@ /* non-exact overlap ? */ if (mroverlap(curr_md, mrd)) { /* between conflicting region types? */ - if ((i686_mtrrconflict[i686_mtrrtype(curr_md->mr_flags)] & mrd->mr_flags) || - (i686_mtrrconflict[i686_mtrrtype(mrd->mr_flags)] & curr_md->mr_flags)) + if (i686_mtrrconflict(curr_md->mr_flags, mrd->mr_flags)) return(EINVAL); } } else if (free_md == NULL) { @@ -450,7 +471,7 @@ case MEMRANGE_SET_UPDATE: /* make sure that what's being asked for is even possible at all */ if (!mrvalid(mrd->mr_base, mrd->mr_len) || - (i686_mtrrtype(mrd->mr_flags & MDF_ATTRMASK) == -1)) + i686_mtrrtype(mrd->mr_flags) == -1) return(EINVAL); #define FIXTOP ((MTRR_N64K * 0x10000) + (MTRR_N16K * 0x4000) + (MTRR_N4K * 0x1000)) Index: sys/sys/memrange.h =================================================================== RCS file: /cvs/FreeBSD-CVS/src/sys/sys/memrange.h,v retrieving revision 1.4 diff -u -r1.4 memrange.h --- sys/sys/memrange.h 29 Dec 1999 04:24:44 -0000 1.4 +++ sys/sys/memrange.h 7 Mar 2002 22:49:40 -0000 @@ -10,6 +10,7 @@ #define MDF_WRITETHROUGH (1<<2) /* write-through cached */ #define MDF_WRITEBACK (1<<3) /* write-back cached */ #define MDF_WRITEPROTECT (1<<4) /* read-only region */ +#define MDF_UNKNOWN (1<<5) /* any state we don't understand */ #define MDF_ATTRMASK (0x00ffffff) #define MDF_FIXBASE (1<<24) /* fixed base */ Index: usr.sbin/memcontrol/memcontrol.c =================================================================== RCS file: /cvs/FreeBSD-CVS/src/usr.sbin/memcontrol/memcontrol.c,v retrieving revision 1.6 diff -u -r1.6 memcontrol.c --- usr.sbin/memcontrol/memcontrol.c 24 Jun 2001 23:41:44 -0000 1.6 +++ usr.sbin/memcontrol/memcontrol.c 8 Mar 2002 15:08:47 -0000 @@ -50,6 +50,7 @@ {"write-through", MDF_WRITETHROUGH, MDF_SETTABLE}, {"write-back", MDF_WRITEBACK, MDF_SETTABLE}, {"write-protect", MDF_WRITEPROTECT, MDF_SETTABLE}, + {"unknown", MDF_UNKNOWN, 0}, {"fixed-base", MDF_FIXBASE, 0}, {"fixed-length", MDF_FIXLEN, 0}, {"set-by-firmware", MDF_FIRMWARE, 0}, To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 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 7785537B404; Wed, 10 Apr 2002 13:03:50 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AK3oU77752; Wed, 10 Apr 2002 13:03:50 -0700 (PDT) (envelope-from knu) Message-Id: <200204102003.g3AK3oU77752@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 10 Apr 2002 13:03:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/cgi - Imported sources X-FreeBSD-CVS-Branch: KNU Sender: owner-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/04/10 13:03:50 PDT www/en/cgi - Imported sources Update of /home/ncvs/www/en/cgi In directory freefall.freebsd.org:/c/tmp/cvs-serv77726 Log Message: Import FreeBSD-cvsweb 2.0.1. Status: Vendor Tag: KNU Release Tags: CVSWEB_v2_0_1 C www/en/cgi/cvsweb.cgi C www/en/cgi/cvsweb.conf C www/en/cgi/cvsweb.conf-freebsd C www/en/cgi/cvsweb.conf-netbsd C www/en/cgi/cvsweb.conf-openbsd 5 conflicts created by this import. Use the following command to help the merge: cvs checkout -jKNU:yesterday -jKNU www/en/cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 13: 8: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 CF2EE37B405; Wed, 10 Apr 2002 13:08:07 -0700 (PDT) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AK87b82278; Wed, 10 Apr 2002 13:08:07 -0700 (PDT) (envelope-from alc) Message-Id: <200204102008.g3AK87b82278@freefall.freebsd.org> From: Alan Cox Date: Wed, 10 Apr 2002 13:08:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/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 alc 2002/04/10 13:08:07 PDT Modified files: sys/i386/i386 machdep.c Log: o In osigreturn(), restore all of the registers in one place. o Recent changes to osigreturn() and sigreturn() have made them MPSAFE. Add a comment to this effect. Submitted by: bde (bullet #1) Reviewed by: jhb (bullet #2) Revision Changes Path 1.517 +9 -5 src/sys/i386/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 Wed Apr 10 13:13: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 5928D37B400; Wed, 10 Apr 2002 13:13:19 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AKDJB83154; Wed, 10 Apr 2002 13:13:19 -0700 (PDT) (envelope-from knu) Message-Id: <200204102013.g3AKDJB83154@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 10 Apr 2002 13:13:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/cgi cvsweb.conf cvsweb.conf-freebsd cvsweb.conf-netbsd cvsweb.conf-openbsd X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/10 13:13:19 PDT Modified files: en/cgi cvsweb.conf cvsweb.conf-freebsd cvsweb.conf-netbsd cvsweb.conf-openbsd Log: Resolve conflicts and remove unuseful CVS tags in comment. Revision Changes Path 1.26 +3 -4 www/en/cgi/cvsweb.conf 1.10 +1 -2 www/en/cgi/cvsweb.conf-freebsd 1.11 +1 -2 www/en/cgi/cvsweb.conf-netbsd 1.9 +1 -2 www/en/cgi/cvsweb.conf-openbsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 13:24: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 E5C7537B416; Wed, 10 Apr 2002 13:24:07 -0700 (PDT) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AKO7Q84695; Wed, 10 Apr 2002 13:24:07 -0700 (PDT) (envelope-from anders) Message-Id: <200204102024.g3AKO7Q84695@freefall.freebsd.org> From: Anders Nordby Date: Wed, 10 Apr 2002 13:24:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/nbsmtp Makefile ports/mail/nbsmtp/files patch-nbsmtp.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 anders 2002/04/10 13:24:07 PDT Modified files: mail/nbsmtp Makefile Added files: mail/nbsmtp/files patch-nbsmtp.c Log: Unbreak command line parsing, use getopt rather. Loose maintainership (I have no interest in nbsmtp currently). PR: 32899 Submitted by: Pierre-Paul Lavoie Kimura Fuyuki Revision Changes Path 1.4 +1 -1 ports/mail/nbsmtp/Makefile 1.1 +66 -0 ports/mail/nbsmtp/files/patch-nbsmtp.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 13:26: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 23F9637B400; Wed, 10 Apr 2002 13:26:28 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AKQSH85137; Wed, 10 Apr 2002 13:26:28 -0700 (PDT) (envelope-from knu) Message-Id: <200204102026.g3AKQSH85137@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 10 Apr 2002 13:26:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/cgi 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/04/10 13:26:28 PDT Modified files: en/cgi cvsweb.cgi Log: Update to FreeBSD-cvsweb 2.0.1. 2002-04-11 Akinori MUSHA * cvsweb.cgi, cvsweb.conf: Perform an HTML cleanup. [Submitted by: Ville Skytt,Ad(B ] * cvsweb.cgi: Call this version FreeBSD-cvsweb 2.0.1. 2002-02-06 Akinori MUSHA * cvsweb.cgi: Use TMPDIR instead of the hardcoded /tmp. * cvsweb.cgi: Never pass 'MAIN' to cvs(1). 'HEAD' is the valid tag. Revision Changes Path 1.79 +222 -211 www/en/cgi/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 Apr 10 13:34:27 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.musha.org (daemon.musha.org [218.44.187.2]) by hub.freebsd.org (Postfix) with ESMTP id 6503A37B404; Wed, 10 Apr 2002 13:34:05 -0700 (PDT) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id F31584D874; Thu, 11 Apr 2002 05:34:02 +0900 (JST) Date: Thu, 11 Apr 2002 05:34:02 +0900 Message-ID: <86it6znvid.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Will Andrews Cc: Norikatsu Shigemura , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11/wdm/files patch-ag In-Reply-To: <20020410190609.GE65074@squall.waterspout.com> References: <200204101851.g3AIpPj58572@freefall.freebsd.org> <20020410190609.GE65074@squall.waterspout.com> User-Agent: Wanderlust/2.9.8 (Unchained Melody) SEMI/1.14.3 (Ushinoya) LIMIT/1.14.7 (Fujiidera) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE 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 At Wed, 10 Apr 2002 14:06:09 -0500, will wrote: > On Wed, Apr 10, 2002 at 11:51:25AM -0700, Norikatsu Shigemura wrote: > > Modified files: > > x11/wdm/files patch-ag > > Log: > > Unbreak the port by getting rid of -ldl which we don't have. > > I submitted this fix to the author several days ago but got no > > answer yet. > > As far as I know, the author is no longer developing WDM. The > evidence: http://www.tcscs.com/wdm/ -- the last WDM release was > almost two years ago. Hence, my justification for committing > files/patch-Login.c. Isn't it time for a fork - Will's Display Manager? :) -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Somewhere out of a memory.. of lighted streets on quiet nights.." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 13:42: 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 A69C337B417; Wed, 10 Apr 2002 13:41:58 -0700 (PDT) Received: (from naddy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AKfwE87331; Wed, 10 Apr 2002 13:41:58 -0700 (PDT) (envelope-from naddy) Message-Id: <200204102041.g3AKfwE87331@freefall.freebsd.org> From: Christian Weisgerber Date: Wed, 10 Apr 2002 13:41:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/libao/files patch-src::plugins::oss::ao_oss.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 naddy 2002/04/10 13:41:58 PDT Added files: audio/libao/files patch-src::plugins::oss::ao_oss.c Log: machine/soundcard.h -> sys/soundcard.h PR: 36966 Submitted by: Motoyuki Konno Revision Changes Path 1.1 +14 -0 ports/audio/libao/files/patch-src::plugins::oss::ao_oss.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 13:52: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 E835937B419; Wed, 10 Apr 2002 13:52:49 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AKqn089252; Wed, 10 Apr 2002 13:52:49 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204102052.g3AKqn089252@freefall.freebsd.org> From: Tom Rhodes Date: Wed, 10 Apr 2002 13:52:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/stdio scanf.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trhodes 2002/04/10 13:52:49 PDT Modified files: lib/libc/stdio scanf.3 Log: scanf.3 has an obsolete ``this release''. PR: 35610 MFC after: 2 days Revision Changes Path 1.15 +0 -7 src/lib/libc/stdio/scanf.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 14: 2:11 2002 Delivered-To: cvs-all@freebsd.org Received: from winston.freebsd.org (adsl-64-173-15-98.dsl.sntc01.pacbell.net [64.173.15.98]) by hub.freebsd.org (Postfix) with ESMTP id 742E237B417; Wed, 10 Apr 2002 14:02:04 -0700 (PDT) Received: from winston.freebsd.org (jkh@localhost [127.0.0.1]) by winston.freebsd.org (8.11.6/8.11.6) with ESMTP id g3AL1E351809; Wed, 10 Apr 2002 14:01:14 -0700 (PDT) (envelope-from jkh@winston.freebsd.org) To: David Malone Cc: Christopher Masto , Murray Stokely , "Greg 'groggy' Lehey" , msmith@FreeBSD.org, "David E. O'Brien" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Configuring XFree 4 (was: cvs commit: src/usr.sbin/sysinstall Makefile dispatch.c dist.c install.c menus.c sysinstall.8) In-Reply-To: Message from David Malone of "Wed, 10 Apr 2002 21:02:30 BST." <200204102102.aa16821@salmon.maths.tcd.ie> Date: Wed, 10 Apr 2002 14:01:14 -0700 Message-ID: <51805.1018472474@winston.freebsd.org> From: Jordan Hubbard Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > > Excilent. Any complications when shutting down? I've tracked the > > > complications I'm seeing, and it is something to do with ACPI calls > > > causing the machine to hang up - I think my BIOS is just nuts actually... > > > No, no complications - it shuts down as always. > > -current or -stable? Sorry, 4.5-stable on all of this. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 14: 9: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 98B2C37B449; Wed, 10 Apr 2002 14:08:33 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AL8Xk95245; Wed, 10 Apr 2002 14:08:33 -0700 (PDT) (envelope-from dwmalone) Message-Id: <200204102108.g3AL8Xk95245@freefall.freebsd.org> From: David Malone Date: Wed, 10 Apr 2002 14:08:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if_ef.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 dwmalone 2002/04/10 14:08:33 PDT Modified files: sys/net if_ef.c Log: Swap a bzero for an M_ZERO. Borris approved this ages ago, but the hard drive with the patch on it went south before I committed it. Approved by: bp Revision Changes Path 1.17 +1 -2 src/sys/net/if_ef.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 14: 9:34 2002 Delivered-To: cvs-all@freebsd.org Received: from mimer.webgiro.com (mailer2.webgiro.com [213.162.131.18]) by hub.freebsd.org (Postfix) with ESMTP id AC7C537B47D; Wed, 10 Apr 2002 14:08:40 -0700 (PDT) Received: from webgiro.com (mailer2.webgiro.com [213.162.131.18]) by mimer.webgiro.com (Postfix) with ESMTP id C31FD68534; Wed, 10 Apr 2002 23:08:30 +0200 (CEST) Message-ID: <3CB4A9CC.B5D46293@webgiro.com> Date: Wed, 10 Apr 2002 23:08:28 +0200 From: Andrzej Bialecki Organization: WebGiro AB X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: cvs-committers@FreeBSD.org Cc: cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) References: <4868.1018415500@critter.freebsd.dk> 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 Poul-Henning Kamp wrote: > ] revision 1.260 > ] date: 2000/06/13 22:28:46; author: peter; state: Exp; lines: +40 -46 > ] Borrow phk's axe and apply the next stage of config(8)'s evolution. > ] > ] Use Warner Losh's "hint" driver to decode ascii strings to fill the > ] resource table at boot time. > ] > ] config(8) no longer generates an ioconf.c table - ie: the configuration > ] no longer has to be compiled into the kernel. You can reconfigure your > ] isa devices with the likes of this at loader(8) time: > ] set hint.ed.0.port=0x320 > ] > ] userconfig will be rewritten to use this style interface one day and will > ] move to /boot/userconfig.4th or something like that. If anyone feels it's time to refresh his Forth skills ;-) he may have a look at the full-screen demos of what can be done with the bootforth terminal emulation. Take a look at /usr/src/share/examples/bootforth/* . I believe it is possible to implement a visual userconfig replacement with these capabilities... I wonder also how to retrieve later the hints settings from running kernel, in order to save them into a file (a la kget, or dset before that)... Are hints preserved and exported anywhere to userland? -- Andrzej -- -------------------------------------------- Andrzej Bialecki, Chief System Architect WebGiro AB, Sweden (http://www.webgiro.com) -------------------------------------------- FreeBSD developer (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 Apr 10 14:12: 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 CB97437B400; Wed, 10 Apr 2002 14:11:55 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3ALBtj95808; Wed, 10 Apr 2002 14:11:55 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204102111.g3ALBtj95808@freefall.freebsd.org> From: Tom Rhodes Date: Wed, 10 Apr 2002 14:11:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/advocacy myths.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 trhodes 2002/04/10 14:11:55 PDT Modified files: en/advocacy myths.sgml Log: Add information about mozilla, fix my email address. Submitted by: Szilveszter Adam Approved by: jim Revision Changes Path 1.4 +4 -4 www/en/advocacy/myths.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 14:15:18 2002 Delivered-To: cvs-all@freebsd.org Received: from atlrel9.hp.com (atlrel9.hp.com [156.153.255.214]) by hub.freebsd.org (Postfix) with ESMTP id 562F437B41F; Wed, 10 Apr 2002 14:15:04 -0700 (PDT) Received: from hpda.cup.hp.com (hpda.cup.hp.com [15.75.208.53]) by atlrel9.hp.com (Postfix) with ESMTP id 10E5E8052FF; Wed, 10 Apr 2002 17:15:00 -0400 (EDT) Received: from summit.cup.hp.com (summit.cup.hp.com [15.0.96.172]) by hpda.cup.hp.com (Postfix) with ESMTP id 8D1A47007; Wed, 10 Apr 2002 14:14:59 -0700 (PDT) Received: from gauss.cup.hp.com (gauss.cup.hp.com [15.28.97.152]) by summit.cup.hp.com with ESMTP (8.9.3 (PHNE_18546)/8.7.3 TIS Messaging 5.0) id OAA06145; Wed, 10 Apr 2002 14:14:48 -0700 (PDT) Received: (from marcel@localhost) by gauss.cup.hp.com (8.11.6/8.11.6) id g3ALDXw11947; Wed, 10 Apr 2002 14:13:33 -0700 (PDT) (envelope-from marcel) Date: Wed, 10 Apr 2002 14:13:32 -0700 From: Marcel Moolenaar To: Ruslan Ermilov Cc: "David E. O'Brien" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin Makefile Message-ID: <20020410211332.GA11922@gauss.cup.hp.com> References: <200204082038.g38KcuJ36871@freefall.freebsd.org> <20020409082654.GE73475@sunbay.com> <20020410045830.GB10113@dhcp01.pn.xcllnt.net> <20020410174228.GJ98684@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020410174228.GJ98684@sunbay.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 Wed, Apr 10, 2002 at 08:42:28PM +0300, Ruslan Ermilov wrote: > > > > > > > This is IMHO bogus. NO_CXX only means that (GNU) c++ shouldn't > > > be built, it doesn't imply that the host doesn't have another > > > working (probably non-GNU) c++ compiler that can build Groff. > > > > Unfortunately this is irrelevant, because a buildworld will not > > use it if it exists. The bottomline is that if you don't build > > libstdc++, you cannot build anything that depends on it. Hence, > > making gperf conditional on NO_CXX is correct. > > > I was talking about Groff. Me too. I just typed it wrong :-) -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 14:18: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 1858537B400; Wed, 10 Apr 2002 14:18:47 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3ALIlf96967; Wed, 10 Apr 2002 14:18:47 -0700 (PDT) (envelope-from dwmalone) Message-Id: <200204102118.g3ALIlf96967@freefall.freebsd.org> From: David Malone Date: Wed, 10 Apr 2002 14:18:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/include cpufunc.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 dwmalone 2002/04/10 14:18:47 PDT Modified files: sys/i386/include cpufunc.h Log: Move do_cpuid into the correct place in this file and make the indentation more like the other multi-line assembley in this file. Someone who understands gcc constraints could update the constraints for do_cpuid. Revision Changes Path 1.120 +8 -10 src/sys/i386/include/cpufunc.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 14:19:22 2002 Delivered-To: cvs-all@freebsd.org Received: from alcanet.com.au (mail2.alcanet.com.au [203.62.196.17]) by hub.freebsd.org (Postfix) with ESMTP id 456A137B435; Wed, 10 Apr 2002 14:19:01 -0700 (PDT) Received: from mfg1.cim.alcatel.com.au (localhost.localdomain [127.0.0.1]) by alcanet.com.au (8.12.1/8.12.1/Alcanet1.2) with ESMTP id g3ALIwQg007248; Thu, 11 Apr 2002 07:18:59 +1000 Received: from gsmx07.alcatel.com.au by cim.alcatel.com.au (PMDF V5.2-32 #37640) with ESMTP id <01KGFGE9N6BKVLN0HI@cim.alcatel.com.au>; Thu, 11 Apr 2002 07:18:57 +1000 Received: (from jeremyp@localhost) by gsmx07.alcatel.com.au (8.11.6/8.11.6) id g3ALItf79143; Thu, 11 Apr 2002 07:18:55 +1000 Content-return: prohibited Date: Thu, 11 Apr 2002 07:18:55 +1000 From: Peter Jeremy Subject: Re: cvs commit: src/sys/dev/digi digi.c In-reply-to: <200204100313.g3A3DSt33125@freefall.freebsd.org>; from brian@FreeBSD.ORG on Tue, Apr 09, 2002 at 08:13:28PM -0700 To: Brian Somers Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Mail-Followup-To: Brian Somers , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-id: <20020411071854.Q69202@gsmx07.alcatel.com.au> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-disposition: inline User-Agent: Mutt/1.2.5i References: <200204100313.g3A3DSt33125@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 On 2002-Apr-09 20:13:28 -0700, Brian Somers wrote: >brian 2002/04/09 20:13:28 PDT > > Modified files: > sys/dev/digi digi.c > Log: > Add a digi_delay() function and use it instead of tsleep() when polling > the card for command completion. > > digi_delay() uses either tsleep() or DELAY() depending on the value of > ``cold''. Originally, the initialisation looks used tsleep(,,,1) with a loop limit of 1000. Whilst this presumably worked for hz=100, it failed on my system with hz=2000. I extended the loop counter by a factor of 20 to compensate (I agree I should havd reported it, but I hadn't bothered with a portable fix). digi_delay() is roughly (cold ? DELAY(5000) : tsleep(,,,5)) - which is a fixed 5msec delay on boot, but a 5/hz delay once the system is running. (And I'm not sure why the timeout delay has changed). This will still probably timeout on dynamic loading. How about the following (untested) patch (which also reverts to the previous timeout). Index: digi.c =================================================================== RCS file: /home/CVSROOT/src/sys/dev/digi/digi.c,v retrieving revision 1.25 diff -u -r1.25 digi.c --- digi.c 10 Apr 2002 03:13:28 -0000 1.25 +++ digi.c 10 Apr 2002 21:13:43 -0000 @@ -225,9 +225,9 @@ digi_delay(struct digi_softc *sc, const char *txt) { if (cold) - DELAY(5000); + DELAY(1000000/hz); else - tsleep(sc, PUSER | PCATCH, txt, 5); + tsleep(sc, PUSER | PCATCH, txt, 1); } static int @@ -314,7 +314,7 @@ for (i = 0; ((sc->pcibus ? PCIPORT : inb(sc->port)) & FEPMASK) != FEPRST; i++) { - if (i > 1000) { + if (i > 10*hz) { log(LOG_ERR, "digi%d: %s init reset failed\n", sc->res.unit, sc->name); return (EIO); @@ -370,7 +370,7 @@ for (i = 0; ((sc->pcibus ? PCIPORT : inb(sc->port)) & FEPMASK) == resp; i++) { - if (i > 1000) { + if (i > 10*hz) { log(LOG_ERR, "digi%d: BIOS start failed\n", sc->res.unit); return (EIO); @@ -381,7 +381,7 @@ DLOG(DIGIDB_INIT, (sc->dev, "BIOS started after %d us\n", i)); for (i = 0; vW(ptr) != *(u_short *)"GD"; i++) { - if (i > 2000) { + if (i > 20*hz) { log(LOG_ERR, "digi%d: BIOS boot failed " "(0x%02x != 0x%02x)\n", sc->res.unit, vW(ptr), *(u_short *)"GD"); @@ -421,7 +421,7 @@ outb(sc->port, FEPCLR | FEPMEM); for (i = 0; W(ptr); i++) { - if (i > 10) { + if (i > hz/10) { log(LOG_ERR, "digi%d: FEP/OS move failed\n", sc->res.unit); sc->hidewin(sc); @@ -506,7 +506,7 @@ /* Now wait 'till the FEP/OS has booted */ for (i = 0; vW(ptr) != *(u_short *)"OS"; i++) { - if (i > 2000) { + if (i > 20*hz) { log(LOG_ERR, "digi%d: FEP/OS start failed " "(0x%02x != 0x%02x)\n", sc->res.unit, vW(ptr), *(u_short *)"OS"); Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 14:20: 3 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 76A4537B400; Wed, 10 Apr 2002 14:19:57 -0700 (PDT) Received: by elvis.mu.org (Postfix, from userid 1192) id 4FA14AE1D4; Wed, 10 Apr 2002 14:19:57 -0700 (PDT) Date: Wed, 10 Apr 2002 14:19:57 -0700 From: Alfred Perlstein To: Tom Rhodes Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/advocacy myths.sgml Message-ID: <20020410211957.GS93885@elvis.mu.org> References: <200204102111.g3ALBtj95808@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204102111.g3ALBtj95808@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 * Tom Rhodes [020410 14:12] wrote: > trhodes 2002/04/10 14:11:55 PDT > > Modified files: > en/advocacy myths.sgml > Log: > Add information about mozilla, fix my email address. > > Submitted by: Szilveszter Adam > Approved by: jim > > Revision Changes Path > 1.4 +4 -4 www/en/advocacy/myths.sgml NetBSD should be given more mention in the: "*BSD has a closed development model, it's more ``Cathedral'' than ``Bazaar''" now that they have cvs and cvsup available. -- -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 deductible 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 Wed Apr 10 14:31:58 2002 Delivered-To: cvs-all@freebsd.org Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by hub.freebsd.org (Postfix) with ESMTP id AE4D537B400; Wed, 10 Apr 2002 14:31:49 -0700 (PDT) Received: from localhost (lcl234.zbzoom.net [208.236.36.234]) by pittgoth.com (8.11.6/8.11.6) with SMTP id g3ALVj632393; Wed, 10 Apr 2002 17:31:46 -0400 (EDT) (envelope-from darklogik@pittgoth.com) Date: Wed, 10 Apr 2002 17:39:39 -0400 From: Tom Rhodes To: Alfred Perlstein Cc: trhodes@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/advocacy myths.sgml Message-Id: <20020410173939.0a19786b.darklogik@pittgoth.com> In-Reply-To: <20020410211957.GS93885@elvis.mu.org> References: <200204102111.g3ALBtj95808@freefall.freebsd.org> <20020410211957.GS93885@elvis.mu.org> X-Mailer: Sylpheed version 0.7.4 (GTK+ 1.2.10; i386-portbld-freebsd4.5) 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 Wed, 10 Apr 2002 14:19:57 -0700 Alfred Perlstein wrote: > * Tom Rhodes [020410 14:12] wrote: > > trhodes 2002/04/10 14:11:55 PDT > > > > Modified files: > > en/advocacy myths.sgml > > Log: > > Add information about mozilla, fix my email address. > > > > Submitted by: Szilveszter Adam > > Approved by: jim > > > > Revision Changes Path > > 1.4 +4 -4 www/en/advocacy/myths.sgml > > NetBSD should be given more mention in the: > "*BSD has a closed development model, it's more ``Cathedral'' than > ``Bazaar''" > > now that they have cvs and cvsup available. > > > -- > -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 deductible donations for FreeBSD: > http://www.freebsdfoundation.org/ > Alfred, your correct, and I was looking over that today. The reason its not listed is that I had difficulty locating the mirror listings, but now that I have (and see they only have 4 or 5 cvsup mirrors), I shall add that to the list ;) Thanks alot for pointing this out to me! -- Tom (Darklogik) Rhodes www.FreeBSD.org -The Power To Serve www.Pittgoth.com -Pittgoth Discussion Portal trhodes@{Pittgoth.com, FreeBSD.org} PGP key by www: http://www.pittgoth.com/~darklogik/darklogik.key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 14:35: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 3E85A37B400; Wed, 10 Apr 2002 14:35:51 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3ALZo709796; Wed, 10 Apr 2002 14:35:50 -0700 (PDT) (envelope-from dwmalone) Message-Id: <200204102135.g3ALZo709796@freefall.freebsd.org> From: David Malone Date: Wed, 10 Apr 2002 14:35:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen syslog.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 dwmalone 2002/04/10 14:35:50 PDT Modified files: (Branch: RELENG_4) lib/libc/gen syslog.c Log: MFC 1.25: Make syslog give up eventually if syslogd isn't listening and the console is blocking. Revision Changes Path 1.21.2.2 +4 -4 src/lib/libc/gen/syslog.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 14:41: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 46ACB37B400; Wed, 10 Apr 2002 14:41:15 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3ALfFs10500; Wed, 10 Apr 2002 14:41:15 -0700 (PDT) (envelope-from dwmalone) Message-Id: <200204102141.g3ALfFs10500@freefall.freebsd.org> From: David Malone Date: Wed, 10 Apr 2002 14:41:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ufs ufs_dirhash.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 dwmalone 2002/04/10 14:41:15 PDT Modified files: (Branch: RELENG_4) sys/ufs/ufs ufs_dirhash.c Log: MFC 1.10: Minor dirhash tweaking (more aggressive cleaning, better hash). Revision Changes Path 1.3.2.6 +15 -3 src/sys/ufs/ufs/ufs_dirhash.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 15: 1: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 0574A37B404; Wed, 10 Apr 2002 15:01:38 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AM1b113385; Wed, 10 Apr 2002 15:01:37 -0700 (PDT) (envelope-from dwmalone) Message-Id: <200204102201.g3AM1b113385@freefall.freebsd.org> From: David Malone Date: Wed, 10 Apr 2002 15:01:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/cron/lib 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 dwmalone 2002/04/10 15:01:37 PDT Modified files: usr.sbin/cron/lib misc.c Log: Only remove the '\n' at the end of a line if there is one. I missed this as part of the fix to the PR below. PR: 31265 Submitted by: Matthew D. Fuller MFC after: 1 week Revision Changes Path 1.10 +3 -2 src/usr.sbin/cron/lib/misc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 15: 7:32 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 BF65037B404; Wed, 10 Apr 2002 15:07:29 -0700 (PDT) Received: (from mike@localhost) by espresso.q9media.com (8.11.6/8.11.6) id g3AM0kC84092; Wed, 10 Apr 2002 18:00:46 -0400 (EDT) (envelope-from mike) Date: Wed, 10 Apr 2002 18:00:46 -0400 From: Mike Barcroft To: Hajimu UMEMOTO Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet in.h src/sys/netinet6 in6.h Message-ID: <20020410180046.C70911@espresso.q9media.com> References: <200204101159.g3ABx2e55901@freefall.freebsd.org> <20020410142136.B70911@espresso.q9media.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: ; from ume@mahoroba.org on Thu, Apr 11, 2002 at 03:46:01AM +0900 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 Hajimu UMEMOTO writes: > Okay, I see. But, now, both include/arpa/inet.h and sys/netinet/in.h > / sys/netinet/in.h have same defines explicitly. It seems nasty for > applications which includes both arpa/inet.h and netinet/in.h. The requirement comes from POSIX. C permits #define's of the same value in multiple places, so it isn't a problem. 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 Wed Apr 10 15:12: 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 8EBA937B400; Wed, 10 Apr 2002 15:12:01 -0700 (PDT) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AMC1K18376; Wed, 10 Apr 2002 15:12:01 -0700 (PDT) (envelope-from silby) Message-Id: <200204102212.g3AMC1K18376@freefall.freebsd.org> From: Mike Silbersack Date: Wed, 10 Apr 2002 15:12:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet tcp_input.c 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 silby 2002/04/10 15:12:01 PDT Modified files: sys/netinet tcp_input.c tcp_subr.c Log: Remove some ISN generation code which has been unused since the syncache went in. MFC after: 3 days Revision Changes Path 1.152 +0 -2 src/sys/netinet/tcp_input.c 1.127 +3 -27 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 Wed Apr 10 15:28: 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 B707737B416; Wed, 10 Apr 2002 15:28:01 -0700 (PDT) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AMS1m20242; Wed, 10 Apr 2002 15:28:01 -0700 (PDT) (envelope-from anders) Message-Id: <200204102228.g3AMS1m20242@freefall.freebsd.org> From: Anders Nordby Date: Wed, 10 Apr 2002 15:28:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/pam-mysql 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 anders 2002/04/10 15:28:01 PDT Modified files: security/pam-mysql Makefile Log: Mark as broken for -current with OpenPAM. Does not work yet. Revision Changes Path 1.6 +7 -1 ports/security/pam-mysql/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 15:31: 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 BF40937B404; Wed, 10 Apr 2002 15:30:54 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AMUsF20844; Wed, 10 Apr 2002 15:30:54 -0700 (PDT) (envelope-from peter) Message-Id: <200204102230.g3AMUsF20844@freefall.freebsd.org> From: Peter Wemm Date: Wed, 10 Apr 2002 15:30:54 -0700 (PDT) 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 peter 2002/04/10 15:30:54 PDT Modified files: etc rc.network Log: Since sshd expects /etc/ssh/ssh_host_rsa_key to exist, we had better create it. Also specify protocol v1/v2 in case people wonder why we generate two RSA keys. Revision Changes Path 1.133 +10 -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 Wed Apr 10 15:42: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 D135137B405; Wed, 10 Apr 2002 15:42:27 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AMgRl22275; Wed, 10 Apr 2002 15:42:27 -0700 (PDT) (envelope-from peter) Message-Id: <200204102242.g3AMgRl22275@freefall.freebsd.org> From: Peter Wemm Date: Wed, 10 Apr 2002 15:42:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults rc.conf X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/10 15:42:27 PDT Modified files: etc/defaults rc.conf Log: Add /etc/rc.d to the startup dirs list. It is a convenient place to put custom startup scripts instead of hacking a shared rc.local. eg: ftpd in listener mode, or maybe even sendmail or another mailer, etc. Revision Changes Path 1.145 +2 -2 src/etc/defaults/rc.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 15:58:29 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 2FD2E37B404; Wed, 10 Apr 2002 15:58:26 -0700 (PDT) Received: by flood.ping.uio.no (Postfix, from userid 2602) id A19145309; Thu, 11 Apr 2002 00:58:20 +0200 (CEST) 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: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc.network References: <200204102230.g3AMUsF20844@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 11 Apr 2002 00:58:19 +0200 In-Reply-To: <200204102230.g3AMUsF20844@freefall.freebsd.org> 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 Peter Wemm writes: > Log: > Since sshd expects /etc/ssh/ssh_host_rsa_key to exist, we had better > create it. Also specify protocol v1/v2 in case people wonder why we > generate two RSA keys. No! This was omitted on purpose. Please back it out. 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 Apr 10 15:59:25 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 8CB4937B416; Wed, 10 Apr 2002 15:59:19 -0700 (PDT) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 6C1F35309; Thu, 11 Apr 2002 00:59:18 +0200 (CEST) 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: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf References: <200204102242.g3AMgRl22275@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 11 Apr 2002 00:59:17 +0200 In-Reply-To: <200204102242.g3AMgRl22275@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 Peter Wemm writes: > Log: > > Add /etc/rc.d to the startup dirs list. It is a convenient place to put > custom startup scripts instead of hacking a shared rc.local. eg: ftpd in > listener mode, or maybe even sendmail or another mailer, etc. > This closes the door on switching to NetBSD's rc system. Please back it out. 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 Apr 10 16: 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 1F8FB37B400; Wed, 10 Apr 2002 16:05:01 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3AN51f25322; Wed, 10 Apr 2002 16:05:01 -0700 (PDT) (envelope-from knu) Message-Id: <200204102305.g3AN51f25322@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 10 Apr 2002 16:05:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/cvsweb 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 knu 2002/04/10 16:05:00 PDT Modified files: devel/cvsweb Makefile pkg-plist Log: Correct document file names. Submitted by: naddy Pointy hat to: knu Revision Changes Path 1.62 +1 -1 ports/devel/cvsweb/Makefile 1.10 +2 -2 ports/devel/cvsweb/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 Apr 10 16:11: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 D74E237B404; Wed, 10 Apr 2002 16:11:47 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3ANBjYm083906; Wed, 10 Apr 2002 16:11:45 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3ANAU2i083888; Wed, 10 Apr 2002 16:10:30 -0700 (PDT) Date: Wed, 10 Apr 2002 16:10:30 -0700 From: "David O'Brien" To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/awk Makefile Message-ID: <20020410161030.D80542@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200204100310.g3A3A3n32628@freefall.freebsd.org> <20020410183035.GL98684@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: <20020410183035.GL98684@sunbay.com>; from ru@FreeBSD.org on Wed, Apr 10, 2002 at 09:30:35PM +0300 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, Apr 10, 2002 at 09:30:35PM +0300, Ruslan Ermilov wrote: > > Modified files: > > usr.bin/awk Makefile > > Log: > > Style. > Putting ln(1) arguments in non-alphabetical order doesn't enhance > style. There are more instances if -sf than -fs. > The first PROG= line in driven makefiles gives the > basic indent (usually one tab). Oh it does? Maybe in 40% of our Makefiles. _We_have_no_Makefile_style_ The only consistancy we have is when I got sick of sys/modules and usr.sbin. > Lvalues in assignment lines that > exceed this basic indent should use a single space after an > operator. Where is that shown? I made this Makefile in this reguard the way I have made all the Makefiles I have [re]written. > Please back this change out. No thank you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 17: 0:53 2002 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 70A3B37B41A; Wed, 10 Apr 2002 17:00:11 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [IPv6:fec0::1:12]) by Awfulhak.org (8.12.2/8.11.6) with ESMTP id g3ANxRoi032634; Thu, 11 Apr 2002 00:59:49 +0100 (BST) (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.12.2/8.12.2) with ESMTP id g3ANxQOF059310; Thu, 11 Apr 2002 00:59:26 +0100 (BST) (envelope-from brian@freebsd-services.com) Message-Id: <200204102359.g3ANxQOF059310@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Peter Jeremy Cc: Brian Somers , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/digi digi.c In-Reply-To: Message from Peter Jeremy of "Thu, 11 Apr 2002 07:18:55 +1000." <20020411071854.Q69202@gsmx07.alcatel.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 11 Apr 2002 00:59:25 +0100 From: Brian Somers Sender: owner-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 2002-Apr-09 20:13:28 -0700, Brian Somers wrote: > >brian 2002/04/09 20:13:28 PDT > > > > Modified files: > > sys/dev/digi digi.c > > Log: > > Add a digi_delay() function and use it instead of tsleep() when polling > > the card for command completion. > > > > digi_delay() uses either tsleep() or DELAY() depending on the value of > > ``cold''. > > Originally, the initialisation looks used tsleep(,,,1) with a loop > limit of 1000. Whilst this presumably worked for hz=100, it failed > on my system with hz=2000. I extended the loop counter by a factor > of 20 to compensate (I agree I should havd reported it, but I hadn't > bothered with a portable fix). > > digi_delay() is roughly (cold ? DELAY(5000) : tsleep(,,,5)) - which is > a fixed 5msec delay on boot, but a 5/hz delay once the system is > running. (And I'm not sure why the timeout delay has changed). This > will still probably timeout on dynamic loading. How about the > following (untested) patch (which also reverts to the previous > timeout). Hi, The code has changed slightly (moving goalposts!). Does this patch (based on yours) make things work for you ? Also, if you have a few moments, could you set digi_debug = 1 and send me the dmesg output from a ``kldload digi'' ? I get this with hz = 100: digi0 mem 0xec800000-0xecbfffff irq 10 at device 9.0 on pci2 digi0: Got init reset after 0 us digi0: BIOS uploaded digi0: BIOS started after 0 us digi0: BIOS booted after 381 iterations digi0: Loading FEP/OS digi0: FEP/OS loaded digi0: FEP/OS started after 10 iterations digi0: Digiboard PCI8r 920, 8 ports found I can't try any of the other boards at the moment... see my other email :*/ but I guess you're timing out on the BIOS boot ? Cheers. -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! Index: digi.c =================================================================== RCS file: /home/ncvs/src/sys/dev/digi/digi.c,v retrieving revision 1.27 diff -u -r1.27 digi.c --- digi.c 10 Apr 2002 14:32:55 -0000 1.27 +++ digi.c 10 Apr 2002 23:28:45 -0000 @@ -314,12 +314,12 @@ for (i = 0; ((sc->pcibus ? PCIPORT : inb(sc->port)) & FEPMASK) != FEPRST; i++) { - if (i > 100) { + if (i > 10 * hz) { log(LOG_ERR, "digi%d: %s init reset failed\n", sc->res.unit, sc->name); return (EIO); } - digi_delay(sc, "digiinit0", 5); + digi_delay(sc, "digiinit0", 1); } DLOG(DIGIDB_INIT, (sc->dev, "Got init reset after %d us\n", i)); @@ -370,24 +370,24 @@ for (i = 0; ((sc->pcibus ? PCIPORT : inb(sc->port)) & FEPMASK) == resp; i++) { - if (i > 100) { + if (i > 10 * hz) { log(LOG_ERR, "digi%d: BIOS start failed\n", sc->res.unit); return (EIO); } - digi_delay(sc, "digibios0", 5); + digi_delay(sc, "digibios0", 1); } DLOG(DIGIDB_INIT, (sc->dev, "BIOS started after %d us\n", i)); for (i = 0; vW(ptr) != *(u_short *)"GD"; i++) { - if (i > 200) { + if (i > 20 * hz) { log(LOG_ERR, "digi%d: BIOS boot failed " "(0x%02x != 0x%02x)\n", sc->res.unit, vW(ptr), *(u_short *)"GD"); return (EIO); } - digi_delay(sc, "digibios1", 5); + digi_delay(sc, "digibios1", 1); } DLOG(DIGIDB_INIT, (sc->dev, "BIOS booted after %d iterations\n", i)); @@ -421,13 +421,13 @@ outb(sc->port, FEPCLR | FEPMEM); for (i = 0; W(ptr); i++) { - if (i > 100) { + if (i > 10 * hz) { log(LOG_ERR, "digi%d: FEP/OS move failed\n", sc->res.unit); sc->hidewin(sc); return (EIO); } - digi_delay(sc, "digifep0", 5); + digi_delay(sc, "digifep0", 1); } DLOG(DIGIDB_INIT, (sc->dev, "FEP/OS moved after %d iterations\n", i)); @@ -506,14 +506,14 @@ /* Now wait 'till the FEP/OS has booted */ for (i = 0; vW(ptr) != *(u_short *)"OS"; i++) { - if (i > 200) { + if (i > 20 * hz) { log(LOG_ERR, "digi%d: FEP/OS start failed " "(0x%02x != 0x%02x)\n", sc->res.unit, vW(ptr), *(u_short *)"OS"); sc->hidewin(sc); return (EIO); } - digi_delay(sc, "digifep1", 5); + digi_delay(sc, "digifep1", 1); } DLOG(DIGIDB_INIT, (sc->dev, "FEP/OS started after %d iterations\n", i)); Index: digi_isa.c =================================================================== RCS file: /home/ncvs/src/sys/dev/digi/digi_isa.c,v retrieving revision 1.9 diff -u -r1.9 digi_isa.c --- digi_isa.c 10 Apr 2002 14:32:55 -0000 1.9 +++ digi_isa.c 10 Apr 2002 23:48:03 -0000 @@ -112,12 +112,12 @@ /* Invasive probe - reset the card */ outb(sc->port, FEPRST); - for (i = 0; i < 10; i++) { + for (i = 0; i < 10 * hz; i++) { if ((inb(sc->port) & FEPMASK) == FEPRST) break; digi_delay(sc, "digirst", 1); } - if (i == 10) + if (i == 10 * hz) return (NULL); DLOG(DIGIDB_INIT, (sc->dev, "got reset after %d delays\n", i)); @@ -375,12 +375,12 @@ reset |= FEPMEM; outb(sc->port, reset); - for (i = 0; i < 10; i++) { + for (i = 0; i < 10 * hz; i++) { if ((inb(sc->port) & FEPMASK) == reset) break; digi_delay(sc, "digirst1", 1); } - if (i == 10) { + if (i == 10 * hz) { device_printf(dev, "1st reset failed\n"); sc->hidewin(sc); goto failed; @@ -397,12 +397,12 @@ if (sc->model == PCXI || sc->model == PCXE) { outb(sc->port, FEPRST | FEPMEM); - for (i = 0; i < 10; i++) { + for (i = 0; i < 10 * hz; i++) { if ((inb(sc->port) & FEPMASK) != FEPRST) break; digi_delay(sc, "digirst2", 1); } - if (i == 10) { + if (i == 10 * hz) { device_printf(dev, "2nd reset failed (0x%02x)\n", inb(sc->port)); sc->hidewin(sc); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 17: 8: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 4132337B405; Wed, 10 Apr 2002 17:08:12 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B08Cj41468; Wed, 10 Apr 2002 17:08:12 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204110008.g3B08Cj41468@freefall.freebsd.org> From: Tom Rhodes Date: Wed, 10 Apr 2002 17:08:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en docs.sgml www/en/advocacy myths.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 trhodes 2002/04/10 17:08:12 PDT Modified files: en docs.sgml en/advocacy myths.sgml Log: Connect the java article to the web build, add NetBSD to the advocacy myths page as suggested by alfred. Approved by: jim Revision Changes Path 1.5 +2 -2 www/en/advocacy/myths.sgml 1.143 +6 -1 www/en/docs.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 17:11: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 5405937B400; Wed, 10 Apr 2002 17:11:41 -0700 (PDT) Received: (from motoyuki@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B0BfA41890; Wed, 10 Apr 2002 17:11:41 -0700 (PDT) (envelope-from motoyuki) Message-Id: <200204110011.g3B0BfA41890@freefall.freebsd.org> From: Motoyuki Konno Date: Wed, 10 Apr 2002 17:11:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/rplay/files patch-an X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG motoyuki 2002/04/10 17:11:41 PDT Modified files: audio/rplay/files patch-an Log: Fix build problem on 5-current. is moved to on both 4-stable and 5-current. See commitlog of src/include/Makefile rev 1.165. Revision Changes Path 1.2 +11 -2 ports/audio/rplay/files/patch-an To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 17:17: 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 1136E37B404; Wed, 10 Apr 2002 17:16:57 -0700 (PDT) Received: (from motoyuki@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B0GrO42599; Wed, 10 Apr 2002 17:16:53 -0700 (PDT) (envelope-from motoyuki) Message-Id: <200204110016.g3B0GrO42599@freefall.freebsd.org> From: Motoyuki Konno Date: Wed, 10 Apr 2002 17:16:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/tosha/files patch-pcmplay.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 motoyuki 2002/04/10 17:16:52 PDT Added files: audio/tosha/files patch-pcmplay.c Log: Fix build problem on 5-current. is moved to on both 4-stable and 5-current. See commitlog of src/include/Makefile rev 1.165. Revision Changes Path 1.1 +11 -0 ports/audio/tosha/files/patch-pcmplay.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 17:20: 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 E646637B41A; Wed, 10 Apr 2002 17:19:59 -0700 (PDT) Received: (from motoyuki@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B0Jxb42980; Wed, 10 Apr 2002 17:19:59 -0700 (PDT) (envelope-from motoyuki) Message-Id: <200204110019.g3B0Jxb42980@freefall.freebsd.org> From: Motoyuki Konno Date: Wed, 10 Apr 2002 17:19:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/xanim/files patch-xa_audio.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 motoyuki 2002/04/10 17:19:59 PDT Added files: graphics/xanim/files patch-xa_audio.h Log: Fix build problem on 5-current. is moved to on both 4-stable and 5-current. See commitlog of src/include/Makefile rev 1.165. Revision Changes Path 1.1 +14 -0 ports/graphics/xanim/files/patch-xa_audio.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 17:22: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 F2A0037B405; Wed, 10 Apr 2002 17:22:33 -0700 (PDT) Received: (from motoyuki@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B0MX543351; Wed, 10 Apr 2002 17:22:33 -0700 (PDT) (envelope-from motoyuki) Message-Id: <200204110022.g3B0MX543351@freefall.freebsd.org> From: Motoyuki Konno Date: Wed, 10 Apr 2002 17:22:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-clocks/emiclock/files patch-include::sound.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 motoyuki 2002/04/10 17:22:33 PDT Added files: x11-clocks/emiclock/files patch-include::sound.h Log: Fix build problem on 5-current. is moved to on both 4-stable and 5-current. See commitlog of src/include/Makefile rev 1.165. Revision Changes Path 1.1 +14 -0 ports/x11-clocks/emiclock/files/patch-include::sound.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 17:53: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id E71B737B41A; Wed, 10 Apr 2002 17:52:55 -0700 (PDT) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 8B81181557; Thu, 11 Apr 2002 10:22:53 +0930 (CST) Date: Thu, 11 Apr 2002 10:22:53 +0930 From: Greg 'groggy' Lehey To: Jeroen Ruigrok/asmodai Cc: Poul-Henning Kamp , John Baldwin , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) Message-ID: <20020411102253.C8400@wantadilla.lemis.com> References: <20020410143519.B22430@wantadilla.lemis.com> <4868.1018415500@critter.freebsd.dk> <20020410145747.C22430@wantadilla.lemis.com> <20020410054248.GY40979@daemon.ninth-circle.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020410054248.GY40979@daemon.ninth-circle.org> User-Agent: Mutt/1.3.23i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Sender: owner-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 Wednesday, 10 April 2002 at 7:42:48 +0200, Jeroen Ruigrok/asmodai wrote: > -On [20020410 07:30], Greg 'groggy' Lehey (grog@FreeBSD.org) wrote: >> We're still telling people in the documentation that Userconfig is >> functional, and I believe it still is in -STABLE. > > Doc does not document CURRENT. Unless policy changed while I was gone. :) > [Or if I never paid really close attention in the first place. :) ] I wasn't specifically talking about the doc project. It's not at all clear from the commit log that this implied removing userconfig (in fact, it seems that that wasn't peter's intention at all), it's not in UPDATING, and it's not in the release notes. Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 17:57:21 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 2F71237B404; Wed, 10 Apr 2002 17:57:16 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3B0vEYm085079; Wed, 10 Apr 2002 17:57:14 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3B0txt0085044; Wed, 10 Apr 2002 17:55:59 -0700 (PDT) Date: Wed, 10 Apr 2002 17:55:58 -0700 From: "David O'Brien" To: Peter Wemm , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf Message-ID: <20020410175558.A84993@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200204102242.g3AMgRl22275@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 Thu, Apr 11, 2002 at 12:59:17AM +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 Thu, Apr 11, 2002 at 12:59:17AM +0200, Dag-Erling Smorgrav wrote: > Peter Wemm writes: > > Log: > > > > Add /etc/rc.d to the startup dirs list. It is a convenient place to put > > custom startup scripts instead of hacking a shared rc.local. eg: ftpd in > > listener mode, or maybe even sendmail or another mailer, etc. > > > > This closes the door on switching to NetBSD's rc system. Please back > it out. Yes, please. -- -- 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 Wed Apr 10 18: 1:58 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 5F79B37B404; Wed, 10 Apr 2002 18:01:53 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3B11qYm085157; Wed, 10 Apr 2002 18:01:52 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3B10a7H085148; Wed, 10 Apr 2002 18:00:36 -0700 (PDT) Date: Wed, 10 Apr 2002 18:00:36 -0700 From: "David O'Brien" To: Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.sys.mk Message-ID: <20020410180036.B84993@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20020410073946.GB98684@sunbay.com> <20020410182220.Q7066-100000@gamplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020410182220.Q7066-100000@gamplex.bde.org>; from bde@zeta.org.au on Wed, Apr 10, 2002 at 06:26:00PM +1000 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, Apr 10, 2002 at 06:26:00PM +1000, Bruce Evans wrote: > This gives me more to check before deciding if removing it easy enough :-). > I think modifying the sources files to not produce syntax errors for > foreign macros should be acceptable in most cases, since files in contrib > should be portable so they can't depend on OS-dependent macros, Unfortunately when we take them from NetBSD they do. > and files > outside of contrib get modified anyway. You did not respond to creating the non-standard /usr/include/scm.h as a place to put all these various compatibility macros. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 18: 4:32 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 C58A137B405; Wed, 10 Apr 2002 18:04:27 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3B14PYm085180; Wed, 10 Apr 2002 18:04:25 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3B138ZN085173; Wed, 10 Apr 2002 18:03:08 -0700 (PDT) Date: Wed, 10 Apr 2002 18:03:08 -0700 From: "David O'Brien" To: Ruslan Ermilov Cc: Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin Makefile Message-ID: <20020410180308.C84993@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200204082038.g38KcuJ36871@freefall.freebsd.org> <20020409082654.GE73475@sunbay.com> <20020410045830.GB10113@dhcp01.pn.xcllnt.net> <20020410174228.GJ98684@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: <20020410174228.GJ98684@sunbay.com>; from ru@FreeBSD.org on Wed, Apr 10, 2002 at 08:42:28PM +0300 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, Apr 10, 2002 at 08:42:28PM +0300, Ruslan Ermilov wrote: > > > This is IMHO bogus. NO_CXX only means that (GNU) c++ shouldn't > > > be built, it doesn't imply that the host doesn't have another > > > working (probably non-GNU) c++ compiler that can build Groff. > > > > Unfortunately this is irrelevant, because a buildworld will not > > use it if it exists. The bottomline is that if you don't build > > libstdc++, you cannot build anything that depends on it. Hence, > > making gperf conditional on NO_CXX is correct. > > > I was talking about Groff. So was Marcel. Please come up with a way to not compile Groff and gperf if NO_CXX is set. The assumption there is some external C++ compiler is a rather bogus one. If there is an external C++ compiler the user should be setting CXX= to it. The IA-64 case that Peter yelled at me about is also a very special case. The TYPICAL case is an Alpha or i386 box with NO_CXX set and which we cannot assume there is a C++ compiler available. Otherwise I will simply remove the NO_CXX option as it is broken otherwise. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 18: 6: 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 B9B6037B404; Wed, 10 Apr 2002 18:06:04 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3B162Ym085233; Wed, 10 Apr 2002 18:06:02 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3B14h5C085205; Wed, 10 Apr 2002 18:04:43 -0700 (PDT) Date: Wed, 10 Apr 2002 18:04:43 -0700 From: "David O'Brien" To: Marcel Moolenaar Cc: Peter Wemm , Ruslan Ermilov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr Message-ID: <20020410180443.D84993@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20020408144719.B92702@dragon.nuxi.com> <20020408232040.459C33811@overcee.wemm.org> <20020408191029.B93005@dragon.nuxi.com> <20020410044821.GA10113@dhcp01.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020410044821.GA10113@dhcp01.pn.xcllnt.net>; from marcel@xcllnt.net on Tue, Apr 09, 2002 at 09:48:21PM -0700 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, Apr 09, 2002 at 09:48:21PM -0700, Marcel Moolenaar wrote: > On Mon, Apr 08, 2002 at 07:10:29PM -0700, David O'Brien wrote: > > On Mon, Apr 08, 2002 at 04:20:40PM -0700, Peter Wemm wrote: > > > > Please commit this as it does improve things. As Peter mentioned it > > > > would be nice to add the libstdc++ dependancy also. But even w/o that, > > > > this patch is a help. > > > > > > No, do what Max Khon suggested. Use PROG_CXX like NetBSD does. > > > > Why can't we do both? If we can make PROG=foo do the right thing in the > > common case we should make it do so. > > The common case is all C. That already works. If you do both, you > break the uncommon case, in which you have C++ source files (or at > least named like them) but want C linkage. You cannot use PROG= > anymore. This can only lead to a third one PROG_C, which is almost > exactly like PROG. This is confusing. > > I think only PROG_CXX is better. This automaticly means that PROG > is for C. Always... There is a patch that implements PROG= such that we can remove the explicit linkage of libstdc++. Unless someone writes and commits the PROG_CXX, we have no better option than to commit ru's patch. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 18: 7:53 2002 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 664) id 6DD5B37B400; Wed, 10 Apr 2002 18:07:49 -0700 (PDT) Date: Wed, 10 Apr 2002 18:07:49 -0700 From: David O'Brien To: Tom Rhodes , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/advocacy myths.sgml Message-ID: <20020410180749.A89184@hub.freebsd.org> Reply-To: obrien@freebsd.org References: <200204102111.g3ALBtj95808@freefall.freebsd.org> <20020410211957.GS93885@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: <20020410211957.GS93885@elvis.mu.org>; from bright@mu.org on Wed, Apr 10, 2002 at 02:19:57PM -0700 X-Operating-System: FreeBSD 4.5-STABLE 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, Apr 10, 2002 at 02:19:57PM -0700, Alfred Perlstein wrote: > > Modified files: > > en/advocacy myths.sgml Also please reword There is a core team who have overall architectural control over where the *BSD project is heading. Just as Linus has overall control and final say over the Linux kernel. as it is not true about FreeBSD, or remove it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 18:11: 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 2BA1F37B404; Wed, 10 Apr 2002 18:10:56 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B1Aub57584; Wed, 10 Apr 2002 18:10:56 -0700 (PDT) (envelope-from obrien) Message-Id: <200204110110.g3B1Aub57584@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 10 Apr 2002 18:10:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/advocacy myths.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 obrien 2002/04/10 18:10:56 PDT Modified files: en/advocacy myths.sgml Log: The "wow" in wcarchive.cdrom.com was 3,600 simualtianous _FTP_ connections. 3,600 TCP/IP connections (of any sort) is trival. Revision Changes Path 1.6 +1 -1 www/en/advocacy/myths.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 18: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 25D3D37B416; Wed, 10 Apr 2002 18:11:54 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B1Bsh57702; Wed, 10 Apr 2002 18:11:54 -0700 (PDT) (envelope-from obrien) Message-Id: <200204110111.g3B1Bsh57702@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 10 Apr 2002 18:11:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/advocacy myths.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 obrien 2002/04/10 18:11:54 PDT Modified files: en/advocacy myths.sgml Log: Spell our platforms correctly. Revision Changes Path 1.7 +3 -3 www/en/advocacy/myths.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 18:13: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 4E17C37B416; Wed, 10 Apr 2002 18:13:42 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B1DgT57925; Wed, 10 Apr 2002 18:13:42 -0700 (PDT) (envelope-from obrien) Message-Id: <200204110113.g3B1DgT57925@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 10 Apr 2002 18:13:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/advocacy myths.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 obrien 2002/04/10 18:13:42 PDT Modified files: en/advocacy myths.sgml Log: The Alpha has Linux binary emulation also. Revision Changes Path 1.8 +2 -2 www/en/advocacy/myths.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 18:16: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 D2E2537B404; Wed, 10 Apr 2002 18:16:25 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B1GP658257; Wed, 10 Apr 2002 18:16:25 -0700 (PDT) (envelope-from obrien) Message-Id: <200204110116.g3B1GP658257@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 10 Apr 2002 18:16:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/advocacy myths.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 obrien 2002/04/10 18:16:25 PDT Modified files: en/advocacy myths.sgml Log: Embelish the list of common Linux binaries we run. Revision Changes Path 1.9 +3 -2 www/en/advocacy/myths.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 18:17: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 E46B937B405; Wed, 10 Apr 2002 18:17:55 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B1HtX58406; Wed, 10 Apr 2002 18:17:55 -0700 (PDT) (envelope-from obrien) Message-Id: <200204110117.g3B1HtX58406@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 10 Apr 2002 18:17:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/advocacy myths.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 obrien 2002/04/10 18:17:55 PDT Modified files: en/advocacy myths.sgml Log: Sept 1998 is long longer "recently". Revision Changes Path 1.10 +1 -1 www/en/advocacy/myths.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 18:30:36 2002 Delivered-To: cvs-all@freebsd.org Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by hub.freebsd.org (Postfix) with ESMTP id 45C1C37B405; Wed, 10 Apr 2002 18:30:29 -0700 (PDT) Received: (from uucp@localhost) by srv1.cosmo-project.de (8.11.6/8.11.6) with UUCP id g3B1UKV44757; Thu, 11 Apr 2002 03:30:21 +0200 (CEST) (envelope-from ticso@cicely9.cicely.de) Received: from mail.cicely.de (cicely20.cicely.de [10.1.1.22]) by cicely5.cicely.de (8.12.1/8.12.1) with ESMTP id g3B1PT6e021048; Thu, 11 Apr 2002 03:25:29 +0200 (CEST)?g (envelope-from ticso@cicely9.cicely.de) Received: from cicely9.cicely.de (cicely9.cicely.de [10.1.1.11]) by mail.cicely.de (8.11.0/8.11.0) with ESMTP id g3B1PSX22737; Thu, 11 Apr 2002 03:25:28 +0200 (CEST) Received: (from ticso@localhost) by cicely9.cicely.de (8.11.6/8.11.6) id g3B1PRs03621; Thu, 11 Apr 2002 03:25:27 +0200 (CEST) (envelope-from ticso) Date: Thu, 11 Apr 2002 03:25:27 +0200 From: Bernd Walter To: Andrew Gallatin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c Message-ID: <20020411012527.GG2061@cicely9.cicely.de> References: <200203221555.g2MFtvn29301@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203221555.g2MFtvn29301@freefall.freebsd.org> User-Agent: Mutt/1.3.28i X-Operating-System: FreeBSD cicely9.cicely.de 5.0-CURRENT alpha Sender: owner-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, Mar 22, 2002 at 07:55:57AM -0800, Andrew Gallatin wrote: > gallatin 2002/03/22 07:55:57 PST > > Modified files: > sys/alpha/alpha interrupt.c > Log: > only read from the possibly bad address if we did not get a machine > check. I don't know how this went unnoticed for so long. The excluded part only wrote a local variable into the caller supplied address. > obtained from: NetBSD > MFC after: 7 days > > Revision Changes Path > 1.67 +1 -1 src/sys/alpha/alpha/interrupt.c > -- B.Walter COSMO-Project http://www.cosmo-project.de ticso@cicely.de Usergroup info@cosmo-project.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 18:33:47 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 4DDF637B400; Wed, 10 Apr 2002 18:33:42 -0700 (PDT) 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 g3B1Xei05430; Wed, 10 Apr 2002 19:33:40 -0600 (MDT) (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 g3B1Xdc39851; Wed, 10 Apr 2002 19:33:39 -0600 (MDT) (envelope-from imp@village.org) Date: Wed, 10 Apr 2002 19:33:36 -0600 (MDT) Message-Id: <20020410.193336.38280367.imp@village.org> To: dfr@nlsystems.com Cc: jhb@FreeBSD.org, dfr@FreeBSD.org, cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/ia64/ia64 trap.c From: "M. Warner Losh" In-Reply-To: <20020410202906.J16912-100000@salmon.nlsystems.com> References: <20020410202906.J16912-100000@salmon.nlsystems.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: <20020410202906.J16912-100000@salmon.nlsystems.com> Doug Rabson writes: : On Wed, 10 Apr 2002, John Baldwin wrote: : : > : > On 10-Apr-2002 Doug Rabson wrote: : > > dfr 2002/04/10 12:24:59 PDT : > > : > > Modified files: : > > sys/ia64/ia64 trap.c : > > Log: : > > Add exception and syscall support for executing IA-32 binaries. : > : > You are evil. :) : : Oh yes. I just ran my first i386 binary on my ia64 box... Hopefully it wasn't a 16-bit app using doscmd :-) Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 18:37: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 3D8B037B417; Wed, 10 Apr 2002 18:37:33 -0700 (PDT) Received: (from vanilla@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B1bXi61527; Wed, 10 Apr 2002 18:37:33 -0700 (PDT) (envelope-from vanilla) Message-Id: <200204110137.g3B1bXi61527@freefall.freebsd.org> From: "Vanilla I. Shu" Date: Wed, 10 Apr 2002 18:37:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gimp1 Makefile distinfo pkg-plist ports/graphics/gimp1/files patch-af patch-ak patch-ao patch-gimptool-1.2.in patch-libgimp::Makefile.in patch-plug-ins::libgck::gck::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 vanilla 2002/04/10 18:37:33 PDT Modified files: graphics/gimp1 Makefile distinfo pkg-plist Added files: graphics/gimp1/files patch-gimptool-1.2.in patch-libgimp::Makefile.in patch-plug-ins::libgck::gck::Makefile.in Removed files: graphics/gimp1/files patch-af patch-ak patch-ao Log: Upgrade to 1.2.3. Revision Changes Path 1.97 +7 -5 ports/graphics/gimp1/Makefile 1.44 +1 -1 ports/graphics/gimp1/distinfo 1.4 +0 -26 ports/graphics/gimp1/files/patch-af (dead) 1.4 +0 -17 ports/graphics/gimp1/files/patch-ak (dead) 1.2 +0 -11 ports/graphics/gimp1/files/patch-ao (dead) 1.1 +26 -0 ports/graphics/gimp1/files/patch-gimptool-1.2.in (new) 1.1 +19 -0 ports/graphics/gimp1/files/patch-libgimp::Makefile.in (new) 1.1 +11 -0 ports/graphics/gimp1/files/patch-plug-ins::libgck::gck::Makefile.in (new) 1.60 +191 -43 ports/graphics/gimp1/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 Apr 10 18:39: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 CB5CE37B405; Wed, 10 Apr 2002 18:39:16 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B1dGC61783; Wed, 10 Apr 2002 18:39:16 -0700 (PDT) (envelope-from imp) Message-Id: <200204110139.g3B1dGC61783@freefall.freebsd.org> From: Warner Losh Date: Wed, 10 Apr 2002 18:39:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/10 18:39:16 PDT Modified files: . UPDATING Log: Note date of USERCONFIG's real death Revision Changes Path 1.198 +2 -0 src/UPDATING To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 18:41:28 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 2579337B400; Wed, 10 Apr 2002 18:41:20 -0700 (PDT) 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 g3B1fIi05468; Wed, 10 Apr 2002 19:41:19 -0600 (MDT) (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 g3B1fHc39902; Wed, 10 Apr 2002 19:41:17 -0600 (MDT) (envelope-from imp@village.org) Date: Wed, 10 Apr 2002 19:41:14 -0600 (MDT) Message-Id: <20020410.194114.77337477.imp@village.org> To: grog@FreeBSD.org Cc: asmodai@wxs.nl, phk@critter.freebsd.dk, jhb@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement From: "M. Warner Losh" In-Reply-To: <20020411102253.C8400@wantadilla.lemis.com> References: <20020410145747.C22430@wantadilla.lemis.com> <20020410054248.GY40979@daemon.ninth-circle.org> <20020411102253.C8400@wantadilla.lemis.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: <20020411102253.C8400@wantadilla.lemis.com> "Greg 'groggy' Lehey" writes: : On Wednesday, 10 April 2002 at 7:42:48 +0200, Jeroen Ruigrok/asmodai wrote: : > -On [20020410 07:30], Greg 'groggy' Lehey (grog@FreeBSD.org) wrote: : >> We're still telling people in the documentation that Userconfig is : >> functional, and I believe it still is in -STABLE. : > : > Doc does not document CURRENT. Unless policy changed while I was gone. :) : > [Or if I never paid really close attention in the first place. :) ] : : I wasn't specifically talking about the doc project. It's not at all : clear from the commit log that this implied removing userconfig (in : fact, it seems that that wasn't peter's intention at all), it's not in : UPDATING, and it's not in the release notes. It is now (I added the last line). Note that careful study of the mail in question, not all that hard to find, will show the implications. 20000612: Peter took an axe to config(8). Be sure that you read his mail on the topic before even thinking about updating. You will need to create a /boot/device.hints or add a hints directive to your config file to compile them in statically. The format of the config file has changed as well. Please see GENERIC or NEWCARD for examples of the new format. Indirectly, this also breaks USERCONFIG Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 18:46:54 2002 Delivered-To: cvs-all@freebsd.org Received: from kayak.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by hub.freebsd.org (Postfix) with ESMTP id 55E6637B41F; Wed, 10 Apr 2002 18:46:35 -0700 (PDT) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by kayak.xcllnt.net (8.11.6/8.11.4) with ESMTP id g3B1kYJ21877; Wed, 10 Apr 2002 18:46:34 -0700 (PDT) (envelope-from marcel@kayak.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.2/8.12.2) with ESMTP id g3B1kYtv003484; Wed, 10 Apr 2002 18:46:34 -0700 (PDT) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.2/8.12.2/Submit) id g3B1kYwP003483; Wed, 10 Apr 2002 18:46:34 -0700 (PDT) Date: Wed, 10 Apr 2002 18:46:34 -0700 From: Marcel Moolenaar To: "David O'Brien" Cc: Peter Wemm , Ruslan Ermilov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr Message-ID: <20020411014634.GA3463@athlon.pn.xcllnt.net> References: <20020408144719.B92702@dragon.nuxi.com> <20020408232040.459C33811@overcee.wemm.org> <20020408191029.B93005@dragon.nuxi.com> <20020410044821.GA10113@dhcp01.pn.xcllnt.net> <20020410180443.D84993@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020410180443.D84993@dragon.nuxi.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 Wed, Apr 10, 2002 at 06:04:43PM -0700, David O'Brien wrote: > > > > I think only PROG_CXX is better. This automaticly means that PROG > > is for C. Always... > > There is a patch that implements PROG= such that we can remove the > explicit linkage of libstdc++. Unless someone writes and commits the > PROG_CXX, we have no better option than to commit ru's patch. I'm aware of that. I wouldn't mind seeing ru's patch being committed if it was understood that the PROG_CXX solution would cause it to be reverted. I hope that ru's patch and a subsequent PROG_CXX change would not result in having both at the same time, because that would be broken. In short: if we like something quick, then ru's patch is the best we have right now... -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 18:49:27 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 1D82C37B416; Wed, 10 Apr 2002 18:49:20 -0700 (PDT) Received: from localhost (root@localhost [127.0.0.1]) by cain.gsoft.com.au (8.12.2/8.12.2) with ESMTP id g3B1nCru011542; Thu, 11 Apr 2002 11:19:14 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) From: "Daniel O'Connor" To: Andrzej Bialecki Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-Reply-To: <3CB4A9CC.B5D46293@webgiro.com> References: <4868.1018415500@critter.freebsd.dk> <3CB4A9CC.B5D46293@webgiro.com> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.3 Date: 11 Apr 2002 11:19:12 +0930 Message-Id: <1018489755.20755.13.camel@chowder.gsoft.com.au> Mime-Version: 1.0 X-Spam-Status: No, hits=-2.5 required=5 X-Spam-Level: (-2.5) X-Scanned-By: MIMEDefang 2.6 (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 On Thu, 2002-04-11 at 06:38, Andrzej Bialecki wrote: > If anyone feels it's time to refresh his Forth skills ;-) he may have a > look at the full-screen demos of what can be done with the bootforth > terminal emulation. Take a look at /usr/src/share/examples/bootforth/* . > I believe it is possible to implement a visual userconfig replacement > with these capabilities... Is there a way to write code that uses this stuff without having to reboot continuously? (I'm not talking vmware either) You can access the basic Forth engine from userland but it's difficult to do any loader specific stuff since none of the words are defined (last time I checked) --- 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 Wed Apr 10 18:55: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 BB9BF37B404; Wed, 10 Apr 2002 18:55:34 -0700 (PDT) Received: (from fenner@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B1tYx63721; Wed, 10 Apr 2002 18:55:34 -0700 (PDT) (envelope-from fenner) Message-Id: <200204110155.g3B1tYx63721@freefall.freebsd.org> From: Bill Fenner Date: Wed, 10 Apr 2002 18:55:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/cgi 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 fenner 2002/04/10 18:55:34 PDT Modified files: en/cgi cvsweb.cgi Log: Re-add missing ; Revision Changes Path 1.80 +2 -2 www/en/cgi/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 Apr 10 19:12:13 2002 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id D695437B400; Wed, 10 Apr 2002 19:12:05 -0700 (PDT) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 569E4816D1; Thu, 11 Apr 2002 11:42:03 +0930 (CST) Date: Thu, 11 Apr 2002 11:42:03 +0930 From: Greg 'groggy' Lehey To: "M. Warner Losh" Cc: asmodai@wxs.nl, phk@critter.freebsd.dk, jhb@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement Message-ID: <20020411114203.H54120@wantadilla.lemis.com> References: <20020410145747.C22430@wantadilla.lemis.com> <20020410054248.GY40979@daemon.ninth-circle.org> <20020411102253.C8400@wantadilla.lemis.com> <20020410.194114.77337477.imp@village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020410.194114.77337477.imp@village.org> User-Agent: Mutt/1.3.23i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Sender: owner-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 Wednesday, 10 April 2002 at 19:41:14 -0600, Warner Losh wrote: > In message: <20020411102253.C8400@wantadilla.lemis.com> > "Greg 'groggy' Lehey" writes: >> On Wednesday, 10 April 2002 at 7:42:48 +0200, Jeroen Ruigrok/asmodai wrote: >>> -On [20020410 07:30], Greg 'groggy' Lehey (grog@FreeBSD.org) wrote: >>>> We're still telling people in the documentation that Userconfig is >>>> functional, and I believe it still is in -STABLE. >>> >>> Doc does not document CURRENT. Unless policy changed while I was gone. :) >>> [Or if I never paid really close attention in the first place. :) ] >> >> I wasn't specifically talking about the doc project. It's not at all >> clear from the commit log that this implied removing userconfig (in >> fact, it seems that that wasn't peter's intention at all), it's not in >> UPDATING, and it's not in the release notes. > > It is now (I added the last line). Note that careful study of the > mail in question, not all that hard to find, will show the > implications. > > 20000612: > Peter took an axe to config(8). Be sure that you read his mail > on the topic before even thinking about updating. You will > need to create a /boot/device.hints or add a hints directive > to your config file to compile them in statically. The format > of the config file has changed as well. Please see GENERIC or > NEWCARD for examples of the new format. > > Indirectly, this also breaks USERCONFIG This is not strong enough. Plenty of things got broken and then fixed again in the last two years. The whole issue here is much more important than whether we keep UserConfig or not. The question is, who makes these decisions? I'm pretty sure most people on this list don't use UserConfig, so they don't care. But what about the implications on the ease of installation? That's something that should be viewed from further away. Otherwise we're going to end up with a system which can only be used by hackers, and that was not our intention a while back. Nowadays I'm beginning to wonder. In this particular case, we have the alternatives: 1. We kill UserConfig and document it to the level we have already, causing some confusion. 2. We kill UserConfig and document it well. 3. We find somebody to replace it. Which decision we make depends on our objectives. Once upon a time we were saying that FreeBSD was ideal for installation on older machines which Microsoft had become too bloated for. It was also an objective to be easy to install. Removing UserConfig breaks this. That doesn't mean that it's wrong to remove it, but we should do it consciously. In this case, it looks as if phk misunderstood peter's intentions and axed it. Even if that's not the case, though, who makes these decisions? I think it should be the core team for anything which affects the view of the system from the outside. Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 19:14: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 9A77237B400; Wed, 10 Apr 2002 19:14:21 -0700 (PDT) Received: (from suz@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B2EL769574; Wed, 10 Apr 2002 19:14:21 -0700 (PDT) (envelope-from suz) Message-Id: <200204110214.g3B2EL769574@freefall.freebsd.org> From: SUZUKI Shinsuke Date: Wed, 10 Apr 2002 19:14:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet ip_ecn.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 suz 2002/04/10 19:14:21 PDT Modified files: sys/netinet ip_ecn.c Log: initialize local variable explicitly Reviewed by: ume Obtained from: Fujitsu guys MFC after: 1 week Revision Changes Path 1.5 +3 -1 src/sys/netinet/ip_ecn.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 19:34: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from 12-234-96-171.client.attbi.com (12-234-96-171.client.attbi.com [12.234.96.171]) by hub.freebsd.org (Postfix) with ESMTP id C698A37B405; Wed, 10 Apr 2002 19:33:53 -0700 (PDT) Received: by 12-234-96-171.client.attbi.com (Postfix, from userid 1000) id 758E9A08; Wed, 10 Apr 2002 19:32:44 -0700 (PDT) Date: Wed, 10 Apr 2002 19:32:44 -0700 From: Jonathan Mini To: Daniel O'Connor Cc: Andrzej Bialecki , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) Message-ID: <20020410193244.B34704@stylus.haikugeek.com> Mail-Followup-To: Daniel O'Connor , Andrzej Bialecki , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <4868.1018415500@critter.freebsd.dk> <3CB4A9CC.B5D46293@webgiro.com> <1018489755.20755.13.camel@chowder.gsoft.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <1018489755.20755.13.camel@chowder.gsoft.com.au>; from doconnor@gsoft.com.au on Thu, Apr 11, 2002 at 11:19:12AM +0930 Sender: owner-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 [doconnor@gsoft.com.au] wrote : > > Is there a way to write code that uses this stuff without having to > reboot continuously? (I'm not talking vmware either) $ cvs -R co -P src/sys/boot/ficl $ cd src/sys/boot/ficl $ make testmain $ ./testmain > You can access the basic Forth engine from userland but it's difficult > to do any loader specific stuff since none of the words are defined > (last time I checked) Most of the functionality is there as is. The words missing in the testmain case are: #ifndef TESTMAIN #ifdef __i386__ dictAppendWord(dp, "outb", ficlOutb, FW_DEFAULT); dictAppendWord(dp, "inb", ficlInb, FW_DEFAULT); #endif dictAppendWord(dp, "setenv", ficlSetenv, FW_DEFAULT); dictAppendWord(dp, "setenv?", ficlSetenvq, FW_DEFAULT); dictAppendWord(dp, "getenv", ficlGetenv, FW_DEFAULT); dictAppendWord(dp, "unsetenv", ficlUnsetenv, FW_DEFAULT); dictAppendWord(dp, "copyin", ficlCopyin, FW_DEFAULT); dictAppendWord(dp, "copyout", ficlCopyout, FW_DEFAULT); dictAppendWord(dp, "findfile", ficlFindfile, FW_DEFAULT); #ifdef HAVE_PNP dictAppendWord(dp, "pnpdevices",ficlPnpdevices, FW_DEFAULT); dictAppendWord(dp, "pnphandlers",ficlPnphandlers, FW_DEFAULT); #endif dictAppendWord(dp, "ccall", ficlCcall, FW_DEFAULT); #endif These need to be implemented with appropriate stubs in the userland version. I am working on some patches to make the testmain stuff a more like the loader (i.e. have a similar file tree and stuff). I'd like to set it up so that you can run an emulated environment close enough to the loader's that the boot scripts we have now will still function (e.g. simulate loading a kernel, simulate booting, etc). I'm doing this so that its much easier to develop and debug complex loader scripts. This was mainly for my sanity for doing the "userconfig.4th" stuff. However, I am not too excited about the prospect of doing "complex loader scripts" -- forth is not my cup of tea. If someone else would like to do the "userconfig.4th" stuff, please do. =) -- Jonathan Mini mini@haikugeek.com desolation... despair... plastic forks... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 19:34:26 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 EA84E37B431; Wed, 10 Apr 2002 19:34:07 -0700 (PDT) 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 g3B2Y6i05739; Wed, 10 Apr 2002 20:34:07 -0600 (MDT) (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 g3B2Y5c40176; Wed, 10 Apr 2002 20:34:05 -0600 (MDT) (envelope-from imp@village.org) Date: Wed, 10 Apr 2002 20:34:02 -0600 (MDT) Message-Id: <20020410.203402.133041092.imp@village.org> To: grog@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement From: "M. Warner Losh" In-Reply-To: <20020411114203.H54120@wantadilla.lemis.com> References: <20020411102253.C8400@wantadilla.lemis.com> <20020410.194114.77337477.imp@village.org> <20020411114203.H54120@wantadilla.lemis.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: <20020411114203.H54120@wantadilla.lemis.com> "Greg 'groggy' Lehey" writes: : > Indirectly, this also breaks USERCONFIG : : This is not strong enough. Plenty of things got broken and then fixed : again in the last two years. Yes, but when they do they got documented. Note that no such documentation exists for USERCONFIG. It has been an ex parrot for a long time and there's no documentation saying that it has been fixed. If you don't like it, write something better. : In this particular case, we have the alternatives: : : 1. We kill UserConfig and document it to the level we have already, : causing some confusion. : 2. We kill UserConfig and document it well. : 3. We find somebody to replace it. 4. Expend our energies on getting PCI autoconfig working on machines whose BIOS doesn't allocate resources. 5. Get CardBus working more reliabily. 6. Get ACPI fully integrated into the tree. These are *MUCH* more important than userconfig, and certainly much more worth getting people to help out with than userconfig. IMHO. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 19:38:34 2002 Delivered-To: cvs-all@freebsd.org Received: from 12-234-96-171.client.attbi.com (12-234-96-171.client.attbi.com [12.234.96.171]) by hub.freebsd.org (Postfix) with ESMTP id A3C3937B417; Wed, 10 Apr 2002 19:38:20 -0700 (PDT) Received: by 12-234-96-171.client.attbi.com (Postfix, from userid 1000) id 6C8A98B; Wed, 10 Apr 2002 19:37:11 -0700 (PDT) Date: Wed, 10 Apr 2002 19:37:11 -0700 From: Jonathan Mini To: Andrzej Bialecki Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) Message-ID: <20020410193711.C34704@stylus.haikugeek.com> Mail-Followup-To: Andrzej Bialecki , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <4868.1018415500@critter.freebsd.dk> <3CB4A9CC.B5D46293@webgiro.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: <3CB4A9CC.B5D46293@webgiro.com>; from abial@webgiro.com on Wed, Apr 10, 2002 at 11:08:28PM +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 Andrzej Bialecki [abial@webgiro.com] wrote : > > I wonder also how to retrieve later the hints settings from running > kernel, in order to save them into a file (a la kget, or dset before > that)... Are hints preserved and exported anywhere to userland? > Well, there are a few ways that this information can be retained between boots. You can set it up so that it is passed from the loader to the kernel to userland and back to disk. This sounds like a hack, but it might be useful in some cases (like to know when a particular boot actually worked). Alternatively, ficl scripts can write to file already allocated on a ufs partition. They can't create, remove, extend, truncate, or rename files. They can't modify directories. This is a somewhat limited interface to the disk, but it is enough to make nextboot(8) like functionality, and I've seen it used to implement a reliable failover system. We should be able to lay down device hints as well, though some hacks may be required to make it pretty. -- Jonathan Mini mini@haikugeek.com desolation... despair... plastic forks... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 19:42: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 2061937B404; Wed, 10 Apr 2002 19:42:42 -0700 (PDT) Received: (from motoyuki@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B2ggM73406; Wed, 10 Apr 2002 19:42:42 -0700 (PDT) (envelope-from motoyuki) Message-Id: <200204110242.g3B2ggM73406@freefall.freebsd.org> From: Motoyuki Konno Date: Wed, 10 Apr 2002 19:42:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/distribute Makefile distinfo pkg-plist ports/mail/distribute/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 motoyuki 2002/04/10 19:42:42 PDT Modified files: mail/distribute Makefile distinfo pkg-plist mail/distribute/files patch-aa Log: Update to 2.1 + patch 26e. OKed by: MAINTAINER Revision Changes Path 1.6 +18 -3 ports/mail/distribute/Makefile 1.2 +2 -0 ports/mail/distribute/distinfo 1.2 +13 -21 ports/mail/distribute/files/patch-aa 1.2 +11 -0 ports/mail/distribute/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 Apr 10 19:56: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 ED29537B41A; Wed, 10 Apr 2002 19:56:30 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B2uUH74948; Wed, 10 Apr 2002 19:56:30 -0700 (PDT) (envelope-from obrien) Message-Id: <200204110256.g3B2uUH74948@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 10 Apr 2002 19:56:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/cc/doc Makefile src/gnu/usr.bin/cc/f77doc Makefile X-FreeBSD-CVS-Branch: WIP_GCC31 Sender: owner-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/04/10 19:56:30 PDT Modified files: (Branch: WIP_GCC31) gnu/usr.bin/cc/doc Makefile gnu/usr.bin/cc/f77doc Makefile Log: Update infodoc building for GCC 3.1. Revision Changes Path 1.10.10.2 +21 -8 src/gnu/usr.bin/cc/doc/Makefile 1.3.10.2 +3 -2 src/gnu/usr.bin/cc/f77doc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 20:10: 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 4BF8237B400; Wed, 10 Apr 2002 20:09:52 -0700 (PDT) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B39qj80135; Wed, 10 Apr 2002 20:09:52 -0700 (PDT) (envelope-from silby) Message-Id: <200204110309.g3B39qj80135@freefall.freebsd.org> From: Mike Silbersack Date: Wed, 10 Apr 2002 20:09:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING 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/04/10 20:09:52 PDT Modified files: (Branch: RELENG_4) . UPDATING Log: Make the previous comment about the ephemeral port range change more verbose, including a note about ipnat and wording on how to change the settings in rc.conf. Suggested by: AMAKAWA Shuhei Revision Changes Path 1.73.2.57 +11 -3 src/UPDATING To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 20:31: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 58C8337B404; Wed, 10 Apr 2002 20:31:45 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B3Vja82421; Wed, 10 Apr 2002 20:31:45 -0700 (PDT) (envelope-from imp) Message-Id: <200204110331.g3B3Vja82421@freefall.freebsd.org> From: Warner Losh Date: Wed, 10 Apr 2002 20:31:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/wi if_wi.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/04/10 20:31:45 PDT Modified files: sys/dev/wi if_wi.c Log: better init Revision Changes Path 1.94 +6 -4 src/sys/dev/wi/if_wi.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 20:41: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 6971D37B400; Wed, 10 Apr 2002 20:41:13 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B3fDF83553; Wed, 10 Apr 2002 20:41:13 -0700 (PDT) (envelope-from obrien) Message-Id: <200204110341.g3B3fDF83553@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 10 Apr 2002 20:41:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/apache2/files patch-srclib:apr:build: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 obrien 2002/04/10 20:41:13 PDT Added files: www/apache2/files patch-srclib:apr:build:ltmain.sh Log: Fix 'expr' usage and allow to compile with GCC 3.1. Submitted by: Hye-Shik Chang (maintainer) Revision Changes Path 1.1 +49 -0 ports/www/apache2/files/patch-srclib:apr:build: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 Wed Apr 10 21:58: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 8A78337B419; Wed, 10 Apr 2002 21:58:11 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B4wBZ96002; Wed, 10 Apr 2002 21:58:11 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204110458.g3B4wBZ96002@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 10 Apr 2002 21:58:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/postgresql7 Makefile distinfo pkg-plist pkg-plist.doc ports/databases/postgresql7/files 502.pgsql dot.cshrc.in dot.profile.in patch-src::backend::utils::init::findbe.c pgsql.sh.tmpl post-install-notes ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/10 21:58:11 PDT Modified files: databases/postgresql7 Makefile distinfo pkg-plist databases/postgresql7/files 502.pgsql dot.cshrc.in dot.profile.in pgsql.sh.tmpl post-install-notes databases/postgresql7/scripts configure.postgresql Removed files: databases/postgresql7 pkg-plist.doc databases/postgresql7/files patch-src::backend::utils::init::findbe.c Log: upgrade to 7.2.1 PR: 36975 Submitted by: maintainer Revision Changes Path 1.95 +24 -13 ports/databases/postgresql7/Makefile 1.22 +3 -3 ports/databases/postgresql7/distinfo 1.2 +42 -30 ports/databases/postgresql7/files/502.pgsql 1.2 +2 -2 ports/databases/postgresql7/files/dot.cshrc.in 1.4 +2 -2 ports/databases/postgresql7/files/dot.profile.in 1.2 +0 -13 ports/databases/postgresql7/files/patch-src::backend::utils::init::findbe.c (dead) 1.13 +10 -6 ports/databases/postgresql7/files/pgsql.sh.tmpl 1.15 +7 -2 ports/databases/postgresql7/files/post-install-notes 1.34 +13 -13 ports/databases/postgresql7/pkg-plist 1.7 +0 -494 ports/databases/postgresql7/pkg-plist.doc (dead) 1.11 +11 -3 ports/databases/postgresql7/scripts/configure.postgresql To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 21:58: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 2B1BE37B41C; Wed, 10 Apr 2002 21:58:48 -0700 (PDT) Received: (from motoyuki@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B4wmK96133; Wed, 10 Apr 2002 21:58:48 -0700 (PDT) (envelope-from motoyuki) Message-Id: <200204110458.g3B4wmK96133@freefall.freebsd.org> From: Motoyuki Konno Date: Wed, 10 Apr 2002 21:58:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/libxine/files patch-src:audio_out:audio_oss_out.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 motoyuki 2002/04/10 21:58:48 PDT Added files: graphics/libxine/files patch-src:audio_out:audio_oss_out.c Log: Fix build problem on FreeBSD 5-current. o is moved to on 4-stable and 5-current. Revision Changes Path 1.1 +14 -0 ports/graphics/libxine/files/patch-src:audio_out:audio_oss_out.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 22: 5: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 F0B9137B400; Wed, 10 Apr 2002 22:05:17 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B55H597800; Wed, 10 Apr 2002 22:05:17 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204110505.g3B55H597800@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 10 Apr 2002 22:05:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/wmgrabimage 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/04/10 22:05:17 PDT Modified files: graphics/wmgrabimage Makefile Log: take over maintainership PR: 36978 Submitted by: sascha@root-login.org Revision Changes Path 1.8 +1 -1 ports/graphics/wmgrabimage/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 22: 8: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 D837337B400; Wed, 10 Apr 2002 22:08:34 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B58Yd01597; Wed, 10 Apr 2002 22:08:34 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204110508.g3B58Yd01597@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 10 Apr 2002 22:08:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/p5-postgresql-plperl Makefile ports/databases/postgresql-jdbc Makefile ports/databases/postgresql-odbc Makefile ports/databases/postgresql-pltcl 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/04/10 22:08:34 PDT Modified files: databases/p5-postgresql-plperl Makefile databases/postgresql-jdbc Makefile databases/postgresql-odbc Makefile databases/postgresql-pltcl Makefile Log: use the latest postgresql7 postgresql-jdbc now uses the great new USE_JAVA stuff PR: 36980 Submitted by: maintainer Revision Changes Path 1.2 +0 -1 ports/databases/p5-postgresql-plperl/Makefile 1.2 +2 -16 ports/databases/postgresql-jdbc/Makefile 1.2 +0 -1 ports/databases/postgresql-odbc/Makefile 1.2 +0 -1 ports/databases/postgresql-pltcl/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 22:14:31 2002 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by hub.freebsd.org (Postfix) with ESMTP id AFA8E37B404; Wed, 10 Apr 2002 22:14:27 -0700 (PDT) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g3B5ENeZ070687; Thu, 11 Apr 2002 07:14:24 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: "Greg 'groggy' Lehey" Cc: "M. Warner Losh" , asmodai@wxs.nl, jhb@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement In-Reply-To: Your message of "Thu, 11 Apr 2002 11:42:03 +0930." <20020411114203.H54120@wantadilla.lemis.com> Date: Thu, 11 Apr 2002 07:14:23 +0200 Message-ID: <70686.1018502063@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-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 <20020411114203.H54120@wantadilla.lemis.com>, "Greg 'groggy' Lehey" writes: >That doesn't mean that it's wrong to remove it, but we should do it >consciously. In this case, it looks as if phk misunderstood peter's >intentions and axed it. Even if that's not the case, though, who >makes these decisions? I think it should be the core team for >anything which affects the view of the system from the outside. The people who do things make decisions as part of doing things. Userconfig was a gruesome hack, it had its heyday in the ISA days, but today we can barely find ISA systems which 5.0 will fit on. Get on with life Greg, and pay more attention in the future so you don't start bikesheds a year after the fact... -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 22:15:36 2002 Delivered-To: cvs-all@freebsd.org Received: from fw.wemm.org (12-232-135-171.client.attbi.com [12.232.135.171]) by hub.freebsd.org (Postfix) with ESMTP id 27B3D37B404; Wed, 10 Apr 2002 22:15:28 -0700 (PDT) Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by fw.wemm.org (8.11.6/8.11.6) with ESMTP id g3B5FRQ26817; Wed, 10 Apr 2002 22:15:27 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id 8663638FD; Wed, 10 Apr 2002 22:15:28 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: obrien@FreeBSD.org Cc: Marcel Moolenaar , Ruslan Ermilov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr In-Reply-To: <20020410180443.D84993@dragon.nuxi.com> Date: Wed, 10 Apr 2002 22:15:28 -0700 From: Peter Wemm Message-Id: <20020411051528.8663638FD@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 "David O'Brien" wrote: > On Tue, Apr 09, 2002 at 09:48:21PM -0700, Marcel Moolenaar wrote: > > On Mon, Apr 08, 2002 at 07:10:29PM -0700, David O'Brien wrote: > > > On Mon, Apr 08, 2002 at 04:20:40PM -0700, Peter Wemm wrote: > > > > > Please commit this as it does improve things. As Peter mentioned it > > > > > would be nice to add the libstdc++ dependancy also. But even w/o tha t, > > > > > this patch is a help. > > > > > > > > No, do what Max Khon suggested. Use PROG_CXX like NetBSD does. > > > > > > Why can't we do both? If we can make PROG=foo do the right thing in the > > > common case we should make it do so. > > > > The common case is all C. That already works. If you do both, you > > break the uncommon case, in which you have C++ source files (or at > > least named like them) but want C linkage. You cannot use PROG= > > anymore. This can only lead to a third one PROG_C, which is almost > > exactly like PROG. This is confusing. > > > > I think only PROG_CXX is better. This automaticly means that PROG > > is for C. Always... > > There is a patch that implements PROG= such that we can remove the > explicit linkage of libstdc++. Unless someone writes and commits the > PROG_CXX, we have no better option than to commit ru's patch. It is not "no better option than to commit ..." - nothing is broken. I have a PROG_CXX patch already FWIW. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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 Wed Apr 10 22:16: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 AC8E037B405; Wed, 10 Apr 2002 22:16:07 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B5G7f02924; Wed, 10 Apr 2002 22:16:07 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204110516.g3B5G7f02924@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 10 Apr 2002 22:16:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/apache2 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/04/10 22:16:07 PDT Modified files: www/apache2 Makefile Log: - Disable THREADS by default (many ports people reported problems around threads) - Bump port revision - Added two more "POSIX expr" patch target for 5-CURRENT PR: 36981 Submitted by: maintainer Revision Changes Path 1.112 +8 -4 ports/www/apache2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 22:16:19 2002 Delivered-To: cvs-all@freebsd.org Received: from fw.wemm.org (12-232-135-171.client.attbi.com [12.232.135.171]) by hub.freebsd.org (Postfix) with ESMTP id 0646837B41A; Wed, 10 Apr 2002 22:16:10 -0700 (PDT) Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by fw.wemm.org (8.11.6/8.11.6) with ESMTP id g3B5GAQ26829; Wed, 10 Apr 2002 22:16:10 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id 9A8A63810; Wed, 10 Apr 2002 22:16:11 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc.network In-Reply-To: Date: Wed, 10 Apr 2002 22:16:11 -0700 From: Peter Wemm Message-Id: <20020411051611.9A8A63810@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 Dag-Erling Smorgrav wrote: > Peter Wemm writes: > > Log: > > Since sshd expects /etc/ssh/ssh_host_rsa_key to exist, we had better > > create it. Also specify protocol v1/v2 in case people wonder why we > > generate two RSA keys. > > No! This was omitted on purpose. Please back it out. Well then, please fix sshd so that it stops complaining about it missing at startup! Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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 Wed Apr 10 22:17: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from fw.wemm.org (12-232-135-171.client.attbi.com [12.232.135.171]) by hub.freebsd.org (Postfix) with ESMTP id 471B437B432; Wed, 10 Apr 2002 22:16:48 -0700 (PDT) Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by fw.wemm.org (8.11.6/8.11.6) with ESMTP id g3B5GmQ26843; Wed, 10 Apr 2002 22:16:48 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id 0CA5D38FD; Wed, 10 Apr 2002 22:16:49 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf In-Reply-To: Date: Wed, 10 Apr 2002 22:16:49 -0700 From: Peter Wemm Message-Id: <20020411051649.0CA5D38FD@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 Dag-Erling Smorgrav wrote: > Peter Wemm writes: > > Log: > > > > Add /etc/rc.d to the startup dirs list. It is a convenient place to put > > custom startup scripts instead of hacking a shared rc.local. eg: ftpd in > > listener mode, or maybe even sendmail or another mailer, etc. > > > > This closes the door on switching to NetBSD's rc system. Please back > it out. What "NetBSD rc system"? Where is the code? Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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 Wed Apr 10 22: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 98CB137B405; Wed, 10 Apr 2002 22:25:19 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B5PJA04118; Wed, 10 Apr 2002 22:25:19 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204110525.g3B5PJA04118@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 10 Apr 2002 22:25:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/slashem-tty 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/04/10 22:25:19 PDT Modified files: games/slashem-tty Makefile distinfo Log: upgrade to 0.0.6E.4F.8 PR: 36986 Submitted by: maintainer Revision Changes Path 1.6 +1 -1 ports/games/slashem-tty/Makefile 1.6 +1 -1 ports/games/slashem-tty/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 22:26:43 2002 Delivered-To: cvs-all@freebsd.org Received: from fw.wemm.org (12-232-135-171.client.attbi.com [12.232.135.171]) by hub.freebsd.org (Postfix) with ESMTP id EED5D37B400; Wed, 10 Apr 2002 22:26:33 -0700 (PDT) Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by fw.wemm.org (8.11.6/8.11.6) with ESMTP id g3B5QXQ26873; Wed, 10 Apr 2002 22:26:33 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id 523DD3810; Wed, 10 Apr 2002 22:26:34 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 Cc: Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc.network In-Reply-To: <20020411051611.9A8A63810@overcee.wemm.org> Date: Wed, 10 Apr 2002 22:26:34 -0700 From: Peter Wemm Message-Id: <20020411052634.523DD3810@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 Peter Wemm wrote: > Dag-Erling Smorgrav wrote: > > Peter Wemm writes: > > > Log: > > > Since sshd expects /etc/ssh/ssh_host_rsa_key to exist, we had better > > > create it. Also specify protocol v1/v2 in case people wonder why we > > > generate two RSA keys. > > > > No! This was omitted on purpose. Please back it out. > > Well then, please fix sshd so that it stops complaining about it missing > at startup! More constructively, here's the error message: peter@ref5[10:23pm]~-5# /usr/sbin/sshd Could not load host key: /etc/ssh/ssh_host_rsa_key The sshd_config is purely default: peter@ref5[10:23pm]~-6# grep HostKey /etc/ssh/sshd_config # HostKey for protocol version 1 #HostKey /etc/ssh/ssh_host_key # HostKeys for protocol version 2 #HostKey /etc/ssh/ssh_host_rsa_key #HostKey /etc/ssh/ssh_host_dsa_key Also, can you fix this while you're there? Logging in causes this: Apr 10 18:06:56 ref5 sshd[540]: in _openpam_check_error_code(): %s(): unexpected return value %d(): unexpected return value 673339764 peter@ref5[10:25pm]~-8# diff /etc/pam.d/sshd /usr/src/etc/pam.d/sshd peter@ref5[10:25pm]~-9# cd /usr/src/etc; cvs -R diff -u sshd @@ -6,6 +6,7 @@ # auth auth required pam_nologin.so no_warn +auth sufficient pam_krb5.so no_warn auth required pam_unix.so no_warn try_first_pass # account Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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 Wed Apr 10 22:27:14 2002 Delivered-To: cvs-all@freebsd.org Received: from a96180.upc-a.chello.nl (a96180.upc-a.chello.nl [62.163.96.180]) by hub.freebsd.org (Postfix) with ESMTP id 0CF4237B404; Wed, 10 Apr 2002 22:27:10 -0700 (PDT) Received: by a96180.upc-a.chello.nl (Postfix, from userid 1001) id 5AAC72170; Thu, 11 Apr 2002 07:27:08 +0200 (CEST) Date: Thu, 11 Apr 2002 07:27:08 +0200 From: Jeroen Ruigrok/asmodai To: Bill Fenner Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/cgi cvsweb.cgi Message-ID: <20020411052708.GO40979@daemon.ninth-circle.org> References: <200204110155.g3B1tYx63721@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204110155.g3B1tYx63721@freefall.freebsd.org> User-Agent: Mutt/1.3.28i Organisation: Ninth Circle Enterprises Sender: owner-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 [20020411 04:00], Bill Fenner (fenner@FreeBSD.org) wrote: > Log: > Re-add missing ; Thanks. But can someone please regen the webserver files? Since cvsweb is still triggering internal server errors for me. -- Jeroen Ruigrok van der Werven / asmodai / Kita no Mono asmodai@[wxs.nl|xmach.org], finger asmodai@ninth-circle.org http://www.softweyr.com/asmodai/ | http://www.[tendra|xmach].org/ Of all that is to come, the Dream has just begun... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 22:30: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 1EED237B417; Wed, 10 Apr 2002 22:30:30 -0700 (PDT) Received: (from lkoeller@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B5UUQ04807; Wed, 10 Apr 2002 22:30:30 -0700 (PDT) (envelope-from lkoeller) Message-Id: <200204110530.g3B5UUQ04807@freefall.freebsd.org> From: Lars Koeller Date: Wed, 10 Apr 2002 22:30:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/grace 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 lkoeller 2002/04/10 22:30:30 PDT Modified files: math/grace Makefile distinfo Log: o Update to 5.1.7 PR: 36957 Submitted by: AMAKAWA Shuhei Revision Changes Path 1.25 +1 -1 ports/math/grace/Makefile 1.9 +1 -1 ports/math/grace/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 22:36:42 2002 Delivered-To: cvs-all@freebsd.org Received: from fw.wemm.org (12-232-135-171.client.attbi.com [12.232.135.171]) by hub.freebsd.org (Postfix) with ESMTP id 8123437B41B; Wed, 10 Apr 2002 22:36:33 -0700 (PDT) Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by fw.wemm.org (8.11.6/8.11.6) with ESMTP id g3B5aXQ26908; Wed, 10 Apr 2002 22:36:33 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id 695D73810; Wed, 10 Apr 2002 22:36:33 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: "Greg 'groggy' Lehey" Cc: "M. Warner Losh" , asmodai@wxs.nl, phk@critter.freebsd.dk, jhb@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Feature removal without replacement In-Reply-To: <20020411114203.H54120@wantadilla.lemis.com> Date: Wed, 10 Apr 2002 22:36:33 -0700 From: Peter Wemm Message-Id: <20020411053633.695D73810@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 "Greg 'groggy' Lehey" wrote: > On Wednesday, 10 April 2002 at 19:41:14 -0600, Warner Losh wrote: > > In message: <20020411102253.C8400@wantadilla.lemis.com> > > "Greg 'groggy' Lehey" writes: > >> On Wednesday, 10 April 2002 at 7:42:48 +0200, Jeroen Ruigrok/asmodai wrot e: > >>> -On [20020410 07:30], Greg 'groggy' Lehey (grog@FreeBSD.org) wrote: > >>>> We're still telling people in the documentation that Userconfig is > >>>> functional, and I believe it still is in -STABLE. > >>> > >>> Doc does not document CURRENT. Unless policy changed while I was gone. : ) > >>> [Or if I never paid really close attention in the first place. :) ] > >> > >> I wasn't specifically talking about the doc project. It's not at all > >> clear from the commit log that this implied removing userconfig (in > >> fact, it seems that that wasn't peter's intention at all), it's not in > >> UPDATING, and it's not in the release notes. > > > > It is now (I added the last line). Note that careful study of the > > mail in question, not all that hard to find, will show the > > implications. > > > > 20000612: > > Peter took an axe to config(8). Be sure that you read his mail > > on the topic before even thinking about updating. You will > > need to create a /boot/device.hints or add a hints directive > > to your config file to compile them in statically. The format > > of the config file has changed as well. Please see GENERIC or > > NEWCARD for examples of the new format. > > > > Indirectly, this also breaks USERCONFIG > > This is not strong enough. Plenty of things got broken and then fixed > again in the last two years. Well, Greg, Since it is obviously a national f*cking emergency, I will drop everything and get right on it! Since nobody has cared enough to even mention the fact that it has been broken for the last two years is obviously no excuse for forgetting about it while we had *real* problems to deal with. As long as we've got our priorities right, I guess that's all that matters! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 22:43: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 72F2537B419; Wed, 10 Apr 2002 22:43:10 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B5hAI06321; Wed, 10 Apr 2002 22:43:10 -0700 (PDT) (envelope-from imp) Message-Id: <200204110543.g3B5hAI06321@freefall.freebsd.org> From: Warner Losh Date: Wed, 10 Apr 2002 22:43:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if_ieee80211.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/04/10 22:43:10 PDT Modified files: sys/net if_ieee80211.h Log: Add two more IEEE80211 defines for status. Revision Changes Path 1.6 +3 -1 src/sys/net/if_ieee80211.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 22:44: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 4C2CA37B434; Wed, 10 Apr 2002 22:43:50 -0700 (PDT) Received: (from cy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B5hmn06394; Wed, 10 Apr 2002 22:43:48 -0700 (PDT) (envelope-from cy) Message-Id: <200204110543.g3B5hmn06394@freefall.freebsd.org> From: Cy Schubert Date: Wed, 10 Apr 2002 22:43:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/fvwm-themes 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 cy 2002/04/10 22:43:48 PDT Modified files: x11-wm/fvwm-themes Makefile Log: This port will only cause fvwm2 (and fvwm2-devel) to hang if they are compiled with Gnome support. As it is unlikely users who use fvwm2 with Gnome will install this port, this should not be a problem in the interim until a permanent solution is found. Revision Changes Path 1.4 +0 -2 ports/x11-wm/fvwm-themes/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 22:45: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 C777937B416; Wed, 10 Apr 2002 22:45:17 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B5jH006695; Wed, 10 Apr 2002 22:45:17 -0700 (PDT) (envelope-from imp) Message-Id: <200204110545.g3B5jH006695@freefall.freebsd.org> From: Warner Losh Date: Wed, 10 Apr 2002 22:45:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/10 22:45:17 PDT Modified files: . UPDATING Log: Update to note my dropping the strong lock on this file. Clarify what my last note about USERCONFIG really means and how to know if it is fixed. Revision Changes Path 1.199 +8 -9 src/UPDATING To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 22:46:49 2002 Delivered-To: cvs-all@freebsd.org Received: from carbon.slackerbsd.org (pcp01400762pcs.glnodn01.pa.comcast.net [68.80.148.54]) by hub.freebsd.org (Postfix) with ESMTP id 4DC9F37B416 for ; Wed, 10 Apr 2002 22:46:46 -0700 (PDT) Received: from carbon.slackerbsd.org (cschmidt@localhost [127.0.0.1]) by carbon.slackerbsd.org (8.12.2/8.12.2) with ESMTP id g3B5kfsc045559 for ; Thu, 11 Apr 2002 05:46:41 GMT (envelope-from cschmidt@slackerbsd.org) Received: (from cschmidt@localhost) by carbon.slackerbsd.org (8.12.2/8.12.2/Submit) id g3B5kfxv045558 for cvs-all@FreeBSD.ORG; Thu, 11 Apr 2002 05:46:41 GMT X-Authentication-Warning: carbon.slackerbsd.org: cschmidt set sender to cschmidt@slackerbsd.org using -f Date: Thu, 11 Apr 2002 01:46:40 -0400 From: Carl Schmidt To: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc/defaults rc.conf Message-ID: <20020411054640.GA30873@carbon.slackerbsd.org> Reply-To: Carl Schmidt Mail-Followup-To: cvs-all@FreeBSD.ORG References: <20020411051649.0CA5D38FD@overcee.wemm.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020411051649.0CA5D38FD@overcee.wemm.org> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 10, 2002 at 10:16:49PM -0700, Peter Wemm wrote: > Dag-Erling Smorgrav wrote: > > Peter Wemm writes: > > > Log: > > > > > > Add /etc/rc.d to the startup dirs list. It is a convenient place to put > > > custom startup scripts instead of hacking a shared rc.local. eg: ftpd in > > > listener mode, or maybe even sendmail or another mailer, etc. > > > > > > > This closes the door on switching to NetBSD's rc system. Please back > > it out. > > What "NetBSD rc system"? Where is the code? > > Cheers, > -Peter rcNG was an attempt at porting NetBSD's rc system to FreeBSD. I think it is one of those "would be nice to have but in reality it is not necessary and I have better things to do" cases. There is a url on the projects page if I recall correctly. -- Carl Schmidt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 22:51: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.musha.org (daemon.musha.org [218.44.187.2]) by hub.freebsd.org (Postfix) with ESMTP id 4BAE837B400; Wed, 10 Apr 2002 22:51:01 -0700 (PDT) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id AEF1B4D89A; Thu, 11 Apr 2002 14:50:59 +0900 (JST) Date: Thu, 11 Apr 2002 14:50:59 +0900 Message-ID: <86662yokak.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Bill Fenner Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/cgi cvsweb.cgi In-Reply-To: <200204110155.g3B1tYx63721@freefall.freebsd.org> References: <200204110155.g3B1tYx63721@freefall.freebsd.org> User-Agent: Wanderlust/2.9.8 (Unchained Melody) SEMI/1.14.3 (Ushinoya) LIMIT/1.14.7 (Fujiidera) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE 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 At Wed, 10 Apr 2002 18:55:34 -0700 (PDT), Bill Fenner wrote: > fenner 2002/04/10 18:55:34 PDT > > Modified files: > en/cgi cvsweb.cgi > Log: > Re-add missing ; Sorry for the trouble and thanks for fixing. I thought perl -wc passed until I adjusted that very CVS tag line I edited in the last minute before committing.. -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Somewhere out of a memory.. of lighted streets on quiet nights.." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 23: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 ADD0537B416; Wed, 10 Apr 2002 23:12:54 -0700 (PDT) Received: (from wpaul@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B6CsT14107; Wed, 10 Apr 2002 23:12:54 -0700 (PDT) (envelope-from wpaul) Message-Id: <200204110612.g3B6CsT14107@freefall.freebsd.org> From: Bill Paul Date: Wed, 10 Apr 2002 23:12:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_rl.c if_rlreg.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 wpaul 2002/04/10 23:12:53 PDT Modified files: sys/pci if_rl.c if_rlreg.h Log: Nortel Networks sells a RealTek 8139-based NIC that's basically the same thing as the SMC 1211, but with their own vendor ID. Update the device list to support this NIC. (Discovered these cards lying around the lab at work.) Revision Changes Path 1.68 +2 -0 src/sys/pci/if_rl.c 1.22 +5 -0 src/sys/pci/if_rlreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 23:17:43 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 65E5037B400; Wed, 10 Apr 2002 23:17:35 -0700 (PDT) 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 QAA28592; Thu, 11 Apr 2002 16:17:05 +1000 Date: Thu, 11 Apr 2002 16:16:49 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: "David O'Brien" Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/share/mk bsd.sys.mk In-Reply-To: <20020410180036.B84993@dragon.nuxi.com> Message-ID: <20020411160322.B3429-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, 10 Apr 2002, David O'Brien wrote: > On Wed, Apr 10, 2002 at 06:26:00PM +1000, Bruce Evans wrote: > > This gives me more to check before deciding if removing it easy enough :-). > > I think modifying the sources files to not produce syntax errors for > > foreign macros should be acceptable in most cases, since files in contrib > > should be portable so they can't depend on OS-dependent macros, > > Unfortunately when we take them from NetBSD they do. lukemftp and lukemftpd are counterexamples. I think most sources in contrib should be like this. > > and files > > outside of contrib get modified anyway. > > You did not respond to creating the non-standard /usr/include/scm.h as a > place to put all these various compatibility macros. I like it better than for FreeBSD ids, but think it would just increase unportability. You would still have to edit files to add it, and it is not so easy to kill using Makefile hacks like -D__RCSID=__IGNORE where __IGNORE() expands to nothing. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 23:20: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 88A5937B417; Wed, 10 Apr 2002 23:20:47 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B6KlP15413; Wed, 10 Apr 2002 23:20:47 -0700 (PDT) (envelope-from kris) Message-Id: <200204110620.g3B6KlP15413@freefall.freebsd.org> From: Kris Kennaway Date: Wed, 10 Apr 2002 23:20:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www 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/04/10 23:20:47 PDT Modified files: www Makefile Log: Add jakarta-tomcat4 and remove jakarta-tomcat3 Pointy hat trick to: znerd Revision Changes Path 1.485 +1 -1 ports/www/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 23:23:14 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 D14D737B4BD; Wed, 10 Apr 2002 23:22:18 -0700 (PDT) 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 g3B6Lri06701; Thu, 11 Apr 2002 00:21:53 -0600 (MDT) (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 g3B6Llc41418; Thu, 11 Apr 2002 00:21:48 -0600 (MDT) (envelope-from imp@village.org) Date: Thu, 11 Apr 2002 00:21:48 -0600 (MDT) yDate: Thu, 11 Apr 2002 00:21:44 -0600 (MDT) Message-Id: <20020411.002144.38305372.imp@village.org> To: bde@zeta.org.au Cc: obrien@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.sys.mk From: "M. Warner Losh" In-Reply-To: <20020411160322.B3429-100000@gamplex.bde.org> References: <20020410180036.B84993@dragon.nuxi.com> <20020411160322.B3429-100000@gamplex.bde.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: <20020411160322.B3429-100000@gamplex.bde.org> Bruce Evans writes: : > You did not respond to creating the non-standard /usr/include/scm.h as a : > place to put all these various compatibility macros. : : I like it better than for FreeBSD ids, but think it would : just increase unportability. You would still have to edit files to add it, : and it is not so easy to kill using Makefile hacks like -D__RCSID=__IGNORE : where __IGNORE() expands to nothing. CFLAGS += -include scm.h might be a way to deal (at least for gnu compilers) :-) Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 23:29: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 1A76137B405; Wed, 10 Apr 2002 23:29:45 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B6TjL16571; Wed, 10 Apr 2002 23:29:45 -0700 (PDT) (envelope-from murray) Message-Id: <200204110629.g3B6TjL16571@freefall.freebsd.org> From: Murray Stokely Date: Wed, 10 Apr 2002 23:29:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/advocacy myths.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 murray 2002/04/10 23:29:45 PDT Modified files: en/advocacy myths.sgml Log: Spell 'clusters' properly. Spell 'definitely' properly. Update information about freebsdmall.com. Revision Changes Path 1.11 +4 -3 www/en/advocacy/myths.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 23:30: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 CF37537B400; Wed, 10 Apr 2002 23:30:21 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B6UL216773; Wed, 10 Apr 2002 23:30:21 -0700 (PDT) (envelope-from kris) Message-Id: <200204110630.g3B6UL216773@freefall.freebsd.org> From: Kris Kennaway Date: Wed, 10 Apr 2002 23:30:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print 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/04/10 23:30:21 PDT Modified files: print Makefile Log: Remove texinfo Pointy hat to: dwcjr Revision Changes Path 1.199 +0 -1 ports/print/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 23:35: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 5DFBA37B404; Wed, 10 Apr 2002 23:35:14 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B6ZE419158; Wed, 10 Apr 2002 23:35:14 -0700 (PDT) (envelope-from murray) Message-Id: <200204110635.g3B6ZE419158@freefall.freebsd.org> From: Murray Stokely Date: Wed, 10 Apr 2002 23:35:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/advocacy myths.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 murray 2002/04/10 23:35:14 PDT Modified files: en/advocacy myths.sgml Log: Actually, ISTR that freesoftware.com was routinely handling 6,000 simultaneous FTP logins on a single FreeBSD machine. At its height, this machine served 10,000 FTP connections at once. "The FreeBSD Corporate Networker's Guide" agrees with my memory, but David Greenman is free to correct me if I'm wrong. Revision Changes Path 1.12 +1 -1 www/en/advocacy/myths.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 23:35:54 2002 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-169-104-17.dsl.lsan03.pacbell.net [64.169.104.17]) by hub.freebsd.org (Postfix) with ESMTP id B9F9F37B419; Wed, 10 Apr 2002 23:35:35 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 3530B66D25; Wed, 10 Apr 2002 23:35:35 -0700 (PDT) Date: Wed, 10 Apr 2002 23:35:35 -0700 From: Kris Kennaway To: Kris Kennaway Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, znerd@FreeBSD.org Subject: Re: cvs commit: ports/www Makefile Message-ID: <20020410233534.D82097@xor.obsecurity.org> References: <200204110620.g3B6KlP15413@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="llIrKcgUOe3dCx0c" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200204110620.g3B6KlP15413@freefall.freebsd.org>; from kris@FreeBSD.org on Wed, Apr 10, 2002 at 11:20:47PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --llIrKcgUOe3dCx0c Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 10, 2002 at 11:20:47PM -0700, Kris Kennaway wrote: > kris 2002/04/10 23:20:47 PDT >=20 > Modified files: > www Makefile=20 > Log: > Add jakarta-tomcat4 and remove jakarta-tomcat3 ^^^^^^^^^^^^^^^ This was a typo; the commit actually removes the jakarta-tomcat port. I was thinking about the jakarta-tomcat3 port when I wrote the message, because znerd also forgot to add that one to the Makefile when it was repo-copied :-) Kris --llIrKcgUOe3dCx0c 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 iD8DBQE8tS62Wry0BWjoQKURAiB7AJ4ki+ZCehIEQuPQJB+a3cYk9Ew6aQCfehc1 VTATzoDQF1EuybkkpuEgWoY= =jBQ9 -----END PGP SIGNATURE----- --llIrKcgUOe3dCx0c-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 23:42: 3 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 D79C637B404; Wed, 10 Apr 2002 23:41:59 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3B6fwYm072783; Wed, 10 Apr 2002 23:41:58 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3B6ehEc072778; Wed, 10 Apr 2002 23:40:43 -0700 (PDT) Date: Wed, 10 Apr 2002 23:40:43 -0700 From: "David O'Brien" To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr Message-ID: <20020410234043.A72728@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20020410180443.D84993@dragon.nuxi.com> <20020411051528.8663638FD@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: <20020411051528.8663638FD@overcee.wemm.org>; from peter@wemm.org on Wed, Apr 10, 2002 at 10:15:28PM -0700 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, Apr 10, 2002 at 10:15:28PM -0700, Peter Wemm wrote: > > I have a PROG_CXX patch already FWIW. Cool. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Apr 10 23:53: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 8643E37B419; Wed, 10 Apr 2002 23:53:42 -0700 (PDT) Received: (from mike@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B6rgg22073; Wed, 10 Apr 2002 23:53:42 -0700 (PDT) (envelope-from mike) Message-Id: <200204110653.g3B6rgg22073@freefall.freebsd.org> From: Mike Barcroft Date: Wed, 10 Apr 2002 23:53:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/libkern bsearch.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/04/10 23:53:41 PDT Modified files: sys/libkern bsearch.c Log: Remove bogus include of . Revision Changes Path 1.5 +0 -1 src/sys/libkern/bsearch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 0: 2:16 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 D390737B41A; Thu, 11 Apr 2002 00:02:10 -0700 (PDT) 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 RAA01718; Thu, 11 Apr 2002 17:01:48 +1000 Date: Thu, 11 Apr 2002 17:00:49 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Jake Burkholder Cc: John Baldwin , , , Brian Somers Subject: Re: cvs commit: src/sys/dev/digi digi.c In-Reply-To: <20020410105203.B209@locore.ca> Message-ID: <20020411162116.D3455-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, 10 Apr 2002, Jake Burkholder wrote: > Apparently, On Wed, Apr 10, 2002 at 09:06:18AM -0400, > John Baldwin said words to the effect of; > > I've thought about having some sort of separate API for code that just ways to > > delay. Right now they use tsleep() on a channel that never gets woken up with > > a timeout. If we had a delay(int timo) function then it could use a callout > > when callouts were working and fall back to DELAY() in the cold case. > > No, this is wrong. Anything that uses cold is wrong. The correct fix is to > move the clock initialization earlier in boot to be before the device probe. This can't be done in a machine independent way. Clock interrupts might be shared, and then enabling them first would cause either endless interrupts if another device is driving the interrupt. This happens not to be a problem on i386's because clock interrupts aren't shared. I think this is still a problem for configuration of drivers with shared non-clock interrupts. The handling of this seems to have regressed in -current on i386's. RELENG_4 at least has large comments about it. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 0: 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 B484537B419; Thu, 11 Apr 2002 00:03:32 -0700 (PDT) Received: (from wpaul@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B73WT23991; Thu, 11 Apr 2002 00:03:32 -0700 (PDT) (envelope-from wpaul) Message-Id: <200204110703.g3B73WT23991@freefall.freebsd.org> From: Bill Paul Date: Thu, 11 Apr 2002 00:03:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/mii miidevs rlphy.c src/sys/pci if_rl.c if_rlreg.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 wpaul 2002/04/11 00:03:31 PDT Modified files: (Branch: RELENG_4) sys/dev/mii miidevs rlphy.c sys/pci if_rl.c if_rlreg.h Log: MFC: fix parallel link detection and add support for Nortel Networks card Revision Changes Path 1.4.2.9 +4 -0 src/sys/dev/mii/miidevs 1.2.2.3 +113 -1 src/sys/dev/mii/rlphy.c 1.38.2.11 +12 -0 src/sys/pci/if_rl.c 1.14.2.3 +5 -0 src/sys/pci/if_rlreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 0: 4: 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 B417437B405; Thu, 11 Apr 2002 00:04:02 -0700 (PDT) Received: (from wpaul@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B742R24086; Thu, 11 Apr 2002 00:04:02 -0700 (PDT) (envelope-from wpaul) Message-Id: <200204110704.g3B742R24086@freefall.freebsd.org> From: Bill Paul Date: Thu, 11 Apr 2002 00:04:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/mii miidevs.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 wpaul 2002/04/11 00:04:02 PDT Modified files: (Branch: RELENG_4) sys/dev/mii miidevs.h Log: regenerate Revision Changes Path 1.4.2.9 +6 -1 src/sys/dev/mii/miidevs.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 0:12:37 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 A54D537B405; Thu, 11 Apr 2002 00:12:26 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g3B7CIn33019; Thu, 11 Apr 2002 10:12:18 +0300 (EEST) (envelope-from ru) Date: Thu, 11 Apr 2002 10:12:18 +0300 From: Ruslan Ermilov To: "David O'Brien" Cc: Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin Makefile Message-ID: <20020411071218.GB27950@sunbay.com> References: <200204082038.g38KcuJ36871@freefall.freebsd.org> <20020409082654.GE73475@sunbay.com> <20020410045830.GB10113@dhcp01.pn.xcllnt.net> <20020410174228.GJ98684@sunbay.com> <20020410180308.C84993@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mxv5cy4qt+RJ9ypb" Content-Disposition: inline In-Reply-To: <20020410180308.C84993@dragon.nuxi.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 --mxv5cy4qt+RJ9ypb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 10, 2002 at 06:03:08PM -0700, David O'Brien wrote: > On Wed, Apr 10, 2002 at 08:42:28PM +0300, Ruslan Ermilov wrote: > > > > This is IMHO bogus. NO_CXX only means that (GNU) c++ shouldn't > > > > be built, it doesn't imply that the host doesn't have another > > > > working (probably non-GNU) c++ compiler that can build Groff. > > >=20 > > > Unfortunately this is irrelevant, because a buildworld will not > > > use it if it exists. The bottomline is that if you don't build > > > libstdc++, you cannot build anything that depends on it. Hence, > > > making gperf conditional on NO_CXX is correct. > > >=20 > > I was talking about Groff. >=20 > So was Marcel. Please come up with a way to not compile Groff and gperf > if NO_CXX is set. The assumption there is some external C++ compiler is > a rather bogus one. If there is an external C++ compiler the user should > be setting CXX=3D to it. The IA-64 case that Peter yelled at me about is > also a very special case. The TYPICAL case is an Alpha or i386 box with > NO_CXX set and which we cannot assume there is a C++ compiler available. > Otherwise I will simply remove the NO_CXX option as it is broken > otherwise. >=20 If you want to change the semantics of NO_CXX from recently "don't compile c++ compiler" to "don't compile c++ compiler and c++ programs", you will also have to disable building of lib/libc_r, as it also uses c++, in its uthread/uthread_autoinit.cc. What if the user has a compiler installed from the Ports collection and wants to compile c++ programs using it? Cheers, --=20 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 --mxv5cy4qt+RJ9ypb 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 iD8DBQE8tTdSUkv4P6juNwoRAhJYAJ45+AVp5MAMRAmmWJfzcruruyNpfACeMlsF 1neM1pszqhvqw8JQM+k7jFE= =6Blh -----END PGP SIGNATURE----- --mxv5cy4qt+RJ9ypb-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 0:13:37 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 1B72237B416; Thu, 11 Apr 2002 00:13:24 -0700 (PDT) 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 RAA03076; Thu, 11 Apr 2002 17:13:09 +1000 Date: Thu, 11 Apr 2002 17:13:09 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Scott Long Cc: Brian Somers , , Subject: Re: cvs commit: src/sys/dev/digi digi.c digi.h digi_isa.c In-Reply-To: <1018452343.10637.2.camel@hollin.btc.adaptec.com> Message-ID: <20020411170441.B3455-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 10 Apr 2002, Scott Long wrote: > On Wed, 2002-04-10 at 09:32, Brian Somers wrote: > > > brian 2002/04/10 07:32:56 PDT > > > > Modified files: > > sys/dev/digi digi.c digi.h digi_isa.c > > Log: > > Yet another adjustment of digi_delay(). The delay is now consistent > > irrespective of whether tsleep() or DELAY() is used. > > > > Revision Changes Path > > 1.27 +8 -8 src/sys/dev/digi/digi.c > > 1.12 +2 -1 src/sys/dev/digi/digi.h > > 1.9 +9 -9 src/sys/dev/digi/digi_isa.c > ... > Instead of jumping through all of these hoops, why can't you do a > config_intrhook_establish() to have the delay-sensitive operations done > at a more appropriate time? This will work for both the at-boot and > post-boot cases. Jumping through hooks is harder than through hoops, but may be necessary. config_intrhook_establish() is part of Justin Gibbs' solution for the problem that interrupts might not work at config time. Even clock interrupts might not work at config time, so device drivers shouldn't call timeout() at config time. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 0:18:20 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 6475737B41A; Thu, 11 Apr 2002 00:18:15 -0700 (PDT) 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 RAA03720; Thu, 11 Apr 2002 17:17:21 +1000 Date: Thu, 11 Apr 2002 17:17:11 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Brian Somers Cc: Scott Long , Brian Somers , , Subject: Re: cvs commit: src/sys/dev/digi digi.c digi.h digi_isa.c In-Reply-To: <200204101744.g3AHi4OF056430@hak.lan.Awfulhak.org> Message-ID: <20020411171354.R3455-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, 10 Apr 2002, Brian Somers wrote: > > [Brian Somers didn't write] > > Instead of jumping through all of these hoops, why can't you do a > > config_intrhook_establish() to have the delay-sensitive operations done > > at a more appropriate time? This will work for both the at-boot and > > post-boot cases. > > While this would be a clean way of doing things, I'd prefer not to > defer the card initialisation. Ultimately I'd like to be able to use > the device as a console. The low level parts of the console driver can't use interrupts, and the high level parts are insignificantly different from ordinary tty drivers. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 0:19: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 D132F37B400; Thu, 11 Apr 2002 00:19:30 -0700 (PDT) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B7JUt30600; Thu, 11 Apr 2002 00:19:30 -0700 (PDT) (envelope-from alfred) Message-Id: <200204110719.g3B7JUt30600@freefall.freebsd.org> From: Alfred Perlstein Date: Thu, 11 Apr 2002 00:19:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/rpc.lockd lockd.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/04/11 00:19:30 PDT Modified files: usr.sbin/rpc.lockd lockd.c Log: When binding to transports if getnetconfigent() fails then actually print out the correct transport it failed on rather than always spitting out 'udp', also call nc_sperror() to give a more verbose error message detailing the problem. Revision Changes Path 1.13 +2 -1 src/usr.sbin/rpc.lockd/lockd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 0:21: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 5515537B416; Thu, 11 Apr 2002 00:21:17 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B7LHR30991; Thu, 11 Apr 2002 00:21:17 -0700 (PDT) (envelope-from imp) Message-Id: <200204110721.g3B7LHR30991@freefall.freebsd.org> From: Warner Losh Date: Thu, 11 Apr 2002 00:21:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/wi if_wavelan_ieee.h if_wi.c if_wi_pccard.c if_wi_pci.c if_wireg.h if_wivar.h wi_hostap.c wi_hostap.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/04/11 00:21:17 PDT Modified files: sys/dev/wi if_wavelan_ieee.h if_wi.c if_wi_pccard.c if_wi_pci.c if_wireg.h if_wivar.h Added files: sys/dev/wi wi_hostap.c wi_hostap.h Log: Integrate the hostap stuff that Thomas Skibo wrote. This code was for 4.5-release, so I've ported it to -current and made a few minor tweaks. The biggest non-style tweak was to not make access point the default. More changes will be needed to get this actually working, but I wanted to get a relatively pure baseline. This doesn't seem to break what works now. Revision Changes Path 1.12 +14 -2 src/sys/dev/wi/if_wavelan_ieee.h 1.95 +398 -50 src/sys/dev/wi/if_wi.c 1.5 +3 -0 src/sys/dev/wi/if_wi_pccard.c 1.3 +3 -0 src/sys/dev/wi/if_wi_pci.c 1.31 +19 -1 src/sys/dev/wi/if_wireg.h 1.4 +7 -0 src/sys/dev/wi/if_wivar.h 1.1 +1189 -0 src/sys/dev/wi/wi_hostap.c (new) 1.1 +136 -0 src/sys/dev/wi/wi_hostap.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 0:38:38 2002 Delivered-To: cvs-all@freebsd.org Received: from kayak.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by hub.freebsd.org (Postfix) with ESMTP id A7BF837B419; Thu, 11 Apr 2002 00:38:31 -0700 (PDT) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by kayak.xcllnt.net (8.11.6/8.11.4) with ESMTP id g3B7cVJ22638; Thu, 11 Apr 2002 00:38:31 -0700 (PDT) (envelope-from marcel@kayak.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp01.pn.xcllnt.net (8.12.2/8.12.2) with ESMTP id g3B7cboM001540; Thu, 11 Apr 2002 00:38:37 -0700 (PDT) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.2/8.12.2/Submit) id g3B7cbXS001539; Thu, 11 Apr 2002 00:38:37 -0700 (PDT) Date: Thu, 11 Apr 2002 00:38:37 -0700 From: Marcel Moolenaar To: Ruslan Ermilov Cc: "David O'Brien" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin Makefile Message-ID: <20020411073837.GC1216@dhcp01.pn.xcllnt.net> References: <200204082038.g38KcuJ36871@freefall.freebsd.org> <20020409082654.GE73475@sunbay.com> <20020410045830.GB10113@dhcp01.pn.xcllnt.net> <20020410174228.GJ98684@sunbay.com> <20020410180308.C84993@dragon.nuxi.com> <20020411071218.GB27950@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020411071218.GB27950@sunbay.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 Thu, Apr 11, 2002 at 10:12:18AM +0300, Ruslan Ermilov wrote: > > What if the user has a compiler installed from the Ports collection and > wants to compile c++ programs using it? He can pick Mozilla... :-) Seriously: the idea is not bad, but it simply doesn't work without putting the necessary support in place. At this time NO_CXX breaks a buildworld because libstdc++ is not built, but we do build programs that depend on it. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 0:47: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 19D1C37B400; Thu, 11 Apr 2002 00:47:49 -0700 (PDT) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B7ln935150; Thu, 11 Apr 2002 00:47:49 -0700 (PDT) (envelope-from roam) Message-Id: <200204110747.g3B7ln935150@freefall.freebsd.org> From: Peter Pentchev Date: Thu, 11 Apr 2002 00:47:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/birthday Makefile distinfo ports/misc/birthday/files patch-Makefile patch-getopt.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 roam 2002/04/11 00:47:48 PDT Modified files: misc/birthday Makefile distinfo misc/birthday/files patch-Makefile Added files: misc/birthday/files patch-getopt.h Log: Update to 1.5. PR: 36760 Submitted by: maintainer Revision Changes Path 1.2 +2 -5 ports/misc/birthday/Makefile 1.2 +1 -1 ports/misc/birthday/distinfo 1.2 +23 -39 ports/misc/birthday/files/patch-Makefile 1.1 +29 -0 ports/misc/birthday/files/patch-getopt.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 1:13:55 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 5A54E37B400; Thu, 11 Apr 2002 01:13:52 -0700 (PDT) Received: by flood.ping.uio.no (Postfix, from userid 2602) id B8B915309; Thu, 11 Apr 2002 10:13:50 +0200 (CEST) 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: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf References: <20020411051649.0CA5D38FD@overcee.wemm.org> From: Dag-Erling Smorgrav Date: 11 Apr 2002 10:13:49 +0200 In-Reply-To: <20020411051649.0CA5D38FD@overcee.wemm.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 Peter Wemm writes: > Dag-Erling Smorgrav wrote: > > This closes the door on switching to NetBSD's rc system. Please back > > it out. > What "NetBSD rc system"? Where is the code? /usr/src/sbin/rcorder/ /usr/src/etc/rc.d/ and the -arch mailing list archives 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 Thu Apr 11 1:20:42 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 DD8B837B400; Thu, 11 Apr 2002 01:20:37 -0700 (PDT) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 209F55309; Thu, 11 Apr 2002 10:20:34 +0200 (CEST) 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: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc.network References: <20020411052634.523DD3810@overcee.wemm.org> From: Dag-Erling Smorgrav Date: 11 Apr 2002 10:20:34 +0200 In-Reply-To: <20020411052634.523DD3810@overcee.wemm.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 Peter Wemm writes: > Also, can you fix this while you're there? Logging in causes this: > > Apr 10 18:06:56 ref5 sshd[540]: in _openpam_check_error_code(): %s(): unexpected return value %d(): unexpected return value 673339764 Looks like a stack smash. 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 Thu Apr 11 1:28:45 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 B4CDA37B404; Thu, 11 Apr 2002 01:28:40 -0700 (PDT) Received: (from ernst@localhost) by zaphod.euronet.nl (8.11.6/8.11.6) id g3B8Spc96916; Thu, 11 Apr 2002 10:28:51 +0200 (CEST) (envelope-from ernst) Message-Id: <200204110828.g3B8Spc96916@zaphod.euronet.nl> Content-Type: text/plain; charset="iso-8859-1" From: Ernst de Haan To: Kris Kennaway , Kris Kennaway Subject: Re: cvs commit: ports/www Makefile Date: Thu, 11 Apr 2002 10:28:51 +0200 X-Mailer: KMail [version 1.3.2] Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200204110620.g3B6KlP15413@freefall.freebsd.org> <20020410233534.D82097@xor.obsecurity.org> In-Reply-To: <20020410233534.D82097@xor.obsecurity.org> 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 Kris, > This was a typo; the commit actually removes the jakarta-tomcat port. > I was thinking about the jakarta-tomcat3 port when I wrote the > message, because znerd also forgot to add that one to the Makefile > when it was repo-copied :-) My apologies. I'm still in the error-making-enthusiast stage. I now know that I should maintain modules and the category Makefile as well when a repocopy is done. This is the first time I'm doing port repocopies. First-time mistakes are not as bad as repeated ones, aren't they? :) Again, my apologies. I'll do better next time. 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 Thu Apr 11 1:32:45 2002 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-169-104-17.dsl.lsan03.pacbell.net [64.169.104.17]) by hub.freebsd.org (Postfix) with ESMTP id 8530037B416; Thu, 11 Apr 2002 01:32:41 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 0171266BAD; Thu, 11 Apr 2002 01:32:40 -0700 (PDT) Date: Thu, 11 Apr 2002 01:32:40 -0700 From: Kris Kennaway To: Ernst de Haan Cc: Kris Kennaway , Kris Kennaway , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www Makefile Message-ID: <20020411013240.A85123@xor.obsecurity.org> References: <200204110620.g3B6KlP15413@freefall.freebsd.org> <20020410233534.D82097@xor.obsecurity.org> <200204110828.g3B8Spc96916@zaphod.euronet.nl> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="UlVJffcvxoiEqYs2" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200204110828.g3B8Spc96916@zaphod.euronet.nl>; from znerd@FreeBSD.org on Thu, Apr 11, 2002 at 10:28:51AM +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 --UlVJffcvxoiEqYs2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Apr 11, 2002 at 10:28:51AM +0200, Ernst de Haan wrote: > My apologies. No problem. Kris --UlVJffcvxoiEqYs2 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 iD8DBQE8tUonWry0BWjoQKURAiipAKCZ7sEK91dZEXsSOrPJkiOOaegZLwCg0dux p/pEEt0R+ZU372mVbOBI3Pw= =ufL5 -----END PGP SIGNATURE----- --UlVJffcvxoiEqYs2-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 1:38:11 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 A378737B419; Thu, 11 Apr 2002 01:37:58 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g3B8auI42408; Thu, 11 Apr 2002 11:36:56 +0300 (EEST) (envelope-from ru) Date: Thu, 11 Apr 2002 11:36:56 +0300 From: Ruslan Ermilov To: Sheldon Hearn Cc: Joseph Scott , "David O'Brien" , Bosko Milekic , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin Makefile src/share/examples/etc make.conf src/usr.bin Makefile Message-ID: <20020411083656.GH27950@sunbay.com> References: <52526.1018437702@axl.seasidesoftware.co.za> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="y9PDtDHaFrXNoMPU" Content-Disposition: inline In-Reply-To: <52526.1018437702@axl.seasidesoftware.co.za> 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 --y9PDtDHaFrXNoMPU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 10, 2002 at 01:21:42PM +0200, Sheldon Hearn wrote: > On Tue, 09 Apr 2002 18:05:40 MST, Joseph Scott wrote: >=20 > > That's an interesting idea. If there was a running list of what's > > normally suid then admins could go through and only set suid on programs > > of their choice. >=20 > Provide and commit to maintaining this, and you'll be a hero. >=20 There is such a run-time list, I've spent some time to creating it: find -s /usr/src -name 'Makefile*' | xargs grep -l "^BINOWN=3D.*root" Sorry, but this is available in -CURRENT only. Cheers, --=20 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 --y9PDtDHaFrXNoMPU 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 iD8DBQE8tUsoUkv4P6juNwoRAiDFAJ4sSfvoFC6N/sAKFto4ECfwzTFedwCdFyf+ qNxZ+bN2pNBjJjtxNo3JXSc= =UG3h -----END PGP SIGNATURE----- --y9PDtDHaFrXNoMPU-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 1:44:53 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 71F9537B41B; Thu, 11 Apr 2002 01:44:49 -0700 (PDT) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 16vaFv-000Jnn-00; Thu, 11 Apr 2002 10:48:35 +0200 From: Sheldon Hearn To: Ruslan Ermilov Cc: Joseph Scott , "David O'Brien" , Bosko Milekic , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin Makefile src/share/examples/etc make.conf src/usr.bin Makefile In-reply-to: Your message of "Thu, 11 Apr 2002 11:36:56 +0300." <20020411083656.GH27950@sunbay.com> Date: Thu, 11 Apr 2002 10:48:35 +0200 Message-ID: <76122.1018514915@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 Thu, 11 Apr 2002 11:36:56 +0300, Ruslan Ermilov wrote: > There is such a run-time list, I've spent some time to creating it: > > find -s /usr/src -name 'Makefile*' | xargs grep -l "^BINOWN=3D.*root" Sorry, you're only a hero if you implement the rest of the list (reasons for setuid bit and what'll break without it) and make the list online somewhere. Don't worry, I'm sure _someone_ less busy is out there, has just completed Heroes Quest 3 and wants his or her name in lights... :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 1:45: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 3261D37B405; Thu, 11 Apr 2002 01:45:33 -0700 (PDT) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B8jXo50668; Thu, 11 Apr 2002 01:45:33 -0700 (PDT) (envelope-from sos) Message-Id: <200204110845.g3B8jXo50668@freefall.freebsd.org> From: Søren Schmidt Date: Thu, 11 Apr 2002 01:45:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-disk.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 sos 2002/04/11 01:45:33 PDT Modified files: (Branch: RELENG_4) sys/dev/ata ata-disk.c Log: biodone the right buf in detach. Revision Changes Path 1.60.2.22 +3 -3 src/sys/dev/ata/ata-disk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 1:47:47 2002 Delivered-To: cvs-all@freebsd.org Received: from fw.wemm.org (unknown [12.232.135.171]) by hub.freebsd.org (Postfix) with ESMTP id E355837B416; Thu, 11 Apr 2002 01:47:40 -0700 (PDT) Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by fw.wemm.org (8.11.6/8.11.6) with ESMTP id g3B8kKQ27440; Thu, 11 Apr 2002 01:46:20 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id D696A3810; Thu, 11 Apr 2002 01:46:20 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf In-Reply-To: Date: Thu, 11 Apr 2002 01:46:20 -0700 From: Peter Wemm Message-Id: <20020411084620.D696A3810@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 Dag-Erling Smorgrav wrote: > Peter Wemm writes: > > Dag-Erling Smorgrav wrote: > > > This closes the door on switching to NetBSD's rc system. Please back > > > it out. > > What "NetBSD rc system"? Where is the code? > > /usr/src/sbin/rcorder/ > /usr/src/etc/rc.d/ > > and the -arch mailing list archives OK, backing it out. Sorry. Please, do something with this stuff. :-) Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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 Apr 11 1:49: 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 97EBB37B41B; Thu, 11 Apr 2002 01:48:52 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B8mqn51210; Thu, 11 Apr 2002 01:48:52 -0700 (PDT) (envelope-from peter) Message-Id: <200204110848.g3B8mqn51210@freefall.freebsd.org> From: Peter Wemm Date: Thu, 11 Apr 2002 01:48:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults rc.conf X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/11 01:48:52 PDT Modified files: etc/defaults rc.conf Log: Back out /etc/rc.d addition. I'd like to see something come of what has already been imported. It would have been nice to get it out there in DP1, but that is too late now. Revision Changes Path 1.146 +2 -2 src/etc/defaults/rc.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 1:52: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 80E8737B404; Thu, 11 Apr 2002 01:52:32 -0700 (PDT) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B8qWP51869; Thu, 11 Apr 2002 01:52:32 -0700 (PDT) (envelope-from sos) Message-Id: <200204110852.g3B8qWP51869@freefall.freebsd.org> From: Søren Schmidt Date: Thu, 11 Apr 2002 01:52:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-raid.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/04/11 01:52:32 PDT Modified files: sys/dev/ata ata-raid.h Log: Only calculate Promise magic if a device is there for info. Revision Changes Path 1.18 +2 -2 src/sys/dev/ata/ata-raid.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 1:53: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 572B637B404; Thu, 11 Apr 2002 01:53:51 -0700 (PDT) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B8rpV52058; Thu, 11 Apr 2002 01:53:51 -0700 (PDT) (envelope-from sos) Message-Id: <200204110853.g3B8rpV52058@freefall.freebsd.org> From: Søren Schmidt Date: Thu, 11 Apr 2002 01:53:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-raid.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 sos 2002/04/11 01:53:51 PDT Modified files: (Branch: RELENG_4) sys/dev/ata ata-raid.c Log: Set B_CALL again on a failed RAID1 transfer, biodone reset's it... Revision Changes Path 1.3.2.14 +1 -1 src/sys/dev/ata/ata-raid.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 1:54: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 8A86637B405; Thu, 11 Apr 2002 01:54:21 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B8sLX52228; Thu, 11 Apr 2002 01:54:21 -0700 (PDT) (envelope-from ru) Message-Id: <200204110854.g3B8sLX52228@freefall.freebsd.org> From: Ruslan Ermilov Date: Thu, 11 Apr 2002 01:54:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.obj.mk bsd.prog.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/04/11 01:54:21 PDT Modified files: share/mk bsd.obj.mk bsd.prog.mk Log: Really finish the removal of ${LDDESTDIR} in bsd.lib.mk,v 1.55. bsd.lib.mk,v 1.101 only did that partly. Revision Changes Path 1.39 +1 -1 src/share/mk/bsd.obj.mk 1.106 +3 -3 src/share/mk/bsd.prog.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 2:21: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 5957B37B431; Thu, 11 Apr 2002 02:21:10 -0700 (PDT) Received: (from pb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B9LAl60293; Thu, 11 Apr 2002 02:21:10 -0700 (PDT) (envelope-from pb) Message-Id: <200204110921.g3B9LAl60293@freefall.freebsd.org> From: Pierre Beyssac Date: Thu, 11 Apr 2002 02:21:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/i386/boot2 boot2.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 pb 2002/04/11 02:21:10 PDT Modified files: sys/boot/i386/boot2 boot2.c Log: Code cleanup, no functional change. Patch adapted from PR. PR: i386/36015 Submitted by: thomas@cuivre.fr.eu.org MFC after: 1 week Revision Changes Path 1.39 +33 -19 src/sys/boot/i386/boot2/boot2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 2: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 A735337B400; Thu, 11 Apr 2002 02:28:09 -0700 (PDT) Received: (from ps@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B9S9s61408; Thu, 11 Apr 2002 02:28:09 -0700 (PDT) (envelope-from ps) Message-Id: <200204110928.g3B9S9s61408@freefall.freebsd.org> From: Paul Saab Date: Thu, 11 Apr 2002 02:28:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ciss ciss.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 ps 2002/04/11 02:28:09 PDT Modified files: sys/dev/ciss ciss.c Log: Fix the I/O performance issues with the ciss driver where CAM was limiting the number of transactions the device could handle to 1. Obtained from: msmith Revision Changes Path 1.4 +2 -1 src/sys/dev/ciss/ciss.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 2: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 2744737B404; Thu, 11 Apr 2002 02:28:44 -0700 (PDT) Received: (from iwasaki@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B9SiK61543; Thu, 11 Apr 2002 02:28:44 -0700 (PDT) (envelope-from iwasaki) Message-Id: <200204110928.g3B9SiK61543@freefall.freebsd.org> From: Mitsuru IWASAKI Date: Thu, 11 Apr 2002 02:28:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/acpicatools Makefile distinfo ports/devel/acpicatools/files patch-20020308 patch-20020404 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG iwasaki 2002/04/11 02:28:44 PDT Modified files: devel/acpicatools Makefile distinfo Added files: devel/acpicatools/files patch-20020404 Removed files: devel/acpicatools/files patch-20020308 Log: update for acpica-unix-20020404. Revision Changes Path 1.14 +2 -2 ports/devel/acpicatools/Makefile 1.12 +2 -2 ports/devel/acpicatools/distinfo 1.2 +0 -23 ports/devel/acpicatools/files/patch-20020308 (dead) 1.1 +33 -0 ports/devel/acpicatools/files/patch-20020404 (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 2:29: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 C343B37B404; Thu, 11 Apr 2002 02:29:50 -0700 (PDT) Received: (from ps@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B9ToA61807; Thu, 11 Apr 2002 02:29:50 -0700 (PDT) (envelope-from ps) Message-Id: <200204110929.g3B9ToA61807@freefall.freebsd.org> From: Paul Saab Date: Thu, 11 Apr 2002 02:29:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ciss ciss.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 ps 2002/04/11 02:29:50 PDT Modified files: (Branch: RELENG_4) sys/dev/ciss ciss.c Log: MFC rev 1.4 Fix I/O performance issues. Revision Changes Path 1.2.2.3 +2 -1 src/sys/dev/ciss/ciss.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 2: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 2417337B405; Thu, 11 Apr 2002 02:30:16 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B9UGr61926; Thu, 11 Apr 2002 02:30:16 -0700 (PDT) (envelope-from peter) Message-Id: <200204110930.g3B9UGr61926@freefall.freebsd.org> From: Peter Wemm Date: Thu, 11 Apr 2002 02:30:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/kldxref ef.c ef.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/04/11 02:30:16 PDT Modified files: usr.sbin/kldxref ef.c ef.h Log: Make kldxref work for Elf64 (which has 32 bit hash tables) Revision Changes Path 1.4 +2 -2 src/usr.sbin/kldxref/ef.c 1.2 +5 -5 src/usr.sbin/kldxref/ef.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 2:31: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 3FC8F37B405; Thu, 11 Apr 2002 02:31:29 -0700 (PDT) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B9VTW62287; Thu, 11 Apr 2002 02:31:29 -0700 (PDT) (envelope-from sos) Message-Id: <200204110931.g3B9VTW62287@freefall.freebsd.org> From: Søren Schmidt Date: Thu, 11 Apr 2002 02:31:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-raid.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 sos 2002/04/11 02:31:29 PDT Modified files: (Branch: RELENG_4) sys/dev/ata ata-raid.c Log: MFC: Fix the FreeBSD native ATA RAID code a bit. Revision Changes Path 1.3.2.15 +41 -37 src/sys/dev/ata/ata-raid.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 2:32: 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 8A3EB37B400; Thu, 11 Apr 2002 02:31:57 -0700 (PDT) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B9Vv662344; Thu, 11 Apr 2002 02:31:57 -0700 (PDT) (envelope-from sos) Message-Id: <200204110931.g3B9Vv662344@freefall.freebsd.org> From: Søren Schmidt Date: Thu, 11 Apr 2002 02:31:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-raid.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 sos 2002/04/11 02:31:57 PDT Modified files: (Branch: RELENG_4) sys/dev/ata ata-raid.h Log: MFC: Only calculate Promise magic if a device is there for info. Revision Changes Path 1.2.2.8 +2 -2 src/sys/dev/ata/ata-raid.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 2:34: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 5C4B937B41A; Thu, 11 Apr 2002 02:34:27 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g3B9Xr649480; Thu, 11 Apr 2002 12:33:53 +0300 (EEST) (envelope-from ru) Date: Thu, 11 Apr 2002 12:33:53 +0300 From: Ruslan Ermilov To: Peter Wemm Cc: "David O'Brien" , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr Message-ID: <20020411093353.GA42484@sunbay.com> References: <20020410180443.D84993@dragon.nuxi.com> <20020411051528.8663638FD@overcee.wemm.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vtzGhvizbBRQ85DL" Content-Disposition: inline In-Reply-To: <20020411051528.8663638FD@overcee.wemm.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 --vtzGhvizbBRQ85DL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 10, 2002 at 10:15:28PM -0700, Peter Wemm wrote: > "David O'Brien" wrote: > > On Tue, Apr 09, 2002 at 09:48:21PM -0700, Marcel Moolenaar wrote: > > > On Mon, Apr 08, 2002 at 07:10:29PM -0700, David O'Brien wrote: > > > > On Mon, Apr 08, 2002 at 04:20:40PM -0700, Peter Wemm wrote: > > > > > > Please commit this as it does improve things. As Peter mention= ed it > > > > > > would be nice to add the libstdc++ dependancy also. But even w= /o tha > t, > > > > > > this patch is a help. > > > > >=20 > > > > > No, do what Max Khon suggested. Use PROG_CXX like NetBSD does. > > > >=20 > > > > Why can't we do both? If we can make PROG=3Dfoo do the right thing= in the > > > > common case we should make it do so. > > >=20 > > > The common case is all C. That already works. If you do both, you > > > break the uncommon case, in which you have C++ source files (or at > > > least named like them) but want C linkage. You cannot use PROG=3D > > > anymore. This can only lead to a third one PROG_C, which is almost > > > exactly like PROG. This is confusing. > > >=20 > > > I think only PROG_CXX is better. This automaticly means that PROG > > > is for C. Always... > >=20 > > There is a patch that implements PROG=3D such that we can remove the > > explicit linkage of libstdc++. Unless someone writes and commits the > > PROG_CXX, we have no better option than to commit ru's patch. >=20 > It is not "no better option than to commit ..." - nothing is broken. >=20 > I have a PROG_CXX patch already FWIW. >=20 I agree with all of the above, and I also have a working patch. I have taken the NetBSD version as the basis and modified it slightly. Now about what's different. We have the DPADD+=3D${LIBSTDCPLUSPLUS} dependency automatically. They don't. We still use "cc" for linking in this case for two reasons: 1. We must add -lstdc++ to LDADD because otherwise we break "checkdpadd". 2. c++ runs linker with "-lstdc++ -lm". The bogus part here is -lm. While libstdc++.so depends on libm.so, yes, the program itself doesn't necessarily, and libstdc++.so already has the necessary dependency on libm.so recorded in. Here's the patch: %%% Index: bsd.README =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/src/share/mk/bsd.README,v retrieving revision 1.21 diff -u -r1.21 bsd.README --- bsd.README 17 Dec 2001 13:59:32 -0000 1.21 +++ bsd.README 11 Apr 2002 09:30:55 -0000 @@ -226,11 +226,17 @@ PROG The name of the program to build. If not supplied, nothing is built. =20 +PROG_CXX If defined, the name of the program to build. Also + causes to link the program with the + standard C++ library. PROG_CXX overrides the value + of PROG if PROG is also set. + PROGNAME The name that the above program will be installed as, if different from ${PROG}. =20 SRCS List of source files to build the program. If SRCS is not - defined, it's assumed to be ${PROG}.c. + defined, it's assumed to be ${PROG}.c or, if PROG_CXX is + defined, ${PROG_CXX}.cc. =20 DPADD Additional dependencies for the program. Usually used for libraries. For example, to depend on the compatibility and Index: bsd.prog.mk =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/src/share/mk/bsd.prog.mk,v retrieving revision 1.106 diff -u -r1.106 bsd.prog.mk --- bsd.prog.mk 11 Apr 2002 08:54:21 -0000 1.106 +++ bsd.prog.mk 11 Apr 2002 09:30:55 -0000 @@ -20,6 +20,12 @@ LDFLAGS+=3D -static .endif =20 +.if defined(PROG_CXX) +PROG=3D ${PROG_CXX} +DPADD+=3D ${LIBSTDCPLUSPLUS} +LDADD+=3D -lstdc++ +.endif + .if defined(PROG) .if defined(SRCS) =20 @@ -37,7 +43,11 @@ .else !defined(SRCS) =20 .if !target(${PROG}) +.if defined(PROG_CXX) +SRCS=3D ${PROG}.cc +.else SRCS=3D ${PROG}.c +.endif =20 # Always make an intermediate object file because: # - it saves time rebuilding when only the library has changed %%% Look how a typical C++ program's makefile would look now: %%% Index: Makefile =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/src/gnu/usr.bin/groff/src/preproc/soelim/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- Makefile 17 Apr 2001 12:37:11 -0000 1.1 +++ Makefile 11 Apr 2002 09:32:28 -0000 @@ -1,7 +1,6 @@ # $FreeBSD: src/gnu/usr.bin/groff/src/preproc/soelim/Makefile,v 1.1 2001/0= 4/17 12:37:11 ru Exp $ =20 -PROG=3D soelim -SRCS=3D soelim.cc +PROG_CXX=3D soelim DPADD=3D ${LIBGROFF} LDADD=3D ${LIBGROFF} CLEANFILES=3D ${MAN} %%% Cheers, --=20 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 --vtzGhvizbBRQ85DL 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 iD8DBQE8tViBUkv4P6juNwoRAoUaAJwOvvuNGF9rnWIH4m3EbUOlbv+SAwCgjMBS zK/f4V6/IH52N/VnnGqK/BQ= =pISP -----END PGP SIGNATURE----- --vtzGhvizbBRQ85DL-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 2:45: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 6A0F337B405; Thu, 11 Apr 2002 02:45:41 -0700 (PDT) Received: (from kato@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B9jfi65314; Thu, 11 Apr 2002 02:45:41 -0700 (PDT) (envelope-from kato) Message-Id: <200204110945.g3B9jfi65314@freefall.freebsd.org> From: KATO Takenori Date: Thu, 11 Apr 2002 02:45:41 -0700 (PDT) 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 kato 2002/04/11 02:45:41 PDT Modified files: sys/pc98/i386 machdep.c Log: MFi386: revision 1.517. Revision Changes Path 1.278 +9 -5 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 Thu Apr 11 2:50: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 21F3B37B41A; Thu, 11 Apr 2002 02:50:12 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3B9oCS66256; Thu, 11 Apr 2002 02:50:12 -0700 (PDT) (envelope-from peter) Message-Id: <200204110950.g3B9oCS66256@freefall.freebsd.org> From: Peter Wemm Date: Thu, 11 Apr 2002 02:50:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/efi/libefi efifs.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/04/11 02:50:12 PDT Modified files: sys/boot/efi/libefi efifs.c Log: Finally fix loader completely for IA64. efifs_stat() wasn't setting the S_IFREG bit for regular files. This caused the path search code to skip it when it finally did find the kernel (after the common/module.c buffer overrun bug was fixed) Revision Changes Path 1.6 +2 -0 src/sys/boot/efi/libefi/efifs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 2:57:46 2002 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 21BE137B41A; Thu, 11 Apr 2002 02:57:40 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [IPv6:fec0::1:12]) by Awfulhak.org (8.12.2/8.11.6) with ESMTP id g3B9vRoi040709; Thu, 11 Apr 2002 10:57:28 +0100 (BST) (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.12.2/8.12.2) with ESMTP id g3B9vOOF032721; Thu, 11 Apr 2002 10:57:24 +0100 (BST) (envelope-from brian@freebsd-services.com) Message-Id: <200204110957.g3B9vOOF032721@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Bruce Evans Cc: Brian Somers , Scott Long , Brian Somers , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/sys/dev/digi digi.c digi.h digi_isa.c In-Reply-To: Message from Bruce Evans of "Thu, 11 Apr 2002 17:17:11 +1000." <20020411171354.R3455-100000@gamplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 11 Apr 2002 10:57:24 +0100 From: Brian Somers Sender: owner-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, 10 Apr 2002, Brian Somers wrote: > > > > [Brian Somers didn't write] > > > Instead of jumping through all of these hoops, why can't you do a > > > config_intrhook_establish() to have the delay-sensitive operations done > > > at a more appropriate time? This will work for both the at-boot and > > > post-boot cases. > > > > While this would be a clean way of doing things, I'd prefer not to > > defer the card initialisation. Ultimately I'd like to be able to use > > the device as a console. > > The low level parts of the console driver can't use interrupts, and the > high level parts are insignificantly different from ordinary tty drivers. Digiboards don't need to use interrupts, although I haven't tested how fast they can go without them. In fact I've never tried to get the interrupt code working in digi. At the moment the driver uses a polling ``thread'' (really a timeout() that calls itself), but sio uses timeout() too so I guess that's ok (maybe). > Bruce -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 2:58:11 2002 Delivered-To: cvs-all@freebsd.org Received: from mimer.webgiro.com (mailer2.webgiro.com [213.162.131.18]) by hub.freebsd.org (Postfix) with ESMTP id EFACC37B404; Thu, 11 Apr 2002 02:58:01 -0700 (PDT) Received: from webgiro.com (mailer2.webgiro.com [213.162.131.18]) by mimer.webgiro.com (Postfix) with ESMTP id A32D968534; Thu, 11 Apr 2002 11:57:48 +0200 (CEST) Message-ID: <3CB55E1D.33F83BE3@webgiro.com> Date: Thu, 11 Apr 2002 11:57:49 +0200 From: Andrzej Bialecki Organization: WebGiro AB X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Daniel O'Connor Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: Feature removal without replacement (was: cvs commit: src/sys/alpha/alpha machdep.c src/sys/conf NOTES) References: <4868.1018415500@critter.freebsd.dk> <3CB4A9CC.B5D46293@webgiro.com> <1018489755.20755.13.camel@chowder.gsoft.com.au> 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 Daniel O'Connor wrote: > > On Thu, 2002-04-11 at 06:38, Andrzej Bialecki wrote: > > If anyone feels it's time to refresh his Forth skills ;-) he may have a > > look at the full-screen demos of what can be done with the bootforth > > terminal emulation. Take a look at /usr/src/share/examples/bootforth/* . > > I believe it is possible to implement a visual userconfig replacement > > with these capabilities... > > Is there a way to write code that uses this stuff without having to > reboot continuously? (I'm not talking vmware either) > > You can access the basic Forth engine from userland but it's difficult > to do any loader specific stuff since none of the words are defined > (last time I checked) The terminal emulation stuff implemented there doesn't work in that case either. It should be replaced by ncurses functions, when compiling standalone... Andrzej -- -------------------------------------------- Andrzej Bialecki, Chief System Architect WebGiro AB, Sweden (http://www.webgiro.com) -------------------------------------------- FreeBSD developer (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 Apr 11 3: 0: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 7EC7737B400; Thu, 11 Apr 2002 03:00:46 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BA0iC68830; Thu, 11 Apr 2002 03:00:44 -0700 (PDT) (envelope-from peter) Message-Id: <200204111000.g3BA0iC68830@freefall.freebsd.org> From: Peter Wemm Date: Thu, 11 Apr 2002 03:00:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/common module.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/04/11 03:00:44 PDT Modified files: sys/boot/common module.c Log: Bandaid for a buffer overrun in the module searching code. When breaking up the module_path string, we would walk one past the end of the buffer. This hurting ia64 originally, but it was probably also happening on i386 occasionally as well. The effects were usually harmless, it would add bogus "binary" search directories to the places it actually looked for files. Revision Changes Path 1.23 +2 -0 src/sys/boot/common/module.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 3:17: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 C229137B419; Thu, 11 Apr 2002 03:16:57 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BAGvB77639; Thu, 11 Apr 2002 03:16:57 -0700 (PDT) (envelope-from murray) Message-Id: <200204111016.g3BAGvB77639@freefall.freebsd.org> From: Murray Stokely Date: Thu, 11 Apr 2002 03:16:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/isc-dhcp COPYRIGHT FREEBSD-upgrade Makefile Makefile.conf Makefile.dist README RELNOTES configure site.conf src/contrib/isc-dhcp/client Makefile.dist clparse.c dhclient-script.8 dhclient.8 dhclient.c dhclient.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 murray 2002/04/11 03:16:57 PDT Modified files: (Branch: RELENG_4) contrib/isc-dhcp FREEBSD-upgrade Makefile.conf Makefile.dist README RELNOTES configure contrib/isc-dhcp/client Makefile.dist clparse.c dhclient-script.8 dhclient.8 dhclient.c dhclient.conf.5 dhclient.leases.5 contrib/isc-dhcp/client/scripts freebsd contrib/isc-dhcp/common Makefile.dist alloc.c bpf.c conflex.c dhcp-options.5 dispatch.c ethernet.c icmp.c inet.c lpf.c memory.c nit.c options.c packet.c parse.c print.c raw.c socket.c tables.c tr.c tree.c upf.c contrib/isc-dhcp/includes cdefs.h dhcp.h dhcpd.h dhctoken.h inet.h osdep.h site.h tree.h version.h contrib/isc-dhcp/includes/arpa nameser.h contrib/isc-dhcp/includes/cf freebsd.h contrib/isc-dhcp/includes/netinet if_ether.h ip.h udp.h Added files: (Branch: RELENG_4) contrib/isc-dhcp COPYRIGHT Makefile site.conf contrib/isc-dhcp/common comapi.c ctrace.c dhcp-eval.5 discover.c dlpi.c dns.c execute.c fddi.c resolv.c contrib/isc-dhcp/contrib 3.0b1-lease-convert sethostname.sh contrib/isc-dhcp/dst Makefile.dist base64.c dst_api.c dst_internal.h dst_support.c hmac_link.c md5.h md5_dgst.c md5_locl.h prandom.c contrib/isc-dhcp/includes ctrace.h failover.h statement.h contrib/isc-dhcp/includes/arpa nameser_compat.h contrib/isc-dhcp/includes/isc-dhcp boolean.h dst.h int.h lang.h list.h result.h types.h contrib/isc-dhcp/includes/minires minires.h res_update.h resolv.h contrib/isc-dhcp/includes/omapip alloc.h buffer.h convert.h hash.h omapip.h omapip_p.h trace.h contrib/isc-dhcp/minires Makefile.dist ns_date.c ns_name.c ns_parse.c ns_samedomain.c ns_sign.c ns_verify.c res_comp.c res_findzonecut.c res_init.c res_mkquery.c res_mkupdate.c res_query.c res_send.c res_sendsigned.c res_update.c contrib/isc-dhcp/omapip Makefile.dist alloc.c array.c auth.c buffer.c connection.c convert.c dispatch.c errwarn.c generic.c handle.c hash.c inet_addr.c listener.c message.c mrtrace.c omapi.3 protocol.c result.c support.c test.c toisc.c trace.c contrib/isc-dhcp/tests/failover dhcp-1.cf dhcp-2.cf new-failover Log: MFC: DHCP 3.0.1 RC8 Revision Changes Path 1.1.1.1.2.1 +17 -0 src/contrib/isc-dhcp/COPYRIGHT (new) 1.9.2.4 +34 -15 src/contrib/isc-dhcp/FREEBSD-upgrade 1.1.1.1.2.1 +96 -0 src/contrib/isc-dhcp/Makefile (new) 1.1.1.1.2.3 +236 -70 src/contrib/isc-dhcp/Makefile.conf 1.1.1.1.2.2 +25 -56 src/contrib/isc-dhcp/Makefile.dist 1.1.1.6.2.5 +436 -322 src/contrib/isc-dhcp/README 1.1.1.6.2.5 +798 -487 src/contrib/isc-dhcp/RELNOTES 1.1.1.1.2.3 +34 -42 src/contrib/isc-dhcp/client/Makefile.dist 1.4.2.3 +657 -496 src/contrib/isc-dhcp/client/clparse.c 1.5.2.4 +35 -35 src/contrib/isc-dhcp/client/dhclient-script.8 1.8.2.3 +187 -86 src/contrib/isc-dhcp/client/dhclient.8 1.9.2.6 +1979 -1103 src/contrib/isc-dhcp/client/dhclient.c 1.7.2.1 +113 -28 src/contrib/isc-dhcp/client/dhclient.conf.5 1.2.4.1 +10 -7 src/contrib/isc-dhcp/client/dhclient.leases.5 1.9.2.5 +33 -22 src/contrib/isc-dhcp/client/scripts/freebsd 1.1.1.1.2.2 +32 -163 src/contrib/isc-dhcp/common/Makefile.dist 1.1.1.3.2.1 +1169 -175 src/contrib/isc-dhcp/common/alloc.c 1.1.1.5.2.1 +167 -58 src/contrib/isc-dhcp/common/bpf.c 1.1.1.1.2.1 +958 -0 src/contrib/isc-dhcp/common/comapi.c (new) 1.1.1.3.2.1 +701 -181 src/contrib/isc-dhcp/common/conflex.c 1.1.1.1.2.1 +297 -0 src/contrib/isc-dhcp/common/ctrace.c (new) 1.1.1.1.2.1 +484 -0 src/contrib/isc-dhcp/common/dhcp-eval.5 (new) 1.2.2.1 +1128 -316 src/contrib/isc-dhcp/common/dhcp-options.5 1.1.1.1.2.1 +1138 -0 src/contrib/isc-dhcp/common/discover.c (new) 1.1.1.4.2.2 +79 -719 src/contrib/isc-dhcp/common/dispatch.c 1.1.1.1.2.1 +1345 -0 src/contrib/isc-dhcp/common/dlpi.c (new) 1.1.1.2.2.1 +972 -0 src/contrib/isc-dhcp/common/dns.c (new) 1.1.1.1.4.2 +21 -24 src/contrib/isc-dhcp/common/ethernet.c 1.1.1.1.2.1 +1061 -0 src/contrib/isc-dhcp/common/execute.c (new) 1.1.1.1.2.1 +106 -0 src/contrib/isc-dhcp/common/fddi.c (new) 1.1.1.2.2.1 +210 -60 src/contrib/isc-dhcp/common/icmp.c 1.1.1.2.2.1 +66 -7 src/contrib/isc-dhcp/common/inet.c 1.1.1.4.2.2 +136 -67 src/contrib/isc-dhcp/common/lpf.c 1.1.1.3.2.1 +113 -883 src/contrib/isc-dhcp/common/memory.c 1.1.1.4.2.1 +105 -55 src/contrib/isc-dhcp/common/nit.c 1.1.1.3.2.3 +1852 -286 src/contrib/isc-dhcp/common/options.c 1.1.1.3.2.1 +74 -47 src/contrib/isc-dhcp/common/packet.c 1.1.1.3.2.1 +4365 -193 src/contrib/isc-dhcp/common/parse.c 1.1.1.3.2.1 +1235 -46 src/contrib/isc-dhcp/common/print.c 1.1.1.3.2.2 +40 -52 src/contrib/isc-dhcp/common/raw.c 1.1.1.1.2.1 +212 -0 src/contrib/isc-dhcp/common/resolv.c (new) 1.1.1.4.2.2 +116 -36 src/contrib/isc-dhcp/common/socket.c 1.5.2.3 +837 -282 src/contrib/isc-dhcp/common/tables.c 1.1.1.1.4.1 +51 -14 src/contrib/isc-dhcp/common/tr.c 1.1.1.1.4.1 +3956 -267 src/contrib/isc-dhcp/common/tree.c 1.1.1.4.2.1 +96 -44 src/contrib/isc-dhcp/common/upf.c 1.1.1.1.2.2 +196 -38 src/contrib/isc-dhcp/configure 1.1.1.1.2.1 +126 -0 src/contrib/isc-dhcp/contrib/3.0b1-lease-convert (new) 1.1.1.1.2.1 +29 -0 src/contrib/isc-dhcp/contrib/sethostname.sh (new) 1.1.1.1.2.1 +55 -0 src/contrib/isc-dhcp/dst/Makefile.dist (new) 1.1.1.1.2.1 +319 -0 src/contrib/isc-dhcp/dst/base64.c (new) 1.1.1.1.2.1 +1081 -0 src/contrib/isc-dhcp/dst/dst_api.c (new) 1.1.1.1.2.1 +160 -0 src/contrib/isc-dhcp/dst/dst_internal.h (new) 1.1.1.1.2.1 +463 -0 src/contrib/isc-dhcp/dst/dst_support.c (new) 1.1.1.1.2.1 +494 -0 src/contrib/isc-dhcp/dst/hmac_link.c (new) 1.1.1.1.2.1 +101 -0 src/contrib/isc-dhcp/dst/md5.h (new) 1.1.1.1.2.1 +373 -0 src/contrib/isc-dhcp/dst/md5_dgst.c (new) 1.1.1.1.2.1 +190 -0 src/contrib/isc-dhcp/dst/md5_locl.h (new) 1.1.1.1.2.1 +862 -0 src/contrib/isc-dhcp/dst/prandom.c (new) 1.1.1.1.4.1 +411 -187 src/contrib/isc-dhcp/includes/arpa/nameser.h 1.1.1.1.2.1 +183 -0 src/contrib/isc-dhcp/includes/arpa/nameser_compat.h (new) 1.1.1.1.4.1 +27 -18 src/contrib/isc-dhcp/includes/cdefs.h 1.3.4.1 +73 -16 src/contrib/isc-dhcp/includes/cf/freebsd.h 1.1.1.1.2.1 +86 -0 src/contrib/isc-dhcp/includes/ctrace.h (new) 1.1.1.2.4.1 +49 -22 src/contrib/isc-dhcp/includes/dhcp.h 1.1.1.4.2.3 +1950 -366 src/contrib/isc-dhcp/includes/dhcpd.h 1.1.1.3.2.1 +284 -95 src/contrib/isc-dhcp/includes/dhctoken.h 1.1.1.1.2.1 +322 -0 src/contrib/isc-dhcp/includes/failover.h (new) 1.1.1.1.4.1 +8 -6 src/contrib/isc-dhcp/includes/inet.h 1.1.1.1.2.1 +32 -0 src/contrib/isc-dhcp/includes/isc-dhcp/boolean.h (new) 1.1.1.1.2.1 +142 -0 src/contrib/isc-dhcp/includes/isc-dhcp/dst.h (new) 1.1.1.1.2.1 +36 -0 src/contrib/isc-dhcp/includes/isc-dhcp/int.h (new) 1.1.1.1.2.1 +29 -0 src/contrib/isc-dhcp/includes/isc-dhcp/lang.h (new) 1.1.1.1.2.1 +116 -0 src/contrib/isc-dhcp/includes/isc-dhcp/list.h (new) 1.1.1.1.2.1 +113 -0 src/contrib/isc-dhcp/includes/isc-dhcp/result.h (new) 1.1.1.1.2.1 +40 -0 src/contrib/isc-dhcp/includes/isc-dhcp/types.h (new) 1.1.1.2.2.1 +224 -0 src/contrib/isc-dhcp/includes/minires/minires.h (new) 1.1.1.1.2.1 +51 -0 src/contrib/isc-dhcp/includes/minires/res_update.h (new) 1.1.1.1.2.1 +314 -0 src/contrib/isc-dhcp/includes/minires/resolv.h (new) 1.1.1.1.4.2 +4 -18 src/contrib/isc-dhcp/includes/netinet/if_ether.h 1.1.1.1.4.1 +8 -16 src/contrib/isc-dhcp/includes/netinet/ip.h 1.1.1.1.4.1 +1 -1 src/contrib/isc-dhcp/includes/netinet/udp.h 1.1.1.1.2.1 +120 -0 src/contrib/isc-dhcp/includes/omapip/alloc.h (new) 1.1.1.1.2.1 +92 -0 src/contrib/isc-dhcp/includes/omapip/buffer.h (new) 1.1.1.1.2.1 +61 -0 src/contrib/isc-dhcp/includes/omapip/convert.h (new) 1.1.1.1.2.1 +159 -0 src/contrib/isc-dhcp/includes/omapip/hash.h (new) 1.1.1.1.2.1 +620 -0 src/contrib/isc-dhcp/includes/omapip/omapip.h (new) 1.1.1.1.2.1 +302 -0 src/contrib/isc-dhcp/includes/omapip/omapip_p.h (new) 1.1.1.1.2.1 +124 -0 src/contrib/isc-dhcp/includes/omapip/trace.h (new) 1.1.1.4.2.2 +50 -32 src/contrib/isc-dhcp/includes/osdep.h 1.1.1.1.4.1 +83 -4 src/contrib/isc-dhcp/includes/site.h 1.1.1.1.2.1 +113 -0 src/contrib/isc-dhcp/includes/statement.h (new) 1.1.1.1.4.1 +282 -43 src/contrib/isc-dhcp/includes/tree.h 1.1.1.1.4.6 +1 -1 src/contrib/isc-dhcp/includes/version.h 1.1.1.1.2.1 +69 -0 src/contrib/isc-dhcp/minires/Makefile.dist (new) 1.1.1.1.2.1 +129 -0 src/contrib/isc-dhcp/minires/ns_date.c (new) 1.1.1.1.2.1 +641 -0 src/contrib/isc-dhcp/minires/ns_name.c (new) 1.1.1.2.2.1 +208 -0 src/contrib/isc-dhcp/minires/ns_parse.c (new) 1.1.1.1.2.1 +210 -0 src/contrib/isc-dhcp/minires/ns_samedomain.c (new) 1.1.1.1.2.1 +356 -0 src/contrib/isc-dhcp/minires/ns_sign.c (new) 1.1.1.2.2.1 +476 -0 src/contrib/isc-dhcp/minires/ns_verify.c (new) 1.1.1.1.2.1 +236 -0 src/contrib/isc-dhcp/minires/res_comp.c (new) 1.1.1.1.2.1 +608 -0 src/contrib/isc-dhcp/minires/res_findzonecut.c (new) 1.1.1.1.2.1 +486 -0 src/contrib/isc-dhcp/minires/res_init.c (new) 1.1.1.1.2.1 +193 -0 src/contrib/isc-dhcp/minires/res_mkquery.c (new) 1.1.1.1.2.1 +1101 -0 src/contrib/isc-dhcp/minires/res_mkupdate.c (new) 1.1.1.1.2.1 +413 -0 src/contrib/isc-dhcp/minires/res_query.c (new) 1.1.1.1.2.1 +871 -0 src/contrib/isc-dhcp/minires/res_send.c (new) 1.1.1.1.2.1 +116 -0 src/contrib/isc-dhcp/minires/res_sendsigned.c (new) 1.1.1.1.2.1 +219 -0 src/contrib/isc-dhcp/minires/res_update.c (new) 1.1.1.1.2.1 +106 -0 src/contrib/isc-dhcp/omapip/Makefile.dist (new) 1.1.1.1.2.1 +1151 -0 src/contrib/isc-dhcp/omapip/alloc.c (new) 1.1.1.1.2.1 +172 -0 src/contrib/isc-dhcp/omapip/array.c (new) 1.1.1.1.2.1 +273 -0 src/contrib/isc-dhcp/omapip/auth.c (new) 1.1.1.1.2.1 +718 -0 src/contrib/isc-dhcp/omapip/buffer.c (new) 1.1.1.1.2.1 +1026 -0 src/contrib/isc-dhcp/omapip/connection.c (new) 1.1.1.1.2.1 +193 -0 src/contrib/isc-dhcp/omapip/convert.c (new) 1.1.1.1.2.1 +604 -0 src/contrib/isc-dhcp/omapip/dispatch.c (new) 1.1.1.1.2.1 +363 -0 src/contrib/isc-dhcp/omapip/errwarn.c (new) 1.1.1.1.2.1 +311 -0 src/contrib/isc-dhcp/omapip/generic.c (new) 1.1.1.1.2.1 +304 -0 src/contrib/isc-dhcp/omapip/handle.c (new) 1.1.1.1.2.1 +425 -0 src/contrib/isc-dhcp/omapip/hash.c (new) 1.1.1.1.2.1 +150 -0 src/contrib/isc-dhcp/omapip/inet_addr.c (new) 1.1.1.1.2.1 +477 -0 src/contrib/isc-dhcp/omapip/listener.c (new) 1.1.1.1.2.1 +769 -0 src/contrib/isc-dhcp/omapip/message.c (new) 1.1.1.1.2.1 +488 -0 src/contrib/isc-dhcp/omapip/mrtrace.c (new) 1.1.1.1.2.1 +254 -0 src/contrib/isc-dhcp/omapip/omapi.3 (new) 1.1.1.1.2.1 +1319 -0 src/contrib/isc-dhcp/omapip/protocol.c (new) 1.1.1.1.2.1 +125 -0 src/contrib/isc-dhcp/omapip/result.c (new) 1.1.1.1.2.1 +872 -0 src/contrib/isc-dhcp/omapip/support.c (new) 1.1.1.1.2.1 +108 -0 src/contrib/isc-dhcp/omapip/test.c (new) 1.1.1.1.2.1 +324 -0 src/contrib/isc-dhcp/omapip/toisc.c (new) 1.1.1.1.2.1 +718 -0 src/contrib/isc-dhcp/omapip/trace.c (new) 1.1.1.1.2.1 +2 -0 src/contrib/isc-dhcp/site.conf (new) 1.1.1.1.2.1 +144 -0 src/contrib/isc-dhcp/tests/failover/dhcp-1.cf (new) 1.1.1.1.2.1 +142 -0 src/contrib/isc-dhcp/tests/failover/dhcp-2.cf (new) 1.1.1.1.2.1 +28 -0 src/contrib/isc-dhcp/tests/failover/new-failover (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 3:21: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 AC16037B41E; Thu, 11 Apr 2002 03:21:21 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BALLB78678; Thu, 11 Apr 2002 03:21:21 -0700 (PDT) (envelope-from murray) Message-Id: <200204111021.g3BALLB78678@freefall.freebsd.org> From: Murray Stokely Date: Thu, 11 Apr 2002 03:21:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dhclient Makefile Makefile.inc dhclient-script.sh src/sbin/dhclient/client Makefile src/sbin/dhclient/common Makefile src/sbin/dhclient/dst Makefile src/sbin/dhclient/minires 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 murray 2002/04/11 03:21:21 PDT Modified files: (Branch: RELENG_4) sbin/dhclient Makefile Added files: (Branch: RELENG_4) sbin/dhclient Makefile.inc dhclient-script.sh sbin/dhclient/client Makefile sbin/dhclient/common Makefile sbin/dhclient/dst Makefile sbin/dhclient/minires Makefile Log: MFC: bmake glue for DHCP 3.0.1 RC8 Revision Changes Path 1.6.2.7 +48 -16 src/sbin/dhclient/Makefile 1.2.2.1 +39 -0 src/sbin/dhclient/Makefile.inc (new) 1.2.2.1 +22 -0 src/sbin/dhclient/client/Makefile (new) 1.2.2.1 +21 -0 src/sbin/dhclient/common/Makefile (new) 1.2.2.1 +514 -0 src/sbin/dhclient/dhclient-script.sh (new) 1.2.2.1 +18 -0 src/sbin/dhclient/dst/Makefile (new) 1.4.2.1 +28 -0 src/sbin/dhclient/minires/Makefile (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 3:29: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 D590137B400; Thu, 11 Apr 2002 03:29:48 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BATmu79939; Thu, 11 Apr 2002 03:29:48 -0700 (PDT) (envelope-from murray) Message-Id: <200204111029.g3BATmu79939@freefall.freebsd.org> From: Murray Stokely Date: Thu, 11 Apr 2002 03:29:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dhclient/omapip 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 murray 2002/04/11 03:29:48 PDT Added files: (Branch: RELENG_4) sbin/dhclient/omapip Makefile Log: MFC: DHCP 3.0.1 RC8 bmake glue. Revision Changes Path 1.2.2.1 +19 -0 src/sbin/dhclient/omapip/Makefile (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 3:34: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 8463737B416; Thu, 11 Apr 2002 03:34:16 -0700 (PDT) Received: (from n_hibma@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BAYGm81147; Thu, 11 Apr 2002 03:34:16 -0700 (PDT) (envelope-from n_hibma) Message-Id: <200204111034.g3BAYGm81147@freefall.freebsd.org> From: Nick Hibma Date: Thu, 11 Apr 2002 03:34:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb umass.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 n_hibma 2002/04/11 03:34:16 PDT Modified files: sys/dev/usb umass.c Log: Delay umass_cam_rescan by 200 ms to make sure attach is finished by the time we tell CAM to rescan the bus. Together with the previous patch this should avoid the problem where the devices would wedge because they got spoken to over two different pipes. Tested by: Tomas Pluskal Revision Changes Path 1.59 +12 -3 src/sys/dev/usb/umass.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 3:34:44 2002 Delivered-To: cvs-all@freebsd.org Received: from fw.wemm.org (12-232-135-171.client.attbi.com [12.232.135.171]) by hub.freebsd.org (Postfix) with ESMTP id E5FD337B427; Thu, 11 Apr 2002 03:34:26 -0700 (PDT) Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by fw.wemm.org (8.11.6/8.11.6) with ESMTP id g3BAYQQ28068; Thu, 11 Apr 2002 03:34:26 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id E00123810; Thu, 11 Apr 2002 03:34:26 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Ruslan Ermilov Cc: "David O'Brien" , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr In-Reply-To: <20020411093353.GA42484@sunbay.com> Date: Thu, 11 Apr 2002 03:34:26 -0700 From: Peter Wemm Message-Id: <20020411103426.E00123810@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 Ruslan Ermilov wrote: > > --vtzGhvizbBRQ85DL > Content-Type: text/plain; charset=us-ascii > Content-Disposition: inline > Content-Transfer-Encoding: quoted-printable > > On Wed, Apr 10, 2002 at 10:15:28PM -0700, Peter Wemm wrote: > > "David O'Brien" wrote: > > > On Tue, Apr 09, 2002 at 09:48:21PM -0700, Marcel Moolenaar wrote: > > > > On Mon, Apr 08, 2002 at 07:10:29PM -0700, David O'Brien wrote: > > > > > On Mon, Apr 08, 2002 at 04:20:40PM -0700, Peter Wemm wrote: > > > > > > > Please commit this as it does improve things. As Peter mention= > ed it > > > > > > > would be nice to add the libstdc++ dependancy also. But even w= > /o tha > > t, > > > > > > > this patch is a help. > > > > > >=20 > > > > > > No, do what Max Khon suggested. Use PROG_CXX like NetBSD does. > > > > >=20 > > > > > Why can't we do both? If we can make PROG=3Dfoo do the right thing= > in the > > > > > common case we should make it do so. > > > >=20 > > > > The common case is all C. That already works. If you do both, you > > > > break the uncommon case, in which you have C++ source files (or at > > > > least named like them) but want C linkage. You cannot use PROG=3D > > > > anymore. This can only lead to a third one PROG_C, which is almost > > > > exactly like PROG. This is confusing. > > > >=20 > > > > I think only PROG_CXX is better. This automaticly means that PROG > > > > is for C. Always... > > >=20 > > > There is a patch that implements PROG=3D such that we can remove the > > > explicit linkage of libstdc++. Unless someone writes and commits the > > > PROG_CXX, we have no better option than to commit ru's patch. > >=20 > > It is not "no better option than to commit ..." - nothing is broken. > >=20 > > I have a PROG_CXX patch already FWIW. > >=20 > I agree with all of the above, and I also have a working patch. My version looked almost identical, but I haven't tested it. I've been obsessed with a loader bug for a few days and not getting enough sleep. (3 hours per day sucks after a while). One thing that I did though was to actually set _CCLINK to either ${CC} or ${CXX} dependng on what $PROG was set. Either works I guess, and the user Makefile interface is the same both ways. I tidied up a couple of other loose ends too. If you've buildworld tested it, please commit yours. We can haggle over internals later. After that, I'm happy for the groff/gperf commit to be backed out. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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 Apr 11 3: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 0A0A037B400; Thu, 11 Apr 2002 03:44:33 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BAiWW82694; Thu, 11 Apr 2002 03:44:32 -0700 (PDT) (envelope-from ru) Message-Id: <200204111044.g3BAiWW82694@freefall.freebsd.org> From: Ruslan Ermilov Date: Thu, 11 Apr 2002 03:44:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.README bsd.prog.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/04/11 03:44:31 PDT Modified files: share/mk bsd.README bsd.prog.mk Log: Implement PROG_CXX for . Obtained from: NetBSD (with some mods) Reviewed by: peter Revision Changes Path 1.22 +7 -1 src/share/mk/bsd.README 1.107 +10 -0 src/share/mk/bsd.prog.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 3:54:47 2002 Delivered-To: cvs-all@freebsd.org Received: from anchor-post-32.mail.demon.net (anchor-post-32.mail.demon.net [194.217.242.90]) by hub.freebsd.org (Postfix) with ESMTP id 3512C37B41B; Thu, 11 Apr 2002 03:54:43 -0700 (PDT) Received: from mailgate.nlsystems.com ([62.49.251.130] helo=herring.nlsystems.com) by anchor-post-32.mail.demon.net with esmtp (Exim 3.35 #1) id 16vcDx-000KN7-0W; Thu, 11 Apr 2002 11:54:41 +0100 Received: from herring (herring [10.0.0.2]) by herring.nlsystems.com (8.12.2/8.11.2) with ESMTP id g3BAsb3I021704; Thu, 11 Apr 2002 11:54:37 +0100 (BST) (envelope-from dfr@nlsystems.com) Date: Thu, 11 Apr 2002 11:54:37 +0100 (BST) From: Doug Rabson To: "M. Warner Losh" Cc: , , , Subject: Re: cvs commit: src/sys/ia64/ia64 trap.c In-Reply-To: <20020410.193336.38280367.imp@village.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, 10 Apr 2002, M. Warner Losh wrote: > In message: <20020410202906.J16912-100000@salmon.nlsystems.com> > Doug Rabson writes: > : On Wed, 10 Apr 2002, John Baldwin wrote: > : > : > > : > On 10-Apr-2002 Doug Rabson wrote: > : > > dfr 2002/04/10 12:24:59 PDT > : > > > : > > Modified files: > : > > sys/ia64/ia64 trap.c > : > > Log: > : > > Add exception and syscall support for executing IA-32 binaries. > : > > : > You are evil. :) > : > : Oh yes. I just ran my first i386 binary on my ia64 box... > > Hopefully it wasn't a 16-bit app using doscmd :-) Interestingly, that doesn't look too hard to support... -- Doug Rabson Mail: dfr@nlsystems.com Phone: +44 20 8348 6160 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 4: 2: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 2E42937B416; Thu, 11 Apr 2002 04:02:42 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BB2gS93578; Thu, 11 Apr 2002 04:02:42 -0700 (PDT) (envelope-from ru) Message-Id: <200204111102.g3BB2gS93578@freefall.freebsd.org> From: Ruslan Ermilov Date: Thu, 11 Apr 2002 04:02:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/groff/src/preproc/soelim 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/04/11 04:02:42 PDT Modified files: gnu/usr.bin/groff/src/preproc/soelim Makefile Log: Use the new PROG_CXX knob. Revision Changes Path 1.2 +1 -2 src/gnu/usr.bin/groff/src/preproc/soelim/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 4: 4: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 DC9D837B405; Thu, 11 Apr 2002 04:04:23 -0700 (PDT) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BB4NG93920; Thu, 11 Apr 2002 04:04:23 -0700 (PDT) (envelope-from sos) Message-Id: <200204111104.g3BB4NG93920@freefall.freebsd.org> From: Søren Schmidt Date: Thu, 11 Apr 2002 04:04:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-dma.c ata-pci.c ata-raid.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/04/11 04:04:23 PDT Modified files: sys/dev/ata ata-dma.c ata-pci.c ata-raid.c Log: Add yet another chip ID for a Promise TX2 chip. Revision Changes Path 1.95 +1 -0 src/sys/dev/ata/ata-dma.c 1.40 +2 -0 src/sys/dev/ata/ata-pci.c 1.46 +1 -0 src/sys/dev/ata/ata-raid.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 4: 6: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 435D337B400; Thu, 11 Apr 2002 04:06:07 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BB67D98179; Thu, 11 Apr 2002 04:06:07 -0700 (PDT) (envelope-from ru) Message-Id: <200204111106.g3BB67D98179@freefall.freebsd.org> From: Ruslan Ermilov Date: Thu, 11 Apr 2002 04:06:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile src/gnu/usr.bin/groff/src/devices/grolj4 Makefile src/gnu/usr.bin/groff/src/devices/grops Makefile src/gnu/usr.bin/groff/src/devices/grotty 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/04/11 04:06:07 PDT Modified files: gnu/usr.bin/groff/src/devices/grodvi Makefile gnu/usr.bin/groff/src/devices/grohtml Makefile gnu/usr.bin/groff/src/devices/grolbp Makefile gnu/usr.bin/groff/src/devices/grolj4 Makefile gnu/usr.bin/groff/src/devices/grops Makefile gnu/usr.bin/groff/src/devices/grotty Makefile gnu/usr.bin/groff/src/preproc/eqn Makefile gnu/usr.bin/groff/src/preproc/grn Makefile gnu/usr.bin/groff/src/preproc/html Makefile gnu/usr.bin/groff/src/preproc/pic Makefile gnu/usr.bin/groff/src/preproc/refer Makefile gnu/usr.bin/groff/src/preproc/tbl Makefile gnu/usr.bin/groff/src/roff/groff Makefile gnu/usr.bin/groff/src/roff/troff Makefile gnu/usr.bin/groff/src/utils/addftinfo Makefile gnu/usr.bin/groff/src/utils/hpftodit Makefile gnu/usr.bin/groff/src/utils/indxbib Makefile gnu/usr.bin/groff/src/utils/lkbib Makefile gnu/usr.bin/groff/src/utils/lookbib Makefile gnu/usr.bin/groff/src/utils/tfmtodit Makefile gnu/usr.bin/gperf Makefile Log: Revert the last change and mark the program as PROG_CXX. Revision Changes Path 1.8 +1 -4 src/gnu/usr.bin/gperf/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/devices/grodvi/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/devices/grohtml/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/devices/grolbp/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/devices/grolj4/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/devices/grops/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/devices/grotty/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/preproc/eqn/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/preproc/grn/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/preproc/html/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/preproc/pic/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/preproc/refer/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/preproc/tbl/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/roff/groff/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/roff/troff/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/utils/addftinfo/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/utils/hpftodit/Makefile 1.4 +3 -3 src/gnu/usr.bin/groff/src/utils/indxbib/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/utils/lkbib/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/utils/lookbib/Makefile 1.3 +3 -3 src/gnu/usr.bin/groff/src/utils/tfmtodit/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 4:13: 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 C4B4837B419; Thu, 11 Apr 2002 04:12:56 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BBCsv99564; Thu, 11 Apr 2002 04:12:54 -0700 (PDT) (envelope-from murray) Message-Id: <200204111112.g3BBCsv99564@freefall.freebsd.org> From: Murray Stokely Date: Thu, 11 Apr 2002 04:12:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/4.6R Makefile qa.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 murray 2002/04/11 04:12:54 PDT Modified files: en/releases/4.6R Makefile Added files: en/releases/4.6R qa.sgml Log: Add the beginnings of a testing guide for 4.6 RELEASE. For now, only offer a single item relating to the recent DHCP import. Revision Changes Path 1.2 +2 -2 www/en/releases/4.6R/Makefile 1.1 +59 -0 www/en/releases/4.6R/qa.sgml (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 4:19: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 85B9E37B404; Thu, 11 Apr 2002 04:19:34 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BBJYI00676; Thu, 11 Apr 2002 04:19:34 -0700 (PDT) (envelope-from murray) Message-Id: <200204111119.g3BBJYI00676@freefall.freebsd.org> From: Murray Stokely Date: Thu, 11 Apr 2002 04:19:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/4.6R schedule.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 murray 2002/04/11 04:19:34 PDT Modified files: en/releases/4.6R schedule.sgml Log: Note that the reminder announcement went out, add an entry for the testing guide (ongoing). Revision Changes Path 1.5 +9 -2 www/en/releases/4.6R/schedule.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 4:25: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 564EE37B400; Thu, 11 Apr 2002 04:25:44 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BBPie01892; Thu, 11 Apr 2002 04:25:44 -0700 (PDT) (envelope-from murray) Message-Id: <200204111125.g3BBPie01892@freefall.freebsd.org> From: Murray Stokely Date: Thu, 11 Apr 2002 04:25:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/5.0R schedule.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 murray 2002/04/11 04:25:44 PDT Modified files: en/releases/5.0R schedule.sgml Log: Update to reflect the fact that DP1 has been released. Revision Changes Path 1.8 +10 -4 www/en/releases/5.0R/schedule.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 4:29: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 328AB37B405; Thu, 11 Apr 2002 04:29:53 -0700 (PDT) Received: (from tg@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BBTqO02415; Thu, 11 Apr 2002 04:29:52 -0700 (PDT) (envelope-from tg) Message-Id: <200204111129.g3BBTqO02415@freefall.freebsd.org> From: Thomas Gellekum Date: Thu, 11 Apr 2002 04:29:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Mk bsd.python.mk ports/lang/python21 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/04/11 04:29:52 PDT Modified files: Mk bsd.python.mk lang/python21 Makefile distinfo pkg-plist Log: Upgrade to 2.1.3. PR: 36977 36979 Submitted by: "Karsten W. Rohrbach" Revision Changes Path 1.20 +4 -4 ports/Mk/bsd.python.mk 1.86 +1 -1 ports/lang/python21/Makefile 1.32 +1 -1 ports/lang/python21/distinfo 1.38 +4 -3 ports/lang/python21/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 Apr 11 4:31: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 C904137B400; Thu, 11 Apr 2002 04:31:49 -0700 (PDT) Received: (from tg@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BBVnS02905; Thu, 11 Apr 2002 04:31:49 -0700 (PDT) (envelope-from tg) Message-Id: <200204111131.g3BBVnS02905@freefall.freebsd.org> From: Thomas Gellekum Date: Thu, 11 Apr 2002 04:31:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/py-expat distinfo ports/math/py-mpz distinfo ports/x11-toolkits/py-tkinter distinfo ports/databases/py-gdbm 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 tg 2002/04/11 04:31:49 PDT Modified files: textproc/py-expat distinfo math/py-mpz distinfo x11-toolkits/py-tkinter distinfo databases/py-gdbm distinfo Log: Update checksum for Python-2.1.3. Revision Changes Path 1.6 +1 -0 ports/databases/py-gdbm/distinfo 1.4 +1 -0 ports/math/py-mpz/distinfo 1.6 +1 -0 ports/textproc/py-expat/distinfo 1.10 +1 -0 ports/x11-toolkits/py-tkinter/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 4:45: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 26EB237B416; Thu, 11 Apr 2002 04:45:30 -0700 (PDT) Received: (from tg@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BBjU805591; Thu, 11 Apr 2002 04:45:30 -0700 (PDT) (envelope-from tg) Message-Id: <200204111145.g3BBjU805591@freefall.freebsd.org> From: Thomas Gellekum Date: Thu, 11 Apr 2002 04:45:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/gadfly Makefile ports/databases/gadfly/files patch-re patch-socket X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/11 04:45:29 PDT Modified files: databases/gadfly Makefile Added files: databases/gadfly/files patch-re patch-socket Log: - Use re instead of obsolete regex module. This fixes some warnings with newer versions of Python. - Call socket.{connect,bind} with a tuple (ip, port). Obtained from: Zope CVS tree Revision Changes Path 1.10 +1 -0 ports/databases/gadfly/Makefile 1.1 +327 -0 ports/databases/gadfly/files/patch-re (new) 1.1 +24 -0 ports/databases/gadfly/files/patch-socket (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 4:50: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 3866637B400; Thu, 11 Apr 2002 04:50:26 -0700 (PDT) Received: (from tg@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BBoQ006578; Thu, 11 Apr 2002 04:50:26 -0700 (PDT) (envelope-from tg) Message-Id: <200204111150.g3BBoQ006578@freefall.freebsd.org> From: Thomas Gellekum Date: Thu, 11 Apr 2002 04:50:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/pyweblib 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 tg 2002/04/11 04:50:26 PDT Modified files: www/pyweblib Makefile Log: Don't depend on specific Python version. PR: 36589 Submitted by: Alan Eldridge Reviewed by: Oddbjorn Steffensen (maintainer) Revision Changes Path 1.2 +0 -1 ports/www/pyweblib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 4:56: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 5E85D37B41A; Thu, 11 Apr 2002 04:56:56 -0700 (PDT) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BBuuF07977; Thu, 11 Apr 2002 04:56:56 -0700 (PDT) (envelope-from roam) Message-Id: <200204111156.g3BBuuF07977@freefall.freebsd.org> From: Peter Pentchev Date: Thu, 11 Apr 2002 04:56:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/wrapper Makefile 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 roam 2002/04/11 04:56:56 PDT Modified files: x11/wrapper Makefile pkg-deinstall Log: Fix package deinstallation: only move X.bck over X if the former exists. Since pkg_deinstall(1) invokes the package deinstall script twice, at the second invocation X.bck is no longer there, and mv(1), even with the -f flag, returns a non-zero exit code. The shell executing the script propagates this exit code right back unto pkg_deinstall(1), which complains and aborts the package deinstallation. I wish I had not forgotten about this problem, so this could go in before DP1 was cut :( Approved by: no response from trevor@, the port maintainer Revision Changes Path 1.12 +1 -1 ports/x11/wrapper/Makefile 1.4 +3 -1 ports/x11/wrapper/pkg-deinstall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 5: 4: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 2045437B405; Thu, 11 Apr 2002 05:04:49 -0700 (PDT) Received: (from tg@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BC4nQ09334; Thu, 11 Apr 2002 05:04:49 -0700 (PDT) (envelope-from tg) Message-Id: <200204111204.g3BC4nQ09334@freefall.freebsd.org> From: Thomas Gellekum Date: Thu, 11 Apr 2002 05:04:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/wdm 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/04/11 05:04:48 PDT Modified files: x11/wdm Makefile distinfo pkg-plist Log: Use another daemon pic as logo. Submitted by: "Andrew S. Midthune" Revision Changes Path 1.50 +9 -5 ports/x11/wdm/Makefile 1.6 +1 -0 ports/x11/wdm/distinfo 1.6 +1 -0 ports/x11/wdm/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 Apr 11 5: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 3142437B405; Thu, 11 Apr 2002 05:13:13 -0700 (PDT) Received: (from tg@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BCDCA14783; Thu, 11 Apr 2002 05:13:13 -0700 (PDT) (envelope-from tg) Message-Id: <200204111213.g3BCDCA14783@freefall.freebsd.org> From: Thomas Gellekum Date: Thu, 11 Apr 2002 05:13:12 -0700 (PDT) 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 tg 2002/04/11 05:13:12 PDT Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Add Andrew S. Midthune for his beastie.xpm (used in the wdm port) and Karsten W. Rohrbach for his Python-2.1 port upgrade. Revision Changes Path 1.149 +8 -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 Thu Apr 11 5: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 3107037B400; Thu, 11 Apr 2002 05:13:13 -0700 (PDT) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BCDCR14782; Thu, 11 Apr 2002 05:13:13 -0700 (PDT) (envelope-from roam) Message-Id: <200204111213.g3BCDCR14782@freefall.freebsd.org> From: Peter Pentchev Date: Thu, 11 Apr 2002 05:13:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/portsentry 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 roam 2002/04/11 05:13:12 PDT Modified files: security/portsentry Makefile Log: Update the download site and URL. PR: 36687 Submitted by: Kimura Fuyuki Approved by: maintainer Revision Changes Path 1.14 +2 -2 ports/security/portsentry/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 5:14:32 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.musha.org (daemon.musha.org [218.44.187.2]) by hub.freebsd.org (Postfix) with ESMTP id 1F0BB37B400; Thu, 11 Apr 2002 05:14:24 -0700 (PDT) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 4E71B4D819; Thu, 11 Apr 2002 21:14:22 +0900 (JST) Date: Thu, 11 Apr 2002 21:14:22 +0900 Message-ID: <868z7ubffl.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Peter Pentchev Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11/wrapper Makefile pkg-deinstall In-Reply-To: <200204111156.g3BBuuF07977@freefall.freebsd.org> References: <200204111156.g3BBuuF07977@freefall.freebsd.org> User-Agent: Wanderlust/2.9.8 (Unchained Melody) SEMI/1.14.3 (Ushinoya) LIMIT/1.14.7 (Fujiidera) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE 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 At Thu, 11 Apr 2002 04:56:56 -0700 (PDT), Peter Pentchev wrote: > roam 2002/04/11 04:56:56 PDT > > Modified files: > x11/wrapper Makefile pkg-deinstall > Log: > Fix package deinstallation: only move X.bck over X if the former exists. > Since pkg_deinstall(1) invokes the package deinstall script twice, > at the second invocation X.bck is no longer there, and mv(1), even with > the -f flag, returns a non-zero exit code. The shell executing the script > propagates this exit code right back unto pkg_deinstall(1), which complains > and aborts the package deinstallation. You mean pkg_deinstall(1) included in the portupgrade suite, or is it just a misspelling of pkg_delete(1) sitting in the base? -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Somewhere out of a memory.. of lighted streets on quiet nights.." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 5: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 8188637B417; Thu, 11 Apr 2002 05:21:16 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BCLGS16322; Thu, 11 Apr 2002 05:21:16 -0700 (PDT) (envelope-from ru) Message-Id: <200204111221.g3BCLGS16322@freefall.freebsd.org> From: Ruslan Ermilov Date: Thu, 11 Apr 2002 05:21:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/libpam 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/04/11 05:21:16 PDT Modified files: lib/libpam/libpam Makefile Log: Reimplement the hack to put pam_static.o into .depend with some magic. Revision Changes Path 1.33 +3 -7 src/lib/libpam/libpam/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 5:30: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 E7DC237B416; Thu, 11 Apr 2002 05:30:22 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BCUMc18486; Thu, 11 Apr 2002 05:30:22 -0700 (PDT) (envelope-from ru) Message-Id: <200204111230.g3BCUMc18486@freefall.freebsd.org> From: Ruslan Ermilov Date: Thu, 11 Apr 2002 05:30:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/amd/include 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/04/11 05:30:22 PDT Modified files: usr.sbin/amd/include Makefile Log: Stop "make depend" from attempting to delete non-existent .depend. Revision Changes Path 1.8 +2 -2 src/usr.sbin/amd/include/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 6:24: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 145D437B417; Thu, 11 Apr 2002 06:24:21 -0700 (PDT) Received: (from ticso@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BDOLu39966; Thu, 11 Apr 2002 06:24:21 -0700 (PDT) (envelope-from ticso) Message-Id: <200204111324.g3BDOLu39966@freefall.freebsd.org> From: Bernd Walter Date: Thu, 11 Apr 2002 06:24:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/pci lca_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 ticso 2002/04/11 06:24:21 PDT Modified files: sys/alpha/pci lca_pci.c Log: LCA based systems can't handle more than 16 devices on pci bus 0. Reviewed by: gallatin Approved by: gallatin Revision Changes Path 1.14 +1 -1 src/sys/alpha/pci/lca_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 Apr 11 6:31: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 84A5A37B416; Thu, 11 Apr 2002 06:31:15 -0700 (PDT) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BDVFc40934; Thu, 11 Apr 2002 06:31:15 -0700 (PDT) (envelope-from yoichi) Message-Id: <200204111331.g3BDVFc40934@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Thu, 11 Apr 2002 06:31:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/tramp Makefile distinfo ports/net/tramp/files patch-lisp:tramp-util.el X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/11 06:31:15 PDT Modified files: net/tramp Makefile distinfo Removed files: net/tramp/files patch-lisp:tramp-util.el Log: Update to 20020411. Remove the patch (already applied in original distribution). Revision Changes Path 1.6 +2 -2 ports/net/tramp/Makefile 1.6 +1 -1 ports/net/tramp/distinfo 1.2 +0 -10 ports/net/tramp/files/patch-lisp:tramp-util.el (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 6:37: 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 BE19B37B417; Thu, 11 Apr 2002 06:36:57 -0700 (PDT) Received: (from patrick@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BDavD41902; Thu, 11 Apr 2002 06:36:57 -0700 (PDT) (envelope-from patrick) Message-Id: <200204111336.g3BDavD41902@freefall.freebsd.org> From: "Patrick S. Gardella" Date: Thu, 11 Apr 2002 06:36:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/pfe-devel 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 patrick 2002/04/11 06:36:57 PDT Modified files: lang/pfe-devel Makefile distinfo pkg-plist Log: Update to latest version. Revision Changes Path 1.6 +3 -5 ports/lang/pfe-devel/Makefile 1.6 +1 -1 ports/lang/pfe-devel/distinfo 1.4 +75 -33 ports/lang/pfe-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 Apr 11 6:44: 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 AAD0C37B42F; Thu, 11 Apr 2002 06:43:50 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BDhoI43044; Thu, 11 Apr 2002 06:43:50 -0700 (PDT) (envelope-from ru) Message-Id: <200204111343.g3BDhoI43044@freefall.freebsd.org> From: Ruslan Ermilov Date: Thu, 11 Apr 2002 06:43:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/11 06:43:50 PDT Modified files: . Makefile.inc1 Log: Don't special case i386/pc98, replace it with the smarter logic of setting ${TARGET} -- make it default to ${MACHINE} if we are not cross-building, and ${TARGET_ARCH} otherwise. Set MAKEOBJDIREPREFIX based on ${TARGET}, not on ${TARGET_ARCH}. This is useful if you want to cross-build pc98 worlds on i386. Revision Changes Path 1.252 +6 -9 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 7:17:10 2002 Delivered-To: cvs-all@freebsd.org Received: from south.nanolink.com (south.nanolink.com [217.75.134.10]) by hub.freebsd.org (Postfix) with SMTP id 61BB037B405 for ; Thu, 11 Apr 2002 07:17:02 -0700 (PDT) Received: (qmail 48748 invoked from network); 11 Apr 2002 14:23:27 -0000 Received: from discworld.nanolink.com (HELO straylight.ringlet.net) (217.75.135.248) by south.nanolink.com with SMTP; 11 Apr 2002 14:23:27 -0000 Received: (qmail 23015 invoked by uid 1000); 11 Apr 2002 14:16:53 -0000 Date: Thu, 11 Apr 2002 17:16:53 +0300 From: Peter Pentchev To: Akinori MUSHA Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11/wrapper Makefile pkg-deinstall Message-ID: <20020411171653.E43974@straylight.oblivion.bg> Mail-Followup-To: Akinori MUSHA , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200204111156.g3BBuuF07977@freefall.freebsd.org> <868z7ubffl.wl@archon.local.idaemons.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="RIYY1s2vRbPFwWeW" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <868z7ubffl.wl@archon.local.idaemons.org>; from knu@iDaemons.org on Thu, Apr 11, 2002 at 09:14:22PM +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 --RIYY1s2vRbPFwWeW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 11, 2002 at 09:14:22PM +0900, Akinori MUSHA wrote: > At Thu, 11 Apr 2002 04:56:56 -0700 (PDT), > Peter Pentchev wrote: > > roam 2002/04/11 04:56:56 PDT > >=20 > > Modified files: > > x11/wrapper Makefile pkg-deinstall=20 > > Log: > > Fix package deinstallation: only move X.bck over X if the former exis= ts. > > Since pkg_deinstall(1) invokes the package deinstall script twice, > > at the second invocation X.bck is no longer there, and mv(1), even wi= th > > the -f flag, returns a non-zero exit code. The shell executing the s= cript > > propagates this exit code right back unto pkg_deinstall(1), which com= plains > > and aborts the package deinstallation. >=20 > You mean pkg_deinstall(1) included in the portupgrade suite, or is it > just a misspelling of pkg_delete(1) sitting in the base? Oops; of course I meant pkg_delete(1), sorry for the jolt that must have given you :) 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 am not the subject of this sentence. --RIYY1s2vRbPFwWeW 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 iEYEARECAAYFAjy1mtUACgkQ7Ri2jRYZRVM3ewCguWiAIrgxSD77f4/+QaO58rnh kfsAoIFAYfoaMvy75SeqKpaWpq/peLIA =s0FK -----END PGP SIGNATURE----- --RIYY1s2vRbPFwWeW-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 7:18: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 26CA237B41B; Thu, 11 Apr 2002 07:18:46 -0700 (PDT) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BEIkw52536; Thu, 11 Apr 2002 07:18:46 -0700 (PDT) (envelope-from roam) Message-Id: <200204111418.g3BEIkw52536@freefall.freebsd.org> From: Peter Pentchev Date: Thu, 11 Apr 2002 07:18:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/jdresolve 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 roam 2002/04/11 07:18:45 PDT Modified files: www/jdresolve Makefile distinfo Log: Change the download site and switch to a bzip2-compressed distfile. PR: 36678 Submitted by: maintainer Revision Changes Path 1.2 +2 -1 ports/www/jdresolve/Makefile 1.2 +1 -1 ports/www/jdresolve/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 7:23: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 EFF7537B435; Thu, 11 Apr 2002 07:23:00 -0700 (PDT) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BEN0253294; Thu, 11 Apr 2002 07:23:00 -0700 (PDT) (envelope-from roam) Message-Id: <200204111423.g3BEN0253294@freefall.freebsd.org> From: Peter Pentchev Date: Thu, 11 Apr 2002 07:23:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/jdresolve 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 roam 2002/04/11 07:23:00 PDT Modified files: www/jdresolve Makefile distinfo Log: Forced commit to note that the previous commit - distsites change and switch to bzip2 distfile - was submitted in: PR: 36778 Submitted by: maintainer Revision Changes Path 1.3 +0 -0 ports/www/jdresolve/Makefile 1.3 +0 -0 ports/www/jdresolve/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 7:24:43 2002 Delivered-To: cvs-all@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id B049137B41B; Thu, 11 Apr 2002 07:23:12 -0700 (PDT) Received: from naos (naos [128.130.111.28]) by vexpert.dbai.tuwien.ac.at (8.11.6/8.11.6) with ESMTP id g3BENBW08865; Thu, 11 Apr 2002 16:23:11 +0200 (MET DST) Date: Thu, 11 Apr 2002 16:23:09 +0200 (CEST) From: Gerald Pfeifer To: Ceri Davies Cc: cvs-committers@freebsd.org, Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/faq book.sgml In-Reply-To: <200204100918.g3A9IqD16413@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, 10 Apr 2002, Ceri Davies wrote: > Modified files: > en_US.ISO8859-1/books/faq book.sgml > Log: > Update the list of reasons why mail to FreeBSD.org may be rejected. > > Inspired by: spamfest on -questions > Approved by: murray It would be nice to have an explicit list of those RBLs currently in use, which seem to be {blackholes,dul,rss}.mail-abuse.org according to my grep on hub. Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 7:35:20 2002 Delivered-To: cvs-all@freebsd.org Received: from host213-123-132-153.in-addr.btopenworld.com (host213-123-132-153.in-addr.btopenworld.com [213.123.132.153]) by hub.freebsd.org (Postfix) with ESMTP id 52C7537B416; Thu, 11 Apr 2002 07:35:16 -0700 (PDT) Received: by host213-123-132-153.in-addr.btopenworld.com (Postfix, from userid 1001) id DF2ED61A; Thu, 11 Apr 2002 15:35:15 +0100 (BST) Date: Thu, 11 Apr 2002 15:35:15 +0100 From: Dominic Marks To: Ying-Chieh Liao Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, perky@fallin.lv Subject: Re: cvs commit: ports/www/apache2 Makefile Message-ID: <20020411153515.A40215@host213-123-132-153.in-addr.bto> References: <200204110516.g3B5G7f02924@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: <200204110516.g3B5G7f02924@freefall.freebsd.org>; from ijliao@FreeBSD.org on Wed, Apr 10, 2002 at 10:16:07PM -0700 Sender: owner-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, Apr 10, 2002 at 10:16:07PM -0700, Ying-Chieh Liao wrote: > ijliao 2002/04/10 22:16:07 PDT > > Modified files: > www/apache2 Makefile > Log: > - Disable THREADS by default (many ports people reported problems around > threads) > - Bump port revision > - Added two more "POSIX expr" patch target for 5-CURRENT > > PR: 36981 > Submitted by: maintainer > > Revision Changes Path > 1.112 +8 -4 ports/www/apache2/Makefile > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message In case the maintainer missed this, please see ports/36907. -- Dominic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 7:43: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 45CDB37B400; Thu, 11 Apr 2002 07:43:20 -0700 (PDT) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BEhKF57057; Thu, 11 Apr 2002 07:43:20 -0700 (PDT) (envelope-from yoichi) Message-Id: <200204111443.g3BEhKF57057@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Thu, 11 Apr 2002 07:43:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/gemcal Makefile distinfo ports/deskutils/mhc Makefile distinfo ports/deskutils/mhc-emacs20 Makefile ports/deskutils/mhc-xemacs21-mule 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 yoichi 2002/04/11 07:43:19 PDT Modified files: deskutils/gemcal Makefile distinfo deskutils/mhc Makefile distinfo deskutils/mhc-emacs20 Makefile deskutils/mhc-xemacs21-mule Makefile Log: Update to mhc-current-snap20020411. Revision Changes Path 1.4 +2 -2 ports/deskutils/gemcal/Makefile 1.3 +1 -1 ports/deskutils/gemcal/distinfo 1.5 +1 -1 ports/deskutils/mhc-emacs20/Makefile 1.3 +1 -1 ports/deskutils/mhc-xemacs21-mule/Makefile 1.5 +1 -1 ports/deskutils/mhc/Makefile 1.4 +1 -1 ports/deskutils/mhc/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 7:48:40 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail14.speakeasy.net [216.254.0.214]) by hub.freebsd.org (Postfix) with ESMTP id 49A9937B405 for ; Thu, 11 Apr 2002 07:48:16 -0700 (PDT) Received: (qmail 4049 invoked from network); 11 Apr 2002 14:48:13 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail14.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 11 Apr 2002 14:48:13 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g3BEmhv56834; Thu, 11 Apr 2002 10:48:44 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <20020411162116.D3455-100000@gamplex.bde.org> Date: Thu, 11 Apr 2002 10:47:45 -0400 (EDT) From: John Baldwin To: Bruce Evans Subject: Re: cvs commit: src/sys/dev/digi digi.c Cc: Brian Somers , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, Jake Burkholder Sender: owner-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 11-Apr-2002 Bruce Evans wrote: > On Wed, 10 Apr 2002, Jake Burkholder wrote: > >> Apparently, On Wed, Apr 10, 2002 at 09:06:18AM -0400, >> John Baldwin said words to the effect of; >> > I've thought about having some sort of separate API for code that just >> > ways to >> > delay. Right now they use tsleep() on a channel that never gets woken up >> > with >> > a timeout. If we had a delay(int timo) function then it could use a >> > callout >> > when callouts were working and fall back to DELAY() in the cold case. >> >> No, this is wrong. Anything that uses cold is wrong. The correct fix is to >> move the clock initialization earlier in boot to be before the device probe. > > This can't be done in a machine independent way. Clock interrupts > might be shared, and then enabling them first would cause either endless > interrupts if another device is driving the interrupt. This happens > not to be a problem on i386's because clock interrupts aren't shared. They aren't shared on anything else we use run on right now either. -- 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 Apr 11 7: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 9FFEC37B400; Thu, 11 Apr 2002 07:49:32 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BEnW758346; Thu, 11 Apr 2002 07:49:32 -0700 (PDT) (envelope-from ru) Message-Id: <200204111449.g3BEnW758346@freefall.freebsd.org> From: Ruslan Ermilov Date: Thu, 11 Apr 2002 07:49:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 src/usr.bin/kdump Makefile src/usr.bin/truss 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/04/11 07:49:32 PDT Modified files: . Makefile.inc1 usr.bin/kdump Makefile usr.bin/truss Makefile Log: I now don't seem to be able to reproduce the -DNOCLEAN buildworld breakage with ioctl.c. The .depend file should track dependencies just fine, and the worst we can have is to miss new ioctls. But I still think it's a good idea to have -DNOCLEAN build produce the same ioctl.c as it would without -DNOCLEAN. Prodded for a long time by: bde Revision Changes Path 1.253 +4 -0 src/Makefile.inc1 1.8 +1 -5 src/usr.bin/kdump/Makefile 1.16 +1 -5 src/usr.bin/truss/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 7:51: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 4503D37B400; Thu, 11 Apr 2002 07:51:08 -0700 (PDT) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BEp8d58728; Thu, 11 Apr 2002 07:51:08 -0700 (PDT) (envelope-from yoichi) Message-Id: <200204111451.g3BEp8d58728@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Thu, 11 Apr 2002 07:51:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/gemcal Makefile ports/japanese/aterm Makefile ports/japanese/jyuroku Makefile ports/japanese/shinonome 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 yoichi 2002/04/11 07:51:07 PDT Modified files: deskutils/gemcal Makefile japanese/aterm Makefile japanese/jyuroku Makefile japanese/shinonome Makefile Log: Change maintainer's address to the one at FreeBSD.org. Revision Changes Path 1.5 +1 -1 ports/deskutils/gemcal/Makefile 1.3 +2 -2 ports/japanese/aterm/Makefile 1.2 +1 -1 ports/japanese/jyuroku/Makefile 1.7 +1 -1 ports/japanese/shinonome/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 7:59:22 2002 Delivered-To: cvs-all@freebsd.org Received: from lion-around.at.yiff.net (lion-around.at.yiff.net [167.206.208.229]) by hub.freebsd.org (Postfix) with ESMTP id 3F61A37B404; Thu, 11 Apr 2002 07:59:18 -0700 (PDT) Received: (from chris@localhost) by lion-around.at.yiff.net (8.11.6/8.11.6) id g3BEweK42004; Thu, 11 Apr 2002 10:58:40 -0400 (EDT) (envelope-from chris@netmonger.net) X-Authentication-Warning: lion-around.at.yiff.net: chris set sender to chris@netmonger.net using -f Date: Thu, 11 Apr 2002 10:58:40 -0400 From: Christopher Masto To: "Vanilla I. Shu" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/graphics/gimp1 Makefile distinfo pkg-plist ports/graphics/gimp1/files patch-af patch-ak patch-ao patch-gimptool-1.2.in patch-libgimp::Makefile.in patch-plug-ins::libgck::gck::Makefile.in Message-ID: <20020411145840.GA41956@netmonger.net> References: <200204110137.g3B1bXi61527@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204110137.g3B1bXi61527@freefall.freebsd.org> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 10, 2002 at 06:37:33PM -0700, Vanilla I. Shu wrote: > vanilla 2002/04/10 18:37:33 PDT > > Modified files: > graphics/gimp1 Makefile distinfo pkg-plist > Added files: > graphics/gimp1/files patch-gimptool-1.2.in > patch-libgimp::Makefile.in > patch-plug-ins::libgck::gck::Makefile.in > Removed files: > graphics/gimp1/files patch-af patch-ak patch-ao > Log: > Upgrade to 1.2.3. Why did you comment out PORTEPOCH? gimp-1.2.2_1,1 > succeeds port (port has 1.2.3) -- Christopher Masto CB461C61 8AFC E3A8 7CE5 9023 B35D C26A D849 1F6E CB46 1C61 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 8:23: 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 4802637B400; Thu, 11 Apr 2002 08:23:00 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BFN0a68999; Thu, 11 Apr 2002 08:23:00 -0700 (PDT) (envelope-from knu) Message-Id: <200204111523.g3BFN0a68999@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 11 Apr 2002 08:23:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/portupgrade 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/04/11 08:23:00 PDT Modified files: sysutils/portupgrade Makefile distinfo Log: Update to 20020405. 2002-04-05 21:08 knu * lib/pkginfo.rb: Show the full pkgname as exception message when the version part is invalid. 2002-04-05 21:06 knu * bin/portupgrade: Fix a flaw where dependent ports' build/install error was not properly detected when -s is specified. Reported by: Stijn Hoop Revision Changes Path 1.136 +3 -2 ports/sysutils/portupgrade/Makefile 1.122 +1 -0 ports/sysutils/portupgrade/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 8: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 EADBF37B404; Thu, 11 Apr 2002 08:31:01 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BFV1970332; Thu, 11 Apr 2002 08:31:01 -0700 (PDT) (envelope-from jhb) Message-Id: <200204111531.g3BFV1970332@freefall.freebsd.org> From: John Baldwin Date: Thu, 11 Apr 2002 08:31:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/pcm feeder_fmt.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/04/11 08:31:01 PDT Modified files: sys/dev/sound/pcm feeder_fmt.c Log: Fix a warning due to the code assuming sizeof(int) == sizeof(void *) which is not true on the alpha. I think that other parts of this code also make this implicit assumption as well. Revision Changes Path 1.7 +2 -2 src/sys/dev/sound/pcm/feeder_fmt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 8:44: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 BE0C037B419; Thu, 11 Apr 2002 08:44:17 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BFiHp72490; Thu, 11 Apr 2002 08:44:17 -0700 (PDT) (envelope-from bmah) Message-Id: <200204111544.g3BFiHp72490@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 11 Apr 2002 08:44:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.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/04/11 08:44:17 PDT Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Add Netgear MA401 to wi(4)-supported devices. Submitted by: Michael Sierchio Revision Changes Path 1.79 +4 -1 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 8:47: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 E7DC437B400; Thu, 11 Apr 2002 08:47:52 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BFlq173083; Thu, 11 Apr 2002 08:47:52 -0700 (PDT) (envelope-from bmah) Message-Id: <200204111547.g3BFlq173083@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 11 Apr 2002 08:47:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.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/04/11 08:47:52 PDT Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Add Dynalink IS64PPH+ to ISDN interfaces, fix an apparent typo. Submitted by: znerd Revision Changes Path 1.80 +2 -2 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 8:49: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 2F15337B400; Thu, 11 Apr 2002 08:49:22 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BFnMd73337; Thu, 11 Apr 2002 08:49:22 -0700 (PDT) (envelope-from bmah) Message-Id: <200204111549.g3BFnMd73337@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 11 Apr 2002 08:49:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.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/04/11 08:49:22 PDT Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: MFC: Netgear MA401, Dynalink IS64PPH+. Revision Changes Path 1.13.2.56 +5 -2 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 8:50:12 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 DAC1F37B417; Thu, 11 Apr 2002 08:49:59 -0700 (PDT) Received: (from mike@localhost) by espresso.q9media.com (8.11.6/8.11.6) id g3BFhHu12828; Thu, 11 Apr 2002 11:43:17 -0400 (EDT) (envelope-from mike) Date: Thu, 11 Apr 2002 11:43:17 -0400 From: Mike Barcroft To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf Message-ID: <20020411114317.D70911@espresso.q9media.com> References: <200204110848.g3B8mqn51210@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204110848.g3B8mqn51210@freefall.freebsd.org>; from peter@FreeBSD.org on Thu, Apr 11, 2002 at 01:48:52AM -0700 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 Peter Wemm writes: > peter 2002/04/11 01:48:52 PDT > > Modified files: > etc/defaults rc.conf > Log: > Back out /etc/rc.d addition. I'd like to see something come of what has > already been imported. It would have been nice to get it out there > in DP1, but that is too late now. > > Revision Changes Path > 1.146 +2 -2 src/etc/defaults/rc.conf What do you think about allowing /etc/rc.local to be a directory? It might take some hackery to support its historical presence as a file, but I think the name is far better. 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 Thu Apr 11 8: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 B3BA137B400; Thu, 11 Apr 2002 08:58:27 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BFwRo74504; Thu, 11 Apr 2002 08:58:27 -0700 (PDT) (envelope-from bmah) Message-Id: <200204111558.g3BFwRo74504@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 11 Apr 2002 08:58:27 -0700 (PDT) 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/04/11 08:58:27 PDT Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC noted: I18N additions/enhancements. Pointed out by: phantom Revision Changes Path 1.317 +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 Thu Apr 11 9: 4: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 56D4437B417; Thu, 11 Apr 2002 09:04:40 -0700 (PDT) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BG4eK75626; Thu, 11 Apr 2002 09:04:40 -0700 (PDT) (envelope-from lioux) Message-Id: <200204111604.g3BG4eK75626@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 11 Apr 2002 09:04:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/understand_ada Makefile distinfo ports/devel/understand_c 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/04/11 09:04:40 PDT Modified files: devel/understand_ada Makefile distinfo devel/understand_c Makefile distinfo Log: Update to 1.4 Build 156 Revision Changes Path 1.24 +1 -1 ports/devel/understand_ada/Makefile 1.22 +1 -1 ports/devel/understand_ada/distinfo 1.43 +1 -1 ports/devel/understand_c/Makefile 1.40 +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 Thu Apr 11 9: 6:31 2002 Delivered-To: cvs-all@freebsd.org Received: from mailout07.sul.t-online.com (mailout07.sul.t-online.com [194.25.134.83]) by hub.freebsd.org (Postfix) with ESMTP id 303B737B400; Thu, 11 Apr 2002 09:06:22 -0700 (PDT) Received: from fwd08.sul.t-online.de by mailout07.sul.t-online.com with smtp id 16vgwL-00064Q-04; Thu, 11 Apr 2002 17:56:49 +0200 Received: from Magelan.Leidinger.net (520065502893-0001@[217.229.212.245]) by fmrl08.sul.t-online.com with esmtp id 16vgw6-23k2d6C; Thu, 11 Apr 2002 17:56:34 +0200 Received: from Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.2/8.12.2) with ESMTP id g3BFuaLh001628; Thu, 11 Apr 2002 17:56:40 +0200 (CEST) (envelope-from netchild@Leidinger.net) Message-Id: <200204111556.g3BFuaLh001628@Magelan.Leidinger.net> Date: Thu, 11 Apr 2002 17:56:36 +0200 (CEST) From: Alexander Leidinger Subject: Re: cvs commit: src/share/mk bsd.sys.mk To: imp@village.org Cc: bde@zeta.org.au, obrien@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-Reply-To: <20020411.002144.38305372.imp@village.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii X-Sender: 520065502893-0001@t-dialin.net Sender: owner-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 11 Apr, M. Warner Losh wrote: > : > You did not respond to creating the non-standard /usr/include/scm.h as a > : > place to put all these various compatibility macros. > : > : I like it better than for FreeBSD ids, but think it would > : just increase unportability. You would still have to edit files to add it, > : and it is not so easy to kill using Makefile hacks like -D__RCSID=__IGNORE > : where __IGNORE() expands to nothing. > > CFLAGS += -include scm.h > > might be a way to deal (at least for gnu compilers) :-) I've seen the smiley, but please: don't do this, icc has no equivalent to to -include. Bye, Alexander. -- It's not a bug, it's tradition! http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 9: 8: 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 9EB0137B400; Thu, 11 Apr 2002 09:08:02 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BG82g79919; Thu, 11 Apr 2002 09:08:02 -0700 (PDT) (envelope-from des) Message-Id: <200204111608.g3BG82g79919@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 11 Apr 2002 09:08:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh servconf.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/04/11 09:08:02 PDT Modified files: crypto/openssh servconf.c Log: Do not attempt to load an ssh2 RSA host key by default. Revision Changes Path 1.27 +0 -2 src/crypto/openssh/servconf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 9: 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 9FA6337B417; Thu, 11 Apr 2002 09:08:48 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BG8mC80009; Thu, 11 Apr 2002 09:08:48 -0700 (PDT) (envelope-from des) Message-Id: <200204111608.g3BG8mC80009@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 11 Apr 2002 09:08:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh myproposal.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/04/11 09:08:48 PDT Modified files: crypto/openssh myproposal.h Log: Prefer DSA to RSA if both are available. Revision Changes Path 1.2 +37 -6 src/crypto/openssh/myproposal.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 9:17:40 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 69B5937B404; Thu, 11 Apr 2002 09:17:31 -0700 (PDT) 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 g3BGHTi09310; Thu, 11 Apr 2002 10:17:29 -0600 (MDT) (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 g3BGHSc44484; Thu, 11 Apr 2002 10:17:28 -0600 (MDT) (envelope-from imp@village.org) Date: Thu, 11 Apr 2002 10:17:18 -0600 (MDT) Message-Id: <20020411.101718.69020559.imp@village.org> To: Alexander@Leidinger.net Cc: bde@zeta.org.au, obrien@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.sys.mk From: "M. Warner Losh" In-Reply-To: <200204111556.g3BFuaLh001628@Magelan.Leidinger.net> References: <20020411.002144.38305372.imp@village.org> <200204111556.g3BFuaLh001628@Magelan.Leidinger.net> 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: <200204111556.g3BFuaLh001628@Magelan.Leidinger.net> Alexander Leidinger writes: : On 11 Apr, M. Warner Losh wrote: : : > : > You did not respond to creating the non-standard /usr/include/scm.h as a : > : > place to put all these various compatibility macros. : > : : > : I like it better than for FreeBSD ids, but think it would : > : just increase unportability. You would still have to edit files to add it, : > : and it is not so easy to kill using Makefile hacks like -D__RCSID=__IGNORE : > : where __IGNORE() expands to nothing. : > : > CFLAGS += -include scm.h : > : > might be a way to deal (at least for gnu compilers) :-) : : I've seen the smiley, but please: don't do this, icc has no equivalent : to to -include. There's always cat :-) (oh wait, I guess I need two smiley faces for that suggestions :-) A big part of the problem is that there's no way to do '#define foo(x)' on the command line (correct me if I'm wrong). You can do '#define foo' on the command line, but that leaves calls of foo expanding to (x). You'd have to have __IGNORE (to go back to bde's example) defined in cdefs.h. And if you are doing that, then why not have __RCSID defined too. It's not like it pollutes the application name space :-). Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 9:26:29 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 1E23037B416; Thu, 11 Apr 2002 09:26:24 -0700 (PDT) Received: from localhost (localhost [::1]) by castle.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) with ESMTP/inet6 id g3BGQLv49261; Fri, 12 Apr 2002 01:26:22 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) Cc: peter@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20020411114317.D70911@espresso.q9media.com> References: <200204110848.g3B8mqn51210@freefall.freebsd.org> <20020411114317.D70911@espresso.q9media.com> X-User-Agent: Mew/1.94.2 XEmacs/21.5 (bamboo) 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: 12 From: Makoto Matsushita To: mike@FreeBSD.org Subject: Re: cvs commit: src/etc/defaults rc.conf Date: Fri, 12 Apr 2002 01:26:18 +0900 Message-Id: <20020412012618J.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 mike> What do you think about allowing /etc/rc.local to be a mike> directory? It might take some hackery to support its historical mike> presence as a file, but I think the name is far better. We currently employs X.local for site-local alternatives, and we'll use /etc/rc.d for system-global directory for rc-files; how about creating /etc/rc.d.local (or /etc/rc.local.d if directory name should follow /etc/X.d name convension) for this purpose? -- - 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 Apr 11 9:39: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 67E0F37B417; Thu, 11 Apr 2002 09:39:14 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BGdEP84748; Thu, 11 Apr 2002 09:39:14 -0700 (PDT) (envelope-from jhb) Message-Id: <200204111639.g3BGdEP84748@freefall.freebsd.org> From: John Baldwin Date: Thu, 11 Apr 2002 09:39:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/i386 mkisoimages.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 jhb 2002/04/11 09:39:14 PDT Modified files: release/i386 mkisoimages.sh Log: Switch to using cdboot for booting i386 CD's by default. Approved by: murray Revision Changes Path 1.7 +2 -2 src/release/i386/mkisoimages.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 9:41:44 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail14.speakeasy.net [216.254.0.214]) by hub.freebsd.org (Postfix) with ESMTP id CD49C37B417 for ; Thu, 11 Apr 2002 09:41:37 -0700 (PDT) Received: (qmail 12511 invoked from network); 11 Apr 2002 16:41:36 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail14.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 11 Apr 2002 16:41:36 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g3BGgQv57264; Thu, 11 Apr 2002 12:42:26 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <200204111639.g3BGdEP84748@freefall.freebsd.org> Date: Thu, 11 Apr 2002 12:41:26 -0400 (EDT) From: John Baldwin To: John Baldwin Subject: RE: cvs commit: src/release/i386 mkisoimages.sh 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 11-Apr-2002 John Baldwin wrote: > jhb 2002/04/11 09:39:14 PDT > > Modified files: > release/i386 mkisoimages.sh > Log: > Switch to using cdboot for booting i386 CD's by default. By the way, I'm not sure why the old command line specified a manual path for the boot catalog. mkisofs uses /boot.catalog by default and creates it from scratch so it isn't required. Also, /floppies doesn't seem to be a sensible location for it anyways since the catalog file isn't a floppy image. -- 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 Apr 11 9:42: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 D842E37B421; Thu, 11 Apr 2002 09:41:52 -0700 (PDT) Received: (from vanilla@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BGfqK85037; Thu, 11 Apr 2002 09:41:52 -0700 (PDT) (envelope-from vanilla) Message-Id: <200204111641.g3BGfqK85037@freefall.freebsd.org> From: "Vanilla I. Shu" Date: Thu, 11 Apr 2002 09:41:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gimp1 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 vanilla 2002/04/11 09:41:52 PDT Modified files: graphics/gimp1 Makefile Log: set PORTEPOCH back. PR: Christopher Masto Revision Changes Path 1.98 +1 -1 ports/graphics/gimp1/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 9:44: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 67F0137B404; Thu, 11 Apr 2002 09:44:20 -0700 (PDT) Received: (from glewis@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BGiKg85412; Thu, 11 Apr 2002 09:44:20 -0700 (PDT) (envelope-from glewis) Message-Id: <200204111644.g3BGiKg85412@freefall.freebsd.org> From: Greg Lewis Date: Thu, 11 Apr 2002 09:44:20 -0700 (PDT) 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 glewis 2002/04/11 09:44:20 PDT Modified files: en_US.ISO8859-1/articles/contributors article.sgml en_US.ISO8859-1/share/sgml authors.ent Log: Traditional first commit. Remove myself from contributors and list myself as a developer. Reviewed by: sobomax Approved by: sobomax Revision Changes Path 1.150 +4 -4 doc/en_US.ISO8859-1/articles/contributors/article.sgml 1.223 +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 Apr 11 9:59: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 B916D37B404; Thu, 11 Apr 2002 09:59:13 -0700 (PDT) Received: (from glewis@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BGxDt87403; Thu, 11 Apr 2002 09:59:13 -0700 (PDT) (envelope-from glewis) Message-Id: <200204111659.g3BGxDt87403@freefall.freebsd.org> From: Greg Lewis Date: Thu, 11 Apr 2002 09:59:13 -0700 (PDT) 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 glewis 2002/04/11 09:59:13 PDT Modified files: en/news news.xml Log: Announce myself as a new committer. Reviewed by: sobomax Approved by: sobomax Revision Changes Path 1.80 +11 -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 Apr 11 10: 8: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 826BC37B400; Thu, 11 Apr 2002 10:08:37 -0700 (PDT) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BH8bJ92383; Thu, 11 Apr 2002 10:08:37 -0700 (PDT) (envelope-from alfred) Message-Id: <200204111708.g3BH8bJ92383@freefall.freebsd.org> From: Alfred Perlstein Date: Thu, 11 Apr 2002 10:08:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include/rpcsvc sm_inter.x src/usr.sbin/rpc.statd procs.c statd.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 alfred 2002/04/11 10:08:37 PDT Modified files: (Branch: RELENG_4) include/rpcsvc sm_inter.x usr.sbin/rpc.statd procs.c statd.h Log: MFC: SM_NOTIFY to make NFS happy. Submitted by: Dan Nelson PR: misc/26373 Revision Changes Path 1.8.2.1 +8 -3 src/include/rpcsvc/sm_inter.x 1.4.2.1 +2 -2 src/usr.sbin/rpc.statd/procs.c 1.2.8.1 +1 -14 src/usr.sbin/rpc.statd/statd.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 10:13: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 04A9137B405; Thu, 11 Apr 2002 10:13:09 -0700 (PDT) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BHD8X93086; Thu, 11 Apr 2002 10:13:08 -0700 (PDT) (envelope-from alc) Message-Id: <200204111713.g3BHD8X93086@freefall.freebsd.org> From: Alan Cox Date: Thu, 11 Apr 2002 10:13:08 -0700 (PDT) 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 alc 2002/04/11 10:13:08 PDT Modified files: sys/alpha/alpha machdep.c Log: Add a comment that osigreturn() is MPSAFE. Revision Changes Path 1.177 +2 -0 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 Apr 11 10:14: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 C0DA137B405; Thu, 11 Apr 2002 10:14:22 -0700 (PDT) Received: (from ume@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BHEMg93256; Thu, 11 Apr 2002 10:14:22 -0700 (PDT) (envelope-from ume) Message-Id: <200204111714.g3BHEMg93256@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Thu, 11 Apr 2002 10:14:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/tftpd tftpd.c src/usr.bin/tftp main.c tftp.1 tftp.c tftpsubs.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/04/11 10:14:22 PDT Modified files: libexec/tftpd tftpd.c usr.bin/tftp main.c tftp.1 tftp.c tftpsubs.c Log: IPv6 support for tftp/tftpd. Obtained from: KAME MFC after: 2 weeks Revision Changes Path 1.24 +59 -14 src/libexec/tftpd/tftpd.c 1.16 +91 -76 src/usr.bin/tftp/main.c 1.10 +7 -2 src/usr.bin/tftp/tftp.1 1.10 +57 -16 src/usr.bin/tftp/tftp.c 1.5 +1 -1 src/usr.bin/tftp/tftpsubs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 10:17: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 9345437B400; Thu, 11 Apr 2002 10:17:28 -0700 (PDT) Received: (from ume@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BHHSp93738; Thu, 11 Apr 2002 10:17:28 -0700 (PDT) (envelope-from ume) Message-Id: <200204111717.g3BHHSp93738@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Thu, 11 Apr 2002 10:17:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc inetd.conf X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/11 10:17:28 PDT Modified files: etc inetd.conf Log: Add an IPv6 sample line for tftpd. MFC after: 2 weeks Revision Changes Path 1.57 +2 -1 src/etc/inetd.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 10:30: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 6E4A237B416; Thu, 11 Apr 2002 10:30:24 -0700 (PDT) Received: (from ume@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BHUO195725; Thu, 11 Apr 2002 10:30:24 -0700 (PDT) (envelope-from ume) Message-Id: <200204111730.g3BHUO195725@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Thu, 11 Apr 2002 10:30:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net 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/04/11 10:30:24 PDT Modified files: (Branch: RELENG_4) lib/libc/net res_send.c Log: MFC 1.45: When kevent() returns with errno = EINTR and timeout is not exceeded, it should be falldown to next_ns. Revision Changes Path 1.31.2.9 +3 -4 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 Thu Apr 11 10:32:43 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 BF90637B404; Thu, 11 Apr 2002 10:32:38 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3BHWZYm095954; Thu, 11 Apr 2002 10:32:35 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3BHVJfS095942; Thu, 11 Apr 2002 10:31:19 -0700 (PDT) Date: Thu, 11 Apr 2002 10:31:19 -0700 From: "David O'Brien" To: Alexander Leidinger Cc: imp@village.org, bde@zeta.org.au, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/share/mk bsd.sys.mk Message-ID: <20020411103119.A95915@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <20020411.002144.38305372.imp@village.org> <200204111556.g3BFuaLh001628@Magelan.Leidinger.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200204111556.g3BFuaLh001628@Magelan.Leidinger.net>; from Alexander@Leidinger.net on Thu, Apr 11, 2002 at 05:56:36PM +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 Thu, Apr 11, 2002 at 05:56:36PM +0200, Alexander Leidinger wrote: > > : and it is not so easy to kill using Makefile hacks like -D__RCSID=__IGNORE > > : where __IGNORE() expands to nothing. > > > > CFLAGS += -include scm.h > > > > might be a way to deal (at least for gnu compilers) :-) > > I've seen the smiley, but please: don't do this, icc has no equivalent > to to -include. We will find a way. But icc has a long way to go before it can be used as the system compiler. Until then we cannot cater to it at the expense of other things. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 10:34: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 8B17C37B417; Thu, 11 Apr 2002 10:34:38 -0700 (PDT) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BHYcx96324; Thu, 11 Apr 2002 10:34:38 -0700 (PDT) (envelope-from alc) Message-Id: <200204111734.g3BHYcx96324@freefall.freebsd.org> From: Alan Cox Date: Thu, 11 Apr 2002 10:34:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern syscalls.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/11 10:34:38 PDT Modified files: sys/kern syscalls.master Log: Remove the requirement that Giant be held around osigreturn(). All platform- specific implementations are MPSAFE. Revision Changes Path 1.108 +1 -1 src/sys/kern/syscalls.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 10:36: 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 33CBA37B404; Thu, 11 Apr 2002 10:35:54 -0700 (PDT) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BHZs996580; Thu, 11 Apr 2002 10:35:54 -0700 (PDT) (envelope-from alc) Message-Id: <200204111735.g3BHZs996580@freefall.freebsd.org> From: Alan Cox Date: Thu, 11 Apr 2002 10:35:53 -0700 (PDT) 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 alc 2002/04/11 10:35:53 PDT Modified files: sys/kern init_sysent.c syscalls.c sys/sys syscall.h syscall.mk sysproto.h Log: Regen Revision Changes Path 1.119 +2 -2 src/sys/kern/init_sysent.c 1.106 +1 -1 src/sys/kern/syscalls.c 1.105 +1 -1 src/sys/sys/syscall.h 1.60 +1 -1 src/sys/sys/syscall.mk 1.97 +1 -1 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 Thu Apr 11 11:27: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 7DCF737B405; Thu, 11 Apr 2002 11:27:36 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BIRac09452; Thu, 11 Apr 2002 11:27:36 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204111827.g3BIRac09452@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 11 Apr 2002 11:27:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/cad Makefile ports/cad/qfsm Makefile distinfo pkg-comment pkg-descr pkg-plist ports/cad/qfsm/files patch-Makefile.in patch-src: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/04/11 11:27:36 PDT Modified files: cad Makefile Added files: cad/qfsm Makefile distinfo pkg-comment pkg-descr pkg-plist cad/qfsm/files patch-Makefile.in patch-src:Makefile.in Log: add qfsm 0.30 A graphical tool for designing finite state machines Revision Changes Path 1.34 +1 -0 ports/cad/Makefile 1.1 +27 -0 ports/cad/qfsm/Makefile (new) 1.1 +1 -0 ports/cad/qfsm/distinfo (new) 1.1 +11 -0 ports/cad/qfsm/files/patch-Makefile.in (new) 1.1 +20 -0 ports/cad/qfsm/files/patch-src:Makefile.in (new) 1.1 +1 -0 ports/cad/qfsm/pkg-comment (new) 1.1 +21 -0 ports/cad/qfsm/pkg-descr (new) 1.1 +4 -0 ports/cad/qfsm/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 Apr 11 11:28: 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 70D8937B419; Thu, 11 Apr 2002 11:27:40 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BIRel09496; Thu, 11 Apr 2002 11:27:40 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204111827.g3BIRel09496@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 11 Apr 2002 11:27:40 -0700 (PDT) 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/04/11 11:27:40 PDT Modified files: . modules Log: qfsm --> ports/cad/qfsm Revision Changes Path 1.4968 +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 Apr 11 11: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 D724437B400; Thu, 11 Apr 2002 11:34:20 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BIYK410894; Thu, 11 Apr 2002 11:34:20 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204111834.g3BIYK410894@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 11 Apr 2002 11:34:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/cvsd 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/04/11 11:34:20 PDT Modified files: devel/cvsd Makefile distinfo Log: upgrade to 0.9.8 PR: 36996 Submitted by: Paulius Bulotas Revision Changes Path 1.5 +1 -1 ports/devel/cvsd/Makefile 1.4 +1 -1 ports/devel/cvsd/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 11:40: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from tasogare.imasy.or.jp (tasogare.imasy.or.jp [202.227.24.5]) by hub.freebsd.org (Postfix) with ESMTP id A2D2A37B400; Thu, 11 Apr 2002 11:39:52 -0700 (PDT) Received: from localhost (root@tasogare.imasy.or.jp [202.227.24.5]) by tasogare.imasy.or.jp (8.11.6+3.4W/8.11.6/tasogare) with ESMTP/inet id g3BIdns52837; Fri, 12 Apr 2002 03:39:49 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) Date: Fri, 12 Apr 2002 03:38:58 +0900 (JST) Message-Id: <20020412.033858.13779606.iwasaki@jp.FreeBSD.org> To: acpi-jp@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/devel/acpicatools Makefile distinfo ports/devel/acpicatools/files patch-20020308 patch-20020404 From: Mitsuru IWASAKI In-Reply-To: <200204110928.g3B9SiK61543@freefall.freebsd.org> References: <200204110928.g3B9SiK61543@freefall.freebsd.org> X-Mailer: Mew version 2.1 on Emacs 20.7 / Mule 4.0 (HANANOEN) 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, I've updated acpicatools port for 20020404, and did quick hack for sys sources attaching to this mail. I hope this can help importing acpica-unix-20020404 into FreeBSD CVS. I'm not sure what's better solution of ACPI_FLUSH_CPU_CACHE macro for i386 and ia64. Should we have common cpufunc for flushing cache, just like disable_intr()/enable_intr() ? Or having acfreebsd_i386.h and acfreebsd_ia64.h separately? # like include/platform/acwin.h and acwin64.h in ACPICA source tree Comments welcome. Thanks diff -u /tmp/acpica/acfreebsd.h contrib/dev/acpica/acfreebsd.h --- /tmp/acpica/acfreebsd.h Thu Apr 11 13:43:28 2002 +++ contrib/dev/acpica/acfreebsd.h Thu Apr 11 13:54:41 2002 @@ -137,6 +139,11 @@ #define asm __asm #define __cli() disable_intr() #define __sti() enable_intr() +#ifdef __i386__ +#define ACPI_FLUSH_CPU_CACHE() wbinvd() +#else +#define ACPI_FLUSH_CPU_CACHE() /* XXX ia64_fc()? */ +#endif #ifdef ACPI_DEBUG #ifdef DEBUGGER_THREADING @@ -156,6 +163,7 @@ #define __cli() #define __sti() +#define ACPI_FLUSH_CPU_CACHE() #endif /* _KERNEL */ diff -u /tmp/acpica/tbget.c contrib/dev/acpica/tbget.c --- /tmp/acpica/tbget.c Thu Apr 11 13:43:22 2002 +++ contrib/dev/acpica/tbget.c Thu Apr 11 13:50:28 2002 @@ -434,6 +434,11 @@ */ Address.PointerType = AcpiGbl_TableFlags; Address.Pointer.Value = ACPI_GET_ADDRESS (AcpiGbl_FADT->XDsdt); + if (AcpiGbl_DSDT != NULL) + { + Address.PointerType = ACPI_LOGICAL_POINTER; + Address.Pointer.Value = AcpiGbl_DSDT; + } Status = AcpiTbGetTable (&Address, &TableInfo); if (ACPI_FAILURE (Status)) Index: dev/acpica/acpica_support.c =================================================================== RCS file: /home/ncvs/src/sys/dev/acpica/acpica_support.c,v retrieving revision 1.4 diff -u -r1.4 acpica_support.c --- dev/acpica/acpica_support.c 12 Mar 2002 09:45:17 -0000 1.4 +++ dev/acpica/acpica_support.c 11 Apr 2002 05:52:40 -0000 @@ -79,15 +79,13 @@ AcpiHwBitRegisterWrite (ACPI_BITREG_WAKE_STATUS, 1, ACPI_MTX_LOCK); - acpi_disable_irqs (); + ACPI_DISABLE_IRQS (); AcpiHwDisableNonWakeupGpes(); /* flush caches */ -#ifdef __i386__ - wbinvd(); -#endif + ACPI_FLUSH_CPU_CACHE (); /* write the value to command port and wait until we enter sleep state */ do @@ -99,7 +97,7 @@ AcpiHwEnableNonWakeupGpes(); - acpi_enable_irqs (); + ACPI_ENABLE_IRQS (); return_ACPI_STATUS (AE_OK); } Index: i386/acpica/OsdEnvironment.c =================================================================== RCS file: /home/ncvs/src/sys/i386/acpica/OsdEnvironment.c,v retrieving revision 1.3 diff -u -r1.3 OsdEnvironment.c --- i386/acpica/OsdEnvironment.c 7 Sep 2001 03:00:30 -0000 1.3 +++ i386/acpica/OsdEnvironment.c 11 Apr 2002 03:27:58 -0000 @@ -56,7 +56,7 @@ ACPI_STATUS AcpiOsGetRootPointer( UINT32 Flags, - ACPI_PHYSICAL_ADDRESS *RsdpPhysicalAddress) + ACPI_POINTER *RsdpPhysicalAddress) { /* * The loader passes the physical address at which it found the Index: ia64/acpica/OsdEnvironment.c =================================================================== RCS file: /home/ncvs/src/sys/ia64/acpica/OsdEnvironment.c,v retrieving revision 1.2 diff -u -r1.2 OsdEnvironment.c --- ia64/acpica/OsdEnvironment.c 29 Oct 2001 02:16:02 -0000 1.2 +++ ia64/acpica/OsdEnvironment.c 11 Apr 2002 04:20:55 -0000 @@ -51,13 +51,18 @@ } ACPI_STATUS -AcpiOsGetRootPointer(UINT32 Flags, ACPI_PHYSICAL_ADDRESS *RsdpPhysicalAddress) +AcpiOsGetRootPointer(UINT32 Flags, ACPI_POINTER *RsdpAddress) { - if (ia64_efi_acpi20_table) - *RsdpPhysicalAddress = ia64_efi_acpi20_table; - else if (ia64_efi_acpi_table) - *RsdpPhysicalAddress = ia64_efi_acpi_table; + if (ia64_efi_acpi20_table) { + RsdpAddress->PointerType = ACPI_PHYSICAL_POINTER; + RsdpAddress->Pointer.Physical = ia64_efi_acpi20_table; + + } + else if (ia64_efi_acpi_table) { + RsdpAddress->PointerType = ACPI_PHYSICAL_POINTER; + RsdpAddress->Pointer.Physical = ia64_efi_acpi_table; + } else return(AE_NOT_FOUND); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 11: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 2BA5937B405; Thu, 11 Apr 2002 11:40:34 -0700 (PDT) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BIeYK13389; Thu, 11 Apr 2002 11:40:34 -0700 (PDT) (envelope-from dinoex) Message-Id: <200204111840.g3BIeYK13389@freefall.freebsd.org> From: Dirk Meyer Date: Thu, 11 Apr 2002 11:40:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: 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 dinoex 2002/04/11 11:40:34 PDT Modified files: devel Makefile Log: remove port gcc-6111 for Makefile is repro-copied to m6811-gcc Revision Changes Path 1.795 +0 -1 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 Thu Apr 11 11:40: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 297DD37B400; Thu, 11 Apr 2002 11:40:38 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BIecf13421; Thu, 11 Apr 2002 11:40:38 -0700 (PDT) (envelope-from obrien) Message-Id: <200204111840.g3BIecf13421@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 11 Apr 2002 11:40:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/cc/collect2 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/04/11 11:40:38 PDT Modified files: gnu/usr.bin/cc/collect2 Makefile Log: In the cross case we need to provide TARGET_MACHINE. Revision Changes Path 1.5 +1 -1 src/gnu/usr.bin/cc/collect2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 11:43:41 2002 Delivered-To: cvs-all@freebsd.org Received: from tasogare.imasy.or.jp (tasogare.imasy.or.jp [202.227.24.5]) by hub.freebsd.org (Postfix) with ESMTP id 84E6F37B404; Thu, 11 Apr 2002 11:43:21 -0700 (PDT) Received: from localhost (root@tasogare.imasy.or.jp [202.227.24.5]) by tasogare.imasy.or.jp (8.11.6+3.4W/8.11.6/tasogare) with ESMTP/inet id g3BIhGs53278; Fri, 12 Apr 2002 03:43:16 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) Date: Fri, 12 Apr 2002 03:42:27 +0900 (JST) Message-Id: <20020412.034227.109879167.iwasaki@jp.FreeBSD.org> To: acpi-jp@jp.FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/devel/acpicatools Makefile distinfo ports/devel/acpicatools/files patch-20020308 patch-20020404 From: Mitsuru IWASAKI In-Reply-To: <200204110928.g3B9SiK61543@freefall.freebsd.org> References: <200204110928.g3B9SiK61543@freefall.freebsd.org> X-Mailer: Mew version 2.1 on Emacs 20.7 / Mule 4.0 (HANANOEN) 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 [sorry, resent because of wrong ML address... ] Hi, I've updated acpicatools port for 20020404, and did quick hack for sys sources attaching to this mail. I hope this can help importing acpica-unix-20020404 into FreeBSD CVS. I'm not sure what's better solution of ACPI_FLUSH_CPU_CACHE macro for i386 and ia64. Should we have common cpufunc for flushing cache, just like disable_intr()/enable_intr() ? Or having acfreebsd_i386.h and acfreebsd_ia64.h separately? # like include/platform/acwin.h and acwin64.h in ACPICA source tree Comments welcome. Thanks diff -u /tmp/acpica/acfreebsd.h contrib/dev/acpica/acfreebsd.h --- /tmp/acpica/acfreebsd.h Thu Apr 11 13:43:28 2002 +++ contrib/dev/acpica/acfreebsd.h Thu Apr 11 13:54:41 2002 @@ -137,6 +139,11 @@ #define asm __asm #define __cli() disable_intr() #define __sti() enable_intr() +#ifdef __i386__ +#define ACPI_FLUSH_CPU_CACHE() wbinvd() +#else +#define ACPI_FLUSH_CPU_CACHE() /* XXX ia64_fc()? */ +#endif #ifdef ACPI_DEBUG #ifdef DEBUGGER_THREADING @@ -156,6 +163,7 @@ #define __cli() #define __sti() +#define ACPI_FLUSH_CPU_CACHE() #endif /* _KERNEL */ diff -u /tmp/acpica/tbget.c contrib/dev/acpica/tbget.c --- /tmp/acpica/tbget.c Thu Apr 11 13:43:22 2002 +++ contrib/dev/acpica/tbget.c Thu Apr 11 13:50:28 2002 @@ -434,6 +434,11 @@ */ Address.PointerType = AcpiGbl_TableFlags; Address.Pointer.Value = ACPI_GET_ADDRESS (AcpiGbl_FADT->XDsdt); + if (AcpiGbl_DSDT != NULL) + { + Address.PointerType = ACPI_LOGICAL_POINTER; + Address.Pointer.Value = AcpiGbl_DSDT; + } Status = AcpiTbGetTable (&Address, &TableInfo); if (ACPI_FAILURE (Status)) Index: dev/acpica/acpica_support.c =================================================================== RCS file: /home/ncvs/src/sys/dev/acpica/acpica_support.c,v retrieving revision 1.4 diff -u -r1.4 acpica_support.c --- dev/acpica/acpica_support.c 12 Mar 2002 09:45:17 -0000 1.4 +++ dev/acpica/acpica_support.c 11 Apr 2002 05:52:40 -0000 @@ -79,15 +79,13 @@ AcpiHwBitRegisterWrite (ACPI_BITREG_WAKE_STATUS, 1, ACPI_MTX_LOCK); - acpi_disable_irqs (); + ACPI_DISABLE_IRQS (); AcpiHwDisableNonWakeupGpes(); /* flush caches */ -#ifdef __i386__ - wbinvd(); -#endif + ACPI_FLUSH_CPU_CACHE (); /* write the value to command port and wait until we enter sleep state */ do @@ -99,7 +97,7 @@ AcpiHwEnableNonWakeupGpes(); - acpi_enable_irqs (); + ACPI_ENABLE_IRQS (); return_ACPI_STATUS (AE_OK); } Index: i386/acpica/OsdEnvironment.c =================================================================== RCS file: /home/ncvs/src/sys/i386/acpica/OsdEnvironment.c,v retrieving revision 1.3 diff -u -r1.3 OsdEnvironment.c --- i386/acpica/OsdEnvironment.c 7 Sep 2001 03:00:30 -0000 1.3 +++ i386/acpica/OsdEnvironment.c 11 Apr 2002 03:27:58 -0000 @@ -56,7 +56,7 @@ ACPI_STATUS AcpiOsGetRootPointer( UINT32 Flags, - ACPI_PHYSICAL_ADDRESS *RsdpPhysicalAddress) + ACPI_POINTER *RsdpPhysicalAddress) { /* * The loader passes the physical address at which it found the Index: ia64/acpica/OsdEnvironment.c =================================================================== RCS file: /home/ncvs/src/sys/ia64/acpica/OsdEnvironment.c,v retrieving revision 1.2 diff -u -r1.2 OsdEnvironment.c --- ia64/acpica/OsdEnvironment.c 29 Oct 2001 02:16:02 -0000 1.2 +++ ia64/acpica/OsdEnvironment.c 11 Apr 2002 04:20:55 -0000 @@ -51,13 +51,18 @@ } ACPI_STATUS -AcpiOsGetRootPointer(UINT32 Flags, ACPI_PHYSICAL_ADDRESS *RsdpPhysicalAddress) +AcpiOsGetRootPointer(UINT32 Flags, ACPI_POINTER *RsdpAddress) { - if (ia64_efi_acpi20_table) - *RsdpPhysicalAddress = ia64_efi_acpi20_table; - else if (ia64_efi_acpi_table) - *RsdpPhysicalAddress = ia64_efi_acpi_table; + if (ia64_efi_acpi20_table) { + RsdpAddress->PointerType = ACPI_PHYSICAL_POINTER; + RsdpAddress->Pointer.Physical = ia64_efi_acpi20_table; + + } + else if (ia64_efi_acpi_table) { + RsdpAddress->PointerType = ACPI_PHYSICAL_POINTER; + RsdpAddress->Pointer.Physical = ia64_efi_acpi_table; + } else return(AE_NOT_FOUND); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 11:45: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 19F3537B400; Thu, 11 Apr 2002 11:45:41 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3BIjdYm000499; Thu, 11 Apr 2002 11:45:39 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3BIiMt1000487; Thu, 11 Apr 2002 11:44:22 -0700 (PDT) Date: Thu, 11 Apr 2002 11:44:22 -0700 From: "David O'Brien" To: Ruslan Ermilov Cc: Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin Makefile Message-ID: <20020411114422.C99937@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200204082038.g38KcuJ36871@freefall.freebsd.org> <20020409082654.GE73475@sunbay.com> <20020410045830.GB10113@dhcp01.pn.xcllnt.net> <20020410174228.GJ98684@sunbay.com> <20020410180308.C84993@dragon.nuxi.com> <20020411071218.GB27950@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: <20020411071218.GB27950@sunbay.com>; from ru@FreeBSD.org on Thu, Apr 11, 2002 at 10:12:18AM +0300 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 Thu, Apr 11, 2002 at 10:12:18AM +0300, Ruslan Ermilov wrote: > If you want to change the semantics of NO_CXX from recently "don't compile > c++ compiler" to "don't compile c++ compiler and c++ programs", you will > also have to disable building of lib/libc_r, as it also uses c++, in its > uthread/uthread_autoinit.cc. For -current we don't use libc_r. ;-) > What if the user has a compiler installed from the Ports collection and > wants to compile c++ programs using it? make CXX=my_bad_ass_C++ world will do what you want. The system C++ compiler would still be built; but it would not be used for building anything else. (if this is not the case; it is a bug in our build system) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 11: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 D97AA37B405; Thu, 11 Apr 2002 11:56:03 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BIu3G15817; Thu, 11 Apr 2002 11:56:03 -0700 (PDT) (envelope-from jedgar) Message-Id: <200204111856.g3BIu3G15817@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Thu, 11 Apr 2002 11:56:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/sim 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 jedgar 2002/04/11 11:56:03 PDT Modified files: emulators/sim Makefile distinfo Log: Update port to 2.9.4. PR: 36997 Submitted by: Miguel Mendez Revision Changes Path 1.17 +1 -1 ports/emulators/sim/Makefile 1.7 +1 -1 ports/emulators/sim/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 12:24: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 852EA37B400; Thu, 11 Apr 2002 12:24:31 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BJOV223425; Thu, 11 Apr 2002 12:24:31 -0700 (PDT) (envelope-from murray) Message-Id: <200204111924.g3BJOV223425@freefall.freebsd.org> From: Murray Stokely Date: Thu, 11 Apr 2002 12:24:31 -0700 (PDT) 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 murray 2002/04/11 12:24:31 PDT Modified files: (Branch: RELENG_4) release Makefile Log: MFC: r1.663-1.664 - Bump MFSSIZE for Alpha and only copy pccard.conf to the mfsroot floppy if MACHINE_ARCH=i386 Revision Changes Path 1.536.2.80 +4 -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 Apr 11 12:25: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 5E18C37B405; Thu, 11 Apr 2002 12:25:30 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BJPUF23719; Thu, 11 Apr 2002 12:25:30 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204111925.g3BJPUF23719@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 11 Apr 2002 12:25:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/white_dune 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/04/11 12:25:30 PDT Modified files: graphics Makefile Added files: graphics/white_dune Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add white_dune 0.19b31 Graphical VRML97 Editor and animation tool Revision Changes Path 1.434 +1 -0 ports/graphics/Makefile 1.1 +42 -0 ports/graphics/white_dune/Makefile (new) 1.1 +1 -0 ports/graphics/white_dune/distinfo (new) 1.1 +1 -0 ports/graphics/white_dune/pkg-comment (new) 1.1 +5 -0 ports/graphics/white_dune/pkg-descr (new) 1.1 +51 -0 ports/graphics/white_dune/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 Apr 11 12:25: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 30E0437B41B; Thu, 11 Apr 2002 12:25:34 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BJPY223752; Thu, 11 Apr 2002 12:25:34 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204111925.g3BJPY223752@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 11 Apr 2002 12:25:34 -0700 (PDT) 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/04/11 12:25:34 PDT Modified files: . modules Log: white_dune --> ports/graphics/white_dune Revision Changes Path 1.4969 +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 Apr 11 12:41: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 00C5037B405; Thu, 11 Apr 2002 12:41:40 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BJfdp26128; Thu, 11 Apr 2002 12:41:39 -0700 (PDT) (envelope-from murray) Message-Id: <200204111941.g3BJfdp26128@freefall.freebsd.org> From: Murray Stokely Date: Thu, 11 Apr 2002 12:41:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/crunch/crunchgen 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 murray 2002/04/11 12:41:39 PDT Modified files: (Branch: RELENG_4) usr.sbin/crunch/crunchgen Makefile Log: MFC: r1.5-1.6 - remove GCCism in CFLAGS, style cleanup. Revision Changes Path 1.4.8.1 +3 -3 src/usr.sbin/crunch/crunchgen/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 12:54: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 23E2B37B404; Thu, 11 Apr 2002 12:54:45 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BJsj828406; Thu, 11 Apr 2002 12:54:45 -0700 (PDT) (envelope-from murray) Message-Id: <200204111954.g3BJsj828406@freefall.freebsd.org> From: Murray Stokely Date: Thu, 11 Apr 2002 12:54:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/i386 boot_crunch.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 murray 2002/04/11 12:54:45 PDT Modified files: (Branch: RELENG_4) release/i386 boot_crunch.conf Log: MFC: r1.47 - Add -DRELEASE_CRUNCH into crunchgen(1) config file. Revision Changes Path 1.49.2.4 +3 -1 src/release/i386/boot_crunch.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 13:12: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 0034337B400; Thu, 11 Apr 2002 13:12:21 -0700 (PDT) Received: (from se@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BKCL234599; Thu, 11 Apr 2002 13:12:21 -0700 (PDT) (envelope-from se) Message-Id: <200204112012.g3BKCL234599@freefall.freebsd.org> From: Stefan Esser Date: Thu, 11 Apr 2002 13:12:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/jftpgw Makefile distinfo ports/ftp/jftpgw/files jftpgw.sh.in patch-config.h.in patch-configure patch-configure.in patch-jftpgw.h patch-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 se 2002/04/11 13:12:21 PDT Modified files: ftp/jftpgw Makefile distinfo ftp/jftpgw/files jftpgw.sh.in Removed files: ftp/jftpgw/files patch-config.h.in patch-configure patch-configure.in patch-jftpgw.h patch-util.c Log: Upgrade to release 0.13.1. Seems that privileges are dropped in a way, that restricts writing of the PID file to driectories that can be written into by the UID the process is running under (i.e. nobody). This will be fixed later ... Revision Changes Path 1.6 +5 -4 ports/ftp/jftpgw/Makefile 1.4 +2 -2 ports/ftp/jftpgw/distinfo 1.2 +7 -3 ports/ftp/jftpgw/files/jftpgw.sh.in 1.2 +0 -12 ports/ftp/jftpgw/files/patch-config.h.in (dead) 1.2 +0 -11 ports/ftp/jftpgw/files/patch-configure (dead) 1.2 +0 -11 ports/ftp/jftpgw/files/patch-configure.in (dead) 1.2 +0 -12 ports/ftp/jftpgw/files/patch-jftpgw.h (dead) 1.2 +0 -18 ports/ftp/jftpgw/files/patch-util.c (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 13:19: 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 6615337B400; Thu, 11 Apr 2002 13:18:59 -0700 (PDT) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BKIxu37307; Thu, 11 Apr 2002 13:18:59 -0700 (PDT) (envelope-from brian) Message-Id: <200204112018.g3BKIxu37307@freefall.freebsd.org> From: Brian Somers Date: Thu, 11 Apr 2002 13:18:59 -0700 (PDT) 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 brian 2002/04/11 13:18:59 PDT Modified files: en_US.ISO8859-1/articles/committers-guide article.sgml Log: Add a few section labels Revision Changes Path 1.108 +4 -4 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 Thu Apr 11 13:26: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 045E037B417; Thu, 11 Apr 2002 13:26:57 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BKQuK38535; Thu, 11 Apr 2002 13:26:56 -0700 (PDT) (envelope-from murray) Message-Id: <200204112026.g3BKQuK38535@freefall.freebsd.org> From: Murray Stokely Date: Thu, 11 Apr 2002 13:26:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/i386 boot_crunch.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 murray 2002/04/11 13:26:56 PDT Modified files: (Branch: RELENG_4) release/i386 boot_crunch.conf Log: MFC: r1.48 - sort by directory / program. Revision Changes Path 1.49.2.5 +24 -17 src/release/i386/boot_crunch.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 13:42: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 C390037B416; Thu, 11 Apr 2002 13:42:13 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BKgDH40646; Thu, 11 Apr 2002 13:42:13 -0700 (PDT) (envelope-from obrien) Message-Id: <200204112042.g3BKgDH40646@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 11 Apr 2002 13:42:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/gdb/alpha nm.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/04/11 13:42:13 PDT Modified files: gnu/usr.bin/binutils/gdb/alpha nm.h Log: Use PTRACE_ARG3_TYPE of caddr_t. Obtained from: gdb 5.2 Revision Changes Path 1.3 +5 -1 src/gnu/usr.bin/binutils/gdb/alpha/nm.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 13:43:59 2002 Delivered-To: cvs-all@freebsd.org Received: from ns.plaut.de (ns.plaut.de [194.99.75.166]) by hub.freebsd.org (Postfix) with ESMTP id 772AB37B416; Thu, 11 Apr 2002 13:43:53 -0700 (PDT) Received: (from uucp@localhost) by ns.plaut.de (8.9.3/8.9.3) with UUCP id WAA09966; Thu, 11 Apr 2002 22:41:36 +0200 (CEST) (envelope-from root@nihil.plaut.de) Received: from localhost (root@localhost) by nihil.plaut.de (8.12.2/8.12.2) with ESMTP id g3BLghMx019241; Thu, 11 Apr 2002 23:42:43 +0200 (CEST) (envelope-from root@nihil.plaut.de) Date: Thu, 11 Apr 2002 23:42:42 +0200 (CEST) From: Michael Reifenberger To: John Baldwin Cc: cvs-all@FreeBSD.org, Subject: RE: cvs commit: src/release/i386 mkisoimages.sh In-Reply-To: Message-ID: <20020411233341.Q302-100000@nihil> 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, 11 Apr 2002, John Baldwin wrote: ... > > Switch to using cdboot for booting i386 CD's by default. How do you mount root from your cdrom on -current? For me (using "set vfs.root.mountfrom=cd9660:/dev/acd0c" or "boot -C) this doesn't work. Maybe because cd* uses disk_create() where acd* doesn't? Bye! ---- Michael Reifenberger ^.*Plaut.*$, IT, R/3 Basis, GPS To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 13:56:25 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail15.speakeasy.net [216.254.0.215]) by hub.freebsd.org (Postfix) with ESMTP id 57ECF37B405 for ; Thu, 11 Apr 2002 13:56:22 -0700 (PDT) Received: (qmail 29344 invoked from network); 11 Apr 2002 20:56:21 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail15.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 11 Apr 2002 20:56:21 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g3BKvCv58064; Thu, 11 Apr 2002 16:57:12 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <20020411233341.Q302-100000@nihil> Date: Thu, 11 Apr 2002 16:56:11 -0400 (EDT) From: John Baldwin To: Michael Reifenberger Subject: RE: cvs commit: src/release/i386 mkisoimages.sh Cc: cvs-committers@FreeBSD.org, cvs-all@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 11-Apr-2002 Michael Reifenberger wrote: > On Thu, 11 Apr 2002, John Baldwin wrote: > ... >> > Switch to using cdboot for booting i386 CD's by default. > How do you mount root from your cdrom on -current? > For me (using "set vfs.root.mountfrom=cd9660:/dev/acd0c" or "boot -C) > this doesn't work. > Maybe because cd* uses disk_create() where acd* doesn't? Releases still use a MFS root that gets sucked off the CD from /boot/mfsroot.gz. However, I think I have seen patches by tmm at one point in the sparc64 branch that claimed to fix this. I have no idea why it doesn't work though. -- 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 Apr 11 13:59: 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 513D837B419; Thu, 11 Apr 2002 13:58:56 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3BKwtYm013918; Thu, 11 Apr 2002 13:58:55 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3BKve5q013907; Thu, 11 Apr 2002 13:57:40 -0700 (PDT) Date: Thu, 11 Apr 2002 13:57:40 -0700 From: "David O'Brien" To: Ruslan Ermilov Cc: Peter Wemm , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr Message-ID: <20020411135740.A13856@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20020410180443.D84993@dragon.nuxi.com> <20020411051528.8663638FD@overcee.wemm.org> <20020411093353.GA42484@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: <20020411093353.GA42484@sunbay.com>; from ru@FreeBSD.org on Thu, Apr 11, 2002 at 12:33:53PM +0300 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 Thu, Apr 11, 2002 at 12:33:53PM +0300, Ruslan Ermilov wrote: > +.if defined(PROG_CXX) > +PROG= ${PROG_CXX} > +DPADD+= ${LIBSTDCPLUSPLUS} > +LDADD+= -lstdc++ > +.endif We really should not be doing this part -- we do not do it for libc. Making too many assumptions about how G++ expects the linking to be is bad. Rather if PROG_GXX is set, 'g++' should be used for linking rather than 'gcc' [as Peter mentioned]. We really should just be letting g++ do its job. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 14: 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 55A2837B400; Thu, 11 Apr 2002 14:00:05 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BL05W43304; Thu, 11 Apr 2002 14:00:05 -0700 (PDT) (envelope-from jhb) Message-Id: <200204112100.g3BL05W43304@freefall.freebsd.org> From: John Baldwin Date: Thu, 11 Apr 2002 14:00:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/linux linux_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 jhb 2002/04/11 14:00:05 PDT Modified files: sys/compat/linux linux_misc.c Log: Use td_ucred in a few spots. Revision Changes Path 1.118 +3 -3 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 Thu Apr 11 14: 0: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 F315837B400; Thu, 11 Apr 2002 14:00:38 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BL0ci43439; Thu, 11 Apr 2002 14:00:38 -0700 (PDT) (envelope-from jhb) Message-Id: <200204112100.g3BL0ci43439@freefall.freebsd.org> From: John Baldwin Date: Thu, 11 Apr 2002 14:00:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/svr4 svr4_sysvec.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/04/11 14:00:38 PDT Modified files: sys/compat/svr4 svr4_sysvec.c Log: Use proc lock to protect p_ucred pointer while we deference it to read a few values. Revision Changes Path 1.24 +4 -0 src/sys/compat/svr4/svr4_sysvec.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 14: 1:26 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 3507737B417; Thu, 11 Apr 2002 14:01:17 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3BL1GYm013984; Thu, 11 Apr 2002 14:01:16 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3BL004d013951; Thu, 11 Apr 2002 14:00:00 -0700 (PDT) Date: Thu, 11 Apr 2002 14:00:00 -0700 From: "David O'Brien" To: Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.sys.mk Message-ID: <20020411140000.B13856@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20020410180036.B84993@dragon.nuxi.com> <20020411160322.B3429-100000@gamplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020411160322.B3429-100000@gamplex.bde.org>; from bde@zeta.org.au on Thu, Apr 11, 2002 at 04:16:49PM +1000 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 Thu, Apr 11, 2002 at 04:16:49PM +1000, Bruce Evans wrote: > > Unfortunately when we take them from NetBSD they do. > > lukemftp and lukemftpd are counterexamples. I think most sources in contrib > should be like this. Those two do not come from NetBSD directly. LukeM makes a portable distributions (based of course on the NetBSD bits). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 14: 1: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 47DBC37B420; Thu, 11 Apr 2002 14:01:34 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BL1Yf43625; Thu, 11 Apr 2002 14:01:34 -0700 (PDT) (envelope-from jhb) Message-Id: <200204112101.g3BL1Yf43625@freefall.freebsd.org> From: John Baldwin Date: Thu, 11 Apr 2002 14:01:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: 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 jhb 2002/04/11 14:01:34 PDT Modified files: sys/ddb db_ps.c Log: Commented out locking that would be used in the ps command if locks were used in ddb. Revision Changes Path 1.28 +5 -0 src/sys/ddb/db_ps.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 14: 2:10 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 C099437B405; Thu, 11 Apr 2002 14:01:58 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3BL1vYm014001; Thu, 11 Apr 2002 14:01:57 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3BL0fHA013981; Thu, 11 Apr 2002 14:00:41 -0700 (PDT) Date: Thu, 11 Apr 2002 14:00:41 -0700 From: "David O'Brien" To: "M. Warner Losh" Cc: Alexander@Leidinger.net, bde@zeta.org.au, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.sys.mk Message-ID: <20020411140041.C13856@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20020411.002144.38305372.imp@village.org> <200204111556.g3BFuaLh001628@Magelan.Leidinger.net> <20020411.101718.69020559.imp@village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020411.101718.69020559.imp@village.org>; from imp@village.org on Thu, Apr 11, 2002 at 10:17:18AM -0600 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 Thu, Apr 11, 2002 at 10:17:18AM -0600, M. Warner Losh wrote: > : I like it better than for FreeBSD ids, but think it would > : just increase unportability. You would still have to edit files to add it, > : and it is not so easy to kill using Makefile hacks like -D__RCSID=__IGNORE > : where __IGNORE() expands to nothing. > > CFLAGS += -include scm.h > might be a way to deal (at least for gnu compilers) :-) That was the assumption of how it would be used. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 14: 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 01F6E37B417; Thu, 11 Apr 2002 14:03:36 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BL3Zg43943; Thu, 11 Apr 2002 14:03:35 -0700 (PDT) (envelope-from jhb) Message-Id: <200204112103.g3BL3Zg43943@freefall.freebsd.org> From: John Baldwin Date: Thu, 11 Apr 2002 14:03:35 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_intr.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/04/11 14:03:35 PDT Modified files: sys/kern kern_intr.c Log: - Set the base priority of an ithread that has no handlers when we set its normal priority. - Lock sched_lock while we dink with the priorities. - Remove a few extra blank lines. Revision Changes Path 1.74 +5 -3 src/sys/kern/kern_intr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 14: 9: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 5BE1C37B41A; Thu, 11 Apr 2002 14:09:42 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BL9gi48804; Thu, 11 Apr 2002 14:09:42 -0700 (PDT) (envelope-from jhb) Message-Id: <200204112109.g3BL9gi48804@freefall.freebsd.org> From: John Baldwin Date: Thu, 11 Apr 2002 14:09:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb umass.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/04/11 14:09:42 PDT Modified files: sys/dev/usb umass.c Log: Make this compile again when UMASS_DEBUG isn't defined. Revision Changes Path 1.60 +2 -0 src/sys/dev/usb/umass.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 14:13: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 E2AAC37B416; Thu, 11 Apr 2002 14:13:36 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BLDaw49378; Thu, 11 Apr 2002 14:13:36 -0700 (PDT) (envelope-from obrien) Message-Id: <200204112113.g3BLDaw49378@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 11 Apr 2002 14:13:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc.295 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/04/11 14:13:36 PDT Modified files: contrib/gcc.295 toplev.c Log: warning() already gives us the trailing \n. Revision Changes Path 1.14 +1 -1 src/contrib/gcc.295/toplev.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 14: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 30E7F37B419; Thu, 11 Apr 2002 14:14:28 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BLESc49491; Thu, 11 Apr 2002 14:14:28 -0700 (PDT) (envelope-from obrien) Message-Id: <200204112114.g3BLESc49491@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 11 Apr 2002 14:14:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc toplev.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 obrien 2002/04/11 14:14:28 PDT Modified files: (Branch: RELENG_4) contrib/gcc toplev.c Log: warning() already gives us the trailing \n. Revision Changes Path 1.6.2.5 +3 -3 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 Thu Apr 11 14:14: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 4788937B4B1; Thu, 11 Apr 2002 14:14:53 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BLErw49565; Thu, 11 Apr 2002 14:14:53 -0700 (PDT) (envelope-from obrien) Message-Id: <200204112114.g3BLErw49565@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 11 Apr 2002 14:14:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/gcc.295 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/04/11 14:14:53 PDT Modified files: contrib/gcc.295 toplev.c Log: Missed one (got it in the MFC). Revision Changes Path 1.15 +1 -1 src/contrib/gcc.295/toplev.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 14:17: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 632D637B400; Thu, 11 Apr 2002 14:17:45 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BLHjT49919; Thu, 11 Apr 2002 14:17:45 -0700 (PDT) (envelope-from jhb) Message-Id: <200204112117.g3BLHjT49919@freefall.freebsd.org> From: John Baldwin Date: Thu, 11 Apr 2002 14:17:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/security/lomac kernel_log.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/04/11 14:17:45 PDT Modified files: sys/security/lomac kernel_log.c Log: Use the proc lock to protect p_ucred while we read a few items from it. Revision Changes Path 1.3 +9 -2 src/sys/security/lomac/kernel_log.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 14:18: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 6AB6537B405; Thu, 11 Apr 2002 14:18:17 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BLIHT49998; Thu, 11 Apr 2002 14:18:17 -0700 (PDT) (envelope-from imp) Message-Id: <200204112118.g3BLIHT49998@freefall.freebsd.org> From: Warner Losh Date: Thu, 11 Apr 2002 14:18:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccard pccarddevs X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/11 14:18:17 PDT Modified files: sys/dev/pccard pccarddevs Log: Add ACTIONTEC HWC01170 from OpenBSD Revision Changes Path 1.32 +4 -0 src/sys/dev/pccard/pccarddevs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 14:19: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 089C137B404; Thu, 11 Apr 2002 14:19:05 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BLJ5o50114; Thu, 11 Apr 2002 14:19:05 -0700 (PDT) (envelope-from imp) Message-Id: <200204112119.g3BLJ5o50114@freefall.freebsd.org> From: Warner Losh Date: Thu, 11 Apr 2002 14:19:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccard pccarddevs.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/04/11 14:19:04 PDT Modified files: sys/dev/pccard pccarddevs.h Log: Catchup to 1.32 Revision Changes Path 1.32 +7 -1 src/sys/dev/pccard/pccarddevs.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 14:21: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 858A137B404; Thu, 11 Apr 2002 14:21:14 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BLLE650495; Thu, 11 Apr 2002 14:21:14 -0700 (PDT) (envelope-from imp) Message-Id: <200204112121.g3BLLE650495@freefall.freebsd.org> From: Warner Losh Date: Thu, 11 Apr 2002 14:21:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/wi if_wi_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/04/11 14:21:14 PDT Modified files: sys/dev/wi if_wi_pccard.c Log: Add ActionTec HWC01170 and Linksys IWN2 Obtained from: OpenBSD Revision Changes Path 1.6 +2 -0 src/sys/dev/wi/if_wi_pccard.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 14:31: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 0DDE137B400; Thu, 11 Apr 2002 14:31:11 -0700 (PDT) Received: (from billf@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BLVBE51947; Thu, 11 Apr 2002 14:31:11 -0700 (PDT) (envelope-from billf) Message-Id: <200204112131.g3BLVBE51947@freefall.freebsd.org> From: Bill Fumerola Date: Thu, 11 Apr 2002 14:31:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.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 billf 2002/04/11 14:31:10 PDT Modified files: en_US.ISO8859-1/books/faq book.sgml Log: we use GCC not EGCS Revision Changes Path 1.427 +1 -1 doc/en_US.ISO8859-1/books/faq/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 14:51:26 2002 Delivered-To: cvs-all@freebsd.org Received: from fw.wemm.org (12-232-135-171.client.attbi.com [12.232.135.171]) by hub.freebsd.org (Postfix) with ESMTP id 5FCC137B404; Thu, 11 Apr 2002 14:51:16 -0700 (PDT) Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by fw.wemm.org (8.11.6/8.11.6) with ESMTP id g3BLpGQ29954; Thu, 11 Apr 2002 14:51:16 -0700 (PDT) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id 20D553810; Thu, 11 Apr 2002 14:51:17 -0700 (PDT) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: obrien@FreeBSD.org Cc: Ruslan Ermilov , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr In-Reply-To: <20020411135740.A13856@dragon.nuxi.com> Date: Thu, 11 Apr 2002 14:51:17 -0700 From: Peter Wemm Message-Id: <20020411215117.20D553810@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 "David O'Brien" wrote: > On Thu, Apr 11, 2002 at 12:33:53PM +0300, Ruslan Ermilov wrote: > > +.if defined(PROG_CXX) > > +PROG= ${PROG_CXX} > > +DPADD+= ${LIBSTDCPLUSPLUS} > > +LDADD+= -lstdc++ > > +.endif > > We really should not be doing this part -- we do not do it for libc. > Making too many assumptions about how G++ expects the linking to be is > bad. Rather if PROG_GXX is set, 'g++' should be used for linking rather > than 'gcc' [as Peter mentioned]. We really should just be letting g++ do > its job. That's what I did, except I used c++. (we use "cc" not "gcc", we shouldn't use "g++" either). The main point is that this can be changed behind the scenes without affecting the groff/gperf makefiles anymore. This is now an implementation detail. I can finish my build testing and commit the stuff that uses c++ etc to do the final link. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "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 Apr 11 14:57:54 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 80E8C37B416; Thu, 11 Apr 2002 14:57:50 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3BLvmYm014657; Thu, 11 Apr 2002 14:57:48 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3BLuXBF014612; Thu, 11 Apr 2002 14:56:33 -0700 (PDT) Date: Thu, 11 Apr 2002 14:56:33 -0700 From: "David O'Brien" To: Peter Wemm Cc: Ruslan Ermilov , Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr Message-ID: <20020411145633.H13856@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20020411135740.A13856@dragon.nuxi.com> <20020411215117.20D553810@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: <20020411215117.20D553810@overcee.wemm.org>; from peter@wemm.org on Thu, Apr 11, 2002 at 02:51:17PM -0700 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 Thu, Apr 11, 2002 at 02:51:17PM -0700, Peter Wemm wrote: > (we use "cc" not "gcc", we shouldn't use "g++" either). [*sigh* I hate English.] I know, but was afraid if I used "c++" someone would think I mean the langage, not the binary. > an implementation detail. I can finish my build testing and commit the > stuff that uses c++ etc to do the final link. Please. :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 15: 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 CB86637B416; Thu, 11 Apr 2002 15:04:40 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BM4eK56395; Thu, 11 Apr 2002 15:04:40 -0700 (PDT) (envelope-from des) Message-Id: <200204112204.g3BM4eK56395@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 11 Apr 2002 15:04:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh servconf.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/04/11 15:04:40 PDT Modified files: crypto/openssh servconf.c Log: Knowledgeable persons assure me that RSA is preferable to DSA and that we should transition away from DSA. Revision Changes Path 1.28 +2 -0 src/crypto/openssh/servconf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 15: 6: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 E78F437B41A; Thu, 11 Apr 2002 15:06:27 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BM6Rj60326; Thu, 11 Apr 2002 15:06:27 -0700 (PDT) (envelope-from des) Message-Id: <200204112206.g3BM6Rj60326@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 11 Apr 2002 15:06:27 -0700 (PDT) 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 des 2002/04/11 15:06:27 PDT Modified files: etc rc.network Log: Cosmetic changes to the previous commit, bringing it closer to what I already had in my tree but didn't want to commit. Revision Changes Path 1.134 +8 -8 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 Thu Apr 11 16:17: 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 0EB9937B417; Thu, 11 Apr 2002 16:16:59 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BNGx472566; Thu, 11 Apr 2002 16:16:59 -0700 (PDT) (envelope-from bmah) Message-Id: <200204112316.g3BNGx472566@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 11 Apr 2002 16:16:58 -0700 (PDT) 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/04/11 16:16:58 PDT Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release note: sendmail startup script/options. Reviewed by: gshapiro Revision Changes Path 1.318 +15 -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 Thu Apr 11 16:26: 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 11F6B37B416; Thu, 11 Apr 2002 16:25:58 -0700 (PDT) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BNPw573716; Thu, 11 Apr 2002 16:25:58 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200204112325.g3BNPw573716@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Thu, 11 Apr 2002 16:25:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc src/etc/defaults rc.conf src/etc/mail Makefile src/etc/sendmail Makefile rc.sendmail src/share/man/man5 rc.conf.5 src/share/man/man8 Makefile rc.sendmail.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 gshapiro 2002/04/11 16:25:57 PDT Modified files: (Branch: RELENG_4) etc rc etc/defaults rc.conf etc/mail Makefile etc/sendmail Makefile share/man/man5 rc.conf.5 share/man/man8 Makefile Added files: (Branch: RELENG_4) etc/sendmail rc.sendmail share/man/man8 rc.sendmail.8 Log: MFC: Quoting Peter Wemm, "At great personal risk, touch the sendmail startup again." As an alternative to sendmail_enable=NONE, solve the boot time problem for non-sendmail users completely by moving all of the sendmail startup code from /etc/rc to /etc/rc.sendmail. The source for that script will be kept in src/etc/sendmail/rc.sendmail so make.conf's NO_SENDMAIL will prevent it from being installed. A new rc.conf variable, mta_start_script specifies the script to run to start the user's preferred MTA. For backward compatibility, it will default to /etc/rc.sendmail. The specified script is called out of /etc/rc after checking to make sure it exists. A new rc.sendmail.8 man page has also been added which now houses the sendmail_* variable descriptions formerly in rc.conf.5. Use /etc/rc.sendmail in /etc/mail/Makefile to reduce code duplication. Reviewed by: -current, -stable, obrien, peter, ru MFC after: 1 week Revision Changes Path 1.142 +19 -10 src/etc/defaults/rc.conf 1.27 +38 -70 src/etc/mail/Makefile 1.308 +5 -39 src/etc/rc 1.16 +3 -1 src/etc/sendmail/Makefile 1.1 +193 -0 src/etc/sendmail/rc.sendmail (new) 1.160 +13 -105 src/share/man/man5/rc.conf.5 1.26 +4 -0 src/share/man/man8/Makefile 1.1 +241 -0 src/share/man/man8/rc.sendmail.8 (new) Revision Changes Path 1.53.2.52 +19 -10 src/etc/defaults/rc.conf 1.9.2.17 +38 -70 src/etc/mail/Makefile 1.212.2.47 +5 -39 src/etc/rc 1.3.2.12 +3 -1 src/etc/sendmail/Makefile 1.1.2.1 +193 -0 src/etc/sendmail/rc.sendmail (new) 1.64.2.48 +13 -104 src/share/man/man5/rc.conf.5 1.13.2.10 +4 -0 src/share/man/man8/Makefile 1.1.2.1 +241 -0 src/share/man/man8/rc.sendmail.8 (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 16:26: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 35D4637B416; Thu, 11 Apr 2002 16:26:23 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BNQNI73778; Thu, 11 Apr 2002 16:26:23 -0700 (PDT) (envelope-from bmah) Message-Id: <200204112326.g3BNQNI73778@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 11 Apr 2002 16:26:23 -0700 (PDT) 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/04/11 16:26:23 PDT Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Updated release note: OpenPAM Cinchona. Deleted release note: NetBSD sort. MFCs noted: New ephemeral port range, ISC DHCP client update. Revision Changes Path 1.319 +4 -8 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 Thu Apr 11 16: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 0925937B416; Thu, 11 Apr 2002 16:27:15 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BNRFw73875; Thu, 11 Apr 2002 16:27:15 -0700 (PDT) (envelope-from bmah) Message-Id: <200204112327.g3BNRFw73875@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 11 Apr 2002 16:27:14 -0700 (PDT) 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/04/11 16:27:14 PDT Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: New ephemeral port range, ISC DHCP 3.0.1RC8 import. While I'm here, add a missing word. Revision Changes Path 1.22.2.215 +10 -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 Thu Apr 11 16: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 5C0AC37B400; Thu, 11 Apr 2002 16:35:33 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3BNZXt74953; Thu, 11 Apr 2002 16:35:33 -0700 (PDT) (envelope-from bmah) Message-Id: <200204112335.g3BNZXt74953@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 11 Apr 2002 16:35:32 -0700 (PDT) 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/04/11 16:35:32 PDT Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: sendmail startup changes. Make a new userland contrib subsection for sendmail stuff now that we have > 1 item, the other sendmail note got moved into this section unchanged except for indentation. Revision Changes Path 1.22.2.216 +27 -8 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 Thu Apr 11 17: 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 7C69137B404; Thu, 11 Apr 2002 17:00:29 -0700 (PDT) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C00T477803; Thu, 11 Apr 2002 17:00:29 -0700 (PDT) (envelope-from lioux) Message-Id: <200204120000.g3C00T477803@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Thu, 11 Apr 2002 17:00:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/xnap 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/04/11 17:00:29 PDT Modified files: audio/xnap Makefile distinfo Log: Update to 2.0 pre 3 Revision Changes Path 1.6 +1 -1 ports/audio/xnap/Makefile 1.4 +1 -1 ports/audio/xnap/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 17: 1: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 B83AA37B404; Thu, 11 Apr 2002 17:01:50 -0700 (PDT) Received: (from hsu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C01ot77934; Thu, 11 Apr 2002 17:01:50 -0700 (PDT) (envelope-from hsu) Message-Id: <200204120001.g3C01ot77934@freefall.freebsd.org> From: Jeffrey Hsu Date: Thu, 11 Apr 2002 17:01:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern uipc_mbuf.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 hsu 2002/04/11 17:01:50 PDT Modified files: sys/kern uipc_mbuf.c Log: Fix corner case where m_len was not being initialized. Submitted by: Maksim Yevmenkin MFC after: 1 week Revision Changes Path 1.91 +3 -1 src/sys/kern/uipc_mbuf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 18: 0:10 2002 Delivered-To: cvs-all@freebsd.org Received: from InterJet.dellroad.org (adsl-63-194-81-26.dsl.snfc21.pacbell.net [63.194.81.26]) by hub.freebsd.org (Postfix) with ESMTP id 6534F37B400; Thu, 11 Apr 2002 18:00:05 -0700 (PDT) Received: from arch20m.dellroad.org (arch20m.dellroad.org [10.1.1.20]) by InterJet.dellroad.org (8.9.1a/8.9.1) with ESMTP id RAA16005; Thu, 11 Apr 2002 17:45:02 -0700 (PDT) Received: (from archie@localhost) by arch20m.dellroad.org (8.11.6/8.11.6) id g3C0i7W08442; Thu, 11 Apr 2002 17:44:07 -0700 (PDT) (envelope-from archie) From: Archie Cobbs Message-Id: <200204120044.g3C0i7W08442@arch20m.dellroad.org> Subject: Re: cvs commit: src/crypto/openssh servconf.c In-Reply-To: <200204112204.g3BM4eK56395@freefall.freebsd.org> "from Dag-Erling Smorgrav at Apr 11, 2002 03:04:40 pm" To: Dag-Erling Smorgrav Date: Thu, 11 Apr 2002 17:44:07 -0700 (PDT) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL88 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit 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 Dag-Erling Smorgrav writes: > Modified files: > crypto/openssh servconf.c > Log: > Knowledgeable persons assure me that RSA is preferable to DSA and that we > should transition away from DSA. We're curious.. can you share any references on this issue? Thanks, -Archie __________________________________________________________________________ Archie Cobbs * Packet Design * http://www.packetdesign.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 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 CE05237B404; Thu, 11 Apr 2002 18:58:08 -0700 (PDT) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C1w8Z00952; Thu, 11 Apr 2002 18:58:08 -0700 (PDT) (envelope-from pat) Message-Id: <200204120158.g3C1w8Z00952@freefall.freebsd.org> From: Patrick Li Date: Thu, 11 Apr 2002 18:58:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/p5-Locale-SubCountry 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/04/11 18:58:08 PDT Modified files: misc/p5-Locale-SubCountry Makefile distinfo Log: Update to 1.11 PR: 37011 Submitted by: maintainer Revision Changes Path 1.3 +1 -1 ports/misc/p5-Locale-SubCountry/Makefile 1.3 +1 -1 ports/misc/p5-Locale-SubCountry/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 19: 1: 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 921FE37B41B; Thu, 11 Apr 2002 19:00:59 -0700 (PDT) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C20x501493; Thu, 11 Apr 2002 19:00:59 -0700 (PDT) (envelope-from pat) Message-Id: <200204120200.g3C20x501493@freefall.freebsd.org> From: Patrick Li Date: Thu, 11 Apr 2002 19:00:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/p5-Lingua-EN-NameParse 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/04/11 19:00:59 PDT Modified files: textproc/p5-Lingua-EN-NameParse Makefile distinfo Log: Update to 1.18 PR: 37010 Submitted by: maintainer Revision Changes Path 1.2 +1 -1 ports/textproc/p5-Lingua-EN-NameParse/Makefile 1.2 +1 -1 ports/textproc/p5-Lingua-EN-NameParse/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 19: 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 9716F37B405; Thu, 11 Apr 2002 19:03:52 -0700 (PDT) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C23qk01972; Thu, 11 Apr 2002 19:03:52 -0700 (PDT) (envelope-from pat) Message-Id: <200204120203.g3C23qk01972@freefall.freebsd.org> From: Patrick Li Date: Thu, 11 Apr 2002 19:03:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/p5-Lingua-EN-AddressParse 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/04/11 19:03:52 PDT Modified files: textproc/p5-Lingua-EN-AddressParse Makefile distinfo Log: Update to 1.11 PR: 37009 Submitted by: maintainer Revision Changes Path 1.2 +3 -2 ports/textproc/p5-Lingua-EN-AddressParse/Makefile 1.2 +1 -1 ports/textproc/p5-Lingua-EN-AddressParse/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 19: 6: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 1B55037B405; Thu, 11 Apr 2002 19:06:18 -0700 (PDT) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C26ID06284; Thu, 11 Apr 2002 19:06:18 -0700 (PDT) (envelope-from pat) Message-Id: <200204120206.g3C26ID06284@freefall.freebsd.org> From: Patrick Li Date: Thu, 11 Apr 2002 19:06:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/p5-DBIx-XHTML_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 pat 2002/04/11 19:06:18 PDT Modified files: databases/p5-DBIx-XHTML_Table Makefile distinfo Log: Update to 1.00 PR: 37008 Submitted by: maintainer Revision Changes Path 1.3 +1 -1 ports/databases/p5-DBIx-XHTML_Table/Makefile 1.3 +1 -1 ports/databases/p5-DBIx-XHTML_Table/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 19: 9: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 4B3B737B404; Thu, 11 Apr 2002 19:09:09 -0700 (PDT) Received: (from hrs@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C299q06778; Thu, 11 Apr 2002 19:09:09 -0700 (PDT) (envelope-from hrs) Message-Id: <200204120209.g3C299q06778@freefall.freebsd.org> From: Hiroki Sato Date: Thu, 11 Apr 2002 19:09:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/share/sgml man-refs.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 hrs 2002/04/11 19:09:09 PDT Modified files: share/sgml man-refs.ent Log: Add an entity for rc.sendmail(8) to unbreak relnotes build. Revision Changes Path 1.128 +1 -0 doc/share/sgml/man-refs.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 19:11: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 250FF37B400; Thu, 11 Apr 2002 19:11:48 -0700 (PDT) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C2Bm807272; Thu, 11 Apr 2002 19:11:48 -0700 (PDT) (envelope-from pat) Message-Id: <200204120211.g3C2Bm807272@freefall.freebsd.org> From: Patrick Li Date: Thu, 11 Apr 2002 19:11:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/wmgrabimage Makefile ports/graphics/wmgrabimage/files patch-GrabImage X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/11 19:11:48 PDT Modified files: graphics/wmgrabimage Makefile Added files: graphics/wmgrabimage/files patch-GrabImage Log: Correct wrong argument given to ImageMagick's convert(1) PR: 37012 Submitted by: maintainer Revision Changes Path 1.9 +1 -0 ports/graphics/wmgrabimage/Makefile 1.1 +14 -0 ports/graphics/wmgrabimage/files/patch-GrabImage (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 19:16: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 9015E37B48E; Thu, 11 Apr 2002 19:14:28 -0700 (PDT) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C2EMO07712; Thu, 11 Apr 2002 19:14:22 -0700 (PDT) (envelope-from pat) Message-Id: <200204120214.g3C2EMO07712@freefall.freebsd.org> From: Patrick Li Date: Thu, 11 Apr 2002 19:14:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/p5-Business-ISBN 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/04/11 19:14:22 PDT Modified files: misc/p5-Business-ISBN Makefile distinfo Log: Update to 1.67 PR: 37007 Submitted by: maintainer Revision Changes Path 1.2 +1 -1 ports/misc/p5-Business-ISBN/Makefile 1.2 +1 -1 ports/misc/p5-Business-ISBN/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 19:19:49 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 1EC4C37B41A; Thu, 11 Apr 2002 19:19:39 -0700 (PDT) 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 g3C2Jai12042; Thu, 11 Apr 2002 20:19:37 -0600 (MDT) (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 g3C2JYc47966; Thu, 11 Apr 2002 20:19:34 -0600 (MDT) (envelope-from imp@village.org) Date: Thu, 11 Apr 2002 20:19:30 -0600 (MDT) Message-Id: <20020411.201930.119969734.imp@village.org> To: obrien@FreeBSD.org Cc: ru@FreeBSD.org, peter@wemm.org, marcel@xcllnt.net, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr From: "M. Warner Losh" In-Reply-To: <20020411135740.A13856@dragon.nuxi.com> References: <20020411051528.8663638FD@overcee.wemm.org> <20020411093353.GA42484@sunbay.com> <20020411135740.A13856@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: <20020411135740.A13856@dragon.nuxi.com> "David O'Brien" writes: : On Thu, Apr 11, 2002 at 12:33:53PM +0300, Ruslan Ermilov wrote: : > +.if defined(PROG_CXX) : > +PROG= ${PROG_CXX} : > +DPADD+= ${LIBSTDCPLUSPLUS} : > +LDADD+= -lstdc++ : > +.endif : : We really should not be doing this part -- we do not do it for libc. : Making too many assumptions about how G++ expects the linking to be is : bad. Rather if PROG_GXX is set, 'g++' should be used for linking rather : than 'gcc' [as Peter mentioned]. We really should just be letting g++ do : its job. +.if defined(PROG_CXX) +PROG= ${PROG_CXX} +.endif Is almost right, but we have: ${PROG}: ${OBJS} ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} Redefining CC to be g++ isnt' right, because it uses CFLAGS rather than CXXFLAGS. In the current setup, it doesn't matter. So we'd need ${PROG}: ${OBJS} +.if defined(PROG_CXX) + ${CXX} ${CXXFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} +.else ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} +.endif to be more correct, but we need that in at least two places in bsd.prog.mk since we duplicate the code. Oh, wait, the second one isn't quite right either, since we need to also support PROG_CXX w/o defining SRCS. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 19: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 088C537B404; Thu, 11 Apr 2002 19:25:11 -0700 (PDT) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C2PB609291; Thu, 11 Apr 2002 19:25:11 -0700 (PDT) (envelope-from dd) Message-Id: <200204120225.g3C2PB609291@freefall.freebsd.org> From: Dima Dorfman Date: Thu, 11 Apr 2002 19:25:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/dictd 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 dd 2002/04/11 19:25:10 PDT Modified files: net/dictd Makefile Log: The regexp used to change T_USER to T_USERNAME only works if the symbol is preceded by whitespace. However, on line 64 of servscan.l, the symbol is preceded by a parenthesis, so it is left alone. On i386, T_USER is defined, so the build proceeds, but there may still be adverse side effects due to that routine returning the wrong thing in some cases. The bandaid is to fix the regexp to catch the case where T_USER is used after a parenthesis--this is what's being committed. The real fix is either to make the author use T_USERNAME for us, or, preferably, don't define T_USER when sys/param.h is included since T_USER is in the application namespace. Approved by: maintainer timeout Revision Changes Path 1.9 +2 -2 ports/net/dictd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 19:54: 4 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 B27CD37B405; Thu, 11 Apr 2002 19:53:59 -0700 (PDT) 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 <20020412025359.DFGX15826.rwcrmhc54.attbi.com@bmah.dyndns.org>; Fri, 12 Apr 2002 02:53:59 +0000 Received: from intruder.bmah.org (localhost [IPv6:::1]) by bmah.dyndns.org (8.12.2/8.12.2) with ESMTP id g3C2rxNk007252; Thu, 11 Apr 2002 19:53:59 -0700 (PDT) (envelope-from bmah@intruder.bmah.org) Received: (from bmah@localhost) by intruder.bmah.org (8.12.2/8.12.2/Submit) id g3C2rxEi007251; Thu, 11 Apr 2002 19:53:59 -0700 (PDT) Message-Id: <200204120253.g3C2rxEi007251@intruder.bmah.org> X-Mailer: exmh version 2.5+ 20020411 with nmh-1.0.4 To: Hiroki Sato Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/share/sgml man-refs.ent In-reply-to: <200204120209.g3C299q06778@freefall.freebsd.org> References: <200204120209.g3C299q06778@freefall.freebsd.org> Comments: In-reply-to Hiroki Sato message dated "Thu, 11 Apr 2002 19:09:09 -0700." 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, 11 Apr 2002 19:53:59 -0700 Sender: owner-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, Hiroki Sato wrote: > hrs 2002/04/11 19:09:09 PDT > > Modified files: > share/sgml man-refs.ent > Log: > Add an entity for rc.sendmail(8) to unbreak relnotes build. > > Revision Changes Path > 1.128 +1 -0 doc/share/sgml/man-refs.ent Aagh, thanks for fixing that. I forgot to commit that change. Somebody pass me a(nother) pointy hat. Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 19:55: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 B9B1C37B400; Thu, 11 Apr 2002 19:55:23 -0700 (PDT) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C2tNC13389; Thu, 11 Apr 2002 19:55:23 -0700 (PDT) (envelope-from dinoex) Message-Id: <200204120255.g3C2tNC13389@freefall.freebsd.org> From: Dirk Meyer Date: Thu, 11 Apr 2002 19:55:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gcc-6811 Makefile distinfo pkg-comment pkg-descr pkg-plist ports/devel/gcc-6811/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 dinoex 2002/04/11 19:55:23 PDT Removed files: devel/gcc-6811 Makefile distinfo pkg-comment pkg-descr pkg-plist devel/gcc-6811/files patch-aa patch-ab patch-ac patch-ad Log: remove port gcc-6811, after it has been detached from make Revision Changes Path 1.13 +0 -33 ports/devel/gcc-6811/Makefile (dead) 1.2 +0 -2 ports/devel/gcc-6811/distinfo (dead) 1.2 +0 -24 ports/devel/gcc-6811/files/patch-aa (dead) 1.2 +0 -127 ports/devel/gcc-6811/files/patch-ab (dead) 1.2 +0 -82 ports/devel/gcc-6811/files/patch-ac (dead) 1.2 +0 -7 ports/devel/gcc-6811/files/patch-ad (dead) 1.3 +0 -1 ports/devel/gcc-6811/pkg-comment (dead) 1.3 +0 -22 ports/devel/gcc-6811/pkg-descr (dead) 1.3 +0 -58 ports/devel/gcc-6811/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 Apr 11 20: 7: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by hub.freebsd.org (Postfix) with ESMTP id A0A4F37B400; Thu, 11 Apr 2002 20:06:56 -0700 (PDT) Received: from localhost (c6.depaul-inst.pittsburgh.pa.us [192.168.1.6]) by pittgoth.com (8.11.6/8.11.6) with SMTP id g3C36t636078; Thu, 11 Apr 2002 23:06:55 -0400 (EDT) (envelope-from darklogik@pittgoth.com) Date: Thu, 11 Apr 2002 23:14:50 -0400 From: Tom Rhodes To: bmah@FreeBSD.org Cc: hrs@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/share/sgml man-refs.ent Message-Id: <20020411231450.61f2a571.darklogik@pittgoth.com> In-Reply-To: <200204120253.g3C2rxEi007251@intruder.bmah.org> References: <200204120209.g3C299q06778@freefall.freebsd.org> <200204120253.g3C2rxEi007251@intruder.bmah.org> X-Mailer: Sylpheed version 0.7.4 (GTK+ 1.2.10; i386-portbld-freebsd4.5) 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 Thu, 11 Apr 2002 19:53:59 -0700 "Bruce A. Mah" wrote: > If memory serves me right, Hiroki Sato wrote: > > hrs 2002/04/11 19:09:09 PDT > > > > Modified files: > > share/sgml man-refs.ent > > Log: > > Add an entity for rc.sendmail(8) to unbreak relnotes build. > > > > Revision Changes Path > > 1.128 +1 -0 doc/share/sgml/man-refs.ent > > Aagh, thanks for fixing that. I forgot to commit that change. > > Somebody pass me a(nother) pointy hat. Here, you can have mine *removes pointy hat and gives it to Bruce* there. Feel better? ;) > > Bruce. > -- Tom (Darklogik) Rhodes www.FreeBSD.org -The Power To Serve www.Pittgoth.com -Pittgoth Discussion Portal trhodes@{Pittgoth.com, FreeBSD.org} PGP key by www: http://www.pittgoth.com/~darklogik/darklogik.key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 20:13:57 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 5C75837B416; Thu, 11 Apr 2002 20:13:52 -0700 (PDT) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.6) id g3C3DnP83776; Thu, 11 Apr 2002 23:13:49 -0400 (EDT) (envelope-from wollman) Date: Thu, 11 Apr 2002 23:13:49 -0400 (EDT) From: Garrett Wollman Message-Id: <200204120313.g3C3DnP83776@khavrinen.lcs.mit.edu> To: Archie Cobbs Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh servconf.c In-Reply-To: <200204120044.g3C0i7W08442@arch20m.dellroad.org> References: <200204112204.g3BM4eK56395@freefall.freebsd.org> <200204120044.g3C0i7W08442@arch20m.dellroad.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: >> Knowledgeable persons assure me that RSA is preferable to DSA and that we >> should transition away from DSA. > We're curious.. can you share any references on this issue? I'm not DES, but I can at least make a crack at it. RSA and DSA are believed to be of comparable cryptographic strength, given the key sizes commonly used today. However, verifying a DSA signature is computationally much more expensive than verifying an RSA signature, and since the expiration of the RSA patent there's no particularly good reason to use DSA at all except for compatibility. IIRC, when the SSHv2 protocol is officially blessed by the IETF, RSA will be required and DSA will be an option. The bottom line is that DSA is more expensive but not better. If we ever get any elliptic-curve crypto algorithms we can use, this may change again. (ECC algorithms have the nice feature of depending on a different sort of mathematical problem from both RSA and DSA, and as a result can achieve comparable security with much smaller keys. Given that ECC is a relatively recent invention, I suspect the field[1] is entirely hedged about with patents.) -GAWollman [1] No pun intended. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 20:27: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 6CDF437B400; Thu, 11 Apr 2002 20:27:15 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C3RFo21853; Thu, 11 Apr 2002 20:27:15 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204120327.g3C3RFo21853@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 11 Apr 2002 20:27:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/cvsd 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/04/11 20:27:15 PDT Modified files: devel/cvsd Makefile Log: make it runnable Submitted by: Paulius Bulotas Revision Changes Path 1.6 +1 -0 ports/devel/cvsd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 20:42: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 BCF9537B420; Thu, 11 Apr 2002 20:42:37 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C3gbW23731; Thu, 11 Apr 2002 20:42:37 -0700 (PDT) (envelope-from imp) Message-Id: <200204120342.g3C3gbW23731@freefall.freebsd.org> From: Warner Losh Date: Thu, 11 Apr 2002 20:42:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/wi if_wi.c if_wivar.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/04/11 20:42:37 PDT Modified files: sys/dev/wi if_wi.c if_wivar.h Log: Replace the original host WEP implementation with the one in OpenBSD (apparently by markus@, at least committed by him). This has the advantage of not using the bad IV's from Fluhrer/Mantin/Shamir as well as bringing the drivers a little closer together. Also use a few constants in place of magic numbers in one place. Obtained from: OpenBSD 1.25, 1.28, 1.36, 1.38, 1.42 Revision Changes Path 1.96 +130 -147 src/sys/dev/wi/if_wi.c 1.5 +1 -0 src/sys/dev/wi/if_wivar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 20:54: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 52A6B37B404; Thu, 11 Apr 2002 20:54:44 -0700 (PDT) Received: (from davidc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C3siX25246; Thu, 11 Apr 2002 20:54:44 -0700 (PDT) (envelope-from davidc) Message-Id: <200204120354.g3C3siX25246@freefall.freebsd.org> From: Chad David Date: Thu, 11 Apr 2002 20:54:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 mutex.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 davidc 2002/04/11 20:54:44 PDT Modified files: share/man/man9 mutex.9 Log: Update the .Fn line for MTX_SYSINIT to include the parameter types. Revision Changes Path 1.26 +1 -1 src/share/man/man9/mutex.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 20:55: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 1BF1A37B405; Thu, 11 Apr 2002 20:55:44 -0700 (PDT) Received: (from davidc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C3tio25403; Thu, 11 Apr 2002 20:55:44 -0700 (PDT) (envelope-from davidc) Message-Id: <200204120355.g3C3tio25403@freefall.freebsd.org> From: Chad David Date: Thu, 11 Apr 2002 20:55:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 sx.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 davidc 2002/04/11 20:55:44 PDT Modified files: share/man/man9 sx.9 Log: Update the .Fn line for SX_SYSINIT to include the parameter types. Revision Changes Path 1.18 +1 -1 src/share/man/man9/sx.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 21:16: 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 76A7737B404; Thu, 11 Apr 2002 21:15:57 -0700 (PDT) Received: (from mike@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C4FvJ31767; Thu, 11 Apr 2002 21:15:57 -0700 (PDT) (envelope-from mike) Message-Id: <200204120415.g3C4FvJ31767@freefall.freebsd.org> From: Mike Barcroft Date: Thu, 11 Apr 2002 21:15:57 -0700 (PDT) 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 mike 2002/04/11 21:15:57 PDT Modified files: . access Log: Add Tim J. Robbins . He has been working on SUSv3 utility conformance and has opened far too many high quality PRs. Mentored by: mike Approved by: -core Revision Changes Path 1.302 +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 Apr 11 21:23: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 AB0AC37B416; Thu, 11 Apr 2002 21:23:22 -0700 (PDT) Received: (from davidc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C4NM732724; Thu, 11 Apr 2002 21:23:22 -0700 (PDT) (envelope-from davidc) Message-Id: <200204120423.g3C4NM732724@freefall.freebsd.org> From: Chad David Date: Thu, 11 Apr 2002 21:23:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 VFS_VGET.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 davidc 2002/04/11 21:23:22 PDT Modified files: share/man/man9 VFS_VGET.9 Log: Document the new flags parameter. Add vget(9) to the SEE ALSO list. Minor formatting change. Revision Changes Path 1.9 +5 -2 src/share/man/man9/VFS_VGET.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 21:26: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 C8AB737B400; Thu, 11 Apr 2002 21:26:15 -0700 (PDT) Received: (from davidc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C4QFh33223; Thu, 11 Apr 2002 21:26:15 -0700 (PDT) (envelope-from davidc) Message-Id: <200204120426.g3C4QFh33223@freefall.freebsd.org> From: Chad David Date: Thu, 11 Apr 2002 21:26:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 VOP_GETEXTATTR.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 davidc 2002/04/11 21:26:15 PDT Modified files: share/man/man9 VOP_GETEXTATTR.9 Log: Document the new size parameter. Revision Changes Path 1.11 +23 -3 src/share/man/man9/VOP_GETEXTATTR.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 21:34: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 A4AE437B404; Thu, 11 Apr 2002 21:34:41 -0700 (PDT) Received: (from glewis@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C4YfI34533; Thu, 11 Apr 2002 21:34:41 -0700 (PDT) (envelope-from glewis) Message-Id: <200204120434.g3C4YfI34533@freefall.freebsd.org> From: Greg Lewis Date: Thu, 11 Apr 2002 21:34:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/jdk13 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 glewis 2002/04/11 21:34:41 PDT Modified files: java/jdk13 Makefile Log: Fix user and group ownership of the installed files when they have been built by someone other than root. Instead of moving the files with tar, move them with cpio and set up ownership. Note that I have not closed the PR as there are 12 other ports named in the PR with this problem. PR: 36411 Submitted by: Alan Eldridge Reviewed by: sobomax Approved by: sobomax Revision Changes Path 1.20 +4 -4 ports/java/jdk13/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 21:44: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 6151037B400; Thu, 11 Apr 2002 21:44:53 -0700 (PDT) Received: (from julian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C4ira35888; Thu, 11 Apr 2002 21:44:53 -0700 (PDT) (envelope-from julian) Message-Id: <200204120444.g3C4ira35888@freefall.freebsd.org> From: Julian Elischer Date: Thu, 11 Apr 2002 21:44:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/examples/netgraph ether.bridge X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/11 21:44:53 PDT Modified files: share/examples/netgraph ether.bridge Log: Change the script a bit to allow the creation of 'brouted' bridges. To do this you need to have each top-end connected as well. IP can be routed and other protocols get bridged.. Also useful when bridgeing two networks while merging them as machines will work with both old and new netmasks. (well mostly). Revision Changes Path 1.3 +18 -12 src/share/examples/netgraph/ether.bridge To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22: 0: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 7AFFA37B405; Thu, 11 Apr 2002 22:00:52 -0700 (PDT) Received: (from glewis@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C50qv38009; Thu, 11 Apr 2002 22:00:52 -0700 (PDT) (envelope-from glewis) Message-Id: <200204120500.g3C50qv38009@freefall.freebsd.org> From: Greg Lewis Date: Thu, 11 Apr 2002 22:00:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/jdk13/files patch-common::Release.gmk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG glewis 2002/04/11 22:00:52 PDT Modified files: java/jdk13/files patch-common::Release.gmk Log: A better fix for creating src.jar. Using tar by itself fails because the argument list is too long. Hence the first patch invoked tar once for each file. This works, but is inefficient. This version of the patch uses cpio in pass through mode to copy all the files at once. PR: 35658 Submitted by: "Remco van 't Veer" Reviewed by: sobomax Approved by: sobomax Revision Changes Path 1.2 +4 -5 ports/java/jdk13/files/patch-common::Release.gmk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22: 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 5075837B426; Thu, 11 Apr 2002 22:05:20 -0700 (PDT) Received: (from scottl@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C55J539988; Thu, 11 Apr 2002 22:05:19 -0700 (PDT) (envelope-from scottl) Message-Id: <200204120505.g3C55J539988@freefall.freebsd.org> From: Scott Long Date: Thu, 11 Apr 2002 22:05:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 mutex.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 scottl 2002/04/11 22:05:19 PDT Modified files: share/man/man9 mutex.9 Log: Document the lock type argument of mtx_init(). Revision Changes Path 1.27 +5 -1 src/share/man/man9/mutex.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22: 6: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 0968937B404; Thu, 11 Apr 2002 22:06:39 -0700 (PDT) Received: (from davidc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C56di42825; Thu, 11 Apr 2002 22:06:39 -0700 (PDT) (envelope-from davidc) Message-Id: <200204120506.g3C56di42825@freefall.freebsd.org> From: Chad David Date: Thu, 11 Apr 2002 22:06:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 critical_enter.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 davidc 2002/04/11 22:06:38 PDT Modified files: share/man/man9 critical_enter.9 Log: Fix the prototypes for cpu_critical_exit and cpu_critical_enter and update the text to reflect the changes. Update the header files list. Revision Changes Path 1.7 +8 -23 src/share/man/man9/critical_enter.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22:14: 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 2D72837B405; Thu, 11 Apr 2002 22:14:02 -0700 (PDT) Received: (from tjr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C5E2j43997; Thu, 11 Apr 2002 22:14:02 -0700 (PDT) (envelope-from tjr) Message-Id: <200204120514.g3C5E2j43997@freefall.freebsd.org> From: "Tim J. Robbins" Date: Thu, 11 Apr 2002 22:14:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/share/sgml authors.ent 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 tjr 2002/04/11 22:14:01 PDT Modified files: en_US.ISO8859-1/share/sgml authors.ent en_US.ISO8859-1/articles/contributors article.sgml Log: Add myself to Developers list, remove myself from Additional Contributors. Reviewed by: mike Revision Changes Path 1.151 +4 -4 doc/en_US.ISO8859-1/articles/contributors/article.sgml 1.224 +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 Apr 11 22:16: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 D8D5437B404; Thu, 11 Apr 2002 22:16:27 -0700 (PDT) Received: (from davidc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C5GRs44284; Thu, 11 Apr 2002 22:16:27 -0700 (PDT) (envelope-from davidc) Message-Id: <200204120516.g3C5GRs44284@freefall.freebsd.org> From: Chad David Date: Thu, 11 Apr 2002 22:16:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 lock.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 davidc 2002/04/11 22:16:27 PDT Modified files: share/man/man9 lock.9 Log: Update the prototype for lockinit to reflect that wmesg is a const char *. Revision Changes Path 1.10 +1 -1 src/share/man/man9/lock.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22:17: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 3C7C637B404; Thu, 11 Apr 2002 22:17:16 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C5HGh44443; Thu, 11 Apr 2002 22:17:16 -0700 (PDT) (envelope-from peter) Message-Id: <200204120517.g3C5HGh44443@freefall.freebsd.org> From: Peter Wemm Date: Thu, 11 Apr 2002 22:17:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 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/04/11 22:17:16 PDT Modified files: sys/ia64/ia64 machdep.c Log: Really fix uniprocessor on IA64. Note to self: do not use variables before they are initialized. I had correctly figured out that the UP problem was the pcpu current_pmap thing, but didn't fix it right last time. Revision Changes Path 1.92 +1 -1 src/sys/ia64/ia64/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 Apr 11 22:19: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 9264A37B41B; Thu, 11 Apr 2002 22:19:12 -0700 (PDT) Received: (from davidc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C5JC344687; Thu, 11 Apr 2002 22:19:12 -0700 (PDT) (envelope-from davidc) Message-Id: <200204120519.g3C5JC344687@freefall.freebsd.org> From: Chad David Date: Thu, 11 Apr 2002 22:19:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 random.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 davidc 2002/04/11 22:19:12 PDT Modified files: share/man/man9 random.9 Log: Update the prototype for read_random to reflect that the count parameter is an int not an unsigned int, and that it returns an int not an unsigned int. Revision Changes Path 1.6 +3 -3 src/share/man/man9/random.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22:20:58 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 A287237B419; Thu, 11 Apr 2002 22:20:52 -0700 (PDT) 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 g3C5Kpf47448; Thu, 11 Apr 2002 22:20:51 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Thu, 11 Apr 2002 22:20:51 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: Peter Wemm Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ia64/ia64 machdep.c In-Reply-To: <200204120517.g3C5HGh44443@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 Thu, 11 Apr 2002, Peter Wemm wrote: > peter 2002/04/11 22:17:16 PDT > > Modified files: > sys/ia64/ia64 machdep.c > Log: > Really fix uniprocessor on IA64. Note to self: do not use variables before > they are initialized. Shouldn't the compiler whine about this? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22: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 D74C537B419; Thu, 11 Apr 2002 22:22:25 -0700 (PDT) Received: (from davidc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C5MP545222; Thu, 11 Apr 2002 22:22:25 -0700 (PDT) (envelope-from davidc) Message-Id: <200204120522.g3C5MP545222@freefall.freebsd.org> From: Chad David Date: Thu, 11 Apr 2002 22:22:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 random_harvest.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 davidc 2002/04/11 22:22:25 PDT Modified files: share/man/man9 random_harvest.9 Log: Add sys/types.h to the list of required includes. Revision Changes Path 1.3 +1 -0 src/share/man/man9/random_harvest.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22:23: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 BF0F037B419; Thu, 11 Apr 2002 22:23:16 -0700 (PDT) Received: (from davidc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C5NGg45563; Thu, 11 Apr 2002 22:23:16 -0700 (PDT) (envelope-from davidc) Message-Id: <200204120523.g3C5NGg45563@freefall.freebsd.org> From: Chad David Date: Thu, 11 Apr 2002 22:23:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 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 davidc 2002/04/11 22:23:16 PDT Modified files: share/man/man9 rijndael.9 Log: Add sys/types.h to the list of required includes. Revision Changes Path 1.4 +1 -0 src/share/man/man9/rijndael.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22:30:51 2002 Delivered-To: cvs-all@freebsd.org Received: from finntroll.newgold.net (Durham-ar1-4-64-252-019.dsl.genuity.net [4.64.252.19]) by hub.freebsd.org (Postfix) with SMTP id 005D837B419 for ; Thu, 11 Apr 2002 22:30:47 -0700 (PDT) Received: (qmail 3089 invoked by uid 1001); 12 Apr 2002 05:35:50 -0000 Date: Fri, 12 Apr 2002 05:35:49 +0000 From: "J. Mallett" To: Mike Barcroft Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: CVSROOT access Message-ID: <20020412053549.GA28142@FreeBSD.ORG> References: <200204120415.g3C4FvJ31767@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204120415.g3C4FvJ31767@freefall.freebsd.org> User-Agent: Mutt/1.3.27i Organisation: FreeBSD Sender: owner-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, Apr 11, 2002 at 09:15:57PM -0700, Mike Barcroft wrote: > mike 2002/04/11 21:15:57 PDT > > Modified files: > . access > Log: > Add Tim J. Robbins . He has been working on SUSv3 > utility conformance and has opened far too many high quality PRs. Far, far too many, and of far too high a calibre for someone like me to keep taking on! Welcome, Tim! -- jmallett@FreeBSD.org | C, MIPS, POSIX, UNIX, BSD, IRC Geek. http://www.FreeBSD.org | The Power to Serve "We all need mirrors to remind ourselves who we are -- I'm no different." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22:35: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 0C93137B404; Thu, 11 Apr 2002 22:35:22 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C5ZMX47258; Thu, 11 Apr 2002 22:35:22 -0700 (PDT) (envelope-from murray) Message-Id: <200204120535.g3C5ZMX47258@freefall.freebsd.org> From: Murray Stokely Date: Thu, 11 Apr 2002 22:35:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en developers.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 murray 2002/04/11 22:35:21 PDT Modified files: en developers.sgml Log: Add developer entities needed by the C99 / POSIX project pages. Revision Changes Path 1.10 +21 -2 www/en/developers.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22:36:48 2002 Delivered-To: cvs-all@freebsd.org Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by hub.freebsd.org (Postfix) with ESMTP id A5B8B37B405; Thu, 11 Apr 2002 22:36:44 -0700 (PDT) Received: (from jake@localhost) by k6.locore.ca (8.11.6/8.11.6) id g3C5dTi11148; Fri, 12 Apr 2002 01:39:29 -0400 (EDT) (envelope-from jake) Date: Fri, 12 Apr 2002 01:39:28 -0400 From: Jake Burkholder To: Matthew Jacob Cc: Peter Wemm , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ia64/ia64 machdep.c Message-ID: <20020412013928.A10110@locore.ca> References: <200204120517.g3C5HGh44443@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 mjacob@feral.com on Thu, Apr 11, 2002 at 10:20:51PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Apparently, On Thu, Apr 11, 2002 at 10:20:51PM -0700, Matthew Jacob said words to the effect of; > > > On Thu, 11 Apr 2002, Peter Wemm wrote: > > > peter 2002/04/11 22:17:16 PDT > > > > Modified files: > > sys/ia64/ia64 machdep.c > > Log: > > Really fix uniprocessor on IA64. Note to self: do not use variables before > > they are initialized. > > Shouldn't the compiler whine about this? Not for globals. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22:42: 6 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 39DE637B404; Thu, 11 Apr 2002 22:42:02 -0700 (PDT) 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 g3C5fvf47663; Thu, 11 Apr 2002 22:41:57 -0700 (PDT) (envelope-from mjacob@feral.com) Date: Thu, 11 Apr 2002 22:41:57 -0700 (PDT) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: Jake Burkholder Cc: Peter Wemm , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ia64/ia64 machdep.c In-Reply-To: <20020412013928.A10110@locore.ca> 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 *smack* sorry On Fri, 12 Apr 2002, Jake Burkholder wrote: > Apparently, On Thu, Apr 11, 2002 at 10:20:51PM -0700, > Matthew Jacob said words to the effect of; > > > > > > > On Thu, 11 Apr 2002, Peter Wemm wrote: > > > > > peter 2002/04/11 22:17:16 PDT > > > > > > Modified files: > > > sys/ia64/ia64 machdep.c > > > Log: > > > Really fix uniprocessor on IA64. Note to self: do not use variables before > > > they are initialized. > > > > Shouldn't the compiler whine about this? > > Not for globals. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22:46: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 9BB7E37B405; Thu, 11 Apr 2002 22:46:36 -0700 (PDT) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C5kae48762; Thu, 11 Apr 2002 22:46:36 -0700 (PDT) (envelope-from alfred) Message-Id: <200204120546.g3C5kae48762@freefall.freebsd.org> From: Alfred Perlstein Date: Thu, 11 Apr 2002 22:46:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/wi if_wi.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/04/11 22:46:36 PDT Modified files: sys/dev/wi if_wi.c Log: ifdef WI_HOSTAP some stuff that seems like it needs to be ifdef'd. Revision Changes Path 1.97 +2 -0 src/sys/dev/wi/if_wi.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22: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 3645F37B41E; Thu, 11 Apr 2002 22:53:57 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C5rvr49669; Thu, 11 Apr 2002 22:53:57 -0700 (PDT) (envelope-from murray) Message-Id: <200204120553.g3C5rvr49669@freefall.freebsd.org> From: Murray Stokely Date: Thu, 11 Apr 2002 22:53:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/projects/c99 index.sgml style.css X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/11 22:53:56 PDT Added files: en/projects/c99 index.sgml style.css Log: Add POSIX & C99 Conformance pages. Submitted by: mike Maintained by: mike Revision Changes Path 1.1 +967 -0 www/en/projects/c99/index.sgml (new) 1.1 +38 -0 www/en/projects/c99/style.css (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22:54: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 8FAA737B400; Thu, 11 Apr 2002 22:54:23 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C5sNP49757; Thu, 11 Apr 2002 22:54:23 -0700 (PDT) (envelope-from murray) Message-Id: <200204120554.g3C5sNP49757@freefall.freebsd.org> From: Murray Stokely Date: Thu, 11 Apr 2002 22:54:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/projects Makefile.inc www/en/projects/c99 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 murray 2002/04/11 22:54:23 PDT Added files: en/projects Makefile.inc en/projects/c99 Makefile Log: Add Makefiles for C99 / POSIX conformance project. Revision Changes Path 1.1 +4 -0 www/en/projects/Makefile.inc (new) 1.1 +17 -0 www/en/projects/c99/Makefile (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22: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 20DBE37B41C; Thu, 11 Apr 2002 22:55:18 -0700 (PDT) Received: (from davidc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C5tIA49930; Thu, 11 Apr 2002 22:55:18 -0700 (PDT) (envelope-from davidc) Message-Id: <200204120555.g3C5tIA49930@freefall.freebsd.org> From: Chad David Date: Thu, 11 Apr 2002 22:55:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 mutex.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 davidc 2002/04/11 22:55:18 PDT Modified files: share/man/man9 mutex.9 Log: Add text describing the new type parameter, and rename description to name as that is what it is called in mutex.h. Revision Changes Path 1.28 +17 -6 src/share/man/man9/mutex.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22:55: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 50C3D37B41E; Thu, 11 Apr 2002 22:55:20 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C5tK649961; Thu, 11 Apr 2002 22:55:20 -0700 (PDT) (envelope-from murray) Message-Id: <200204120555.g3C5tK649961@freefall.freebsd.org> From: Murray Stokely Date: Thu, 11 Apr 2002 22:55:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/projects 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 murray 2002/04/11 22:55:20 PDT Modified files: en/projects Makefile Log: Connect the c99 directory to the build. Revision Changes Path 1.11 +3 -1 www/en/projects/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 22:55:48 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 D580F37B422; Thu, 11 Apr 2002 22:55:27 -0700 (PDT) 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 g3C5tQi12924; Thu, 11 Apr 2002 23:55:26 -0600 (MDT) (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 g3C5tPc49196; Thu, 11 Apr 2002 23:55:25 -0600 (MDT) (envelope-from imp@village.org) Date: Thu, 11 Apr 2002 23:55:06 -0600 (MDT) Message-Id: <20020411.235506.53854530.imp@village.org> To: alfred@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/wi if_wi.c From: "M. Warner Losh" In-Reply-To: <200204120546.g3C5kae48762@freefall.freebsd.org> References: <200204120546.g3C5kae48762@freefall.freebsd.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 I purposely didn't ifdef that stuff, since I'm contemplating removing that option. Geeze, don't people even ask others anymore about code that's only a few hours into the tree? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 23: 0: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 8A36637B405; Thu, 11 Apr 2002 23:00:34 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C60Yl50979; Thu, 11 Apr 2002 23:00:34 -0700 (PDT) (envelope-from murray) Message-Id: <200204120600.g3C60Yl50979@freefall.freebsd.org> From: Murray Stokely Date: Thu, 11 Apr 2002 23:00:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/gifs Makefile blocked.png done.png how_to_contribute.png in_progress.png news.png not_planned.png not_started.png project_goal.png project_plan.png resources_and_links.png status_board.png X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/11 23:00:34 PDT Modified files: en/gifs Makefile Added files: en/gifs blocked.png done.png how_to_contribute.png in_progress.png news.png not_planned.png not_started.png project_goal.png project_plan.png resources_and_links.png status_board.png Log: Add images required by C99 / POSIX Conformance project page. Revision Changes Path 1.41 +4 -1 www/en/gifs/Makefile 1.1 +6 -0 www/en/gifs/blocked.png (new) 1.1 +5 -0 www/en/gifs/done.png (new) 1.1 +8 -0 www/en/gifs/how_to_contribute.png (new) 1.1 +10 -0 www/en/gifs/in_progress.png (new) 1.1 +5 -0 www/en/gifs/news.png (new) 1.1 +5 -0 www/en/gifs/not_planned.png (new) 1.1 +8 -0 www/en/gifs/not_started.png (new) 1.1 +6 -0 www/en/gifs/project_goal.png (new) 1.1 +9 -0 www/en/gifs/project_plan.png (new) 1.1 +9 -0 www/en/gifs/resources_and_links.png (new) 1.1 +8 -0 www/en/gifs/status_board.png (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 23: 1: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 B016C37B42C; Thu, 11 Apr 2002 23:01:29 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C61Tm51191; Thu, 11 Apr 2002 23:01:29 -0700 (PDT) (envelope-from imp) Message-Id: <200204120601.g3C61Tm51191@freefall.freebsd.org> From: Warner Losh Date: Thu, 11 Apr 2002 23:01:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/wi if_wi.c if_wi_pccard.c if_wi_pci.c if_wivar.h wi_hostap.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/04/11 23:01:29 PDT Modified files: sys/dev/wi if_wi.c if_wi_pccard.c if_wi_pci.c if_wivar.h wi_hostap.c Log: unifdef -DWI_HOSTAP, like OpenBSD does Revision Changes Path 1.98 +5 -44 src/sys/dev/wi/if_wi.c 1.7 +0 -2 src/sys/dev/wi/if_wi_pccard.c 1.4 +0 -2 src/sys/dev/wi/if_wi_pci.c 1.6 +0 -2 src/sys/dev/wi/if_wivar.h 1.2 +0 -6 src/sys/dev/wi/wi_hostap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 23: 2: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 E77A437B41D; Thu, 11 Apr 2002 23:01:49 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C61nh51299; Thu, 11 Apr 2002 23:01:49 -0700 (PDT) (envelope-from imp) Message-Id: <200204120601.g3C61nh51299@freefall.freebsd.org> From: Warner Losh Date: Thu, 11 Apr 2002 23:01:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules/wi 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 imp 2002/04/11 23:01:49 PDT Modified files: sys/modules/wi Makefile Log: -DWI_HOSTAP no longer needed Revision Changes Path 1.14 +1 -1 src/sys/modules/wi/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 23: 3: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 203A637B405; Thu, 11 Apr 2002 23:03:48 -0700 (PDT) Received: (from davidc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C63mG51630; Thu, 11 Apr 2002 23:03:48 -0700 (PDT) (envelope-from davidc) Message-Id: <200204120603.g3C63mG51630@freefall.freebsd.org> From: Chad David Date: Thu, 11 Apr 2002 23:03:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 scheduler.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 davidc 2002/04/11 23:03:48 PDT Modified files: share/man/man9 scheduler.9 Log: Update the prototype for maybe_resched to take a thread not a ksegrp. Remove need_resched as it no longer exists. Cleanup the text for other functions that have changed out from under their descriptions. This page needs to be reviewed again after things settle down a bit. Reviewed by: jhb Revision Changes Path 1.6 +15 -15 src/share/man/man9/scheduler.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 23:10: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 2147137B400; Thu, 11 Apr 2002 23:10:38 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C6AcG56870; Thu, 11 Apr 2002 23:10:38 -0700 (PDT) (envelope-from imp) Message-Id: <200204120610.g3C6AcG56870@freefall.freebsd.org> From: Warner Losh Date: Thu, 11 Apr 2002 23:10:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if_media.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/04/11 23:10:38 PDT Modified files: sys/net if_media.h Log: Add hostap 802.11 media type. From wi_hostap stuff by Thomas Skibo Revision Changes Path 1.14 +2 -0 src/sys/net/if_media.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 23:12: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 60FD437B405; Thu, 11 Apr 2002 23:12:21 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C6CLn57125; Thu, 11 Apr 2002 23:12:21 -0700 (PDT) (envelope-from imp) Message-Id: <200204120612.g3C6CLn57125@freefall.freebsd.org> From: Warner Losh Date: Thu, 11 Apr 2002 23:12:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/wi if_wi.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/04/11 23:12:21 PDT Modified files: sys/dev/wi if_wi.c Log: After committing the forgotten IFM_IEEE80211_HOSTAP stuff to if_media.h, no need for the ifdefs here anymore. Revision Changes Path 1.99 +2 -10 src/sys/dev/wi/if_wi.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 23:15: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 BB4A337B41B; Thu, 11 Apr 2002 23:15:03 -0700 (PDT) Received: (from vanilla@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C6F3T57479; Thu, 11 Apr 2002 23:15:03 -0700 (PDT) (envelope-from vanilla) Message-Id: <200204120615.g3C6F3T57479@freefall.freebsd.org> From: "Vanilla I. Shu" Date: Thu, 11 Apr 2002 23:15:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/p5-Gimp Makefile distinfo ports/graphics/p5-Gimp/files patch-Gimp.pm patch-Gimp::Lib.xs patch-Gimp::Makefile.PL patch-Makefile.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 vanilla 2002/04/11 23:15:03 PDT Modified files: graphics/p5-Gimp Makefile distinfo Added files: graphics/p5-Gimp/files patch-Gimp.pm patch-Gimp::Lib.xs patch-Gimp::Makefile.PL patch-Makefile.PL Log: Upgrade to 1.211, add a patch to fix callback problem. PR: plamabal @ #bsdchat of taiwan. Revision Changes Path 1.3 +3 -3 ports/graphics/p5-Gimp/Makefile 1.2 +1 -1 ports/graphics/p5-Gimp/distinfo 1.1 +49 -0 ports/graphics/p5-Gimp/files/patch-Gimp.pm (new) 1.1 +13 -0 ports/graphics/p5-Gimp/files/patch-Gimp::Lib.xs (new) 1.1 +11 -0 ports/graphics/p5-Gimp/files/patch-Gimp::Makefile.PL (new) 1.1 +11 -0 ports/graphics/p5-Gimp/files/patch-Makefile.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 Apr 11 23:19: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 54D4E37B405; Thu, 11 Apr 2002 23:19:12 -0700 (PDT) Received: (from davidc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C6JCq58238; Thu, 11 Apr 2002 23:19:12 -0700 (PDT) (envelope-from davidc) Message-Id: <200204120619.g3C6JCq58238@freefall.freebsd.org> From: Chad David Date: Thu, 11 Apr 2002 23:19:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 selrecord.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 davidc 2002/04/11 23:19:12 PDT Added files: share/man/man9 selrecord.9 Log: Add a new man page that documents selrecord and selwakeup. Thanks to: alfred Revision Changes Path 1.1 +101 -0 src/share/man/man9/selrecord.9 (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 23:19: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 0500837B419; Thu, 11 Apr 2002 23:19:19 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C6JIW58267; Thu, 11 Apr 2002 23:19:18 -0700 (PDT) (envelope-from imp) Message-Id: <200204120619.g3C6JIW58267@freefall.freebsd.org> From: Warner Losh Date: Thu, 11 Apr 2002 23:19:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/11 23:19:18 PDT Modified files: sys/conf files Log: Forgot to commit this when I committed the rest of the hostap stuff. Revision Changes Path 1.622 +1 -0 src/sys/conf/files To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 23:19: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 D8F5637B405; Thu, 11 Apr 2002 23:19:34 -0700 (PDT) Received: (from davidc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C6JYP58326; Thu, 11 Apr 2002 23:19:34 -0700 (PDT) (envelope-from davidc) Message-Id: <200204120619.g3C6JYP58326@freefall.freebsd.org> From: Chad David Date: Thu, 11 Apr 2002 23:19:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 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 davidc 2002/04/11 23:19:34 PDT Modified files: share/man/man9 Makefile Log: Add entries for selrecord.9. Revision Changes Path 1.158 +2 -1 src/share/man/man9/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 23:21:10 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 63B7E37B41D; Thu, 11 Apr 2002 23:21:06 -0700 (PDT) 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 g3C6L5i13080; Fri, 12 Apr 2002 00:21:05 -0600 (MDT) (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 g3C6L4c49444; Fri, 12 Apr 2002 00:21:04 -0600 (MDT) (envelope-from imp@village.org) Date: Fri, 12 Apr 2002 00:20:46 -0600 (MDT) Message-Id: <20020412.002046.58229326.imp@village.org> To: alfred@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/wi if_wi.c From: "M. Warner Losh" In-Reply-To: <20020411.235506.53854530.imp@village.org> References: <200204120546.g3C5kae48762@freefall.freebsd.org> <20020411.235506.53854530.imp@village.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: <20020411.235506.53854530.imp@village.org> M. Warner Losh writes: : Geeze, don't people even ask others anymore about code that's only a : few hours into the tree? I'm sorry. This comment was a little over the top. Especially in light of the fact that I neglected to commit sys/conf/files last night when I did the host ap stuff. Sorry for being so grump and snarly. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Apr 11 23:50: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 DB5ED37B419; Thu, 11 Apr 2002 23:50:51 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C6opO67293; Thu, 11 Apr 2002 23:50:51 -0700 (PDT) (envelope-from marcel) Message-Id: <200204120650.g3C6opO67293@freefall.freebsd.org> From: Marcel Moolenaar Date: Thu, 11 Apr 2002 23:50:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/include 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 marcel 2002/04/11 23:50:51 PDT Modified files: sys/ia64/include stdarg.h Log: Fix definition of va_start: We don't need to take the address of va_list. It's a builtin type. gcc 3.1 doesn't care either way, but gcc 3.2 is more picky and doesn't like the former. Revision Changes Path 1.2 +1 -1 src/sys/ia64/include/stdarg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 0:16: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 91CA337B400; Fri, 12 Apr 2002 00:16:24 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C7GOa75474; Fri, 12 Apr 2002 00:16:24 -0700 (PDT) (envelope-from bmah) Message-Id: <200204120716.g3C7GOa75474@freefall.freebsd.org> From: "Bruce A. Mah" Date: Fri, 12 Apr 2002 00:16:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/projects/c99 index.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/04/12 00:16:24 PDT Modified files: en/projects/c99 index.sgml Log: Unbreak Web build by defining &a.majordomo; and &a.standards; in this file. Web documents don't have an equivalent (yet) to mailing-lists.ent for FDP DocBook documents. Revision Changes Path 1.2 +5 -1 www/en/projects/c99/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 0:17:19 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 DC51837B419; Fri, 12 Apr 2002 00:17:04 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g3C7Guv77839; Fri, 12 Apr 2002 10:16:56 +0300 (EEST) (envelope-from ru) Date: Fri, 12 Apr 2002 10:16:56 +0300 From: Ruslan Ermilov To: "David O'Brien" Cc: Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin Makefile Message-ID: <20020412071656.GA75003@sunbay.com> References: <200204082038.g38KcuJ36871@freefall.freebsd.org> <20020409082654.GE73475@sunbay.com> <20020410045830.GB10113@dhcp01.pn.xcllnt.net> <20020410174228.GJ98684@sunbay.com> <20020410180308.C84993@dragon.nuxi.com> <20020411071218.GB27950@sunbay.com> <20020411114422.C99937@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="W/nzBZO5zC0uMSeA" Content-Disposition: inline In-Reply-To: <20020411114422.C99937@dragon.nuxi.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 --W/nzBZO5zC0uMSeA Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 11, 2002 at 11:44:22AM -0700, David O'Brien wrote: > On Thu, Apr 11, 2002 at 10:12:18AM +0300, Ruslan Ermilov wrote: > > If you want to change the semantics of NO_CXX from recently "don't comp= ile > > c++ compiler" to "don't compile c++ compiler and c++ programs", you will > > also have to disable building of lib/libc_r, as it also uses c++, in its > > uthread/uthread_autoinit.cc. >=20 > For -current we don't use libc_r. ;-) > =20 Are you running your own version of -current? Mine, for example, builds it (here's the relevant part of the output from tonight's -current build for i386): =3D=3D=3D> libc_r cc -O -pipe -march=3Dpentiumpro -DLIBC_RCS -DSYSLIBC_RCS -I/CURRENT/usr/src= /lib/libc_r/../libc/include -DPTHREAD_KERNEL -D_THREAD_SAFE -I/CURRENT/usr/= src/lib/libc_r/uthread -I/CURRENT/usr/src/lib/libc_r/../../include -D_LOCK_= DEBUG -D_PTHREADS_INVARIANTS -c /CURRENT/usr/src/lib/libc_r/uthread/uthrea= d_accept.c -o uthread_accept.o [...] c++ -O -pipe -march=3Dpentiumpro -DLIBC_RCS -DSYSLIBC_RCS -I/CURRENT/usr/s= rc/lib/libc_r/../libc/include -DPTHREAD_KERNEL -D_THREAD_SAFE -I/CURRENT/us= r/src/lib/libc_r/uthread -I/CURRENT/usr/src/lib/libc_r/../../include -D_LOC= K_DEBUG -D_PTHREADS_INVARIANTS -c /CURRENT/usr/src/lib/libc_r/uthread/uthr= ead_autoinit.cc -o uthread_autoinit.o [...] We have this in lib/libc_r/Makefile: =2Eif !defined(NOLIBC_R) && ${MACHINE_ARCH} !=3D ia64 _libc_r=3D libc_r =2Eendif > > What if the user has a compiler installed from the Ports collection and > > wants to compile c++ programs using it? >=20 > make CXX=3Dmy_bad_ass_C++ world >=20 > will do what you want. The system C++ compiler would still be built; but > it would not be used for building anything else. (if this is not the > case; it is a bug in our build system) >=20 Agreed, but we still need to fix the libc_r issue. Cheers, --=20 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 --W/nzBZO5zC0uMSeA 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 iD8DBQE8tonoUkv4P6juNwoRAgFlAJ0ShC2bhY93BNY52p9iJP89IVLO8gCfVBDC nThIFfcrsBBfsZWasZE3GmQ= =DPOZ -----END PGP SIGNATURE----- --W/nzBZO5zC0uMSeA-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 0:36: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 4038D37B416; Fri, 12 Apr 2002 00:36:11 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C7aBQ78358; Fri, 12 Apr 2002 00:36:11 -0700 (PDT) (envelope-from murray) Message-Id: <200204120736.g3C7aBQ78358@freefall.freebsd.org> From: Murray Stokely Date: Fri, 12 Apr 2002 00:36:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/gifs Makefile c99.jpg X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/12 00:36:10 PDT Modified files: en/gifs Makefile Added files: en/gifs c99.jpg Log: Add another image for the C99 / POSIX project page. Overlooked by: murray Revision Changes Path 1.42 +2 -2 www/en/gifs/Makefile 1.1 +160 -0 www/en/gifs/c99.jpg (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 0:41: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 A561337B416; Fri, 12 Apr 2002 00:41:08 -0700 (PDT) Received: (from gerald@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C7f8i79273; Fri, 12 Apr 2002 00:41:08 -0700 (PDT) (envelope-from gerald) Message-Id: <200204120741.g3C7f8i79273@freefall.freebsd.org> From: Gerald Pfeifer Date: Fri, 12 Apr 2002 00:41:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gcc31/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 gerald 2002/04/12 00:41:08 PDT Removed files: lang/gcc31/files patch-aa patch-ab Log: GCC 2.95 and later aren't called egcs (any longer), so remove two patches that add references to egcs to the documentation. Approved by: obrien (maintainer+mentor) Revision Changes Path 1.3 +0 -12 ports/lang/gcc31/files/patch-aa (dead) 1.3 +0 -11 ports/lang/gcc31/files/patch-ab (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 0:41: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 5EF7C37B400; Fri, 12 Apr 2002 00:41:16 -0700 (PDT) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C7fGK79298; Fri, 12 Apr 2002 00:41:16 -0700 (PDT) (envelope-from dfr) Message-Id: <200204120741.g3C7fGK79298@freefall.freebsd.org> From: Doug Rabson Date: Fri, 12 Apr 2002 00:41:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 trap.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 dfr 2002/04/12 00:41:16 PDT Modified files: sys/ia64/ia64 trap.c Log: Print extra information in printtrap() if the interrupted state was for an IA-32 process. Don't sign extend arguments in ia32_syscall - its not normally going to be useful (e.g. pointers need to be zero extended). Revision Changes Path 1.50 +12 -7 src/sys/ia64/ia64/trap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 0: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 7931537B400; Fri, 12 Apr 2002 00:41:58 -0700 (PDT) Received: (from gerald@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C7fwQ79441; Fri, 12 Apr 2002 00:41:58 -0700 (PDT) (envelope-from gerald) Message-Id: <200204120741.g3C7fwQ79441@freefall.freebsd.org> From: Gerald Pfeifer Date: Fri, 12 Apr 2002 00:41:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gcc32/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 gerald 2002/04/12 00:41:58 PDT Removed files: lang/gcc32/files patch-aa patch-ab Log: GCC 2.95 and later aren't called egcs (any longer), so remove two patches that add references to egcs to the documentation. Approved by: obrien (maintainer+mentor) Revision Changes Path 1.3 +0 -12 ports/lang/gcc32/files/patch-aa (dead) 1.3 +0 -11 ports/lang/gcc32/files/patch-ab (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 0:43: 1 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 9893837B400; Fri, 12 Apr 2002 00:42:56 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3C7gtYm079397; Fri, 12 Apr 2002 00:42:55 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3C7feoK068685; Fri, 12 Apr 2002 00:41:40 -0700 (PDT) Date: Fri, 12 Apr 2002 00:41:40 -0700 From: "David O'Brien" To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin Makefile Message-ID: <20020412004140.A66483@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200204082038.g38KcuJ36871@freefall.freebsd.org> <20020409082654.GE73475@sunbay.com> <20020410045830.GB10113@dhcp01.pn.xcllnt.net> <20020410174228.GJ98684@sunbay.com> <20020410180308.C84993@dragon.nuxi.com> <20020411071218.GB27950@sunbay.com> <20020411114422.C99937@dragon.nuxi.com> <20020412071656.GA75003@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: <20020412071656.GA75003@sunbay.com>; from ru@FreeBSD.org on Fri, Apr 12, 2002 at 10:16:56AM +0300 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 Fri, Apr 12, 2002 at 10:16:56AM +0300, Ruslan Ermilov wrote: > > For -current we don't use libc_r. ;-) > > > Are you running your own version of -current? Mine, for example, > builds it (here's the relevant part of the output from tonight's > -current build for i386): Hum.. maybe? Oh, uh, sorry libgcc_r. [been working too much on a certain something...] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 0:43: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 BB3D837B400; Fri, 12 Apr 2002 00:43:39 -0700 (PDT) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C7hdA79699; Fri, 12 Apr 2002 00:43:39 -0700 (PDT) (envelope-from dfr) Message-Id: <200204120743.g3C7hdA79699@freefall.freebsd.org> From: Doug Rabson Date: Fri, 12 Apr 2002 00:43:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 machdep.c mp_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 dfr 2002/04/12 00:43:38 PDT Modified files: sys/ia64/ia64 machdep.c mp_machdep.c Log: Initialise ar.cflg, which contains the IA-32 registers cr0 and cr4. Since all IA-32 processes use the same values for cr0 and cr4, we initialise them at system startup. Revision Changes Path 1.93 +7 -0 src/sys/ia64/ia64/machdep.c 1.35 +7 -0 src/sys/ia64/ia64/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 Apr 12 0:47: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 E1F2137B404; Fri, 12 Apr 2002 00:47:13 -0700 (PDT) Received: (from sada@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C7lDE80883; Fri, 12 Apr 2002 00:47:13 -0700 (PDT) (envelope-from sada) Message-Id: <200204120747.g3C7lDE80883@freefall.freebsd.org> From: SADA Kenji Date: Fri, 12 Apr 2002 00:47:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/pimp3 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/04/12 00:47:13 PDT Modified files: audio/pimp3 Makefile Log: Distfile is available on new site. Submitted by: Christian Brueffer PR: ports/36942 Revision Changes Path 1.9 +2 -2 ports/audio/pimp3/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 0:56:23 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 5C28337B400; Fri, 12 Apr 2002 00:56:02 -0700 (PDT) Received: (from jhay@localhost) by zibbi.icomtek.csir.co.za (8.11.6/8.11.6) id g3C7tpM14000; Fri, 12 Apr 2002 09:55:51 +0200 (SAT) (envelope-from jhay) From: John Hay Message-Id: <200204120755.g3C7tpM14000@zibbi.icomtek.csir.co.za> Subject: Re: cvs commit: ports/lang/gcc32/files patch-aa patch-ab In-Reply-To: <200204120741.g3C7fwQ79441@freefall.freebsd.org> from Gerald Pfeifer at "Apr 12, 2002 00:41:58 am" To: gerald@FreeBSD.org (Gerald Pfeifer) Date: Fri, 12 Apr 2002 09:55:50 +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 > gerald 2002/04/12 00:41:58 PDT > > Removed files: > lang/gcc32/files patch-aa patch-ab > Log: > GCC 2.95 and later aren't called egcs (any longer), so remove two patches > that add references to egcs to the documentation. What about an updated pkg-descr for them too? It also still call it egcs. 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 Fri Apr 12 1:12: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 1DB6A37B400; Fri, 12 Apr 2002 01:12:28 -0700 (PDT) Received: (from skv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C8CSY90985; Fri, 12 Apr 2002 01:12:28 -0700 (PDT) (envelope-from skv) Message-Id: <200204120812.g3C8CSY90985@freefall.freebsd.org> From: Sergey Skvortsov Date: Fri, 12 Apr 2002 01:12:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/p5-XML-LibXML 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/04/12 01:12:27 PDT Modified files: textproc/p5-XML-LibXML Makefile distinfo pkg-descr Log: Updated to 1.40 (bugs fixed). Approved by: markm Revision Changes Path 1.7 +2 -2 ports/textproc/p5-XML-LibXML/Makefile 1.5 +1 -1 ports/textproc/p5-XML-LibXML/distinfo 1.3 +6 -3 ports/textproc/p5-XML-LibXML/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 Apr 12 1:17: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 76EC237B427; Fri, 12 Apr 2002 01:17:24 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C8HOq91679; Fri, 12 Apr 2002 01:17:24 -0700 (PDT) (envelope-from ru) Message-Id: <200204120817.g3C8HOq91679@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 12 Apr 2002 01:17:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.prog.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/04/12 01:17:24 PDT Modified files: share/mk bsd.prog.mk Log: Don't add -lstdc++ to LDADD, just let c++(1) link C++ programs. Record the dependency on ${LIBSTDCPLUSPLUS} similar to ${LIBC}. Suggested by: imp, obrien, peter Revision Changes Path 1.108 +7 -5 src/share/mk/bsd.prog.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 1:22: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 06E8537B404; Fri, 12 Apr 2002 01:22:56 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C8Mu092725; Fri, 12 Apr 2002 01:22:56 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204120822.g3C8Mu092725@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 12 Apr 2002 01:22:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/bonobo Makefile distinfo pkg-plist ports/devel/bonobo/files patch-monikers::Makefile.in patch-storage-modules::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/04/12 01:22:55 PDT Modified files: devel/bonobo Makefile distinfo pkg-plist devel/bonobo/files patch-monikers::Makefile.in Removed files: devel/bonobo/files patch-storage-modules::Makefile.in Log: - Update to 1.0.20; - teach it to play nicely with corresponding GNOME2 component. Submitted by: marcus Revision Changes Path 1.49 +3 -1 ports/devel/bonobo/Makefile 1.29 +1 -1 ports/devel/bonobo/distinfo 1.3 +2 -14 ports/devel/bonobo/files/patch-monikers::Makefile.in 1.2 +0 -14 ports/devel/bonobo/files/patch-storage-modules::Makefile.in (dead) 1.30 +2 -2 ports/devel/bonobo/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 Apr 12 1:24: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 2FB5C37B404; Fri, 12 Apr 2002 01:24:31 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C8OVp93076; Fri, 12 Apr 2002 01:24:31 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204120824.g3C8OVp93076@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 12 Apr 2002 01:24:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/libbonobo 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/04/12 01:24:31 PDT Modified files: devel/libbonobo pkg-plist Log: Expect that some dirs may be shared with devel/bonobo. Revision Changes Path 1.4 +2 -2 ports/devel/libbonobo/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 Apr 12 1:27:28 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 19D4F37B400; Fri, 12 Apr 2002 01:27:15 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g3C8QpH84316; Fri, 12 Apr 2002 11:26:51 +0300 (EEST) (envelope-from ru) Date: Fri, 12 Apr 2002 11:26:51 +0300 From: Ruslan Ermilov To: Peter Wemm , "David O'Brien" , "M. Warner Losh" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: PROG_CXX (was: Re: cvs commit: src/gnu/usr.bin/gperf Makefile src/gnu/usr.bin/groff/src/devices/grodvi Makefile src/gnu/usr.bin/groff/src/devices/grohtml Makefile src/gnu/usr.bin/groff/src/devices/grolbp Makefile sr) Message-ID: <20020412082651.GB75003@sunbay.com> References: <20020411051528.8663638FD@overcee.wemm.org> <20020411093353.GA42484@sunbay.com> <20020411135740.A13856@dragon.nuxi.com> <20020411.201930.119969734.imp@village.org> <20020411135740.A13856@dragon.nuxi.com> <20020411215117.20D553810@overcee.wemm.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="MfFXiAuoTsnnDAfZ" Content-Disposition: inline In-Reply-To: <20020411.201930.119969734.imp@village.org> <20020411215117.20D553810@overcee.wemm.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 --MfFXiAuoTsnnDAfZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable > In message: <20020411135740.A13856@dragon.nuxi.com> > "David O'Brien" writes: > > On Thu, Apr 11, 2002 at 12:33:53PM +0300, Ruslan Ermilov wrote: > > > +.if defined(PROG_CXX) > > > +PROG=3D ${PROG_CXX} > > > +DPADD+=3D ${LIBSTDCPLUSPLUS} > > > +LDADD+=3D -lstdc++ > > > +.endif > >=20 > > We really should not be doing this part -- we do not do it for libc. > > Making too many assumptions about how G++ expects the linking to be is > > bad. Rather if PROG_GXX is set, 'g++' should be used for linking rather > > than 'gcc' [as Peter mentioned]. We really should just be letting g++ = do > > its job. On Thu, Apr 11, 2002 at 02:51:17PM -0700, Peter Wemm wrote: >=20 > That's what I did, except I used c++. (we use "cc" not "gcc", we shouldn= 't > use "g++" either). The main point is that this can be changed behind the > scenes without affecting the groff/gperf makefiles anymore. This is now > an implementation detail. I can finish my build testing and commit the > stuff that uses c++ etc to do the final link. >=20 I also thought about this last night. Linking with c++ is _required_ for static linkage of C++ programs to work; libstdc++.a depends on libm.a, and c++ is "smart" enough to call linker with -lstdc++ -lm (it should probably be doing this in the -static case only anyway). Should be fixed in 1.108. This brings another question [for BDE]. Should be convert all usages of -lfoo to ${MINUSLFOO}, similar to the way we do it for ${MINUSLPAM}, to avoid doing this extra work in each individual makefile when it fails to compile statically. On Thu, Apr 11, 2002 at 08:19:30PM -0600, M. Warner Losh wrote: >=20 > +.if defined(PROG_CXX) > +PROG=3D ${PROG_CXX} > +.endif >=20 > Is almost right, but we have: >=20 > ${PROG}: ${OBJS} > ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} >=20 > Redefining CC to be g++ isnt' right, because it uses CFLAGS rather > than CXXFLAGS. In the current setup, it doesn't matter. >=20 > So we'd need >=20 > ${PROG}: ${OBJS} > +.if defined(PROG_CXX) > + ${CXX} ${CXXFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDAD= D} > +.else > ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDDESTDIR} ${LDADD} > +.endif >=20 > to be more correct, but we need that in at least two places in > bsd.prog.mk since we duplicate the code. Oh, wait, the second one > isn't quite right either, since we need to also support PROG_CXX w/o > defining SRCS. >=20 I've fixed the unnecessary duplication as well. Cheers, --=20 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 --MfFXiAuoTsnnDAfZ 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 iD8DBQE8tppKUkv4P6juNwoRAq2+AJsFiGyO8YtxehECi7EgP3Jou43BNACeIria wptQOEpPhORgXlffVCLUypo= =NifZ -----END PGP SIGNATURE----- --MfFXiAuoTsnnDAfZ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 1:36: 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 474D437B404; Fri, 12 Apr 2002 01:36:01 -0700 (PDT) Received: (from gerald@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C8a1U94790; Fri, 12 Apr 2002 01:36:01 -0700 (PDT) (envelope-from gerald) Message-Id: <200204120836.g3C8a1U94790@freefall.freebsd.org> From: Gerald Pfeifer Date: Fri, 12 Apr 2002 01:36:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gcc295/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 gerald 2002/04/12 01:36:01 PDT Removed files: lang/gcc295/files patch-aa patch-ab patch-ac Log: GCC 2.95 and later aren't called egcs (any longer), so remove three patches that add references to egcs to the documentation. Approved by: obrien (maintainer+mentor) Revision Changes Path 1.2 +0 -12 ports/lang/gcc295/files/patch-aa (dead) 1.3 +0 -11 ports/lang/gcc295/files/patch-ab (dead) 1.2 +0 -13 ports/lang/gcc295/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 Fri Apr 12 1:36: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 6991337B419; Fri, 12 Apr 2002 01:36:34 -0700 (PDT) Received: (from gerald@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C8aYv94919; Fri, 12 Apr 2002 01:36:34 -0700 (PDT) (envelope-from gerald) Message-Id: <200204120836.g3C8aYv94919@freefall.freebsd.org> From: Gerald Pfeifer Date: Fri, 12 Apr 2002 01:36:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gcc30/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 gerald 2002/04/12 01:36:34 PDT Removed files: lang/gcc30/files patch-aa patch-ab patch-ac Log: GCC 2.95 and later aren't called egcs (any longer), so remove three patches that add references to egcs to the documentation. Approved by: obrien (maintainer+mentor) Revision Changes Path 1.3 +0 -12 ports/lang/gcc30/files/patch-aa (dead) 1.3 +0 -11 ports/lang/gcc30/files/patch-ab (dead) 1.3 +0 -13 ports/lang/gcc30/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 Fri Apr 12 1:43: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 4F3C037B400; Fri, 12 Apr 2002 01:43:41 -0700 (PDT) Received: (from jmallett@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C8hfX95829; Fri, 12 Apr 2002 01:43:41 -0700 (PDT) (envelope-from jmallett) Message-Id: <200204120843.g3C8hfX95829@freefall.freebsd.org> From: "J. Mallett" Date: Fri, 12 Apr 2002 01:43:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/sed process.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 jmallett 2002/04/12 01:43:41 PDT Modified files: (Branch: RELENG_4) usr.bin/sed process.c Log: MFC 1.15, fixes nil pattern space resulting in incorrect behaviour, see original commit message. PR: bin/34813 Revision Changes Path 1.10.2.3 +5 -3 src/usr.bin/sed/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 Apr 12 1:57: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 B125137B405; Fri, 12 Apr 2002 01:57:29 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C8vTc98228; Fri, 12 Apr 2002 01:57:29 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204120857.g3C8vTc98228@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 12 Apr 2002 01:57:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/libgnomeprintui Makefile distinfo pkg-comment pkg-descr pkg-plist ports/x11-toolkits/libgnomeprintui/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/04/12 01:57:29 PDT Modified files: x11-toolkits Makefile Added files: x11-toolkits/libgnomeprintui Makefile distinfo pkg-comment pkg-descr pkg-plist x11-toolkits/libgnomeprintui/files patch-ltmain.sh Log: Add libgnomeprintui 1.112.0, gnome print support library. Revision Changes Path 1.169 +1 -0 ports/x11-toolkits/Makefile 1.1 +42 -0 ports/x11-toolkits/libgnomeprintui/Makefile (new) 1.1 +1 -0 ports/x11-toolkits/libgnomeprintui/distinfo (new) 1.1 +45 -0 ports/x11-toolkits/libgnomeprintui/files/patch-ltmain.sh (new) 1.1 +1 -0 ports/x11-toolkits/libgnomeprintui/pkg-comment (new) 1.1 +4 -0 ports/x11-toolkits/libgnomeprintui/pkg-descr (new) 1.1 +26 -0 ports/x11-toolkits/libgnomeprintui/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 Apr 12 1:57: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 2AF1C37B423; Fri, 12 Apr 2002 01:57:39 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C8vdJ98283; Fri, 12 Apr 2002 01:57:39 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204120857.g3C8vdJ98283@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 12 Apr 2002 01:57:39 -0700 (PDT) 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 sobomax 2002/04/12 01:57:39 PDT Modified files: . modules Log: libgnomeprintui --> ports/x11-toolkits/libgnomeprintui Revision Changes Path 1.4970 +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 Apr 12 2:18: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 9B9DD37B405; Fri, 12 Apr 2002 02:18:24 -0700 (PDT) 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 TAA20232; Fri, 12 Apr 2002 19:16:48 +1000 Date: Fri, 12 Apr 2002 19:16:43 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: "M. Warner Losh" Cc: Alexander@Leidinger.net, , , Subject: Re: cvs commit: src/share/mk bsd.sys.mk In-Reply-To: <20020411.101718.69020559.imp@village.org> Message-ID: <20020412190843.P7772-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, 11 Apr 2002, M. Warner Losh wrote: > A big part of the problem is that there's no way to do '#define > foo(x)' on the command line (correct me if I'm wrong). You can do OK. There is a way: just do it. This is unportable but works for gcc. > '#define foo' on the command line, but that leaves calls of foo > expanding to (x). You'd have to have __IGNORE (to go back to bde's > example) defined in cdefs.h. And if you are doing that, then why not > have __RCSID defined too. It's not like it pollutes the application > name space :-). I used __IGNORE without any args for portability. Oh, I left out a :-)/2. Putting -D__FOOID=__IGNORE in hundreds of makefiles would be uglier than putting __FOOID once in . However, it is easier if only one program uses __FOOID. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 2:29: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 2C9EF37B400; Fri, 12 Apr 2002 02:29:25 -0700 (PDT) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C9TPh07376; Fri, 12 Apr 2002 02:29:25 -0700 (PDT) (envelope-from wjv) Message-Id: <200204120929.g3C9TPh07376@freefall.freebsd.org> From: Johann Visagie Date: Fri, 12 Apr 2002 02:29:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/py-asv 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 wjv 2002/04/12 02:29:25 PDT Modified files: textproc/py-asv Makefile pkg-plist Log: - Remove PYTHON_VERSION=python2.1 restriction - Implement DOCSDIR and EXAMPLESDIR - Bump PORTREVISION PR: 36914 (PYTHON_VERSION restriction) Submitted by: Alan Eldridge Revision Changes Path 1.5 +8 -10 ports/textproc/py-asv/Makefile 1.2 +9 -9 ports/textproc/py-asv/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 Apr 12 2: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 DFB9937B41A; Fri, 12 Apr 2002 02:38:20 -0700 (PDT) Received: (from wjv@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3C9cKL08938; Fri, 12 Apr 2002 02:38:20 -0700 (PDT) (envelope-from wjv) Message-Id: <200204120938.g3C9cKL08938@freefall.freebsd.org> From: Johann Visagie Date: Fri, 12 Apr 2002 02:38:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/py-asv Makefile 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 wjv 2002/04/12 02:38:20 PDT Modified files: textproc/py-asv Makefile Added files: textproc/py-asv pkg-req Log: - Add a PKGREQ script to limit dependency to Python 2.0 and greater. - Bump PORTREVISION (again, sorry) Revision Changes Path 1.6 +4 -1 ports/textproc/py-asv/Makefile 1.1 +17 -0 ports/textproc/py-asv/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 Fri Apr 12 3: 3:58 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 49AA937B41D; Fri, 12 Apr 2002 03:03:47 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g3CA3gH02741; Fri, 12 Apr 2002 13:03:42 +0300 (EEST) (envelope-from ru) Date: Fri, 12 Apr 2002 13:03:42 +0300 From: Ruslan Ermilov To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.prog.mk Message-ID: <20020412100342.GG75003@sunbay.com> References: <200204120817.g3C8HOq91679@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2NLGdgz3UMHa/lqP" Content-Disposition: inline In-Reply-To: <200204120817.g3C8HOq91679@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 --2NLGdgz3UMHa/lqP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 12, 2002 at 01:17:24AM -0700, Ruslan Ermilov wrote: > ru 2002/04/12 01:17:24 PDT >=20 > Modified files: > share/mk bsd.prog.mk=20 > Log: > Don't add -lstdc++ to LDADD, just let c++(1) link C++ programs. > Record the dependency on ${LIBSTDCPLUSPLUS} similar to ${LIBC}. > =20 > Suggested by: imp, obrien, peter > =20 > Revision Changes Path > 1.108 +7 -5 src/share/mk/bsd.prog.mk >=20 I know I broke it. Will fix it ASAP. --=20 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 --2NLGdgz3UMHa/lqP 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 iD8DBQE8trD9Ukv4P6juNwoRAnS4AJwLG/rHEnqQhqciVK9ts432mbu+ngCfavox xaBRy8jmW6Z17MuXEOCBq+k= =9WoS -----END PGP SIGNATURE----- --2NLGdgz3UMHa/lqP-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 3: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 19AAD37B400; Fri, 12 Apr 2002 03:33:43 -0700 (PDT) Received: (from tg@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CAXhW20927; Fri, 12 Apr 2002 03:33:43 -0700 (PDT) (envelope-from tg) Message-Id: <200204121033.g3CAXhW20927@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 12 Apr 2002 03:33:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Mk bsd.python.mk ports/lang/python Makefile distinfo pkg-plist ports/lang/python/files patch-PyObject_DelItemString X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/12 03:33:42 PDT Modified files: Mk bsd.python.mk lang/python Makefile distinfo pkg-plist Removed files: lang/python/files patch-PyObject_DelItemString Log: Upgrade to Python-2.2. PR: 36977 Submitted by: Hye-Shik Chang Revision Changes Path 1.21 +3 -3 ports/Mk/bsd.python.mk 1.86 +1 -2 ports/lang/python/Makefile 1.30 +1 -1 ports/lang/python/distinfo 1.2 +0 -56 ports/lang/python/files/patch-PyObject_DelItemString (dead) 1.36 +4 -5 ports/lang/python/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 Apr 12 3:34: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 4CF5737B41B; Fri, 12 Apr 2002 03:34:55 -0700 (PDT) Received: (from tg@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CAYts21138; Fri, 12 Apr 2002 03:34:55 -0700 (PDT) (envelope-from tg) Message-Id: <200204121034.g3CAYts21138@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 12 Apr 2002 03:34:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Mk bsd.python.mk ports/lang/python 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/04/12 03:34:55 PDT Modified files: Mk bsd.python.mk lang/python Makefile distinfo pkg-plist Log: (forced) I meant: upgrade to 2.2.*1*. Revision Changes Path 1.22 +1 -1 ports/Mk/bsd.python.mk 1.87 +0 -0 ports/lang/python/Makefile 1.31 +0 -0 ports/lang/python/distinfo 1.37 +0 -0 ports/lang/python/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 Apr 12 3: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 EA7EC37B404; Fri, 12 Apr 2002 03:37:37 -0700 (PDT) Received: (from tg@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CAbbT21543; Fri, 12 Apr 2002 03:37:37 -0700 (PDT) (envelope-from tg) Message-Id: <200204121037.g3CAbbT21543@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 12 Apr 2002 03:37:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/python-doc-html distinfo ports/lang/python-doc-html/files plist-html-2.1.3.diff plist-html-2.2.1.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 tg 2002/04/12 03:37:37 PDT Modified files: lang/python-doc-html distinfo Added files: lang/python-doc-html/files plist-html-2.1.3.diff plist-html-2.2.1.diff Log: Handle docs for Python-2.1.3 and -2.2.1. PR: 36977 Submitted by: Hye-Shik Chang Revision Changes Path 1.8 +6 -0 ports/lang/python-doc-html/distinfo 1.1 +597 -0 ports/lang/python-doc-html/files/plist-html-2.1.3.diff (new) 1.1 +1009 -0 ports/lang/python-doc-html/files/plist-html-2.2.1.diff (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 3:39: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 EB28737B404; Fri, 12 Apr 2002 03:39:45 -0700 (PDT) Received: (from tg@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CAdjl21865; Fri, 12 Apr 2002 03:39:45 -0700 (PDT) (envelope-from tg) Message-Id: <200204121039.g3CAdjl21865@freefall.freebsd.org> From: Thomas Gellekum Date: Fri, 12 Apr 2002 03:39:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/py-expat distinfo ports/databases/py-gdbm distinfo ports/math/py-mpz distinfo ports/x11-toolkits/py-tkinter 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 tg 2002/04/12 03:39:45 PDT Modified files: textproc/py-expat distinfo databases/py-gdbm distinfo math/py-mpz distinfo x11-toolkits/py-tkinter distinfo Log: Update checksums for Python-2.2.1. PR: 36977 Submitted by: Hye-Shik Chang Revision Changes Path 1.7 +2 -0 ports/databases/py-gdbm/distinfo 1.5 +2 -0 ports/math/py-mpz/distinfo 1.7 +2 -0 ports/textproc/py-expat/distinfo 1.11 +2 -0 ports/x11-toolkits/py-tkinter/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 3:49: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 797E937B404; Fri, 12 Apr 2002 03:49:46 -0700 (PDT) Received: (from roberto@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CAnkS23548; Fri, 12 Apr 2002 03:49:46 -0700 (PDT) (envelope-from roberto) Message-Id: <200204121049.g3CAnkS23548@freefall.freebsd.org> From: Ollivier Robert Date: Fri, 12 Apr 2002 03:49:46 -0700 (PDT) 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/04/12 03:49:46 PDT Modified files: en_US.ISO8859-1/books/handbook/mirrors chapter.sgml Log: Added cvsup5.fr.freebsd.org. Revision Changes Path 1.208 +5 -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 Fri Apr 12 4:12: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 A719837B400; Fri, 12 Apr 2002 04:12:38 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CBCbi34899; Fri, 12 Apr 2002 04:12:37 -0700 (PDT) (envelope-from ru) Message-Id: <200204121112.g3CBCbi34899@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 12 Apr 2002 04:12:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/route 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/04/12 04:12:37 PDT Modified files: sbin/route Makefile Log: Removed the cruft that became cruft after rev. 1.4. Fixed CLEANFILES. Revision Changes Path 1.16 +1 -5 src/sbin/route/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 4:14: 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 1201337B416; Fri, 12 Apr 2002 04:13:57 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CBDvu35088; Fri, 12 Apr 2002 04:13:57 -0700 (PDT) (envelope-from ru) Message-Id: <200204121113.g3CBDvu35088@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 12 Apr 2002 04:13:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/route 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 ru 2002/04/12 04:13:56 PDT Modified files: (Branch: RELENG_4) sbin/route Makefile Log: MFC: 1.16: Removed some cruft, fixed CLEANFILES. Revision Changes Path 1.11.2.2 +2 -6 src/sbin/route/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 4:21: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 9AA1837B41B; Fri, 12 Apr 2002 04:21:09 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CBL9c36341; Fri, 12 Apr 2002 04:21:09 -0700 (PDT) (envelope-from ru) Message-Id: <200204121121.g3CBL9c36341@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 12 Apr 2002 04:21:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.prog.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/04/12 04:21:09 PDT Modified files: share/mk bsd.prog.mk Log: Fixed the fatal breakage I introduced in the last commit. Make the defined(SRCS) case similar to the !defined(SRCS) case - only define ${PROG}: ${OBJS} if the ${PROG} target does not exist. This has only one precedence in the entire source tree, usr.bin/doscmd, and its Makefile is horribly broken. I will temporarily unconnect it from build until I'm working on the fix. Revision Changes Path 1.109 +1 -1 src/share/mk/bsd.prog.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 4:22: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 B997F37B400; Fri, 12 Apr 2002 04:22:44 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CBMip36545; Fri, 12 Apr 2002 04:22:44 -0700 (PDT) (envelope-from ru) Message-Id: <200204121122.g3CBMip36545@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 12 Apr 2002 04:22:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin 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/04/12 04:22:44 PDT Modified files: usr.bin Makefile Log: Temporarily unconnect "doscmd" from build until I can fix its broken Makefile. The breakage is now fatal after the bsd.prog.mk,v 1.109 change. Revision Changes Path 1.190 +0 -1 src/usr.bin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 4:33: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 286AF37B404; Fri, 12 Apr 2002 04:33:26 -0700 (PDT) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.2/8.12.2) with ESMTP id g3CBXEC1002106; Fri, 12 Apr 2002 15:33:24 +0400 (MSD) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.2/8.12.2/Submit) id g3CBXBaW002105; Fri, 12 Apr 2002 15:33:12 +0400 (MSD) Date: Fri, 12 Apr 2002 15:33:10 +0400 From: "Andrey A. Chernov" To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/lib/libreadline/readline Makefile Message-ID: <20020412113309.GA1551@nagual.pp.ru> References: <200204091302.g39D2QV05151@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204091302.g39D2QV05151@freefall.freebsd.org> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 09, 2002 at 06:02:26 -0700, Ruslan Ermilov wrote: > ru 2002/04/09 06:02:26 PDT > > Modified files: > gnu/lib/libreadline/readline Makefile > Log: > -ltermcap is spelled -lncurses nowadays. No, please back it out. I especially fix all that places. libreadline and others not needs any curses! -- 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 Fri Apr 12 4:41:24 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 92D8F37B419; Fri, 12 Apr 2002 04:41:18 -0700 (PDT) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.2/8.12.2) with ESMTP id g3CBf0C1002203; Fri, 12 Apr 2002 15:41:15 +0400 (MSD) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.2/8.12.2/Submit) id g3CBewaN002202; Fri, 12 Apr 2002 15:40:59 +0400 (MSD) Date: Fri, 12 Apr 2002 15:40:56 +0400 From: "Andrey A. Chernov" To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libedit Makefile Message-ID: <20020412114056.GB1551@nagual.pp.ru> References: <200204091304.g39D4Xa05531@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204091304.g39D4Xa05531@freefall.freebsd.org> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 09, 2002 at 06:04:33 -0700, Ruslan Ermilov wrote: > ru 2002/04/09 06:04:32 PDT > > Modified files: > lib/libedit Makefile > Log: > -ltermcap is spelled -lncurses nowadays. The same. libedit not needs any curses. -- 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 Fri Apr 12 4:42: 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 1078A37B405; Fri, 12 Apr 2002 04:41:52 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CBfqH39056; Fri, 12 Apr 2002 04:41:52 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204121141.g3CBfqH39056@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 12 Apr 2002 04:41:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/at-spi Makefile distinfo pkg-comment pkg-descr pkg-plist ports/x11-toolkits/at-spi/files patch-cspi::Makefile.in patch-cspi::bonobo::Makefile.in patch-docs::reference::cspi::Makefile.in patch-libspi::Makefile.in 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/04/12 04:41:51 PDT Modified files: x11-toolkits Makefile Added files: x11-toolkits/at-spi Makefile distinfo pkg-comment pkg-descr pkg-plist x11-toolkits/at-spi/files patch-cspi::Makefile.in patch-cspi::bonobo::Makefile.in patch-docs::reference::cspi::Makefile.in patch-libspi::Makefile.in patch-ltmain.sh patch-util::magnifier.c Log: Add at-spi 0.10.0, an Assistive Technology Service Provider Interface for GNOME. Revision Changes Path 1.170 +1 -0 ports/x11-toolkits/Makefile 1.1 +39 -0 ports/x11-toolkits/at-spi/Makefile (new) 1.1 +1 -0 ports/x11-toolkits/at-spi/distinfo (new) 1.1 +14 -0 ports/x11-toolkits/at-spi/files/patch-cspi::Makefile.in (new) 1.1 +14 -0 ports/x11-toolkits/at-spi/files/patch-cspi::bonobo::Makefile.in (new) 1.1 +14 -0 ports/x11-toolkits/at-spi/files/patch-docs::reference::cspi::Makefile.in (new) 1.1 +14 -0 ports/x11-toolkits/at-spi/files/patch-libspi::Makefile.in (new) 1.1 +45 -0 ports/x11-toolkits/at-spi/files/patch-ltmain.sh (new) 1.1 +14 -0 ports/x11-toolkits/at-spi/files/patch-util::magnifier.c (new) 1.1 +1 -0 ports/x11-toolkits/at-spi/pkg-comment (new) 1.1 +4 -0 ports/x11-toolkits/at-spi/pkg-descr (new) 1.1 +97 -0 ports/x11-toolkits/at-spi/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 Apr 12 4:42: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 A4B2937B43A; Fri, 12 Apr 2002 04:42:13 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CBg7o39115; Fri, 12 Apr 2002 04:42:07 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204121142.g3CBg7o39115@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 12 Apr 2002 04:42:05 -0700 (PDT) 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 sobomax 2002/04/12 04:42:05 PDT Modified files: . modules Log: at-spi --> ports/x11-toolkits/at-spi Revision Changes Path 1.4971 +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 Apr 12 4:46:16 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 BA76D37B400; Fri, 12 Apr 2002 04:46:05 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g3CBjeN29623; Fri, 12 Apr 2002 14:45:40 +0300 (EEST) (envelope-from ru) Date: Fri, 12 Apr 2002 14:45:40 +0300 From: Ruslan Ermilov To: "Andrey A. Chernov" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/lib/libreadline/readline Makefile Message-ID: <20020412114540.GB27751@sunbay.com> References: <200204091302.g39D2QV05151@freefall.freebsd.org> <20020412113309.GA1551@nagual.pp.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="lEGEL1/lMxI0MVQ2" Content-Disposition: inline In-Reply-To: <20020412113309.GA1551@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 --lEGEL1/lMxI0MVQ2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 12, 2002 at 03:33:10PM +0400, Andrey A. Chernov wrote: > On Tue, Apr 09, 2002 at 06:02:26 -0700, Ruslan Ermilov wrote: > > ru 2002/04/09 06:02:26 PDT > >=20 > > Modified files: > > gnu/lib/libreadline/readline Makefile=20 > > Log: > > -ltermcap is spelled -lncurses nowadays. >=20 > No, please back it out. I especially fix all that places. libreadline and= =20 > others not needs any curses! >=20 No thanks. I'm currently working on a `libraries' patch that automates building of dependencies between libraries, and we don't have a real termcap library. If, OTOH, you manage to make a real libtermcap.a library (as a subset of libncurses.a) I'd be more than happy to back this out. Thanks, --=20 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 --lEGEL1/lMxI0MVQ2 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 iD8DBQE8tsjkUkv4P6juNwoRArneAJ9KdxwKH7zKxfKGuzejZFHzQNw2fQCfX2R5 u/U1AX6L77RrKeNlgN4lc2k= =YLmM -----END PGP SIGNATURE----- --lEGEL1/lMxI0MVQ2-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 4:54:44 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 3604837B416; Fri, 12 Apr 2002 04:54:39 -0700 (PDT) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.2/8.12.2) with ESMTP id g3CBsLC1002494; Fri, 12 Apr 2002 15:54:32 +0400 (MSD) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.2/8.12.2/Submit) id g3CBsHZi002493; Fri, 12 Apr 2002 15:54:18 +0400 (MSD) Date: Fri, 12 Apr 2002 15:54:15 +0400 From: "Andrey A. Chernov" To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/lib/libreadline/readline Makefile Message-ID: <20020412115414.GC1551@nagual.pp.ru> References: <200204091302.g39D2QV05151@freefall.freebsd.org> <20020412113309.GA1551@nagual.pp.ru> <20020412114540.GB27751@sunbay.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="6TrnltStXW4iwmi0" Content-Disposition: inline In-Reply-To: <20020412114540.GB27751@sunbay.com> User-Agent: Mutt/1.3.28i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 12, 2002 at 14:45:40 +0300, Ruslan Ermilov wrote: > No thanks. I'm currently working on a `libraries' patch that > automates building of dependencies between libraries, and we > don't have a real termcap library. There is no problems with that, libtermcap installed via symlink. Your=20 'libraries' patch just should be smarter to handle them, it not means that= =20 you need to change what is not broken to make it plain incorrect. I agree= =20 with bde, it is implementation details. Applications build should not be = =20 affected, if libraries changed under same name (like real small termcap=20 installed). --=20 Andrey A. Chernov http://ache.pp.ru/ --6TrnltStXW4iwmi0 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 iQCVAwUBPLbK5uJgpPLZnQjrAQGLIAQAgt6jh0mhrKt2N6Q5g8V7ZVDwS8D7MUgQ 7FOuargJG7AyGTXETgvG/nmfIAL2c9/51/3k3cidkUxrIpEOIkdcXNra3Q9xsuBu 6A0ltYNXZwH26QbuicW3z+WKLReIVsG/ryxsNu7lwO0Wqxo5HonrrpXmJjk1Ir0R iKdCgc9fioI= =JO4S -----END PGP SIGNATURE----- --6TrnltStXW4iwmi0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 5: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 61EAA37B404; Fri, 12 Apr 2002 05:28:50 -0700 (PDT) Received: (from naddy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CCSos50546; Fri, 12 Apr 2002 05:28:50 -0700 (PDT) (envelope-from naddy) Message-Id: <200204121228.g3CCSos50546@freefall.freebsd.org> From: Christian Weisgerber Date: Fri, 12 Apr 2002 05:28:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/nano Makefile distinfo pkg-plist ports/editors/nano/files patch-config.h.in patch-configure patch-proto.h patch-utils.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 naddy 2002/04/12 05:28:50 PDT Modified files: editors/nano Makefile distinfo pkg-plist Removed files: editors/nano/files patch-config.h.in patch-configure patch-proto.h patch-utils.c Log: Update to 1.0.9. Notable changes in this release: * Bug fixes. * Updated translations. "Norwegian" has been replaced by separate Nynorsk and Bokmaal translations. Revision Changes Path 1.14 +2 -3 ports/editors/nano/Makefile 1.13 +1 -1 ports/editors/nano/distinfo 1.2 +0 -15 ports/editors/nano/files/patch-config.h.in (dead) 1.2 +0 -14 ports/editors/nano/files/patch-configure (dead) 1.2 +0 -15 ports/editors/nano/files/patch-proto.h (dead) 1.2 +0 -22 ports/editors/nano/files/patch-utils.c (dead) 1.9 +3 -2 ports/editors/nano/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 Apr 12 6: 8: 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 E9B0F37B405; Fri, 12 Apr 2002 06:08:00 -0700 (PDT) Received: (from charnier@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CD80G68489; Fri, 12 Apr 2002 06:08:00 -0700 (PDT) (envelope-from charnier) Message-Id: <200204121308.g3CD80G68489@freefall.freebsd.org> From: Philippe Charnier Date: Fri, 12 Apr 2002 06:08:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/mkstr mkstr.1 mkstr.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 charnier 2002/04/12 06:08:00 PDT Modified files: usr.bin/mkstr mkstr.1 mkstr.c Log: Add FBSDID. Do not put spaces inside [] in usage string. Test memory allocation return code. Correct and update C example in man page. Uppercase program name (.Nm) after a dot. Revision Changes Path 1.9 +8 -10 src/usr.bin/mkstr/mkstr.1 1.7 +6 -3 src/usr.bin/mkstr/mkstr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 6: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 3F05137B400; Fri, 12 Apr 2002 06:11:42 -0700 (PDT) Received: (from charnier@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CDBgQ69094; Fri, 12 Apr 2002 06:11:42 -0700 (PDT) (envelope-from charnier) Message-Id: <200204121311.g3CDBgQ69094@freefall.freebsd.org> From: Philippe Charnier Date: Fri, 12 Apr 2002 06:11:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/msgs msgs.1 msgs.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 charnier 2002/04/12 06:11:42 PDT Modified files: usr.bin/msgs msgs.1 msgs.c Log: Document that only superuser can use -c option. Add FBSDID. Make use of uid_t to silent lint. fprintf -> err conversion. Add some FALLTHROUGH and NOTREACHED comment to silent lint. Revision Changes Path 1.15 +4 -4 src/usr.bin/msgs/msgs.1 1.20 +16 -10 src/usr.bin/msgs/msgs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 6:16: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 006A537B416; Fri, 12 Apr 2002 06:16:10 -0700 (PDT) Received: (from charnier@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CDGAU69865; Fri, 12 Apr 2002 06:16:10 -0700 (PDT) (envelope-from charnier) Message-Id: <200204121316.g3CDGAU69865@freefall.freebsd.org> From: Philippe Charnier Date: Fri, 12 Apr 2002 06:16:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/mt mt.1 mt.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 charnier 2002/04/12 06:16:08 PDT Modified files: usr.bin/mt mt.1 mt.c Log: Make `make WARNS=3' succeed, notably, use %d to printf daddr_t value. Use `.Nm Ns .' instead of `.Nm .' Add FBSDID. Do not put spaces inside [] in usage string. Revision Changes Path 1.31 +3 -3 src/usr.bin/mt/mt.1 1.31 +31 -31 src/usr.bin/mt/mt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 6:23: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 320DC37B404; Fri, 12 Apr 2002 06:23:34 -0700 (PDT) Received: (from charnier@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CDNYO71020; Fri, 12 Apr 2002 06:23:34 -0700 (PDT) (envelope-from charnier) Message-Id: <200204121323.g3CDNYO71020@freefall.freebsd.org> From: Philippe Charnier Date: Fri, 12 Apr 2002 06:23:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make job.c main.c make.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 charnier 2002/04/12 06:23:34 PDT Modified files: usr.bin/make job.c main.c make.1 Log: Reorder #include. Cast arg #2 of lseek to an off_t when constant. No need to test if failsafe memory allocation fails, it can't. perror -> warn. Use failsafe memory allocation provided. Use .Pa and .Ar. Uppercase (first letter) programname after dot. Revision Changes Path 1.29 +6 -8 src/usr.bin/make/job.c 1.52 +4 -10 src/usr.bin/make/main.c 1.49 +18 -14 src/usr.bin/make/make.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 7: 8: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 852ED37B400; Fri, 12 Apr 2002 07:08:39 -0700 (PDT) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CE8dD82248; Fri, 12 Apr 2002 07:08:39 -0700 (PDT) (envelope-from sos) Message-Id: <200204121408.g3CE8dD82248@freefall.freebsd.org> From: Søren Schmidt Date: Fri, 12 Apr 2002 07:08:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-raid.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 sos 2002/04/12 07:08:39 PDT Modified files: (Branch: RELENG_4) sys/dev/ata ata-raid.c Log: Add a BUF_LOCKINIT to init struct buf's before use. Revision Changes Path 1.3.2.16 +6 -0 src/sys/dev/ata/ata-raid.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 7:10: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 09CEC37B41D; Fri, 12 Apr 2002 07:10:20 -0700 (PDT) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CEAKN82597; Fri, 12 Apr 2002 07:10:20 -0700 (PDT) (envelope-from sos) Message-Id: <200204121410.g3CEAKN82597@freefall.freebsd.org> From: Søren Schmidt Date: Fri, 12 Apr 2002 07:10:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-raid.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/04/12 07:10:19 PDT Modified files: sys/dev/ata ata-raid.c Log: Add a couble more Promise chip ID's. Revision Changes Path 1.47 +2 -1 src/sys/dev/ata/ata-raid.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 7:26:37 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 34E9F37B41A; Fri, 12 Apr 2002 07:26:25 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g3CEPrv47718; Fri, 12 Apr 2002 17:25:53 +0300 (EEST) (envelope-from ru) Date: Fri, 12 Apr 2002 17:25:53 +0300 From: Ruslan Ermilov To: "Andrey A. Chernov" , Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/lib/libreadline/readline Makefile Message-ID: <20020412142553.GA45365@sunbay.com> References: <200204091302.g39D2QV05151@freefall.freebsd.org> <20020412113309.GA1551@nagual.pp.ru> <20020412114540.GB27751@sunbay.com> <20020412115414.GC1551@nagual.pp.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+HP7ph2BbKc20aGI" Content-Disposition: inline In-Reply-To: <20020412115414.GC1551@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 --+HP7ph2BbKc20aGI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 12, 2002 at 03:54:15PM +0400, Andrey A. Chernov wrote: > On Fri, Apr 12, 2002 at 14:45:40 +0300, Ruslan Ermilov wrote: > > No thanks. I'm currently working on a `libraries' patch that > > automates building of dependencies between libraries, and we > > don't have a real termcap library. >=20 > There is no problems with that, libtermcap installed via symlink. Your=20 > 'libraries' patch just should be smarter to handle them, it not means tha= t=20 > you need to change what is not broken to make it plain incorrect. I agree= =20 > with bde, it is implementation details. Applications build should not be = =20 > affected, if libraries changed under same name (like real small termcap= =20 > installed). >=20 This argument doesn't count because despite the fact that -ltermcap is specified in Makefile, linker records the shared library's internal name in binaries, i.e. it looks inside /usr/lib/libtermcap.so (which resolves to /usr/lib/libncurses.so): # grep LDADD /usr/src/games/hack/Makefile LDADD=3D -ltermcap -lcompat # ldd /usr/games/hide/hack /usr/games/hide/hack: libncurses.so.5 =3D> /usr/lib/libncurses.so.5 (0x2808a000) libc.so.4 =3D> /usr/lib/libc.so.4 (0x280cc000) Cheers, --=20 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 --+HP7ph2BbKc20aGI 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 iD8DBQE8tu5xUkv4P6juNwoRAq7FAJ9UCOSSX3UrIv5+pclvz0lnP6Y6tQCfYz9e TO/FUAZmSx/WoyTKb/WOuKg= =VuDB -----END PGP SIGNATURE----- --+HP7ph2BbKc20aGI-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 7:34:25 2002 Delivered-To: cvs-all@freebsd.org Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by hub.freebsd.org (Postfix) with ESMTP id C41BE37B405; Fri, 12 Apr 2002 07:34:19 -0700 (PDT) Received: from localhost (lcl234.zbzoom.net [208.236.36.234]) by pittgoth.com (8.11.6/8.11.6) with SMTP id g3CEYH637398; Fri, 12 Apr 2002 10:34:17 -0400 (EDT) (envelope-from darklogik@pittgoth.com) Date: Fri, 12 Apr 2002 10:42:13 -0400 From: Tom Rhodes To: Murray Stokely Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/projects Makefile.inc www/en/projects/c99 Makefile Message-Id: <20020412104213.296851e3.darklogik@pittgoth.com> In-Reply-To: <200204120554.g3C5sNP49757@freefall.freebsd.org> References: <200204120554.g3C5sNP49757@freefall.freebsd.org> X-Mailer: Sylpheed version 0.7.4 (GTK+ 1.2.10; i386-portbld-freebsd4.5) 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 Thu, 11 Apr 2002 22:54:23 -0700 (PDT) Murray Stokely wrote: > murray 2002/04/11 22:54:23 PDT > > Added files: > en/projects Makefile.inc > en/projects/c99 Makefile > Log: > Add Makefiles for C99 / POSIX conformance project. > > Revision Changes Path > 1.1 +4 -0 www/en/projects/Makefile.inc (new) > 1.1 +17 -0 www/en/projects/c99/Makefile (new) > Thanks alot for getting this done Murray! -- Tom (Darklogik) Rhodes www.FreeBSD.org -The Power To Serve www.Pittgoth.com -Pittgoth Discussion Portal trhodes@{Pittgoth.com, FreeBSD.org} PGP key by www: http://www.pittgoth.com/~darklogik/darklogik.key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 7:47: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 44FD937B400; Fri, 12 Apr 2002 07:47:48 -0700 (PDT) Received: (from gerald@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CElm089529; Fri, 12 Apr 2002 07:47:48 -0700 (PDT) (envelope-from gerald) Message-Id: <200204121447.g3CElm089529@freefall.freebsd.org> From: Gerald Pfeifer Date: Fri, 12 Apr 2002 07:47:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/wine 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 gerald 2002/04/12 07:47:47 PDT Modified files: emulators/wine Makefile distinfo pkg-plist Log: Update to the 2002.04.11 snapshot of Wine. Lots of libraries in $PREFIX/lib/wine have been renamed. Revision Changes Path 1.119 +1 -1 ports/emulators/wine/Makefile 1.70 +1 -1 ports/emulators/wine/distinfo 1.32 +142 -124 ports/emulators/wine/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 Apr 12 7:50:20 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 4215137B404; Fri, 12 Apr 2002 07:50:07 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g3CEo3K50188; Fri, 12 Apr 2002 17:50:03 +0300 (EEST) (envelope-from ru) Date: Fri, 12 Apr 2002 17:50:03 +0300 From: Ruslan Ermilov To: Philippe Charnier Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/msgs msgs.1 msgs.c Message-ID: <20020412145003.GC47739@sunbay.com> References: <200204121311.g3CDBgQ69094@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="yVhtmJPUSI46BTXb" Content-Disposition: inline In-Reply-To: <200204121311.g3CDBgQ69094@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 --yVhtmJPUSI46BTXb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 12, 2002 at 06:11:42AM -0700, Philippe Charnier wrote: > charnier 2002/04/12 06:11:42 PDT >=20 > Modified files: > usr.bin/msgs msgs.1 msgs.c=20 > Log: > Document that only superuser can use -c option. Add FBSDID. Make use of= uid_t > to silent lint. fprintf -> err conversion. Add some FALLTHROUGH and NOT= REACHED > comment to silent lint. > =20 > Revision Changes Path > 1.15 +4 -4 src/usr.bin/msgs/msgs.1 > 1.20 +16 -10 src/usr.bin/msgs/msgs.c UID 1 (daemon) is also allowed to. Interesting why. It has been here since its first CSRG revision. I think we should kill it. Cheers, --=20 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 --yVhtmJPUSI46BTXb 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 iD8DBQE8tvQbUkv4P6juNwoRAmv/AJoCBHixNFFsir5TcPtl3TwhecgwlwCfeaFa 2PhEXP7eyx7IseFPBpWc9y8= =VMw9 -----END PGP SIGNATURE----- --yVhtmJPUSI46BTXb-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 8:10:52 2002 Delivered-To: cvs-all@freebsd.org Received: from sdns.kv.ukrtel.net (sdns.kv.ukrtel.net [195.5.27.246]) by hub.freebsd.org (Postfix) with ESMTP id 3694537B41F; Fri, 12 Apr 2002 08:10:31 -0700 (PDT) Received: from vega.vega.com (195.5.51.243 [195.5.51.243]) by sdns.kv.ukrtel.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id 22TS0473; Fri, 12 Apr 2002 18:12:01 +0300 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 g3CFB2421050; Fri, 12 Apr 2002 18:11:02 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) Message-ID: <3CB6F94C.5E31AF90@FreeBSD.org> Date: Fri, 12 Apr 2002 18:12:12 +0300 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: Gerald Pfeifer Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/emulators/wine Makefile distinfo pkg-plist References: <200204121447.g3CElm089529@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 Gerald Pfeifer wrote: > > gerald 2002/04/12 07:47:47 PDT > > Modified files: > emulators/wine Makefile distinfo pkg-plist > Log: > Update to the 2002.04.11 snapshot of Wine. Lots of libraries in > $PREFIX/lib/wine have been renamed. Reviewed by: ??? Approved by: ??? -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 8:13: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 D03A337B416; Fri, 12 Apr 2002 08:12:47 -0700 (PDT) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.2/8.12.2) with ESMTP id g3CFCVC1008630; Fri, 12 Apr 2002 19:12:45 +0400 (MSD) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.2/8.12.2/Submit) id g3CFCSRc008629; Fri, 12 Apr 2002 19:12:28 +0400 (MSD) Date: Fri, 12 Apr 2002 19:12:25 +0400 From: "Andrey A. Chernov" To: Ruslan Ermilov Cc: Bruce Evans , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/lib/libreadline/readline Makefile Message-ID: <20020412151224.GA8492@nagual.pp.ru> References: <200204091302.g39D2QV05151@freefall.freebsd.org> <20020412113309.GA1551@nagual.pp.ru> <20020412114540.GB27751@sunbay.com> <20020412115414.GC1551@nagual.pp.ru> <20020412142553.GA45365@sunbay.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="+QahgC5+KEYLbs62" Content-Disposition: inline In-Reply-To: <20020412142553.GA45365@sunbay.com> User-Agent: Mutt/1.3.28i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --+QahgC5+KEYLbs62 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 12, 2002 at 17:25:53 +0300, Ruslan Ermilov wrote: > This argument doesn't count because despite the fact that -ltermcap is > specified in Makefile, linker records the shared library's internal name > in binaries, i.e. it looks inside /usr/lib/libtermcap.so (which resolves > to /usr/lib/libncurses.so): >=20 > # grep LDADD /usr/src/games/hack/Makefile > LDADD=3D -ltermcap -lcompat >=20 > # ldd /usr/games/hide/hack > /usr/games/hide/hack: > libncurses.so.5 =3D> /usr/lib/libncurses.so.5 (0x2808a000) > libc.so.4 =3D> /usr/lib/libc.so.4 (0x280cc000) I know that, but I don't understand how it may cause problem with your patch. Do you back-check libraries from binaries and compare them with=20 Makefile?=20 --=20 Andrey A. Chernov http://ache.pp.ru/ --+QahgC5+KEYLbs62 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 iQCVAwUBPLb5WOJgpPLZnQjrAQFukAQApHIoZSWY6OlH6RFaXCn33tqosldeilMS KHw8YwKvaWQUve6lzcb8Le2JN3blduq7Ijavw2GXnxEv3LHioV+L+wrQ/k58jIDX OyrioF1h1iWhC+nXPXfPj8Vao+hgNNxbOZtlMsMkrmxFBLxFyrmtpj1E0Y2hyFgN W97B39FE9u0= =G71Y -----END PGP SIGNATURE----- --+QahgC5+KEYLbs62-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 8:15: 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 54DD337B41A; Fri, 12 Apr 2002 08:14:54 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CFEsu97676; Fri, 12 Apr 2002 08:14:54 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204121514.g3CFEsu97676@freefall.freebsd.org> From: Tom Rhodes Date: Fri, 12 Apr 2002 08:14:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/chown chown.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 trhodes 2002/04/12 08:14:54 PDT Modified files: (Branch: RELENG_4) usr.sbin/chown chown.8 Log: chown.8 was not describing symlinks correctly, MFC. Revision Changes Path 1.10.2.6 +6 -3 src/usr.sbin/chown/chown.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 8:27:24 2002 Delivered-To: cvs-all@freebsd.org Received: from yello.shallow.net (yello.shallow.net [203.18.243.120]) by hub.freebsd.org (Postfix) with ESMTP id 7D22137B404; Fri, 12 Apr 2002 08:27:14 -0700 (PDT) Received: by yello.shallow.net (Postfix, from userid 1001) id 3FCA02A6D; Sat, 13 Apr 2002 01:27:07 +1000 (EST) Date: Sat, 13 Apr 2002 01:27:07 +1000 From: Joshua Goodall To: Garrett Wollman Cc: Archie Cobbs , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, des@freebsd.org Subject: Re: cvs commit: src/crypto/openssh servconf.c Message-ID: <20020412152707.GD8927@roughtrade.net> References: <200204112204.g3BM4eK56395@freefall.freebsd.org> <200204120044.g3C0i7W08442@arch20m.dellroad.org> <200204120313.g3C3DnP83776@khavrinen.lcs.mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204120313.g3C3DnP83776@khavrinen.lcs.mit.edu> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 11, 2002 at 11:13:49PM -0400, Garrett Wollman wrote: > I'm not DES, but I can at least make a crack at it. > > RSA and DSA are believed to be of comparable cryptographic strength, > given the key sizes commonly used today. At the recent Financial Cryptography '02 panel debates, it was put forward that 1024-bit RSA cracking was now well within the cost bounds of many governments and corporations. On the edge of paranoia, some people are now revoking 1024-bit RSA keys and replacing them with 2048-bit keys. DSA's strength, like Diffie-Hellman's, is based on the problem of finding discrete logs in finite fields. I'm no cryptographer, but last I looked, the difficulty bounded RSA's; that is, if you have a general algorithm to find those logs swiftly (i.e. broke DSA) then you can also factor large primes (i.e. you broke RSA). See also : http://www.scramdisk.clara.net/pgpfaq.html#SubRSADH which appears to suggest that the discrete-logs-based publickey systems are evaluating as "stronger", although falls shy of actually recommending DSA over RSA. > IIRC, when the SSHv2 protocol is officially blessed by the IETF, > RSA will be required and DSA will be an option. Other way around, I think - the current SecSH draft lists ssh-dss (that is, DSA) as the only REQUIRED public key type, with RSA as RECOMMENDED. It's at: http://www.ietf.org/internet-drafts/draft-ietf-secsh-transport-14.txt I personally was happy with the 1024-bit DSA key choice that was in place prior to the 3.1 import, and am less comfortable with the 1024-bit RSA that some bleeding-edge cypherpunks are already revoking. Joshua To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 8:49: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 7578837B405; Fri, 12 Apr 2002 08:49:30 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CFnU203652; Fri, 12 Apr 2002 08:49:30 -0700 (PDT) (envelope-from ru) Message-Id: <200204121549.g3CFnU203652@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 12 Apr 2002 08:49:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/i386/kgzldr 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/04/12 08:49:30 PDT Modified files: sys/boot/i386/kgzldr Makefile Log: Unbreak this as well. At the extra bonus of fixing the contents of the .depend file. Not really my day. Revision Changes Path 1.7 +2 -2 src/sys/boot/i386/kgzldr/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 8:52: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 BA56837B400; Fri, 12 Apr 2002 08:52:10 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CFqA104178; Fri, 12 Apr 2002 08:52:10 -0700 (PDT) (envelope-from des) Message-Id: <200204121552.g3CFqA104178@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 12 Apr 2002 08:52:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh servconf.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/04/12 08:52:10 PDT Modified files: crypto/openssh servconf.c Log: Back out previous backout. It seems I was right to begin with, and DSA is preferrable to RSA (not least because the SECSH draft standard requires DSA while RSA is only recommended). Revision Changes Path 1.29 +0 -2 src/crypto/openssh/servconf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 8:56: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 66A2F37B41E; Fri, 12 Apr 2002 08:56:45 -0700 (PDT) Received: (from mike@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CFujd04970; Fri, 12 Apr 2002 08:56:45 -0700 (PDT) (envelope-from mike) Message-Id: <200204121556.g3CFujd04970@freefall.freebsd.org> From: Mike Barcroft Date: Fri, 12 Apr 2002 08:56:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/include endian.h src/sys/sparc64/include endian.h src/sys/powerpc/include endian.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 mike 2002/04/12 08:56:45 PDT Modified files: sys/alpha/include endian.h sys/sparc64/include endian.h sys/powerpc/include endian.h Log: Include for definition of __BSD_VISIBLE. Pointy hat to: mike Revision Changes Path 1.11 +1 -0 src/sys/alpha/include/endian.h 1.9 +1 -0 src/sys/powerpc/include/endian.h 1.9 +1 -0 src/sys/sparc64/include/endian.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 8:57: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 59AE837B404; Fri, 12 Apr 2002 08:57:06 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CFv6U05045; Fri, 12 Apr 2002 08:57:06 -0700 (PDT) (envelope-from marcus) Message-Id: <200204121557.g3CFv6U05045@freefall.freebsd.org> From: Joe Marcus Clarke Date: Fri, 12 Apr 2002 08:57:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/gnomemedia/files patch-ad patch-gmix::prefs.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 marcus 2002/04/12 08:57:06 PDT Modified files: audio/gnomemedia/files patch-ad Added files: audio/gnomemedia/files patch-gmix::prefs.c Log: machine/soundcard.h -> sys/soundcard.h Reviewed by: sobomax Approved by: sobomax Revision Changes Path 1.4 +11 -5 ports/audio/gnomemedia/files/patch-ad 1.1 +11 -0 ports/audio/gnomemedia/files/patch-gmix::prefs.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 Apr 12 9: 5: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 84D9637B41A; Fri, 12 Apr 2002 09:05:53 -0700 (PDT) Received: (from charnier@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CG5rr09925; Fri, 12 Apr 2002 09:05:53 -0700 (PDT) (envelope-from charnier) Message-Id: <200204121605.g3CG5rr09925@freefall.freebsd.org> From: Philippe Charnier Date: Fri, 12 Apr 2002 09:05:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make make.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 charnier 2002/04/12 09:05:53 PDT Modified files: usr.bin/make make.1 Log: Un.Ar makefile. The add of .Ar was part of my last commit. Asked by: ru Revision Changes Path 1.50 +1 -3 src/usr.bin/make/make.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9: 7: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 0440137B419; Fri, 12 Apr 2002 09:07:07 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CG76O10482; Fri, 12 Apr 2002 09:07:06 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204121607.g3CG76O10482@freefall.freebsd.org> From: Tom Rhodes Date: Fri, 12 Apr 2002 09:07:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/compress compress.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 trhodes 2002/04/12 09:07:06 PDT Modified files: (Branch: RELENG_4) usr.bin/compress compress.1 Log: compress(1) manual page has erroneous description of zcat, MFC. PR: 36453 Revision Changes Path 1.4.2.6 +7 -8 src/usr.bin/compress/compress.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9: 9:14 2002 Delivered-To: cvs-all@freebsd.org Received: from yello.shallow.net (yello.shallow.net [203.18.243.120]) by hub.freebsd.org (Postfix) with ESMTP id 7824137B404; Fri, 12 Apr 2002 09:09:08 -0700 (PDT) Received: by yello.shallow.net (Postfix, from userid 1001) id 689482A69; Sat, 13 Apr 2002 02:09:02 +1000 (EST) Date: Sat, 13 Apr 2002 02:09:02 +1000 From: Joshua Goodall To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh servconf.c Message-ID: <20020412160902.GE8927@roughtrade.net> References: <200204121552.g3CFqA104178@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204121552.g3CFqA104178@freefall.freebsd.org> User-Agent: Mutt/1.3.28i Sender: owner-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, Apr 12, 2002 at 08:52:10AM -0700, Dag-Erling Smorgrav wrote: > des 2002/04/12 08:52:10 PDT > > Modified files: > crypto/openssh servconf.c > Log: > Back out previous backout. It seems I was right to begin with, and DSA is > preferrable to RSA (not least because the SECSH draft standard requires > DSA while RSA is only recommended). Thanks! note to others: this default is only used when no HostKey(s) are otherwise specified in /etc/ssh/sshd_config; you can still have RSA host-keys if you want them. Joshua To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9:12: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 B0D7737B416; Fri, 12 Apr 2002 09:12:44 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CGCiC11380; Fri, 12 Apr 2002 09:12:44 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204121612.g3CGCiC11380@freefall.freebsd.org> From: Tom Rhodes Date: Fri, 12 Apr 2002 09:12:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dumpon dumpon.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 trhodes 2002/04/12 09:12:44 PDT Modified files: (Branch: RELENG_4) sbin/dumpon dumpon.8 Log: dumpon(8) manual page misleads about single/multiuser usability, MFC. PR: 36465 Revision Changes Path 1.11.2.10 +4 -6 src/sbin/dumpon/dumpon.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9:16:52 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 894D037B41B; Fri, 12 Apr 2002 09:16:48 -0700 (PDT) Received: by flood.ping.uio.no (Postfix, from userid 2602) id CBE495309; Fri, 12 Apr 2002 18:16:46 +0200 (CEST) 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: Joshua Goodall Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh servconf.c References: <200204121552.g3CFqA104178@freefall.freebsd.org> <20020412160902.GE8927@roughtrade.net> From: Dag-Erling Smorgrav Date: 12 Apr 2002 18:16:45 +0200 In-Reply-To: <20020412160902.GE8927@roughtrade.net> 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 Joshua Goodall writes: > note to others: this default is only used when no HostKey(s) are > otherwise specified in /etc/ssh/sshd_config; you can still have RSA > host-keys if you want them. ...and rc.network will automatically generate one at boot if it does not yet exist. 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 Apr 12 9:17:58 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 AB8D237B405; Fri, 12 Apr 2002 09:17:41 -0700 (PDT) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g3CGHZP58642; Fri, 12 Apr 2002 19:17:35 +0300 (EEST) (envelope-from ru) Date: Fri, 12 Apr 2002 19:17:35 +0300 From: Ruslan Ermilov To: Mike Barcroft Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/include endian.h src/sys/sparc64/include endian.h src/sys/powerpc/include endian.h Message-ID: <20020412161735.GA56075@sunbay.com> References: <200204121556.g3CFujd04970@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="uAKRQypu60I7Lcqm" Content-Disposition: inline In-Reply-To: <200204121556.g3CFujd04970@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 --uAKRQypu60I7Lcqm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 12, 2002 at 08:56:45AM -0700, Mike Barcroft wrote: > mike 2002/04/12 08:56:45 PDT >=20 > Modified files: > sys/alpha/include endian.h=20 > sys/sparc64/include endian.h=20 > sys/powerpc/include endian.h=20 > Log: > Include for definition of __BSD_VISIBLE. > =20 > Pointy hat to: mike > =20 > Revision Changes Path > 1.11 +1 -0 src/sys/alpha/include/endian.h > 1.9 +1 -0 src/sys/powerpc/include/endian.h > 1.9 +1 -0 src/sys/sparc64/include/endian.h >=20 While this is indeed a bug, and I have tried this same patch in the first place, by "diff -w" comparing the i386 and alpha versions and noticing the difference, but this doesn't fix the "gdbserver" issue. Your change exposed a bug in "gdbserver", see my posting to the "alpha tinderbox failure" thread which includes the steps to recreate the problem for i386 (without modifying sys/i386/include/endian.h) and a patch for "gdbserver". Cheers, --=20 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 --uAKRQypu60I7Lcqm 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 iD8DBQE8twifUkv4P6juNwoRApwCAJ9bUmf1wsR6PUUNIJS4hXvrbn0WmQCdG7BG X3sSkCrDZ6bKc1LEy6gwqEY= =VZEQ -----END PGP SIGNATURE----- --uAKRQypu60I7Lcqm-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9:18: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 3547437B41B; Fri, 12 Apr 2002 09:18:28 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CGISX12159; Fri, 12 Apr 2002 09:18:28 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204121618.g3CGISX12159@freefall.freebsd.org> From: Tom Rhodes Date: Fri, 12 Apr 2002 09:18:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/find find.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 trhodes 2002/04/12 09:18:28 PDT Modified files: (Branch: RELENG_4) usr.bin/find find.1 Log: find(1) manual page should encourage users to DTRT when piping to xargs, MFC. PR: 36602 Revision Changes Path 1.23.2.16 +7 -0 src/usr.bin/find/find.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9:23: 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 38B2237B404; Fri, 12 Apr 2002 09:22:58 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CGMwd12945; Fri, 12 Apr 2002 09:22:58 -0700 (PDT) (envelope-from des) Message-Id: <200204121622.g3CGMwd12945@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 12 Apr 2002 09:22:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/mtree BSD.local.dist X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/12 09:22:58 PDT Modified files: etc/mtree BSD.local.dist Log: Add etc/pam.d. Revision Changes Path 1.90 +3 -1 src/etc/mtree/BSD.local.dist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 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 9612537B400; Fri, 12 Apr 2002 09:25:13 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CGPDA13290; Fri, 12 Apr 2002 09:25:13 -0700 (PDT) (envelope-from ru) Message-Id: <200204121625.g3CGPDA13290@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 12 Apr 2002 09:25:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.prog.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/04/12 09:25:13 PDT Modified files: share/mk bsd.prog.mk Log: Back out second part of the previous change. While this was indeed a good change, I shouldn't have made it after testing with the -DNOCLEAN buildworld. There are far too many users of this misfeature under sys/boot/. I will reapply the change after I fix these. This change has been tested with the clean buildworld. Revision Changes Path 1.110 +9 -2 src/share/mk/bsd.prog.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9:25: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 D595C37B419; Fri, 12 Apr 2002 09:25:18 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CGPIT13321; Fri, 12 Apr 2002 09:25:18 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204121625.g3CGPIT13321@freefall.freebsd.org> From: Tom Rhodes Date: Fri, 12 Apr 2002 09:25:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man8 intro.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 trhodes 2002/04/12 09:25:18 PDT Modified files: (Branch: RELENG_4) share/man/man8 intro.8 Log: intro(8) manual page is missing command status information. PR: 36448 Revision Changes Path 1.3.2.3 +12 -1 src/share/man/man8/intro.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9:25: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 92C5B37B427; Fri, 12 Apr 2002 09:25:24 -0700 (PDT) Received: (from mike@localhost) by espresso.q9media.com (8.11.6/8.11.6) id g3CGIjM52300; Fri, 12 Apr 2002 12:18:45 -0400 (EDT) (envelope-from mike) Date: Fri, 12 Apr 2002 12:18:45 -0400 From: Mike Barcroft To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/include endian.h src/sys/sparc64/include endian.h src/sys/powerpc/include endian.h Message-ID: <20020412121845.F28249@espresso.q9media.com> References: <200204121556.g3CFujd04970@freefall.freebsd.org> <20020412161735.GA56075@sunbay.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020412161735.GA56075@sunbay.com>; from ru@FreeBSD.org on Fri, Apr 12, 2002 at 07:17:35PM +0300 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 Ruslan Ermilov writes: > On Fri, Apr 12, 2002 at 08:56:45AM -0700, Mike Barcroft wrote: > > mike 2002/04/12 08:56:45 PDT > > > > Modified files: > > sys/alpha/include endian.h > > sys/sparc64/include endian.h > > sys/powerpc/include endian.h > > Log: > > Include for definition of __BSD_VISIBLE. > > > > Pointy hat to: mike > > > > Revision Changes Path > > 1.11 +1 -0 src/sys/alpha/include/endian.h > > 1.9 +1 -0 src/sys/powerpc/include/endian.h > > 1.9 +1 -0 src/sys/sparc64/include/endian.h > > > While this is indeed a bug, and I have tried this same patch in > the first place, by "diff -w" comparing the i386 and alpha > versions and noticing the difference, but this doesn't fix the > "gdbserver" issue. Your change exposed a bug in "gdbserver", > see my posting to the "alpha tinderbox failure" thread which > includes the steps to recreate the problem for i386 (without > modifying sys/i386/include/endian.h) and a patch for > "gdbserver". See my follow up. I just successfully built binutils on alpha with updated system headers, so I think everything is fixed. 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 Fri Apr 12 9:32: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 9A37C37B404; Fri, 12 Apr 2002 09:32:38 -0700 (PDT) Received: (from davidc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CGWc014775; Fri, 12 Apr 2002 09:32:38 -0700 (PDT) (envelope-from davidc) Message-Id: <200204121632.g3CGWc014775@freefall.freebsd.org> From: Chad David Date: Fri, 12 Apr 2002 09:32:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 mutex.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 davidc 2002/04/12 09:32:38 PDT Modified files: share/man/man9 mutex.9 Log: Remove a duplicate description of the type parameter for mtx_init. Noticed by: scottl Revision Changes Path 1.29 +0 -4 src/share/man/man9/mutex.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9:34: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 960EB37B400; Fri, 12 Apr 2002 09:34:38 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CGYcY15017; Fri, 12 Apr 2002 09:34:38 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204121634.g3CGYcY15017@freefall.freebsd.org> From: Tom Rhodes Date: Fri, 12 Apr 2002 09:34:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/stdio scanf.3 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 trhodes 2002/04/12 09:34:38 PDT Modified files: (Branch: RELENG_4) lib/libc/stdio scanf.3 Log: sscanf.3 lists an obsolete ``this release''. PR: 35610 Revision Changes Path 1.7.2.6 +0 -7 src/lib/libc/stdio/scanf.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9:42: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 ED8C637B419; Fri, 12 Apr 2002 09:42:50 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CGgoa16373; Fri, 12 Apr 2002 09:42:50 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204121642.g3CGgoa16373@freefall.freebsd.org> From: Tom Rhodes Date: Fri, 12 Apr 2002 09:42:49 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/timed/timed timed.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 trhodes 2002/04/12 09:42:46 PDT Modified files: (Branch: RELENG_4) usr.sbin/timed/timed timed.8 Log: timed(8) manual page difficult to understand. PR: 36457 Revision Changes Path 1.7.2.5 +3 -5 src/usr.sbin/timed/timed/timed.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9: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 1860A37B404; Fri, 12 Apr 2002 09:47:01 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CGl1q17321; Fri, 12 Apr 2002 09:47:01 -0700 (PDT) (envelope-from bmah) Message-Id: <200204121647.g3CGl1q17321@freefall.freebsd.org> From: "Bruce A. Mah" Date: Fri, 12 Apr 2002 09:47:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/apm apm.c src/sys/i386/include apm_bios.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 bmah 2002/04/12 09:47:00 PDT Modified files: (Branch: RELENG_4) sys/i386/apm apm.c sys/i386/include apm_bios.h Log: MFC: Fix for apm_saver; have the kernel try to blank all display devices if blanking screen device #0 fails. src/sys/i386/include/apm_bios.h 1.27->1.28 src/sys/i386/apm/apm.c 1.115->1.116 (partial merge) Approved by: iwasaki Revision Changes Path 1.114.2.3 +15 -6 src/sys/i386/apm/apm.c 1.27.2.2 +2 -1 src/sys/i386/include/apm_bios.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9:49: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 A2CF037B416; Fri, 12 Apr 2002 09:49:07 -0700 (PDT) Received: (from pdeuskar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CGn7k17715; Fri, 12 Apr 2002 09:49:07 -0700 (PDT) (envelope-from pdeuskar) Message-Id: <200204121649.g3CGn7k17715@freefall.freebsd.org> From: Prafulla Deuskar Date: Fri, 12 Apr 2002 09:49:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/em if_em.c if_em.h if_em_fxhw.c if_em_fxhw.h if_em_osdep.h if_em_phy.c if_em_phy.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 pdeuskar 2002/04/12 09:49:07 PDT Modified files: (Branch: RELENG_4) sys/dev/em if_em.c if_em.h if_em_fxhw.c if_em_fxhw.h if_em_osdep.h if_em_phy.c if_em_phy.h Log: MFC: Added support for 82540EM based adapters Cosmetic changes to make code more unix-like Revision Changes Path 1.2.2.3 +731 -737 src/sys/dev/em/if_em.c 1.1.2.4 +46 -79 src/sys/dev/em/if_em.h 1.2.2.3 +121 -75 src/sys/dev/em/if_em_fxhw.c 1.1.2.3 +149 -55 src/sys/dev/em/if_em_fxhw.h 1.1.2.3 +1 -1 src/sys/dev/em/if_em_osdep.h 1.1.2.3 +27 -33 src/sys/dev/em/if_em_phy.c 1.1.2.3 +13 -13 src/sys/dev/em/if_em_phy.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9:50: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 2518737B400; Fri, 12 Apr 2002 09:50:53 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CGor318073; Fri, 12 Apr 2002 09:50:53 -0700 (PDT) (envelope-from ru) Message-Id: <200204121650.g3CGor318073@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 12 Apr 2002 09:50:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin 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/04/12 09:50:53 PDT Modified files: usr.bin Makefile Log: Revert last change, to be revisited later. Revision Changes Path 1.191 +1 -0 src/usr.bin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9:52: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 6325037B41B; Fri, 12 Apr 2002 09:52:46 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CGqkG18371; Fri, 12 Apr 2002 09:52:46 -0700 (PDT) (envelope-from obrien) Message-Id: <200204121652.g3CGqkG18371@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 12 Apr 2002 09:52:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gdb52 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/04/12 09:52:46 PDT Modified files: devel/gdb52 Makefile distinfo Log: Update to the 2002-04-09 snapshot of what will be version 5.2. Revision Changes Path 1.8 +1 -1 ports/devel/gdb52/Makefile 1.7 +1 -1 ports/devel/gdb52/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9:53: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 7781C37B400; Fri, 12 Apr 2002 09:53:44 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CGriJ18632; Fri, 12 Apr 2002 09:53:44 -0700 (PDT) (envelope-from obrien) Message-Id: <200204121653.g3CGriJ18632@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 12 Apr 2002 09:53:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/psim-freebsd 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/04/12 09:53:44 PDT Modified files: emulators/psim-freebsd Makefile distinfo Log: Update to the 2002-04-09 snapshot of what will be version 5.2. Revision Changes Path 1.9 +1 -1 ports/emulators/psim-freebsd/Makefile 1.9 +1 -1 ports/emulators/psim-freebsd/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9:57: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 0ED2E37B405; Fri, 12 Apr 2002 09:57:53 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CGvrS19468; Fri, 12 Apr 2002 09:57:53 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204121657.g3CGvrS19468@freefall.freebsd.org> From: Tom Rhodes Date: Fri, 12 Apr 2002 09:57:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libcrypt crypt.3 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 trhodes 2002/04/12 09:57:52 PDT Modified files: (Branch: RELENG_4) lib/libcrypt crypt.3 Log: md5 salt is documented as being 16 bytes max length, although in reality it is 8 bytes max lenght. PR: 36782 Revision Changes Path 1.6.2.13 +1 -1 src/lib/libcrypt/crypt.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 9:57: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 915F637B419; Fri, 12 Apr 2002 09:57:54 -0700 (PDT) Received: (from cokane@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CGvsq19483; Fri, 12 Apr 2002 09:57:54 -0700 (PDT) (envelope-from cokane) Message-Id: <200204121657.g3CGvsq19483@freefall.freebsd.org> From: Coleman Kane Date: Fri, 12 Apr 2002 09:57:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci agp_amd.c agpreg.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 cokane 2002/04/12 09:57:54 PDT Modified files: (Branch: RELENG_4) sys/pci agp_amd.c agpreg.h Log: MFC of the AMD761 agp fixes right before the 4.5 freeze. This should allow everyone to use their AMD761-based agp systems for DRI now. Obtained from: Eric Anholt Revision Changes Path 1.3.2.3 +51 -7 src/sys/pci/agp_amd.c 1.3.2.3 +1 -0 src/sys/pci/agpreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 10: 5: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 04B6737B416; Fri, 12 Apr 2002 10:05:49 -0700 (PDT) Received: (from cokane@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CH5mb22436; Fri, 12 Apr 2002 10:05:48 -0700 (PDT) (envelope-from cokane) Message-Id: <200204121705.g3CH5mb22436@freefall.freebsd.org> From: Coleman Kane Date: Fri, 12 Apr 2002 10:05:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci agp_amd.c agpreg.h 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 cokane 2002/04/12 10:05:48 PDT Modified files: (Branch: RELENG_4_5) sys/pci agp_amd.c agpreg.h Log: This should fix the lock-ups associated with AGP and AMD761 chips. The previous revision was rather hastily MFC'd before the 761 got any real testing. Obtained from: Eirc Anholt Revision Changes Path 1.3.2.2.2.1 +51 -7 src/sys/pci/agp_amd.c 1.3.2.2.2.1 +1 -0 src/sys/pci/agpreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 10:10: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 6010937B400; Fri, 12 Apr 2002 10:10:20 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CHAKU28390; Fri, 12 Apr 2002 10:10:20 -0700 (PDT) (envelope-from ade) Message-Id: <200204121710.g3CHAKU28390@freefall.freebsd.org> From: Ade Lovett Date: Fri, 12 Apr 2002 10:10:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/archivers/gtar Makefile ports/archivers/rpm Makefile ports/astro/fooseti Makefile ports/astro/seti_applet Makefile ports/astro/spacechart Makefile ports/audio/aumix Makefile ports/audio/denemo Makefile ports/audio/kmikmod 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 ade 2002/04/12 10:10:20 PDT Modified files: archivers/gtar Makefile archivers/rpm Makefile astro/fooseti Makefile astro/seti_applet Makefile astro/spacechart Makefile audio/aumix Makefile audio/denemo Makefile audio/kmikmod Makefile audio/koog Makefile audio/lopster Makefile audio/mad Makefile audio/normalize Makefile audio/opmixer Makefile audio/snd Makefile audio/soribada Makefile audio/umix Makefile chinese/xcin25 Makefile chinese/zhcon Makefile comms/gnokii Makefile converters/recode Makefile databases/mysql-gui Makefile databases/namazu2 Makefile databases/p5-DBD-Sybase Makefile databases/postgresql7 Makefile databases/sqsh Makefile deskutils/gcal Makefile devel/ORBit Makefile devel/bonobo Makefile devel/bugbuddy Makefile devel/cervisia Makefile devel/cook Makefile devel/gettext Makefile devel/gettext-old Makefile pkg-plist devel/glib20 Makefile devel/gmake Makefile devel/gnomevfs Makefile devel/gnomevfs2 Makefile devel/gtranslator Makefile devel/ixlib Makefile devel/kdevelop Makefile devel/ktranslator Makefile devel/motor Makefile devel/objprelink Makefile devel/p5-Locale-gettext Makefile devel/popt Makefile devel/ruby-intl Makefile editors/cooledit Makefile editors/lpe Makefile editors/nano Makefile editors/poedit Makefile editors/xemacs-devel-mule Makefile editors/xemacs21-mule Makefile editors/yudit Makefile emulators/xsystem35 Makefile ftp/axel Makefile ftp/lftp Makefile ftp/pavuk Makefile ftp/wget Makefile ftp/wget+ipv6 Makefile games/eboard Makefile games/freeciv Makefile games/gnomegames Makefile games/gtypist Makefile games/kbubbles Makefile games/krogue Makefile games/krubik Makefile games/lexter Makefile games/xinvaders Makefile graphics/gphoto2 Makefile graphics/gtkgraph Makefile graphics/gtksee Makefile graphics/libxine Makefile graphics/ogle-gui Makefile graphics/ruby-tgif Makefile graphics/tgif-nls Makefile graphics/xine Makefile graphics/xmps-opendivx-plugin Makefile graphics/xmps-win32-plugin Makefile irc/kvirc Makefile irc/liece Makefile irc/xchat Makefile japanese/eb Makefile japanese/kebook Makefile japanese/mutt Makefile japanese/mutt-devel Makefile japanese/samba Makefile japanese/samba20 Makefile japanese/vflib Makefile korean/texinfo Makefile lang/librep Makefile lang/mdk Makefile mail/elm Makefile mail/fetchmail Makefile mail/kbiff Makefile mail/mutt Makefile mail/mutt-devel Makefile mail/perdition Makefile mail/spruce Makefile math/oleo Makefile misc/afbackup Makefile misc/dirtree Makefile misc/gnomemimedata Makefile misc/gnomeutils Makefile misc/kde2-i18n Makefile misc/koffice-i18n Makefile misc/kwatch Makefile misc/mc Makefile misc/pinfo Makefile misc/sh-utils Makefile net/centericq Makefile net/dctc-gui Makefile net/etherape Makefile net/fidelio Makefile net/gabber Makefile net/gnomeicu Makefile net/gtkhx Makefile net/ipv6calc Makefile net/jwhois Makefile net/kdetelnet Makefile net/kmud Makefile net/ksamba Makefile net/wol Makefile news/tin Makefile news/yencode Makefile palm/coldsync Makefile palm/jpilot Makefile print/cjk-lyx Makefile print/ktexshell Makefile print/lyx Makefile print/rlpr Makefile russian/kde2-i18n Makefile russian/koffice-i18n Makefile security/fwlogwatch Makefile security/gnupg Makefile security/kssh Makefile security/mcrypt Makefile sysutils/apcupsd Makefile sysutils/fileutils Makefile sysutils/gcombust Makefile sysutils/slmon Makefile textproc/modlogan Makefile textproc/rotix Makefile textproc/textutils Makefile www/amyc Makefile www/cadaver Makefile www/dillo Makefile www/galeon Makefile www/horde-devel Makefile www/lynx-current Makefile www/mod_php3/scripts configure.php www/mod_php4/scripts configure.php www/quanta Makefile www/retawq Makefile www/sitecopy Makefile x11/gnomeapplets Makefile x11/gnomecore Makefile x11/kdebase11 Makefile x11/kdebase2 Makefile x11-fm/nautilus Makefile x11-toolkits/gtk12 Makefile x11-toolkits/pango Makefile x11-wm/enlightenment Makefile x11-wm/icewm Makefile x11-wm/kappdock Makefile x11-wm/kwix Makefile x11-wm/ude Makefile x11-wm/windowmaker Makefile Added files: devel/objprelink/files patch-binutils::libiberty::Makefile.in Removed files: japanese/samba/files patch-al x11-wm/windowmaker/files patch-po::Makefile.in Log: gettext upgrade uber-patch (stage 3) - switch devel/gettext (0.11.1) on, installing full package - flip devel/gettext-old (0.10.35) to installing only static binaries with a "-old" suffix -- gettext-old will have its deorbit burn sequence initiated just after 4.6-RELEASE - fix up ports for the new world order Reviewed by: portmgr Revision Changes Path 1.26 +2 -1 ports/archivers/gtar/Makefile 1.39 +6 -3 ports/archivers/rpm/Makefile 1.6 +2 -2 ports/astro/fooseti/Makefile 1.13 +2 -1 ports/astro/seti_applet/Makefile 1.6 +2 -1 ports/astro/spacechart/Makefile 1.28 +2 -1 ports/audio/aumix/Makefile 1.5 +2 -1 ports/audio/denemo/Makefile 1.12 +2 -1 ports/audio/kmikmod/Makefile 1.3 +2 -1 ports/audio/koog/Makefile 1.11 +2 -1 ports/audio/lopster/Makefile 1.10 +2 -2 ports/audio/mad/Makefile 1.6 +2 -1 ports/audio/normalize/Makefile 1.12 +2 -1 ports/audio/opmixer/Makefile 1.16 +2 -1 ports/audio/snd/Makefile 1.4 +2 -1 ports/audio/soribada/Makefile 1.3 +2 -1 ports/audio/umix/Makefile 1.38 +2 -2 ports/chinese/xcin25/Makefile 1.11 +2 -2 ports/chinese/zhcon/Makefile 1.10 +2 -2 ports/comms/gnokii/Makefile 1.17 +8 -4 ports/converters/recode/Makefile 1.5 +2 -1 ports/databases/mysql-gui/Makefile 1.28 +2 -1 ports/databases/namazu2/Makefile 1.3 +2 -1 ports/databases/p5-DBD-Sybase/Makefile 1.96 +2 -1 ports/databases/postgresql7/Makefile 1.7 +2 -1 ports/databases/sqsh/Makefile 1.6 +2 -1 ports/deskutils/gcal/Makefile 1.63 +2 -1 ports/devel/ORBit/Makefile 1.50 +3 -4 ports/devel/bonobo/Makefile 1.21 +3 -4 ports/devel/bugbuddy/Makefile 1.18 +2 -1 ports/devel/cervisia/Makefile 1.13 +2 -1 ports/devel/cook/Makefile 1.23 +11 -11 ports/devel/gettext-old/Makefile 1.18 +8 -71 ports/devel/gettext-old/pkg-plist 1.28 +2 -21 ports/devel/gettext/Makefile 1.57 +3 -3 ports/devel/glib20/Makefile 1.37 +2 -1 ports/devel/gmake/Makefile 1.33 +2 -4 ports/devel/gnomevfs/Makefile 1.33 +2 -3 ports/devel/gnomevfs2/Makefile 1.21 +3 -4 ports/devel/gtranslator/Makefile 1.4 +2 -1 ports/devel/ixlib/Makefile 1.43 +2 -1 ports/devel/kdevelop/Makefile 1.12 +2 -1 ports/devel/ktranslator/Makefile 1.8 +2 -1 ports/devel/motor/Makefile 1.7 +3 -3 ports/devel/objprelink/Makefile 1.1 +7 -0 ports/devel/objprelink/files/patch-binutils::libiberty::Makefile.in (new) 1.8 +2 -2 ports/devel/p5-Locale-gettext/Makefile 1.13 +2 -1 ports/devel/popt/Makefile 1.9 +2 -2 ports/devel/ruby-intl/Makefile 1.34 +2 -1 ports/editors/cooledit/Makefile 1.20 +2 -1 ports/editors/lpe/Makefile 1.15 +2 -1 ports/editors/nano/Makefile 1.9 +3 -3 ports/editors/poedit/Makefile 1.3 +2 -1 ports/editors/xemacs-devel-mule/Makefile 1.40 +1 -1 ports/editors/xemacs21-mule/Makefile 1.21 +2 -1 ports/editors/yudit/Makefile 1.29 +2 -1 ports/emulators/xsystem35/Makefile 1.10 +2 -1 ports/ftp/axel/Makefile 1.62 +2 -1 ports/ftp/lftp/Makefile 1.24 +2 -1 ports/ftp/pavuk/Makefile 1.6 +7 -5 ports/ftp/wget+ipv6/Makefile 1.51 +2 -1 ports/ftp/wget/Makefile 1.12 +2 -1 ports/games/eboard/Makefile 1.44 +2 -2 ports/games/freeciv/Makefile 1.39 +3 -4 ports/games/gnomegames/Makefile 1.7 +2 -1 ports/games/gtypist/Makefile 1.13 +2 -1 ports/games/kbubbles/Makefile 1.11 +2 -1 ports/games/krogue/Makefile 1.7 +2 -1 ports/games/krubik/Makefile 1.7 +2 -1 ports/games/lexter/Makefile 1.20 +2 -1 ports/games/xinvaders/Makefile 1.24 +2 -3 ports/graphics/gphoto2/Makefile 1.15 +2 -1 ports/graphics/gtkgraph/Makefile 1.28 +2 -2 ports/graphics/gtksee/Makefile 1.12 +2 -2 ports/graphics/libxine/Makefile 1.10 +2 -3 ports/graphics/ogle-gui/Makefile 1.7 +2 -2 ports/graphics/ruby-tgif/Makefile 1.18 +2 -3 ports/graphics/tgif-nls/Makefile 1.24 +2 -2 ports/graphics/xine/Makefile 1.4 +2 -1 ports/graphics/xmps-opendivx-plugin/Makefile 1.7 +2 -1 ports/graphics/xmps-win32-plugin/Makefile 1.25 +4 -2 ports/irc/kvirc/Makefile 1.10 +3 -2 ports/irc/liece/Makefile 1.96 +3 -4 ports/irc/xchat/Makefile 1.24 +2 -2 ports/japanese/eb/Makefile 1.11 +2 -1 ports/japanese/kebook/Makefile 1.35 +3 -2 ports/japanese/mutt-devel/Makefile 1.18 +3 -2 ports/japanese/mutt/Makefile 1.20 +2 -1 ports/japanese/samba/Makefile 1.3 +0 -0 ports/japanese/samba/files/patch-al (dead) 1.5 +2 -1 ports/japanese/samba20/Makefile 1.37 +2 -2 ports/japanese/vflib/Makefile 1.4 +2 -1 ports/korean/texinfo/Makefile 1.35 +2 -1 ports/lang/librep/Makefile 1.10 +3 -2 ports/lang/mdk/Makefile 1.66 +2 -2 ports/mail/elm/Makefile 1.131 +2 -2 ports/mail/fetchmail/Makefile 1.22 +2 -1 ports/mail/kbiff/Makefile 1.165 +2 -3 ports/mail/mutt-devel/Makefile 1.113 +2 -1 ports/mail/mutt/Makefile 1.6 +2 -1 ports/mail/perdition/Makefile 1.19 +6 -2 ports/mail/spruce/Makefile 1.26 +2 -2 ports/math/oleo/Makefile 1.7 +2 -2 ports/misc/afbackup/Makefile 1.4 +2 -1 ports/misc/dirtree/Makefile 1.4 +1 -3 ports/misc/gnomemimedata/Makefile 1.38 +3 -4 ports/misc/gnomeutils/Makefile 1.13 +2 -1 ports/misc/kde2-i18n/Makefile 1.4 +2 -1 ports/misc/koffice-i18n/Makefile 1.21 +2 -1 ports/misc/kwatch/Makefile 1.59 +2 -2 ports/misc/mc/Makefile 1.19 +2 -2 ports/misc/pinfo/Makefile 1.11 +2 -1 ports/misc/sh-utils/Makefile 1.33 +3 -3 ports/net/centericq/Makefile 1.16 +2 -2 ports/net/dctc-gui/Makefile 1.9 +2 -1 ports/net/etherape/Makefile 1.9 +2 -1 ports/net/fidelio/Makefile 1.22 +3 -4 ports/net/gabber/Makefile 1.42 +3 -4 ports/net/gnomeicu/Makefile 1.8 +2 -3 ports/net/gtkhx/Makefile 1.4 +2 -1 ports/net/ipv6calc/Makefile 1.10 +2 -1 ports/net/jwhois/Makefile 1.17 +2 -1 ports/net/kdetelnet/Makefile 1.12 +2 -1 ports/net/kmud/Makefile 1.19 +2 -1 ports/net/ksamba/Makefile 1.8 +3 -4 ports/net/wol/Makefile 1.98 +2 -2 ports/news/tin/Makefile 1.2 +3 -4 ports/news/yencode/Makefile 1.15 +2 -2 ports/palm/coldsync/Makefile 1.21 +2 -1 ports/palm/jpilot/Makefile 1.8 +2 -1 ports/print/cjk-lyx/Makefile 1.4 +2 -1 ports/print/ktexshell/Makefile 1.60 +2 -1 ports/print/lyx/Makefile 1.10 +2 -1 ports/print/rlpr/Makefile 1.4 +2 -1 ports/russian/kde2-i18n/Makefile 1.4 +2 -1 ports/russian/koffice-i18n/Makefile 1.6 +2 -1 ports/security/fwlogwatch/Makefile 1.40 +2 -5 ports/security/gnupg/Makefile 1.14 +2 -2 ports/security/kssh/Makefile 1.9 +2 -1 ports/security/mcrypt/Makefile 1.8 +2 -1 ports/sysutils/apcupsd/Makefile 1.10 +2 -1 ports/sysutils/fileutils/Makefile 1.28 +2 -1 ports/sysutils/gcombust/Makefile 1.4 +5 -4 ports/sysutils/slmon/Makefile 1.6 +2 -1 ports/textproc/modlogan/Makefile 1.4 +2 -1 ports/textproc/rotix/Makefile 1.13 +2 -1 ports/textproc/textutils/Makefile 1.5 +2 -2 ports/www/amyc/Makefile 1.11 +2 -2 ports/www/cadaver/Makefile 1.10 +2 -1 ports/www/dillo/Makefile 1.67 +3 -5 ports/www/galeon/Makefile 1.9 +3 -3 ports/www/horde-devel/Makefile 1.135 +2 -1 ports/www/lynx-current/Makefile 1.116 +2 -2 ports/www/mod_php3/scripts/configure.php 1.162 +2 -2 ports/www/mod_php4/scripts/configure.php 1.14 +2 -1 ports/www/quanta/Makefile 1.4 +2 -1 ports/www/retawq/Makefile 1.28 +2 -2 ports/www/sitecopy/Makefile 1.48 +3 -5 ports/x11-fm/nautilus/Makefile 1.80 +2 -2 ports/x11-toolkits/gtk12/Makefile 1.22 +2 -1 ports/x11-toolkits/pango/Makefile 1.70 +2 -2 ports/x11-wm/enlightenment/Makefile 1.73 +2 -3 ports/x11-wm/icewm/Makefile 1.4 +2 -1 ports/x11-wm/kappdock/Makefile 1.5 +2 -1 ports/x11-wm/kwix/Makefile 1.11 +2 -1 ports/x11-wm/ude/Makefile 1.97 +4 -5 ports/x11-wm/windowmaker/Makefile 1.2 +0 -18 ports/x11-wm/windowmaker/files/patch-po::Makefile.in (dead) 1.21 +3 -4 ports/x11/gnomeapplets/Makefile 1.76 +3 -5 ports/x11/gnomecore/Makefile 1.61 +2 -2 ports/x11/kdebase11/Makefile 1.94 +2 -2 ports/x11/kdebase2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 10:13: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 A27C037B405; Fri, 12 Apr 2002 10:13:36 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CHDak29867; Fri, 12 Apr 2002 10:13:36 -0700 (PDT) (envelope-from marcus) Message-Id: <200204121713.g3CHDak29867@freefall.freebsd.org> From: Joe Marcus Clarke Date: Fri, 12 Apr 2002 10:13:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/gtk-engines Makefile ports/x11-toolkits/gtk-engines/files patch-pixmap::pixmap_theme_draw.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 marcus 2002/04/12 10:13:36 PDT Modified files: x11-toolkits/gtk-engines Makefile Added files: x11-toolkits/gtk-engines/files patch-pixmap::pixmap_theme_draw.c Log: Fix a resource leak in the GTK pixmap themes. Bump PORTREVISION. PR: 36044 37022 Submitted by: Sascha Holzleiter Reviewed by: sobomax Approved by: sobomax Obtained from: gtk-engines CVS Revision Changes Path 1.29 +2 -2 ports/x11-toolkits/gtk-engines/Makefile 1.1 +74 -0 ports/x11-toolkits/gtk-engines/files/patch-pixmap::pixmap_theme_draw.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 Apr 12 10:23:33 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail15.speakeasy.net [216.254.0.215]) by hub.freebsd.org (Postfix) with ESMTP id 455CA37B419 for ; Fri, 12 Apr 2002 10:23:17 -0700 (PDT) Received: (qmail 1784 invoked from network); 12 Apr 2002 17:23:16 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail15.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 12 Apr 2002 17:23:16 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g3CHO5v61374; Fri, 12 Apr 2002 13:24:05 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <200204121705.g3CH5mb22436@freefall.freebsd.org> Date: Fri, 12 Apr 2002 13:22:28 -0400 (EDT) From: John Baldwin To: Coleman Kane Subject: RE: cvs commit: src/sys/pci agp_amd.c agpreg.h 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 12-Apr-2002 Coleman Kane wrote: > cokane 2002/04/12 10:05:48 PDT > > Modified files: (Branch: RELENG_4_5) > sys/pci agp_amd.c agpreg.h > Log: > This should fix the lock-ups associated with AGP and AMD761 chips. > The previous revision was rather hastily MFC'd before the 761 got any > real testing. > > Obtained from: Eirc Anholt Commits to the RELENG_X_Y branches (aka release branches) need to be approved by either the release engineers or the security officer team. You should probably back this out and run it by re@ first. For one thing there are extra steps involved with committing changes to these branches including adding a note to UPDATING and bumping the patch version. -- 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 Fri Apr 12 10:43: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 8422C37B416; Fri, 12 Apr 2002 10:43:48 -0700 (PDT) Received: (from tjr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CHhmh41646; Fri, 12 Apr 2002 10:43:48 -0700 (PDT) (envelope-from tjr) Message-Id: <200204121743.g3CHhmh41646@freefall.freebsd.org> From: "Tim J. Robbins" Date: Fri, 12 Apr 2002 10:43:48 -0700 (PDT) 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 tjr 2002/04/12 10:43:48 PDT Modified files: en/news news.xml Log: Announce myself as a new committer. Reviewed by: mike Revision Changes Path 1.81 +10 -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 Fri Apr 12 10:47: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.130.111.12]) by hub.freebsd.org (Postfix) with ESMTP id 728C837B405; Fri, 12 Apr 2002 10:46:55 -0700 (PDT) Received: from naos (naos [128.130.111.28]) by vexpert.dbai.tuwien.ac.at (8.11.6/8.11.6) with ESMTP id g3CHksW17416; Fri, 12 Apr 2002 19:46:54 +0200 (MET DST) Date: Fri, 12 Apr 2002 19:46:51 +0200 (CEST) From: Gerald Pfeifer To: Maxim Sobolev Cc: cvs-committers@freebsd.org, Subject: Re: cvs commit: ports/emulators/wine Makefile distinfo pkg-plist In-Reply-To: <3CB6F94C.5E31AF90@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 Fri, 12 Apr 2002, Maxim Sobolev wrote: >> Modified files: >> emulators/wine Makefile distinfo pkg-plist >> Log: >> Update to the 2002.04.11 snapshot of Wine. Lots of libraries in >> $PREFIX/lib/wine have been renamed. > Reviewed by: ??? > Approved by: ??? I have been the maintainer of this port since 2000/05/18. And while David O'Brien (my mentor here) kindly has been and will be reviewing my patches to all other parts of FreeBSD, do I really need to have my changes to this port reviewed/approved by others now, after having submitted/reviewed/approved more than two dozen changes as maintainer of this port??? Gerald -- Gerald "Jerry" pfeifer@dbai.tuwien.ac.at http://www.dbai.tuwien.ac.at/~pfeifer/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 11:13: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 DFECA37B405; Fri, 12 Apr 2002 11:13:50 -0700 (PDT) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CIDfq49683; Fri, 12 Apr 2002 11:13:41 -0700 (PDT) (envelope-from bmah) Message-Id: <200204121813.g3CIDfq49683@freefall.freebsd.org> From: "Bruce A. Mah" Date: Fri, 12 Apr 2002 11:13:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/share/mk doc.docbook.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/04/12 11:13:40 PDT Modified files: share/mk doc.docbook.mk Log: MFP4 (change 8929): Don't make the assumption that source files are writable. The FDP infrastructure has a few constructs of the form "cp foo bar; cat baz >> bar". This breaks if foo isn't writable (as is frequently the case in P4 work directory). Revision Changes Path 1.63 +4 -2 doc/share/mk/doc.docbook.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 11:17:53 2002 Delivered-To: cvs-all@freebsd.org Received: from one.net (ip-216-23-55-100.adsl.one.net [216.23.55.100]) by hub.freebsd.org (Postfix) with SMTP id BD84337B405 for ; Fri, 12 Apr 2002 11:17:45 -0700 (PDT) Received: (qmail 41580 invoked by uid 1001); 12 Apr 2002 18:18:39 -0000 Date: Fri, 12 Apr 2002 14:18:39 -0400 From: Coleman Kane To: John Baldwin Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/pci agp_amd.c agpreg.h Message-ID: <20020412141839.B41510@freebsd.org> References: <200204121705.g3CH5mb22436@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.22.1i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alright, I will do that. The code currently causes crashes (to kdb) in RELENG_4_5 when enabled, so that's why I committed it. -- coleman On Fri, Apr 12, 2002 at 01:22:28PM -0400, John Baldwin wrote: > > On 12-Apr-2002 Coleman Kane wrote: > > cokane 2002/04/12 10:05:48 PDT > > > > Modified files: (Branch: RELENG_4_5) > > sys/pci agp_amd.c agpreg.h > > Log: > > This should fix the lock-ups associated with AGP and AMD761 chips. > > The previous revision was rather hastily MFC'd before the 761 got any > > real testing. > > > > Obtained from: Eirc Anholt > > Commits to the RELENG_X_Y branches (aka release branches) need to be > approved by either the release engineers or the security officer team. > You should probably back this out and run it by re@ first. For one thing > there are extra steps involved with committing changes to these branches > including adding a note to UPDATING and bumping the patch version. > > -- > > 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 Fri Apr 12 11:23: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 74F4737B405; Fri, 12 Apr 2002 11:23:19 -0700 (PDT) Received: (from cokane@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CINJ151376; Fri, 12 Apr 2002 11:23:19 -0700 (PDT) (envelope-from cokane) Message-Id: <200204121823.g3CINJ151376@freefall.freebsd.org> From: Coleman Kane Date: Fri, 12 Apr 2002 11:23:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci agp_amd.c agpreg.h 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 cokane 2002/04/12 11:23:19 PDT Modified files: (Branch: RELENG_4_5) sys/pci agp_amd.c agpreg.h Log: Back out until it passes by re. Revision Changes Path 1.3.2.2.2.2 +7 -51 src/sys/pci/agp_amd.c 1.3.2.2.2.2 +0 -1 src/sys/pci/agpreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 11:25: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 C2FB437B400; Fri, 12 Apr 2002 11:25:08 -0700 (PDT) Received: (from gerald@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CIP8J51810; Fri, 12 Apr 2002 11:25:08 -0700 (PDT) (envelope-from gerald) Message-Id: <200204121825.g3CIP8J51810@freefall.freebsd.org> From: Gerald Pfeifer Date: Fri, 12 Apr 2002 11:25:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gcc295 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 gerald 2002/04/12 11:25:08 PDT Modified files: lang/gcc295 pkg-comment pkg-descr Log: Update pkg-comment to reflect GCC's new meaning (since 2.95) and refer to http://gcc.gnu.org instead of http://egcs.cygnus.com. Also, 2.95 is not GNU's latest offering any longer. ;-) Approved by: obrien (maintainer+mentor) Revision Changes Path 1.3 +1 -1 ports/lang/gcc295/pkg-comment 1.6 +6 -6 ports/lang/gcc295/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 Apr 12 11:26: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 2894B37B405; Fri, 12 Apr 2002 11:26:15 -0700 (PDT) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CIQF652113; Fri, 12 Apr 2002 11:26:15 -0700 (PDT) (envelope-from ue) Message-Id: <200204121826.g3CIQF652113@freefall.freebsd.org> From: Udo Erdelhoff Date: Fri, 12 Apr 2002 11:26:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/errata article.sgml src/release/doc/de_DE.ISO8859-1/hardware/alpha proc-alpha.sgml src/release/doc/de_DE.ISO8859-1/hardware/common dev.sgml src/release/doc/de_DE.ISO8859-1/hardware/sparc64 proc-sparc64.sgml src/release/doc/de_DE.ISO8859-1/installation/common install.sgml src/release/doc/de_DE.ISO8859-1/readme 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 ue 2002/04/12 11:26:14 PDT Modified files: release/doc/de_DE.ISO8859-1/errata article.sgml release/doc/de_DE.ISO8859-1/hardware/alpha proc-alpha.sgml release/doc/de_DE.ISO8859-1/hardware/common dev.sgml release/doc/de_DE.ISO8859-1/hardware/sparc64 proc-sparc64.sgml release/doc/de_DE.ISO8859-1/installation/common install.sgml release/doc/de_DE.ISO8859-1/readme article.sgml release/doc/de_DE.ISO8859-1/relnotes/common new.sgml Log: MFbed: translation updates errata/article.sgml: internal fixes hardware/alpha/proc-alpha.sgml: MFen 1.39, entity fixes hardware/common/dev.sgml: MFen 1.77-1.80 hardware/sparc64/proc-sparc64.sgml: MFen 1.4 installation/common/install.sgml: MFen 1.13-1.14 readme/article.sgml: MFen 1.17, formatting fixes relnotes/common/new.sgml: MFen 1.303-1.317 Revision Changes Path 1.3 +2 -2 src/release/doc/de_DE.ISO8859-1/errata/article.sgml 1.4 +14 -12 src/release/doc/de_DE.ISO8859-1/hardware/alpha/proc-alpha.sgml 1.2 +21 -5 src/release/doc/de_DE.ISO8859-1/hardware/common/dev.sgml 1.3 +10 -14 src/release/doc/de_DE.ISO8859-1/hardware/sparc64/proc-sparc64.sgml 1.3 +5 -7 src/release/doc/de_DE.ISO8859-1/installation/common/install.sgml 1.4 +24 -22 src/release/doc/de_DE.ISO8859-1/readme/article.sgml 1.5 +182 -82 src/release/doc/de_DE.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 Apr 12 11:31: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 4D2E937B416; Fri, 12 Apr 2002 11:31:10 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CIVAP52928; Fri, 12 Apr 2002 11:31:10 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204121831.g3CIVAP52928@freefall.freebsd.org> From: Tom Rhodes Date: Fri, 12 Apr 2002 11:31:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/restore restore.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 trhodes 2002/04/12 11:31:10 PDT Modified files: sbin/restore restore.8 Log: restore(8) manual page does not explain rrestore. PR: 34234 Submitted by: Gary W. Swearingen Revision Changes Path 1.34 +5 -1 src/sbin/restore/restore.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 11:31: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 9B9F037B428; Fri, 12 Apr 2002 11:31:28 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CIVSU52994; Fri, 12 Apr 2002 11:31:28 -0700 (PDT) (envelope-from des) Message-Id: <200204121831.g3CIVSU52994@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 12 Apr 2002 11:31:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/openpam/include/security openpam.h pam_modules.h X-FreeBSD-CVS-Branch: OPENPAM Sender: owner-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/04/12 11:31:28 PDT Modified files: (Branch: OPENPAM) contrib/openpam/include/security openpam.h pam_modules.h Log: Linux-PAM compatibility improvements (perforce change 9623) Sponsored by: DARPA, NAI Labs Revision Changes Path 1.1.1.7 +43 -3 src/contrib/openpam/include/security/openpam.h 1.1.1.4 +13 -1 src/contrib/openpam/include/security/pam_modules.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 11:33: 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 AB06B37B400; Fri, 12 Apr 2002 11:33:01 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CIX1o53225; Fri, 12 Apr 2002 11:33:01 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204121833.g3CIX1o53225@freefall.freebsd.org> From: Tom Rhodes Date: Fri, 12 Apr 2002 11:33:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/restore restore.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 trhodes 2002/04/12 11:33:01 PDT Modified files: (Branch: RELENG_4) sbin/restore restore.8 Log: restore(8) manual page does not explain rrestore PR: 34234 Submitted by: Gary Swearingen Revision Changes Path 1.20.2.13 +4 -0 src/sbin/restore/restore.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 11:47: 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 06A8737B405; Fri, 12 Apr 2002 11:47:00 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CIkx157232; Fri, 12 Apr 2002 11:46:59 -0700 (PDT) (envelope-from knu) Message-Id: <200204121846.g3CIkx157232@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 12 Apr 2002 11:46:59 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils Makefile ports/sysutils/ruby-devel-logger 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/04/12 11:46:59 PDT Modified files: sysutils Makefile Added files: sysutils/ruby-devel-logger Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add ruby-devel-logger 1.0.0, a lightweight logging library for Ruby. Revision Changes Path 1.250 +1 -0 ports/sysutils/Makefile 1.1 +37 -0 ports/sysutils/ruby-devel-logger/Makefile (new) 1.1 +1 -0 ports/sysutils/ruby-devel-logger/distinfo (new) 1.1 +1 -0 ports/sysutils/ruby-devel-logger/pkg-comment (new) 1.1 +4 -0 ports/sysutils/ruby-devel-logger/pkg-descr (new) 1.1 +12 -0 ports/sysutils/ruby-devel-logger/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 Apr 12 11:47: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 3451437B41B; Fri, 12 Apr 2002 11:47:06 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CIl6U57279; Fri, 12 Apr 2002 11:47:06 -0700 (PDT) (envelope-from knu) Message-Id: <200204121847.g3CIl6U57279@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 12 Apr 2002 11:47:06 -0700 (PDT) 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/04/12 11:47:06 PDT Modified files: . modules Log: ruby-devel-logger --> ports/sysutils/ruby-devel-logger Revision Changes Path 1.4972 +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 Apr 12 11:51: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 4EE0D37B404; Fri, 12 Apr 2002 11:51:32 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CIpWi58039; Fri, 12 Apr 2002 11:51:32 -0700 (PDT) (envelope-from knu) Message-Id: <200204121851.g3CIpWi58039@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 12 Apr 2002 11:51:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ruby-tcpsocketpipe 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 knu 2002/04/12 11:51:32 PDT Modified files: net/ruby-tcpsocketpipe Makefile Log: Depend on ruby-devel-logger instead of obsolete ruby-application.rb. Revision Changes Path 1.2 +1 -1 ports/net/ruby-tcpsocketpipe/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 12: 3: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 751CE37B404; Fri, 12 Apr 2002 12:03:18 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJ3I260077; Fri, 12 Apr 2002 12:03:18 -0700 (PDT) (envelope-from knu) Message-Id: <200204121903.g3CJ3I260077@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 12 Apr 2002 12:03:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ruby-date2 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/04/12 12:03:18 PDT Modified files: devel/ruby-date2 Makefile distinfo pkg-plist Log: Update (again) to version 3. Revision Changes Path 1.19 +4 -11 ports/devel/ruby-date2/Makefile 1.14 +1 -1 ports/devel/ruby-date2/distinfo 1.9 +4 -8 ports/devel/ruby-date2/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 Apr 12 12: 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 33C5337B405; Fri, 12 Apr 2002 12:04:44 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJ4hF60352; Fri, 12 Apr 2002 12:04:43 -0700 (PDT) (envelope-from knu) Message-Id: <200204121904.g3CJ4hF60352@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 12 Apr 2002 12:04:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ruby-soap 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/04/12 12:04:43 PDT Modified files: net/ruby-soap Makefile distinfo pkg-plist Log: Update to 1.4.3. This version depends on ruby-date2 version 3 and ruby-devel-logger version 1.0.0. Revision Changes Path 1.15 +4 -12 ports/net/ruby-soap/Makefile 1.13 +1 -1 ports/net/ruby-soap/distinfo 1.14 +42 -22 ports/net/ruby-soap/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 Apr 12 12: 7: 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 CE77437B400; Fri, 12 Apr 2002 12:07:00 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJ70F64584; Fri, 12 Apr 2002 12:07:00 -0700 (PDT) (envelope-from knu) Message-Id: <200204121907.g3CJ70F64584@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 12 Apr 2002 12:07:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils Makefile ports/sysutils/ruby-application.rb 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/04/12 12:07:00 PDT Modified files: sysutils Makefile Removed files: sysutils/ruby-application.rb Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Retire ruby-application.rb, which has been replaced by ruby-devel-logger. Revision Changes Path 1.251 +0 -1 ports/sysutils/Makefile 1.6 +0 -32 ports/sysutils/ruby-application.rb/Makefile (dead) 1.5 +0 -1 ports/sysutils/ruby-application.rb/distinfo (dead) 1.2 +0 -1 ports/sysutils/ruby-application.rb/pkg-comment (dead) 1.2 +0 -6 ports/sysutils/ruby-application.rb/pkg-descr (dead) 1.2 +0 -1 ports/sysutils/ruby-application.rb/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 Fri Apr 12 12: 8: 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 D9A2737B400; Fri, 12 Apr 2002 12:07:47 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJ7lm64707; Fri, 12 Apr 2002 12:07:47 -0700 (PDT) (envelope-from knu) Message-Id: <200204121907.g3CJ7lm64707@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 12 Apr 2002 12:07:47 -0700 (PDT) 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/04/12 12:07:47 PDT Modified files: . modules Log: Unlink ruby-application.rb. Revision Changes Path 1.4973 +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 Fri Apr 12 12:11: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 8E9BB37B400; Fri, 12 Apr 2002 12:11:09 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJB9a65151; Fri, 12 Apr 2002 12:11:09 -0700 (PDT) (envelope-from ru) Message-Id: <200204121911.g3CJB9a65151@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 12 Apr 2002 12:11:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/natd 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/04/12 12:11:09 PDT Modified files: sbin/natd Makefile Log: I don't know what the MAINTAINER means in src/ part of FreeBSD. I'll still be overseeing the changes that go into natd(8) and will maintain it the way I see it, non-preventing for the rest of developers. I will re-ask for the MAINTAINER bit if the ${MAINTAINER} gets defined. Revision Changes Path 1.8 +0 -2 src/sbin/natd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 12:29: 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 A4EDF37B404; Fri, 12 Apr 2002 12:29:01 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJT1p67810; Fri, 12 Apr 2002 12:29:01 -0700 (PDT) (envelope-from knu) Message-Id: <200204121929.g3CJT1p67810@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 12 Apr 2002 12:29:01 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/ruby-google 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/04/12 12:29:01 PDT Modified files: www Makefile Added files: www/ruby-google Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add ruby-google 0.1.0, a Ruby interface to Google's SOAP-driven Web API. Demonstration programs are included in the archive. Obtain a free license key from Google, and have fun! :) Revision Changes Path 1.486 +1 -0 ports/www/Makefile 1.1 +39 -0 ports/www/ruby-google/Makefile (new) 1.1 +1 -0 ports/www/ruby-google/distinfo (new) 1.1 +1 -0 ports/www/ruby-google/pkg-comment (new) 1.1 +13 -0 ports/www/ruby-google/pkg-descr (new) 1.1 +9 -0 ports/www/ruby-google/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 Apr 12 12:29: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 9765F37B404; Fri, 12 Apr 2002 12:29:15 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJTFe67886; Fri, 12 Apr 2002 12:29:15 -0700 (PDT) (envelope-from ade) Message-Id: <200204121929.g3CJTFe67886@freefall.freebsd.org> From: Ade Lovett Date: Fri, 12 Apr 2002 12:29:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules ports/lang Makefile ports/lang/lcc Makefile distinfo pkg-comment pkg-descr pkg-plist ports/lang/lcc/files FreeBSD.c.in FreeBSD.md patch-01 patch-02 patch-03 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/12 12:29:15 PDT Modified files: . modules lang Makefile Removed files: lang/lcc Makefile distinfo pkg-comment pkg-descr pkg-plist lang/lcc/files FreeBSD.c.in FreeBSD.md patch-01 patch-02 patch-03 Log: Remove lang/lcc -- it's been broken for so long and there is no new version. Revision Changes Path 1.4974 +0 -1 CVSROOT/modules 1.289 +0 -1 ports/lang/Makefile 1.15 +0 -55 ports/lang/lcc/Makefile (dead) 1.2 +0 -1 ports/lang/lcc/distinfo (dead) 1.5 +0 -78 ports/lang/lcc/files/FreeBSD.c.in (dead) 1.3 +0 -1200 ports/lang/lcc/files/FreeBSD.md (dead) 1.2 +0 -23 ports/lang/lcc/files/patch-01 (dead) 1.2 +0 -28 ports/lang/lcc/files/patch-02 (dead) 1.2 +0 -16 ports/lang/lcc/files/patch-03 (dead) 1.3 +0 -1 ports/lang/lcc/pkg-comment (dead) 1.3 +0 -15 ports/lang/lcc/pkg-descr (dead) 1.5 +0 -10 ports/lang/lcc/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 Fri Apr 12 12: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 9B16737B421; Fri, 12 Apr 2002 12:33:49 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJXng68635; Fri, 12 Apr 2002 12:33:49 -0700 (PDT) (envelope-from knu) Message-Id: <200204121933.g3CJXng68635@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 12 Apr 2002 12:33:49 -0700 (PDT) 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/04/12 12:33:49 PDT Modified files: . modules Log: ruby-google --> www/ruby-google Revision Changes Path 1.4975 +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 Apr 12 12:36: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 0081037B404; Fri, 12 Apr 2002 12:34:44 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJYhf68745; Fri, 12 Apr 2002 12:34:43 -0700 (PDT) (envelope-from obrien) Message-Id: <200204121934.g3CJYhf68745@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 12 Apr 2002 12:34:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils - Imported sources X-FreeBSD-CVS-Branch: FSF Sender: owner-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/04/12 12:34:43 PDT src/contrib/binutils - Imported sources Update of /home/ncvs/src/contrib/binutils In directory freefall.freebsd.org:/c/tmp/cvs-serv67826 Log Message: Import of Binutils from the FSF 2.12 branch. (this fixes several linker problems and coredumps) These bits are taken from the FSF anoncvs repo on 10-April-2002 13:24 Zulu Status: Vendor Tag: FSF Release Tags: binutils_2_12_20020410 U src/contrib/binutils/ChangeLog U src/contrib/binutils/MAINTAINERS U src/contrib/binutils/Makefile.in U src/contrib/binutils/README U src/contrib/binutils/README-maintainer-mode U src/contrib/binutils/config-ml.in U src/contrib/binutils/config.guess U src/contrib/binutils/config.if U src/contrib/binutils/config.sub U src/contrib/binutils/configure U src/contrib/binutils/configure.in U src/contrib/binutils/install-sh U src/contrib/binutils/libtool.m4 U src/contrib/binutils/ltcf-c.sh U src/contrib/binutils/ltcf-cxx.sh U src/contrib/binutils/ltcf-gcj.sh U src/contrib/binutils/ltconfig U src/contrib/binutils/ltmain.sh U src/contrib/binutils/missing U src/contrib/binutils/mkinstalldirs U src/contrib/binutils/move-if-change U src/contrib/binutils/symlink-tree U src/contrib/binutils/ylwrap U src/contrib/binutils/bfd/ChangeLog U src/contrib/binutils/bfd/configure U src/contrib/binutils/bfd/configure.in U src/contrib/binutils/bfd/elf64-ppc.c U src/contrib/binutils/bfd/elf64-x86-64.c C src/contrib/binutils/bfd/elflink.h U src/contrib/binutils/bfd/elf-eh-frame.c U src/contrib/binutils/bfd/cpu-i386.c U src/contrib/binutils/bfd/osf-core.c U src/contrib/binutils/bfd/version.h U src/contrib/binutils/bfd/ChangeLog-0001 U src/contrib/binutils/bfd/ChangeLog-9193 U src/contrib/binutils/bfd/ChangeLog-9495 U src/contrib/binutils/bfd/ChangeLog-9697 U src/contrib/binutils/bfd/ChangeLog-9899 U src/contrib/binutils/bfd/coff-rs6000.c U src/contrib/binutils/bfd/coff64-rs6000.c U src/contrib/binutils/bfd/PORTING U src/contrib/binutils/bfd/MAINTAINERS U src/contrib/binutils/bfd/Makefile.am U src/contrib/binutils/bfd/Makefile.in U src/contrib/binutils/bfd/README U src/contrib/binutils/bfd/TODO U src/contrib/binutils/bfd/acinclude.m4 U src/contrib/binutils/bfd/aclocal.m4 U src/contrib/binutils/bfd/aout-arm.c U src/contrib/binutils/bfd/aout-encap.c U src/contrib/binutils/bfd/aout-sparcle.c U src/contrib/binutils/bfd/aout-target.h U src/contrib/binutils/bfd/aout-tic30.c U src/contrib/binutils/bfd/aout0.c U src/contrib/binutils/bfd/aout32.c U src/contrib/binutils/bfd/aout64.c U src/contrib/binutils/bfd/aoutf1.h U src/contrib/binutils/bfd/aoutx.h U src/contrib/binutils/bfd/archive.c U src/contrib/binutils/bfd/archive64.c U src/contrib/binutils/bfd/archures.c U src/contrib/binutils/bfd/bfd.c U src/contrib/binutils/bfd/armnetbsd.c U src/contrib/binutils/bfd/bfd-in.h U src/contrib/binutils/bfd/bfd-in2.h U src/contrib/binutils/bfd/binary.c U src/contrib/binutils/bfd/cache.c U src/contrib/binutils/bfd/coff-alpha.c U src/contrib/binutils/bfd/coff-arm.c U src/contrib/binutils/bfd/coff-aux.c U src/contrib/binutils/bfd/coff-i386.c U src/contrib/binutils/bfd/coff-ia64.c U src/contrib/binutils/bfd/coff-mips.c U src/contrib/binutils/bfd/coff-ppc.c U src/contrib/binutils/bfd/coff-sparc.c U src/contrib/binutils/bfd/coff-tic30.c U src/contrib/binutils/bfd/coff-z8k.c U src/contrib/binutils/bfd/coffcode.h U src/contrib/binutils/bfd/coffgen.c U src/contrib/binutils/bfd/cofflink.c U src/contrib/binutils/bfd/coffswap.h U src/contrib/binutils/bfd/config.bfd U src/contrib/binutils/bfd/config.in U src/contrib/binutils/bfd/ecoff.c U src/contrib/binutils/bfd/configure.host U src/contrib/binutils/bfd/corefile.c U src/contrib/binutils/bfd/cpu-alpha.c U src/contrib/binutils/bfd/cpu-arc.c U src/contrib/binutils/bfd/cpu-arm.c U src/contrib/binutils/bfd/cpu-ia64-opc.c U src/contrib/binutils/bfd/cpu-ia64.c U src/contrib/binutils/bfd/cpu-mips.c U src/contrib/binutils/bfd/cpu-powerpc.c U src/contrib/binutils/bfd/cpu-rs6000.c U src/contrib/binutils/bfd/cpu-sparc.c U src/contrib/binutils/bfd/cpu-tic30.c U src/contrib/binutils/bfd/cpu-v850.c U src/contrib/binutils/bfd/cpu-z8k.c U src/contrib/binutils/bfd/demo64.c U src/contrib/binutils/bfd/dep-in.sed U src/contrib/binutils/bfd/dwarf1.c U src/contrib/binutils/bfd/dwarf2.c U src/contrib/binutils/bfd/ecofflink.c U src/contrib/binutils/bfd/ecoffswap.h U src/contrib/binutils/bfd/efi-app-ia32.c U src/contrib/binutils/bfd/efi-app-ia64.c U src/contrib/binutils/bfd/elf-bfd.h U src/contrib/binutils/bfd/elf-strtab.c C src/contrib/binutils/bfd/elf.c U src/contrib/binutils/bfd/elf32-arc.c U src/contrib/binutils/bfd/elf32-gen.c U src/contrib/binutils/bfd/elf32-v850.c U src/contrib/binutils/bfd/elf32.c U src/contrib/binutils/bfd/elf64-gen.c U src/contrib/binutils/bfd/elf64-ppc.h U src/contrib/binutils/bfd/elf64.c U src/contrib/binutils/bfd/elfarm-nabi.c U src/contrib/binutils/bfd/elfarm-oabi.c U src/contrib/binutils/bfd/elfcode.h U src/contrib/binutils/bfd/elfcore.h U src/contrib/binutils/bfd/elflink.c U src/contrib/binutils/bfd/elfxx-target.h U src/contrib/binutils/bfd/format.c U src/contrib/binutils/bfd/freebsd.h U src/contrib/binutils/bfd/gen-aout.c U src/contrib/binutils/bfd/genlink.h U src/contrib/binutils/bfd/hash.c U src/contrib/binutils/bfd/host-aout.c U src/contrib/binutils/bfd/i386aout.c U src/contrib/binutils/bfd/i386bsd.c U src/contrib/binutils/bfd/i386freebsd.c U src/contrib/binutils/bfd/i386linux.c U src/contrib/binutils/bfd/ieee.c U src/contrib/binutils/bfd/i386netbsd.c U src/contrib/binutils/bfd/ihex.c U src/contrib/binutils/bfd/init.c U src/contrib/binutils/bfd/libaout.h U src/contrib/binutils/bfd/libbfd-in.h U src/contrib/binutils/bfd/libbfd.c U src/contrib/binutils/bfd/libbfd.h U src/contrib/binutils/bfd/libcoff-in.h U src/contrib/binutils/bfd/libcoff.h U src/contrib/binutils/bfd/libecoff.h U src/contrib/binutils/bfd/libieee.h U src/contrib/binutils/bfd/libpei.h U src/contrib/binutils/bfd/linker.c U src/contrib/binutils/bfd/merge.c U src/contrib/binutils/bfd/mipsbsd.c U src/contrib/binutils/bfd/netbsd-core.c U src/contrib/binutils/bfd/netbsd.h U src/contrib/binutils/bfd/opncls.c U src/contrib/binutils/bfd/pe-arm.c U src/contrib/binutils/bfd/pe-i386.c U src/contrib/binutils/bfd/pe-mips.c U src/contrib/binutils/bfd/pe-ppc.c U src/contrib/binutils/bfd/peXXigen.c U src/contrib/binutils/bfd/peicode.h U src/contrib/binutils/bfd/ppcboot.c U src/contrib/binutils/bfd/ptrace-core.c U src/contrib/binutils/bfd/reloc.c U src/contrib/binutils/bfd/reloc16.c U src/contrib/binutils/bfd/rs6000-core.c U src/contrib/binutils/bfd/sco5-core.c U src/contrib/binutils/bfd/section.c U src/contrib/binutils/bfd/sparclinux.c U src/contrib/binutils/bfd/srec.c U src/contrib/binutils/bfd/sparcnetbsd.c U src/contrib/binutils/bfd/stab-syms.c U src/contrib/binutils/bfd/stabs.c U src/contrib/binutils/bfd/stamp-h.in U src/contrib/binutils/bfd/sunos.c U src/contrib/binutils/bfd/syms.c U src/contrib/binutils/bfd/sysdep.h U src/contrib/binutils/bfd/targets.c U src/contrib/binutils/bfd/targmatch.sed U src/contrib/binutils/bfd/tekhex.c U src/contrib/binutils/bfd/trad-core.c U src/contrib/binutils/bfd/xcoff-target.h U src/contrib/binutils/bfd/xcofflink.c U src/contrib/binutils/bfd/elf32-arm.h C src/contrib/binutils/bfd/elf32-i386.c U src/contrib/binutils/bfd/elf32-mips.c U src/contrib/binutils/bfd/elf32-ppc.c U src/contrib/binutils/bfd/elf32-sparc.c C src/contrib/binutils/bfd/elf64-alpha.c U src/contrib/binutils/bfd/elf64-mips.c U src/contrib/binutils/bfd/elf64-sparc.c U src/contrib/binutils/bfd/elfxx-ia64.c U src/contrib/binutils/bfd/doc/aoutx.texi U src/contrib/binutils/bfd/doc/archive.texi U src/contrib/binutils/bfd/doc/archures.texi U src/contrib/binutils/bfd/doc/bfdt.texi U src/contrib/binutils/bfd/doc/cache.texi U src/contrib/binutils/bfd/doc/coffcode.texi U src/contrib/binutils/bfd/doc/core.texi U src/contrib/binutils/bfd/doc/elf.texi U src/contrib/binutils/bfd/doc/elfcode.texi U src/contrib/binutils/bfd/doc/format.texi U src/contrib/binutils/bfd/doc/hash.texi U src/contrib/binutils/bfd/doc/init.texi U src/contrib/binutils/bfd/doc/libbfd.texi U src/contrib/binutils/bfd/doc/linker.texi U src/contrib/binutils/bfd/doc/opncls.texi U src/contrib/binutils/bfd/doc/reloc.texi U src/contrib/binutils/bfd/doc/section.texi U src/contrib/binutils/bfd/doc/syms.texi U src/contrib/binutils/bfd/doc/targets.texi U src/contrib/binutils/bfd/doc/ChangeLog U src/contrib/binutils/bfd/doc/Makefile.am U src/contrib/binutils/bfd/doc/Makefile.in U src/contrib/binutils/bfd/doc/bfd.texinfo U src/contrib/binutils/bfd/doc/bfdint.texi U src/contrib/binutils/bfd/doc/bfdsumm.texi U src/contrib/binutils/bfd/doc/chew.c U src/contrib/binutils/bfd/doc/doc.str U src/contrib/binutils/bfd/doc/header.sed U src/contrib/binutils/bfd/doc/proto.str U src/contrib/binutils/bfd/po/BLD-POTFILES.in U src/contrib/binutils/bfd/po/Make-in U src/contrib/binutils/bfd/po/SRC-POTFILES.in U src/contrib/binutils/bfd/po/bfd.pot U src/contrib/binutils/bfd/hosts/alphalinux.h U src/contrib/binutils/bfd/hosts/decstation.h U src/contrib/binutils/bfd/hosts/i386bsd.h U src/contrib/binutils/bfd/hosts/i386linux.h U src/contrib/binutils/bfd/hosts/i386sco.h U src/contrib/binutils/binutils/ChangeLog U src/contrib/binutils/binutils/NEWS U src/contrib/binutils/binutils/README U src/contrib/binutils/binutils/defparse.c U src/contrib/binutils/binutils/defparse.h U src/contrib/binutils/binutils/rclex.c U src/contrib/binutils/binutils/rcparse.c U src/contrib/binutils/binutils/rcparse.h U src/contrib/binutils/binutils/MAINTAINERS U src/contrib/binutils/binutils/readelf.c U src/contrib/binutils/binutils/objcopy.c U src/contrib/binutils/binutils/ChangeLog-9197 U src/contrib/binutils/binutils/Makefile.am U src/contrib/binutils/binutils/Makefile.in U src/contrib/binutils/binutils/aclocal.m4 U src/contrib/binutils/binutils/addr2line.c U src/contrib/binutils/binutils/config.in U src/contrib/binutils/binutils/ar.c U src/contrib/binutils/binutils/arlex.l U src/contrib/binutils/binutils/arparse.y U src/contrib/binutils/binutils/arsup.c U src/contrib/binutils/binutils/arsup.h U src/contrib/binutils/binutils/dep-in.sed U src/contrib/binutils/binutils/is-ranlib.c U src/contrib/binutils/binutils/is-strip.c U src/contrib/binutils/binutils/maybe-ranlib.c U src/contrib/binutils/binutils/maybe-strip.c U src/contrib/binutils/binutils/not-ranlib.c U src/contrib/binutils/binutils/not-strip.c U src/contrib/binutils/binutils/ranlib.sh U src/contrib/binutils/binutils/resres.c U src/contrib/binutils/binutils/budbg.h U src/contrib/binutils/binutils/sanity.sh U src/contrib/binutils/binutils/stamp-h.in U src/contrib/binutils/binutils/bucomm.c U src/contrib/binutils/binutils/bucomm.h U src/contrib/binutils/binutils/coffgrok.c U src/contrib/binutils/binutils/coffgrok.h U src/contrib/binutils/binutils/configure U src/contrib/binutils/binutils/configure.in U src/contrib/binutils/binutils/debug.c U src/contrib/binutils/binutils/debug.h U src/contrib/binutils/binutils/deflex.l U src/contrib/binutils/binutils/defparse.y U src/contrib/binutils/binutils/dlltool.c U src/contrib/binutils/binutils/dlltool.h U src/contrib/binutils/binutils/dllwrap.c U src/contrib/binutils/binutils/filemode.c U src/contrib/binutils/binutils/ieee.c U src/contrib/binutils/binutils/nm.c U src/contrib/binutils/binutils/prdbg.c U src/contrib/binutils/binutils/objdump.c U src/contrib/binutils/binutils/rclex.l U src/contrib/binutils/binutils/ChangeLog-9899 U src/contrib/binutils/binutils/acinclude.m4 U src/contrib/binutils/binutils/stabs.c U src/contrib/binutils/binutils/rcparse.y U src/contrib/binutils/binutils/rdcoff.c U src/contrib/binutils/binutils/rddbg.c U src/contrib/binutils/binutils/rename.c U src/contrib/binutils/binutils/resbin.c U src/contrib/binutils/binutils/rescoff.c U src/contrib/binutils/binutils/resrc.c U src/contrib/binutils/binutils/size.c U src/contrib/binutils/binutils/srconv.c U src/contrib/binutils/binutils/strings.c U src/contrib/binutils/binutils/sysdump.c U src/contrib/binutils/binutils/sysinfo.y U src/contrib/binutils/binutils/syslex.l U src/contrib/binutils/binutils/unwind-ia64.c U src/contrib/binutils/binutils/unwind-ia64.h U src/contrib/binutils/binutils/version.c U src/contrib/binutils/binutils/wrstabs.c U src/contrib/binutils/binutils/coffdump.c U src/contrib/binutils/binutils/po/binutils.pot U src/contrib/binutils/binutils/po/Make-in U src/contrib/binutils/binutils/po/POTFILES.in U src/contrib/binutils/binutils/doc/addr2line.1 U src/contrib/binutils/binutils/doc/objdump.1 U src/contrib/binutils/binutils/doc/ar.1 U src/contrib/binutils/binutils/doc/binutils.texi U src/contrib/binutils/binutils/doc/cxxfilt.man U src/contrib/binutils/binutils/doc/dlltool.1 U src/contrib/binutils/binutils/doc/nm.1 U src/contrib/binutils/binutils/doc/objcopy.1 U src/contrib/binutils/binutils/doc/ranlib.1 U src/contrib/binutils/binutils/doc/readelf.1 U src/contrib/binutils/binutils/doc/size.1 U src/contrib/binutils/binutils/doc/strings.1 U src/contrib/binutils/binutils/doc/strip.1 U src/contrib/binutils/binutils/doc/Makefile.am U src/contrib/binutils/binutils/doc/Makefile.in U src/contrib/binutils/config/mh-armpic U src/contrib/binutils/config/mh-cxux U src/contrib/binutils/config/mh-decstation U src/contrib/binutils/config/mh-elfalphapic U src/contrib/binutils/config/mh-mingw32 U src/contrib/binutils/config/mh-necv4 U src/contrib/binutils/config/mh-papic U src/contrib/binutils/config/mh-ppcpic U src/contrib/binutils/config/mh-sco U src/contrib/binutils/config/mh-solaris U src/contrib/binutils/config/mh-sysv U src/contrib/binutils/config/mh-sysv4 U src/contrib/binutils/config/mh-sysv5 U src/contrib/binutils/config/mh-x86pic U src/contrib/binutils/config/mt-armpic U src/contrib/binutils/config/mt-elfalphapic U src/contrib/binutils/config/mt-linux U src/contrib/binutils/config/mt-ospace U src/contrib/binutils/config/mt-papic U src/contrib/binutils/config/mt-ppcpic U src/contrib/binutils/config/mt-v810 U src/contrib/binutils/config/mt-x86pic U src/contrib/binutils/config/acinclude.m4 U src/contrib/binutils/config/ChangeLog U src/contrib/binutils/config/mh-ia64pic U src/contrib/binutils/config/mh-openedition U src/contrib/binutils/config/mh-sparcpic U src/contrib/binutils/config/mt-ia64pic U src/contrib/binutils/config/mt-sparcpic U src/contrib/binutils/gas/configure U src/contrib/binutils/gas/configure.in U src/contrib/binutils/gas/NEWS U src/contrib/binutils/gas/ChangeLog U src/contrib/binutils/gas/README U src/contrib/binutils/gas/CONTRIBUTORS U src/contrib/binutils/gas/gdbinit.in U src/contrib/binutils/gas/link.cmd U src/contrib/binutils/gas/stamp-h.in U src/contrib/binutils/gas/config.in U src/contrib/binutils/gas/MAINTAINERS U src/contrib/binutils/gas/acinclude.m4 U src/contrib/binutils/gas/ChangeLog-9295 U src/contrib/binutils/gas/ChangeLog-9697 U src/contrib/binutils/gas/ChangeLog-9899 U src/contrib/binutils/gas/app.c U src/contrib/binutils/gas/as.c U src/contrib/binutils/gas/as.h U src/contrib/binutils/gas/asintl.h U src/contrib/binutils/gas/atof-generic.c U src/contrib/binutils/gas/bignum-copy.c U src/contrib/binutils/gas/bignum.h U src/contrib/binutils/gas/bit_fix.h U src/contrib/binutils/gas/cgen.c U src/contrib/binutils/gas/cgen.h U src/contrib/binutils/gas/cond.c U src/contrib/binutils/gas/debug.c U src/contrib/binutils/gas/depend.c U src/contrib/binutils/gas/dwarf2dbg.c U src/contrib/binutils/gas/dwarf2dbg.h U src/contrib/binutils/gas/ecoff.c U src/contrib/binutils/gas/ecoff.h U src/contrib/binutils/gas/ehopt.c U src/contrib/binutils/gas/emul-target.h U src/contrib/binutils/gas/emul.h U src/contrib/binutils/gas/expr.c U src/contrib/binutils/gas/expr.h U src/contrib/binutils/gas/flonum-copy.c U src/contrib/binutils/gas/flonum-konst.c U src/contrib/binutils/gas/flonum-mult.c U src/contrib/binutils/gas/flonum.h U src/contrib/binutils/gas/frags.c U src/contrib/binutils/gas/frags.h U src/contrib/binutils/gas/gasp.c U src/contrib/binutils/gas/hash.c U src/contrib/binutils/gas/hash.h U src/contrib/binutils/gas/input-file.c U src/contrib/binutils/gas/input-file.h U src/contrib/binutils/gas/input-scrub.c U src/contrib/binutils/gas/itbl-lex.l U src/contrib/binutils/gas/itbl-ops.c U src/contrib/binutils/gas/itbl-ops.h U src/contrib/binutils/gas/itbl-parse.y U src/contrib/binutils/gas/listing.c U src/contrib/binutils/gas/listing.h U src/contrib/binutils/gas/literal.c U src/contrib/binutils/gas/macro.c U src/contrib/binutils/gas/macro.h U src/contrib/binutils/gas/messages.c U src/contrib/binutils/gas/obj.h U src/contrib/binutils/gas/output-file.c U src/contrib/binutils/gas/output-file.h U src/contrib/binutils/gas/read.c U src/contrib/binutils/gas/read.h U src/contrib/binutils/gas/sb.c U src/contrib/binutils/gas/sb.h U src/contrib/binutils/gas/stabs.c U src/contrib/binutils/gas/struc-symbol.h U src/contrib/binutils/gas/subsegs.c U src/contrib/binutils/gas/subsegs.h U src/contrib/binutils/gas/symbols.c U src/contrib/binutils/gas/symbols.h U src/contrib/binutils/gas/tc.h U src/contrib/binutils/gas/write.c U src/contrib/binutils/gas/write.h U src/contrib/binutils/gas/ChangeLog-0001 U src/contrib/binutils/gas/dep-in.sed U src/contrib/binutils/gas/Makefile.am U src/contrib/binutils/gas/Makefile.in U src/contrib/binutils/gas/aclocal.m4 U src/contrib/binutils/gas/config/tc-sparc.h C src/contrib/binutils/gas/config/tc-i386.c U src/contrib/binutils/gas/config/tc-sparc.c U src/contrib/binutils/gas/config/obj-coff.h U src/contrib/binutils/gas/config/tc-alpha.c U src/contrib/binutils/gas/config/tc-ia64.c U src/contrib/binutils/gas/config/tc-ppc.c U src/contrib/binutils/gas/config/e-i386aout.c U src/contrib/binutils/gas/config/e-i386coff.c U src/contrib/binutils/gas/config/e-i386elf.c U src/contrib/binutils/gas/config/obj-generic.c U src/contrib/binutils/gas/config/obj-multi.c U src/contrib/binutils/gas/config/tc-generic.c U src/contrib/binutils/gas/config/te-pe.h U src/contrib/binutils/gas/config/te-generic.h U src/contrib/binutils/gas/config/te-linux.h U src/contrib/binutils/gas/config/te-svr4.h U src/contrib/binutils/gas/config/te-aux.h U src/contrib/binutils/gas/config/te-sysv32.h U src/contrib/binutils/gas/config/aout_gnu.h U src/contrib/binutils/gas/config/atof-ieee.c U src/contrib/binutils/gas/config/atof-vax.c U src/contrib/binutils/gas/config/obj-aout.c U src/contrib/binutils/gas/config/obj-aout.h U src/contrib/binutils/gas/config/obj-coff.c U src/contrib/binutils/gas/config/obj-ecoff.c U src/contrib/binutils/gas/config/obj-ecoff.h U src/contrib/binutils/gas/config/obj-elf.c U src/contrib/binutils/gas/config/obj-elf.h U src/contrib/binutils/gas/config/obj-generic.h U src/contrib/binutils/gas/config/obj-ieee.c U src/contrib/binutils/gas/config/obj-ieee.h U src/contrib/binutils/gas/config/obj-multi.h U src/contrib/binutils/gas/config/tc-arc.c U src/contrib/binutils/gas/config/tc-arc.h U src/contrib/binutils/gas/config/tc-arm.c U src/contrib/binutils/gas/config/tc-arm.h U src/contrib/binutils/gas/config/tc-generic.h C src/contrib/binutils/gas/config/tc-i386.h U src/contrib/binutils/gas/config/tc-ia64.h U src/contrib/binutils/gas/config/tc-m68851.h U src/contrib/binutils/gas/config/tc-ppc.h U src/contrib/binutils/gas/config/tc-tic30.c U src/contrib/binutils/gas/config/tc-tic30.h U src/contrib/binutils/gas/config/tc-v850.c U src/contrib/binutils/gas/config/tc-v850.h U src/contrib/binutils/gas/config/tc-z8k.c U src/contrib/binutils/gas/config/tc-z8k.h U src/contrib/binutils/gas/config/te-386bsd.h U src/contrib/binutils/gas/config/te-freebsd.h U src/contrib/binutils/gas/config/te-nbsd.h U src/contrib/binutils/gas/config/te-ppcnw.h U src/contrib/binutils/gas/config/te-sparcaout.h U src/contrib/binutils/gas/config/tc-alpha.h U src/contrib/binutils/gas/doc/Makefile.am U src/contrib/binutils/gas/doc/as.1 U src/contrib/binutils/gas/doc/as.texinfo U src/contrib/binutils/gas/doc/c-ppc.texi U src/contrib/binutils/gas/doc/Makefile.in U src/contrib/binutils/gas/doc/all.texi U src/contrib/binutils/gas/doc/c-alpha.texi U src/contrib/binutils/gas/doc/h8.texi U src/contrib/binutils/gas/doc/c-arc.texi U src/contrib/binutils/gas/doc/c-arm.texi U src/contrib/binutils/gas/doc/c-i386.texi U src/contrib/binutils/gas/doc/c-sh.texi U src/contrib/binutils/gas/doc/c-sparc.texi U src/contrib/binutils/gas/doc/c-v850.texi U src/contrib/binutils/gas/doc/c-z8k.texi U src/contrib/binutils/gas/doc/gasp.texi U src/contrib/binutils/gas/doc/internals.texi U src/contrib/binutils/gas/po/Make-in U src/contrib/binutils/gas/po/POTFILES.in U src/contrib/binutils/gas/po/gas.pot U src/contrib/binutils/include/MAINTAINERS U src/contrib/binutils/include/callback.h U src/contrib/binutils/include/fopen-bin.h U src/contrib/binutils/include/fopen-same.h U src/contrib/binutils/include/gdbm.h U src/contrib/binutils/include/objalloc.h U src/contrib/binutils/include/bin-bugs.h U src/contrib/binutils/include/filenames.h U src/contrib/binutils/include/ansidecl.h U src/contrib/binutils/include/bfdlink.h U src/contrib/binutils/include/demangle.h U src/contrib/binutils/include/dyn-string.h U src/contrib/binutils/include/floatformat.h U src/contrib/binutils/include/fnmatch.h U src/contrib/binutils/include/getopt.h U src/contrib/binutils/include/hashtab.h U src/contrib/binutils/include/ieee.h U src/contrib/binutils/include/libiberty.h U src/contrib/binutils/include/md5.h U src/contrib/binutils/include/obstack.h U src/contrib/binutils/include/partition.h U src/contrib/binutils/include/progress.h U src/contrib/binutils/include/remote-sim.h U src/contrib/binutils/include/safe-ctype.h U src/contrib/binutils/include/sort.h U src/contrib/binutils/include/splay-tree.h U src/contrib/binutils/include/symcat.h U src/contrib/binutils/include/alloca-conf.h U src/contrib/binutils/include/ternary.h U src/contrib/binutils/include/xregex.h U src/contrib/binutils/include/xregex2.h U src/contrib/binutils/include/fibheap.h U src/contrib/binutils/include/ChangeLog U src/contrib/binutils/include/dis-asm.h U src/contrib/binutils/include/elf/ChangeLog U src/contrib/binutils/include/elf/m68k.h U src/contrib/binutils/include/elf/ppc.h U src/contrib/binutils/include/elf/arc.h U src/contrib/binutils/include/elf/arm.h U src/contrib/binutils/include/elf/avr.h U src/contrib/binutils/include/elf/common.h U src/contrib/binutils/include/elf/cris.h U src/contrib/binutils/include/elf/d10v.h U src/contrib/binutils/include/elf/d30v.h U src/contrib/binutils/include/elf/dwarf.h U src/contrib/binutils/include/elf/dwarf2.h U src/contrib/binutils/include/elf/external.h U src/contrib/binutils/include/elf/fr30.h U src/contrib/binutils/include/elf/hppa.h U src/contrib/binutils/include/elf/i370.h U src/contrib/binutils/include/elf/i386.h U src/contrib/binutils/include/elf/i860.h U src/contrib/binutils/include/elf/i960.h U src/contrib/binutils/include/elf/ia64.h U src/contrib/binutils/include/elf/internal.h U src/contrib/binutils/include/elf/m32r.h U src/contrib/binutils/include/elf/m68hc11.h U src/contrib/binutils/include/elf/mcore.h U src/contrib/binutils/include/elf/mips.h U src/contrib/binutils/include/elf/mn10200.h U src/contrib/binutils/include/elf/mn10300.h U src/contrib/binutils/include/elf/pj.h U src/contrib/binutils/include/elf/reloc-macros.h U src/contrib/binutils/include/elf/s390.h U src/contrib/binutils/include/elf/sparc.h U src/contrib/binutils/include/elf/v850.h U src/contrib/binutils/include/elf/x86-64.h U src/contrib/binutils/include/elf/openrisc.h U src/contrib/binutils/include/elf/h8.h U src/contrib/binutils/include/elf/mmix.h U src/contrib/binutils/include/elf/xstormy16.h U src/contrib/binutils/include/elf/or32.h U src/contrib/binutils/include/elf/alpha.h U src/contrib/binutils/include/elf/sh.h U src/contrib/binutils/include/aout/ChangeLog U src/contrib/binutils/include/aout/aout64.h U src/contrib/binutils/include/aout/ar.h U src/contrib/binutils/include/aout/encap.h U src/contrib/binutils/include/aout/host.h U src/contrib/binutils/include/aout/ranlib.h U src/contrib/binutils/include/aout/reloc.h U src/contrib/binutils/include/aout/stab.def U src/contrib/binutils/include/aout/stab_gnu.h U src/contrib/binutils/include/aout/sun4.h U src/contrib/binutils/include/coff/ChangeLog U src/contrib/binutils/include/coff/alpha.h U src/contrib/binutils/include/coff/arm.h U src/contrib/binutils/include/coff/sym.h U src/contrib/binutils/include/coff/symconst.h U src/contrib/binutils/include/coff/aux-coff.h U src/contrib/binutils/include/coff/ecoff.h U src/contrib/binutils/include/coff/external.h U src/contrib/binutils/include/coff/i386.h U src/contrib/binutils/include/coff/ia64.h U src/contrib/binutils/include/coff/internal.h U src/contrib/binutils/include/coff/pe.h U src/contrib/binutils/include/coff/powerpc.h U src/contrib/binutils/include/coff/rs6000.h U src/contrib/binutils/include/coff/rs6k64.h U src/contrib/binutils/include/coff/sh.h U src/contrib/binutils/include/coff/sparc.h U src/contrib/binutils/include/coff/ti.h U src/contrib/binutils/include/opcode/i386.h U src/contrib/binutils/include/opcode/ChangeLog U src/contrib/binutils/include/opcode/ppc.h U src/contrib/binutils/include/opcode/alpha.h U src/contrib/binutils/include/opcode/tic30.h U src/contrib/binutils/include/opcode/ia64.h U src/contrib/binutils/include/opcode/arc.h U src/contrib/binutils/include/opcode/arm.h U src/contrib/binutils/include/opcode/cgen.h U src/contrib/binutils/include/opcode/convex.h U src/contrib/binutils/include/opcode/mips.h U src/contrib/binutils/include/opcode/np1.h U src/contrib/binutils/include/opcode/pn.h U src/contrib/binutils/include/opcode/sparc.h U src/contrib/binutils/include/opcode/v850.h U src/contrib/binutils/include/regs/ChangeLog U src/contrib/binutils/ld/configure.in U src/contrib/binutils/ld/ChangeLog U src/contrib/binutils/ld/Makefile.am U src/contrib/binutils/ld/NEWS U src/contrib/binutils/ld/ld.1 U src/contrib/binutils/ld/ld.texinfo U src/contrib/binutils/ld/configure.tgt U src/contrib/binutils/ld/ldgram.y C src/contrib/binutils/ld/Makefile.in U src/contrib/binutils/ld/ldlang.c U src/contrib/binutils/ld/ldlang.h U src/contrib/binutils/ld/config.in U src/contrib/binutils/ld/configure U src/contrib/binutils/ld/lexsup.c U src/contrib/binutils/ld/ldlex.l U src/contrib/binutils/ld/ldmain.c U src/contrib/binutils/ld/README U src/contrib/binutils/ld/TODO U src/contrib/binutils/ld/ChangeLog-9197 U src/contrib/binutils/ld/ChangeLog-9899 U src/contrib/binutils/ld/genscripts.sh U src/contrib/binutils/ld/gen-doc.texi U src/contrib/binutils/ld/dep-in.sed U src/contrib/binutils/ld/h8-doc.texi U src/contrib/binutils/ld/ldwrite.h U src/contrib/binutils/ld/stamp-h.in U src/contrib/binutils/ld/aclocal.m4 C src/contrib/binutils/ld/configure.host U src/contrib/binutils/ld/deffile.h U src/contrib/binutils/ld/ld.h U src/contrib/binutils/ld/deffilep.y U src/contrib/binutils/ld/ldcref.c U src/contrib/binutils/ld/ldctor.c U src/contrib/binutils/ld/ldctor.h U src/contrib/binutils/ld/ldemul.c U src/contrib/binutils/ld/ldemul.h U src/contrib/binutils/ld/ldexp.c U src/contrib/binutils/ld/ldexp.h U src/contrib/binutils/ld/ldfile.c U src/contrib/binutils/ld/ldfile.h U src/contrib/binutils/ld/ldint.texinfo U src/contrib/binutils/ld/ldlex.h U src/contrib/binutils/ld/ldmain.h U src/contrib/binutils/ld/ldmisc.c U src/contrib/binutils/ld/ldmisc.h U src/contrib/binutils/ld/ldver.c U src/contrib/binutils/ld/ldver.h U src/contrib/binutils/ld/ldwrite.c U src/contrib/binutils/ld/mri.c U src/contrib/binutils/ld/mri.h U src/contrib/binutils/ld/pe-dll.c U src/contrib/binutils/ld/pe-dll.h U src/contrib/binutils/ld/sysdep.h U src/contrib/binutils/ld/MAINTAINERS U src/contrib/binutils/ld/acinclude.m4 U src/contrib/binutils/ld/po/ld.pot U src/contrib/binutils/ld/po/Make-in U src/contrib/binutils/ld/po/POTFILES.in U src/contrib/binutils/ld/emulparams/elf64alpha.sh U src/contrib/binutils/ld/emulparams/elf64_ia64.sh U src/contrib/binutils/ld/emulparams/elf_x86_64.sh U src/contrib/binutils/ld/emulparams/elf_i386_fbsd.sh U src/contrib/binutils/ld/emulparams/elf_fbsd.sh U src/contrib/binutils/ld/emulparams/elf64alpha_fbsd.sh U src/contrib/binutils/ld/emulparams/elf64_sparc_fbsd.sh U src/contrib/binutils/ld/emulparams/elf64_ia64_fbsd.sh U src/contrib/binutils/ld/emulparams/armelf.sh U src/contrib/binutils/ld/emulparams/armelf_linux.sh U src/contrib/binutils/ld/emulparams/README U src/contrib/binutils/ld/emulparams/alpha.sh U src/contrib/binutils/ld/emulparams/arcelf.sh U src/contrib/binutils/ld/emulparams/armaoutb.sh U src/contrib/binutils/ld/emulparams/armaoutl.sh U src/contrib/binutils/ld/emulparams/armcoff.sh U src/contrib/binutils/ld/emulparams/armelf_oabi.sh U src/contrib/binutils/ld/emulparams/armnbsd.sh U src/contrib/binutils/ld/emulparams/armpe.sh U src/contrib/binutils/ld/emulparams/coff_sparc.sh U src/contrib/binutils/ld/emulparams/elf32_sparc.sh U src/contrib/binutils/ld/emulparams/elf32b4300.sh U src/contrib/binutils/ld/emulparams/elf32bmip.sh U src/contrib/binutils/ld/emulparams/elf32bmipn32.sh U src/contrib/binutils/ld/emulparams/elf32bsmip.sh U src/contrib/binutils/ld/emulparams/elf32ebmip.sh U src/contrib/binutils/ld/emulparams/elf32elmip.sh U src/contrib/binutils/ld/emulparams/elf_i386_chaos.sh U src/contrib/binutils/ld/emulparams/elf32l4300.sh U src/contrib/binutils/ld/emulparams/elf32lmip.sh U src/contrib/binutils/ld/emulparams/elf32lsmip.sh U src/contrib/binutils/ld/emulparams/elf_i386.sh U src/contrib/binutils/ld/emulparams/elf32ppclinux.sh U src/contrib/binutils/ld/emulparams/elf64bmip.sh U src/contrib/binutils/ld/emulparams/i386aout.sh U src/contrib/binutils/ld/emulparams/i386bsd.sh U src/contrib/binutils/ld/emulparams/i386coff.sh U src/contrib/binutils/ld/emulparams/i386linux.sh U src/contrib/binutils/ld/emulparams/i386moss.sh U src/contrib/binutils/ld/emulparams/i386nbsd.sh U src/contrib/binutils/ld/emulparams/i386nw.sh U src/contrib/binutils/ld/emulparams/i386pe.sh U src/contrib/binutils/ld/emulparams/i386pe_posix.sh U src/contrib/binutils/ld/emulparams/ppcmacos.sh U src/contrib/binutils/ld/emulparams/ppcnw.sh U src/contrib/binutils/ld/emulparams/ppcpe.sh U src/contrib/binutils/ld/emulparams/sh.sh U src/contrib/binutils/ld/emulparams/shelf.sh U src/contrib/binutils/ld/emulparams/shl.sh U src/contrib/binutils/ld/emulparams/shlelf.sh U src/contrib/binutils/ld/emulparams/sparcaout.sh U src/contrib/binutils/ld/emulparams/sparclinux.sh U src/contrib/binutils/ld/emulparams/sparcnbsd.sh U src/contrib/binutils/ld/emulparams/sun4.sh U src/contrib/binutils/ld/emulparams/tic30aout.sh U src/contrib/binutils/ld/emulparams/tic30coff.sh U src/contrib/binutils/ld/emulparams/v850.sh U src/contrib/binutils/ld/emulparams/vanilla.sh U src/contrib/binutils/ld/emulparams/vsta.sh U src/contrib/binutils/ld/emulparams/z8001.sh U src/contrib/binutils/ld/emulparams/z8002.sh U src/contrib/binutils/ld/emulparams/elf64_sparc.sh U src/contrib/binutils/ld/emulparams/elf32ppc_fbsd.sh U src/contrib/binutils/ld/emulparams/shelf_linux.sh U src/contrib/binutils/ld/emulparams/elf32lppc.sh U src/contrib/binutils/ld/emulparams/elf32lppcsim.sh U src/contrib/binutils/ld/emulparams/elf32ppc.sh U src/contrib/binutils/ld/emulparams/elf32ppcsim.sh U src/contrib/binutils/ld/emulparams/elf_i386_ldso.sh U src/contrib/binutils/ld/emulparams/elf64lppc.sh U src/contrib/binutils/ld/emulparams/elf64ppc.sh U src/contrib/binutils/ld/emulparams/armelf_nbsd.sh U src/contrib/binutils/ld/emulparams/elf64alpha_nbsd.sh U src/contrib/binutils/ld/emulparams/elf_x86_64_fbsd.sh U src/contrib/binutils/ld/emulparams/armelf_fbsd.sh U src/contrib/binutils/ld/emultempl/README U src/contrib/binutils/ld/emultempl/astring.sed U src/contrib/binutils/ld/emultempl/ostring.sed U src/contrib/binutils/ld/emultempl/armcoff.em U src/contrib/binutils/ld/emultempl/armelf.em U src/contrib/binutils/ld/emultempl/armelf_oabi.em U src/contrib/binutils/ld/emultempl/elf32.em U src/contrib/binutils/ld/emultempl/generic.em U src/contrib/binutils/ld/emultempl/linux.em U src/contrib/binutils/ld/emultempl/pe.em U src/contrib/binutils/ld/emultempl/sunos.em U src/contrib/binutils/ld/emultempl/vanilla.em U src/contrib/binutils/ld/emultempl/ticoff.em U src/contrib/binutils/ld/emultempl/needrelax.em U src/contrib/binutils/ld/emultempl/ppc64elf.em U src/contrib/binutils/ld/scripttempl/v850.sc U src/contrib/binutils/ld/scripttempl/z8000.sc U src/contrib/binutils/ld/scripttempl/elf.sc U src/contrib/binutils/ld/scripttempl/README U src/contrib/binutils/ld/scripttempl/alpha.sc U src/contrib/binutils/ld/scripttempl/aout.sc U src/contrib/binutils/ld/scripttempl/armaout.sc U src/contrib/binutils/ld/scripttempl/armcoff.sc U src/contrib/binutils/ld/scripttempl/i386coff.sc U src/contrib/binutils/ld/scripttempl/nw.sc U src/contrib/binutils/ld/scripttempl/pe.sc U src/contrib/binutils/ld/scripttempl/ppcpe.sc U src/contrib/binutils/ld/scripttempl/sh.sc U src/contrib/binutils/ld/scripttempl/sparccoff.sc U src/contrib/binutils/ld/scripttempl/tic30aout.sc U src/contrib/binutils/ld/scripttempl/tic30coff.sc U src/contrib/binutils/ld/scripttempl/vanilla.sc U src/contrib/binutils/libiberty/README U src/contrib/binutils/libiberty/asprintf.c U src/contrib/binutils/libiberty/atexit.c U src/contrib/binutils/libiberty/bcmp.c U src/contrib/binutils/libiberty/bcopy.c U src/contrib/binutils/libiberty/bzero.c U src/contrib/binutils/libiberty/calloc.c U src/contrib/binutils/libiberty/clock.c U src/contrib/binutils/libiberty/concat.c U src/contrib/binutils/libiberty/copysign.c U src/contrib/binutils/libiberty/fdmatch.c U src/contrib/binutils/libiberty/getpagesize.c U src/contrib/binutils/libiberty/getpwd.c U src/contrib/binutils/libiberty/hex.c U src/contrib/binutils/libiberty/index.c U src/contrib/binutils/libiberty/insque.c U src/contrib/binutils/libiberty/memcpy.c U src/contrib/binutils/libiberty/memmove.c U src/contrib/binutils/libiberty/memset.c U src/contrib/binutils/libiberty/putenv.c U src/contrib/binutils/libiberty/random.c U src/contrib/binutils/libiberty/rindex.c U src/contrib/binutils/libiberty/spaces.c U src/contrib/binutils/libiberty/strcasecmp.c U src/contrib/binutils/libiberty/md5.c U src/contrib/binutils/libiberty/strchr.c U src/contrib/binutils/libiberty/strdup.c U src/contrib/binutils/libiberty/strncasecmp.c U src/contrib/binutils/libiberty/strrchr.c U src/contrib/binutils/libiberty/strstr.c U src/contrib/binutils/libiberty/tmpnam.c U src/contrib/binutils/libiberty/vfprintf.c U src/contrib/binutils/libiberty/vprintf.c U src/contrib/binutils/libiberty/vsprintf.c U src/contrib/binutils/libiberty/xatexit.c U src/contrib/binutils/libiberty/xstrdup.c U src/contrib/binutils/libiberty/xstrerror.c U src/contrib/binutils/libiberty/fnmatch.c U src/contrib/binutils/libiberty/getopt.c U src/contrib/binutils/libiberty/getopt1.c U src/contrib/binutils/libiberty/obstack.c U src/contrib/binutils/libiberty/dyn-string.c U src/contrib/binutils/libiberty/getcwd.c U src/contrib/binutils/libiberty/floatformat.c U src/contrib/binutils/libiberty/objalloc.c U src/contrib/binutils/libiberty/strerror.c U src/contrib/binutils/libiberty/strsignal.c U src/contrib/binutils/libiberty/xmemdup.c U src/contrib/binutils/libiberty/ChangeLog U src/contrib/binutils/libiberty/basename.c U src/contrib/binutils/libiberty/bsearch.c U src/contrib/binutils/libiberty/pexecute.c U src/contrib/binutils/libiberty/safe-ctype.c U src/contrib/binutils/libiberty/strtod.c U src/contrib/binutils/libiberty/strtol.c U src/contrib/binutils/libiberty/strtoul.c U src/contrib/binutils/libiberty/xmalloc.c U src/contrib/binutils/libiberty/getruntime.c U src/contrib/binutils/libiberty/memcmp.c U src/contrib/binutils/libiberty/mkstemps.c U src/contrib/binutils/libiberty/partition.c U src/contrib/binutils/libiberty/rename.c U src/contrib/binutils/libiberty/setenv.c U src/contrib/binutils/libiberty/sort.c U src/contrib/binutils/libiberty/sigsetmask.c U src/contrib/binutils/libiberty/splay-tree.c U src/contrib/binutils/libiberty/strncmp.c U src/contrib/binutils/libiberty/vasprintf.c U src/contrib/binutils/libiberty/vfork.c U src/contrib/binutils/libiberty/waitpid.c U src/contrib/binutils/libiberty/xexit.c U src/contrib/binutils/libiberty/Makefile.in U src/contrib/binutils/libiberty/aclocal.m4 U src/contrib/binutils/libiberty/alloca.c U src/contrib/binutils/libiberty/argv.c U src/contrib/binutils/libiberty/choose-temp.c U src/contrib/binutils/libiberty/config.in U src/contrib/binutils/libiberty/config.table U src/contrib/binutils/libiberty/configure U src/contrib/binutils/libiberty/configure.in U src/contrib/binutils/libiberty/cp-demangle.c U src/contrib/binutils/libiberty/cplus-dem.c U src/contrib/binutils/libiberty/hashtab.c U src/contrib/binutils/libiberty/lbasename.c U src/contrib/binutils/libiberty/make-temp-file.c U src/contrib/binutils/libiberty/memchr.c U src/contrib/binutils/libiberty/ternary.c U src/contrib/binutils/libiberty/ffs.c U src/contrib/binutils/libiberty/regex.c U src/contrib/binutils/libiberty/copying-lib.texi U src/contrib/binutils/libiberty/fibheap.c U src/contrib/binutils/libiberty/fnmatch.txh U src/contrib/binutils/libiberty/functions.texi U src/contrib/binutils/libiberty/gather-docs U src/contrib/binutils/libiberty/libiberty.texi U src/contrib/binutils/libiberty/maint-tool U src/contrib/binutils/libiberty/obstacks.texi U src/contrib/binutils/libiberty/_doprnt.c U src/contrib/binutils/libiberty/config/mh-openedition U src/contrib/binutils/libiberty/config/mh-cxux7 U src/contrib/binutils/libiberty/config/mh-fbsd21 U src/contrib/binutils/opcodes/Makefile.am U src/contrib/binutils/opcodes/Makefile.in U src/contrib/binutils/opcodes/disassemble.c U src/contrib/binutils/opcodes/ChangeLog-9297 U src/contrib/binutils/opcodes/ChangeLog-9899 U src/contrib/binutils/opcodes/sh-dis.c U src/contrib/binutils/opcodes/alpha-dis.c U src/contrib/binutils/opcodes/arc-dis.c U src/contrib/binutils/opcodes/arc-dis.h U src/contrib/binutils/opcodes/arc-ext.c U src/contrib/binutils/opcodes/MAINTAINERS U src/contrib/binutils/opcodes/arc-ext.h U src/contrib/binutils/opcodes/arc-opc.c U src/contrib/binutils/opcodes/arm-dis.c U src/contrib/binutils/opcodes/acinclude.m4 U src/contrib/binutils/opcodes/dep-in.sed U src/contrib/binutils/opcodes/stamp-h.in U src/contrib/binutils/opcodes/z8k-opc.h U src/contrib/binutils/opcodes/arm-opc.h U src/contrib/binutils/opcodes/cgen-asm.c U src/contrib/binutils/opcodes/cgen-asm.in U src/contrib/binutils/opcodes/cgen-dis.in U src/contrib/binutils/opcodes/cgen-opc.c U src/contrib/binutils/opcodes/cgen-ibld.in U src/contrib/binutils/opcodes/cgen.sh U src/contrib/binutils/opcodes/dis-buf.c U src/contrib/binutils/opcodes/ppc-dis.c U src/contrib/binutils/opcodes/ia64-asmtab.h U src/contrib/binutils/opcodes/ia64-dis.c U src/contrib/binutils/opcodes/ia64-gen.c U src/contrib/binutils/opcodes/ia64-opc-a.c U src/contrib/binutils/opcodes/ia64-opc-b.c U src/contrib/binutils/opcodes/ia64-opc-d.c U src/contrib/binutils/opcodes/ia64-opc-f.c U src/contrib/binutils/opcodes/ia64-opc-i.c U src/contrib/binutils/opcodes/ia64-raw.tbl U src/contrib/binutils/opcodes/ia64-opc-m.c U src/contrib/binutils/opcodes/ia64-opc-x.c U src/contrib/binutils/opcodes/ia64-opc.c U src/contrib/binutils/opcodes/ia64-opc.h U src/contrib/binutils/opcodes/aclocal.m4 U src/contrib/binutils/opcodes/ia64-war.tbl U src/contrib/binutils/opcodes/ia64-waw.tbl U src/contrib/binutils/opcodes/config.in U src/contrib/binutils/opcodes/opintl.h U src/contrib/binutils/opcodes/sh-opc.h U src/contrib/binutils/opcodes/sparc-opc.c U src/contrib/binutils/opcodes/sysdep.h U src/contrib/binutils/opcodes/tic30-dis.c U src/contrib/binutils/opcodes/v850-dis.c U src/contrib/binutils/opcodes/v850-opc.c U src/contrib/binutils/opcodes/z8k-dis.c U src/contrib/binutils/opcodes/z8kgen.c U src/contrib/binutils/opcodes/ia64-ic.tbl U src/contrib/binutils/opcodes/ChangeLog U src/contrib/binutils/opcodes/configure U src/contrib/binutils/opcodes/configure.in U src/contrib/binutils/opcodes/i386-dis.c U src/contrib/binutils/opcodes/ia64-asmtab.c U src/contrib/binutils/opcodes/ppc-opc.c U src/contrib/binutils/opcodes/alpha-opc.c U src/contrib/binutils/opcodes/sparc-dis.c U src/contrib/binutils/opcodes/cgen-dis.c U src/contrib/binutils/opcodes/po/Make-in U src/contrib/binutils/opcodes/po/POTFILES.in U src/contrib/binutils/opcodes/po/opcodes.pot 8 conflicts created by this import. Use the following command to help the merge: cvs checkout -jFSF:yesterday -jFSF src/contrib/binutils To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 12: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 9B92F37B404; Fri, 12 Apr 2002 12:38:41 -0700 (PDT) Received: (from tmm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJcfk69260; Fri, 12 Apr 2002 12:38:41 -0700 (PDT) (envelope-from tmm) Message-Id: <200204121938.g3CJcfk69260@freefall.freebsd.org> From: Thomas Moestl Date: Fri, 12 Apr 2002 12:38:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern sys_pipe.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/04/12 12:38:41 PDT Modified files: sys/kern sys_pipe.c Log: Do not use pmap_kextract() to find out the physical address of a user belong to a user virtual address; while this happens to work on some architectures, it can't on sparc64, since user and kernel virtual address spaces overlap there (the distinction between them is done via separate address space identifiers). Instead, look up the page in the vm_map of the process in question. Reviewed by: jake Revision Changes Path 1.102 +17 -6 src/sys/kern/sys_pipe.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 12:40: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 0C08637B404; Fri, 12 Apr 2002 12:40:35 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJeZR69539; Fri, 12 Apr 2002 12:40:35 -0700 (PDT) (envelope-from ade) Message-Id: <200204121940.g3CJeZR69539@freefall.freebsd.org> From: Ade Lovett Date: Fri, 12 Apr 2002 12:40:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/fugu Makefile distinfo pkg-plist ports/net/fugu/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 ade 2002/04/12 12:40:34 PDT Modified files: net/fugu Makefile distinfo pkg-plist Added files: net/fugu/files patch-configure Log: Update to 1.1.8, also fixing python problems with the previous version. PR: 35898 Submitted by: maintainer Revision Changes Path 1.5 +3 -2 ports/net/fugu/Makefile 1.4 +1 -1 ports/net/fugu/distinfo 1.1 +11 -0 ports/net/fugu/files/patch-configure (new) 1.3 +3 -3 ports/net/fugu/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 Apr 12 12:46: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 93AD537B400; Fri, 12 Apr 2002 12:46:05 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJk5x70522; Fri, 12 Apr 2002 12:46:05 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204121946.g3CJk5x70522@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 12 Apr 2002 12:46:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/sed compile.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/04/12 12:46:05 PDT Modified files: usr.bin/sed compile.c Log: Fix an ages-old bug in sed(1), which resulted in the absolutely valid substitution expressions in the form `s,[fooexp],[barexp],;...' treated as invalid when the third `,' is (_POSIX2_LINE_MAX * N)-th character in the line. MFC after: 2 weeks Revision Changes Path 1.20 +1 -1 src/usr.bin/sed/compile.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 12:46: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 3248F37B478; Fri, 12 Apr 2002 12:46:25 -0700 (PDT) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJkPX70592; Fri, 12 Apr 2002 12:46:25 -0700 (PDT) (envelope-from ru) Message-Id: <200204121946.g3CJkPX70592@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 12 Apr 2002 12:46:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 src/tools make_libdeps.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 ru 2002/04/12 12:46:25 PDT Modified files: . Makefile.inc1 Added files: tools make_libdeps.sh Log: Add a tool (and the first application of it) that could be used to automate building of libraries. Prodded by: bde Revision Changes Path 1.254 +52 -52 src/Makefile.inc1 1.1 +117 -0 src/tools/make_libdeps.sh (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 12: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 CC3BA37B405; Fri, 12 Apr 2002 12:49:24 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJnOb70943; Fri, 12 Apr 2002 12:49:24 -0700 (PDT) (envelope-from obrien) Message-Id: <200204121949.g3CJnOb70943@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 12 Apr 2002 12:49:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils/bfd elf.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/04/12 12:49:24 PDT Modified files: contrib/binutils/bfd elf.c Log: Merge our ELF branding into Binutils 2.12_20020410 snapshot. Revision Changes Path 1.14 +89 -23 src/contrib/binutils/bfd/elf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 12:49:59 2002 Delivered-To: cvs-all@freebsd.org Received: from sdns.kv.ukrtel.net (sdns.kv.ukrtel.net [195.5.27.246]) by hub.freebsd.org (Postfix) with ESMTP id DEF0037B427; Fri, 12 Apr 2002 12:49:29 -0700 (PDT) Received: from vega.vega.com (195.5.51.243 [195.5.51.243]) by sdns.kv.ukrtel.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2650.21) id 22TS0V1T; Fri, 12 Apr 2002 22:50:59 +0300 Received: (from max@localhost) by vega.vega.com (8.11.6/8.11.3) id g3CJo0O21945; Fri, 12 Apr 2002 22:50:00 +0300 (EEST) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200204121950.g3CJo0O21945@vega.vega.com> Subject: Re: cvs commit: ports/emulators/wine Makefile distinfo pkg-plist To: pfeifer@dbai.tuwien.ac.at (Gerald Pfeifer) Date: Fri, 12 Apr 2002 22:49:59 +0300 (EEST) Cc: sobomax@FreeBSD.ORG (Maxim Sobolev), cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-Reply-To: from "Gerald Pfeifer" at Apr 12, 2002 07:46:51 PM X-Mailer: ELM [version 2.5 PL5] 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 Fri, 12 Apr 2002, Maxim Sobolev wrote: > >> Modified files: > >> emulators/wine Makefile distinfo pkg-plist > >> Log: > >> Update to the 2002.04.11 snapshot of Wine. Lots of libraries in > >> $PREFIX/lib/wine have been renamed. > > Reviewed by: ??? > > Approved by: ??? > > I have been the maintainer of this port since 2000/05/18. > > And while David O'Brien (my mentor here) kindly has been and will be > reviewing my patches to all other parts of FreeBSD, do I really need > to have my changes to this port reviewed/approved by others now, after > having submitted/reviewed/approved more than two dozen changes as > maintainer of this port??? Yes, you need. This is normal part of your "mentored" period. You mentor should have told you that. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 12:50: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 9889737B400; Fri, 12 Apr 2002 12:50:32 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJoWU71128; Fri, 12 Apr 2002 12:50:32 -0700 (PDT) (envelope-from obrien) Message-Id: <200204121950.g3CJoWU71128@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 12 Apr 2002 12:50:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils/bfd elf32-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/04/12 12:50:32 PDT Modified files: contrib/binutils/bfd elf32-i386.c Log: Merge rev 1.8 ("ELF_DYNAMIC_INTERPRETER") into Binutils 2.12_20020410 snap. Revision Changes Path 1.13 +14 -7 src/contrib/binutils/bfd/elf32-i386.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 12:51: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 87B3D37B405; Fri, 12 Apr 2002 12:51:31 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJpV371323; Fri, 12 Apr 2002 12:51:31 -0700 (PDT) (envelope-from obrien) Message-Id: <200204121951.g3CJpV371323@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 12 Apr 2002 12:51:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils/bfd elf64-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/04/12 12:51:31 PDT Modified files: contrib/binutils/bfd elf64-alpha.c Log: Merge rev 1.6 (ELF_DYNAMIC_INTERPRETER) into Binutils 2.12_20020410 snap. Revision Changes Path 1.11 +59 -50 src/contrib/binutils/bfd/elf64-alpha.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 12:52: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 0D5D737B405; Fri, 12 Apr 2002 12:52:35 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJqZu71499; Fri, 12 Apr 2002 12:52:35 -0700 (PDT) (envelope-from obrien) Message-Id: <200204121952.g3CJqZu71499@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 12 Apr 2002 12:52:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils/bfd elflink.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/04/12 12:52:34 PDT Modified files: contrib/binutils/bfd elflink.h Log: Merge the stock 2.12.0 snap version. Revision Changes Path 1.9 +317 -189 src/contrib/binutils/bfd/elflink.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 12:53: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 890DD37B416; Fri, 12 Apr 2002 12:53:31 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJrVD71655; Fri, 12 Apr 2002 12:53:31 -0700 (PDT) (envelope-from obrien) Message-Id: <200204121953.g3CJrVD71655@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 12 Apr 2002 12:53:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils/gas/config tc-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/04/12 12:53:31 PDT Modified files: contrib/binutils/gas/config tc-i386.c Log: Bring the binutils_2_12_20020410 snap version of this to the HEAD branch. Revision Changes Path 1.12 +2099 -1897 src/contrib/binutils/gas/config/tc-i386.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 12:54: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 1C02637B404; Fri, 12 Apr 2002 12:54:04 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJs4L71754; Fri, 12 Apr 2002 12:54:04 -0700 (PDT) (envelope-from obrien) Message-Id: <200204121954.g3CJs4L71754@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 12 Apr 2002 12:54:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils/gas/config tc-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/04/12 12:54:04 PDT Modified files: contrib/binutils/gas/config tc-i386.h Log: Bring the binutils_2_12_20020410 snap version of this to the HEAD branch. Revision Changes Path 1.8 +11 -9 src/contrib/binutils/gas/config/tc-i386.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 12:55: 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 A108A37B405; Fri, 12 Apr 2002 12:54:53 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJsrt71853; Fri, 12 Apr 2002 12:54:53 -0700 (PDT) (envelope-from obrien) Message-Id: <200204121954.g3CJsrt71853@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 12 Apr 2002 12:54:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils/ld 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 obrien 2002/04/12 12:54:53 PDT Modified files: contrib/binutils/ld Makefile.in Log: Merge rev 1.2 (FreeBSD a.out configuration support) into the Binutils 2.12_20020410 snap. Revision Changes Path 1.12 +14 -11 src/contrib/binutils/ld/Makefile.in To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 12:55: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 B6DC937B434; Fri, 12 Apr 2002 12:55:38 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJtcV71994; Fri, 12 Apr 2002 12:55:38 -0700 (PDT) (envelope-from obrien) Message-Id: <200204121955.g3CJtcV71994@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 12 Apr 2002 12:55:38 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils/ld configure.host X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/12 12:55:38 PDT Modified files: contrib/binutils/ld configure.host Log: Use the stock 2.12 snapshot version of this. Revision Changes Path 1.6 +67 -78 src/contrib/binutils/ld/configure.host To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 12:57:16 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by hub.freebsd.org (Postfix) with SMTP id AA56F37B405 for ; Fri, 12 Apr 2002 12:57:11 -0700 (PDT) Received: (qmail 30789 invoked by uid 0); 12 Apr 2002 19:57:09 -0000 Received: from pd9538f17.dip.t-dialin.net (HELO forge.local) (217.83.143.23) by mail.gmx.net (mp001-rz3) with SMTP; 12 Apr 2002 19:57:09 -0000 Received: from tmm by forge.local with local (Exim 3.35 #1) id 16w7AU-0000oA-00; Fri, 12 Apr 2002 21:57:10 +0200 Date: Fri, 12 Apr 2002 21:57:10 +0200 From: Thomas Moestl To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sys_pipe.c Message-ID: <20020412195710.GA290@crow.dom2ip.de> Mail-Followup-To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200204121938.g3CJcfk69260@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204121938.g3CJcfk69260@freefall.freebsd.org> User-Agent: Mutt/1.3.28i Sender: owner-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, 2002/04/12 at 12:38:41 -0700, Thomas Moestl wrote: > tmm 2002/04/12 12:38:41 PDT > > Modified files: > sys/kern sys_pipe.c > Log: > Do not use pmap_kextract() to find out the physical address of a user > belong to a user virtual address; Hrm, that was supposed to read "to find out the physical address belonging to a user virtual address". That's what you get for not re-reading after extensive editing :) - thomas -- Thomas Moestl http://www.tu-bs.de/~y0015675/ http://people.FreeBSD.org/~tmm/ PGP fingerprint: 1C97 A604 2BD0 E492 51D0 9C0F 1FE6 4F1D 419C 776C To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 12:59: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 7BACB37B400; Fri, 12 Apr 2002 12:59:42 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CJxgu72633; Fri, 12 Apr 2002 12:59:42 -0700 (PDT) (envelope-from obrien) Message-Id: <200204121959.g3CJxgu72633@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 12 Apr 2002 12:59:42 -0700 (PDT) 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/04/12 12:59:42 PDT Modified files: gnu/usr.bin/binutils Makefile.inc0 Log: Updated to a 10-April-2002 2.12 branch snapshot. This fixes serious problems in ld's symbol handling. Revision Changes Path 1.27 +2 -2 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 Fri Apr 12 13: 0: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 ED31137B400; Fri, 12 Apr 2002 13:00:44 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CK0iM73073; Fri, 12 Apr 2002 13:00:44 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204122000.g3CK0iM73073@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 12 Apr 2002 13:00:44 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/libgail-gnome Makefile distinfo pkg-comment pkg-descr pkg-plist ports/x11-toolkits/libgail-gnome/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/04/12 13:00:44 PDT Modified files: x11-toolkits Makefile Added files: x11-toolkits/libgail-gnome Makefile distinfo pkg-comment pkg-descr pkg-plist x11-toolkits/libgail-gnome/files patch-ltmain.sh Log: Add libgail-gnome 0.5.0, an implementation of the ATK interfaces for GNOME widgets. This is the last brick in the wall called GNOME2 Development Platform. Revision Changes Path 1.171 +1 -0 ports/x11-toolkits/Makefile 1.1 +39 -0 ports/x11-toolkits/libgail-gnome/Makefile (new) 1.1 +1 -0 ports/x11-toolkits/libgail-gnome/distinfo (new) 1.1 +45 -0 ports/x11-toolkits/libgail-gnome/files/patch-ltmain.sh (new) 1.1 +1 -0 ports/x11-toolkits/libgail-gnome/pkg-comment (new) 1.1 +4 -0 ports/x11-toolkits/libgail-gnome/pkg-descr (new) 1.1 +4 -0 ports/x11-toolkits/libgail-gnome/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 Apr 12 13: 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 3ED4737B422; Fri, 12 Apr 2002 13:01:00 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CK10f73164; Fri, 12 Apr 2002 13:01:00 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204122001.g3CK10f73164@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 12 Apr 2002 13:01:00 -0700 (PDT) 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 sobomax 2002/04/12 13:00:59 PDT Modified files: . modules Log: libgail-gnome --> ports/x11-toolkits/libgail-gnome Revision Changes Path 1.4976 +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 Apr 12 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 CB85137B404; Fri, 12 Apr 2002 13:05:27 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CK5Rh77126; Fri, 12 Apr 2002 13:05:27 -0700 (PDT) (envelope-from des) Message-Id: <200204122005.g3CK5Rh77126@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 12 Apr 2002 13:05:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_self pam_self.8 pam_self.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/04/12 13:05:27 PDT Modified files: lib/libpam/modules/pam_self pam_self.8 pam_self.c Log: Rename the even_root option to allow_root. Sponsored by: DARPA, NAI Labs Revision Changes Path 1.8 +3 -4 src/lib/libpam/modules/pam_self/pam_self.8 1.8 +3 -3 src/lib/libpam/modules/pam_self/pam_self.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 13: 5: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 004AF37B43D; Fri, 12 Apr 2002 13:05:38 -0700 (PDT) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CK5br77855; Fri, 12 Apr 2002 13:05:37 -0700 (PDT) (envelope-from sobomax) Message-Id: <200204122005.g3CK5br77855@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 12 Apr 2002 13:05:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/jdk12-beta 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/04/12 13:05:37 PDT Modified files: java/jdk12-beta Makefile Log: Hand over maintainership to Java Boy (glewis). :))) Revision Changes Path 1.7 +2 -2 ports/java/jdk12-beta/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 13: 9: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 B2FF537B404; Fri, 12 Apr 2002 13:09:07 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CK97M78400; Fri, 12 Apr 2002 13:09:07 -0700 (PDT) (envelope-from des) Message-Id: <200204122009.g3CK97M78400@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 12 Apr 2002 13:09:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules modules.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 des 2002/04/12 13:09:07 PDT Modified files: lib/libpam/modules modules.inc Log: Add a pam_rhosts module, loosely based on code submitted by Danny Braniss. Submitted by: Danny Braniss Sponsored by: DARPA, NAI Labs Revision Changes Path 1.7 +1 -0 src/lib/libpam/modules/modules.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 13: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 2500237B404; Fri, 12 Apr 2002 13:10:19 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CKAJ878780; Fri, 12 Apr 2002 13:10:19 -0700 (PDT) (envelope-from des) Message-Id: <200204122010.g3CKAJ878780@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 12 Apr 2002 13:10:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_rhosts Makefile pam_rhosts.8 pam_rhosts.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/04/12 13:10:19 PDT Added files: lib/libpam/modules/pam_rhosts Makefile pam_rhosts.8 pam_rhosts.c Log: Add a pam_rhosts module, loosely based on code submitted by Danny Braniss. Submitted by: Danny Braniss Sponsored by: DARPA, NAI Labs Revision Changes Path 1.1 +7 -0 src/lib/libpam/modules/pam_rhosts/Makefile (new) 1.1 +95 -0 src/lib/libpam/modules/pam_rhosts/pam_rhosts.8 (new) 1.1 +93 -0 src/lib/libpam/modules/pam_rhosts/pam_rhosts.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 Apr 12 13:16: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 656CB37B400; Fri, 12 Apr 2002 13:16:15 -0700 (PDT) Received: (from charnier@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CKGFq80310; Fri, 12 Apr 2002 13:16:15 -0700 (PDT) (envelope-from charnier) Message-Id: <200204122016.g3CKGFq80310@freefall.freebsd.org> From: Philippe Charnier Date: Fri, 12 Apr 2002 13:16:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/games/hack hack.ioctl.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 charnier 2002/04/12 13:16:15 PDT Modified files: games/hack hack.ioctl.c Log: End of comment was missing at FreeBSD Id line. Switch to FBSDID. Revision Changes Path 1.3 +4 -1 src/games/hack/hack.ioctl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 13:23: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 2411537B41D; Fri, 12 Apr 2002 13:23:52 -0700 (PDT) Received: (from charnier@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CKNqY81443; Fri, 12 Apr 2002 13:23:52 -0700 (PDT) (envelope-from charnier) Message-Id: <200204122023.g3CKNqY81443@freefall.freebsd.org> From: Philippe Charnier Date: Fri, 12 Apr 2002 13:23:51 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/pax options.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 charnier 2002/04/12 13:23:51 PDT Modified files: bin/pax options.c Log: Do not return(f_returning_void());. Spell FALLTHROUGH to make it lint()able. Revision Changes Path 1.22 +15 -9 src/bin/pax/options.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 13:27:27 2002 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 664) id E3F5D37B416; Fri, 12 Apr 2002 13:27:21 -0700 (PDT) Date: Fri, 12 Apr 2002 13:27:21 -0700 From: David O'Brien To: Maxim Sobolev Cc: Gerald Pfeifer , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/emulators/wine Makefile distinfo pkg-plist Message-ID: <20020412132721.A66608@hub.freebsd.org> Reply-To: obrien@freebsd.org References: <200204121950.g3CJo0O21945@vega.vega.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200204121950.g3CJo0O21945@vega.vega.com>; from sobomax@FreeBSD.org on Fri, Apr 12, 2002 at 10:49:59PM +0300 X-Operating-System: FreeBSD 4.5-STABLE 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 Fri, Apr 12, 2002 at 10:49:59PM +0300, Maxim Sobolev wrote: > > > Reviewed by: ??? > > > Approved by: ??? > > > > I have been the maintainer of this port since 2000/05/18. > > > > And while David O'Brien (my mentor here) kindly has been and will be > > reviewing my patches to all other parts of FreeBSD, do I really need > > to have my changes to this port reviewed/approved by others now, after > > having submitted/reviewed/approved more than two dozen changes as > > maintainer of this port??? > > Yes, you need. This is normal part of your "mentored" period. You > mentor should have told you that. Uh... Why does he need it for a port he has maintained for that long? When I have committed his Wine patches (or any approved by him), I did not look at them at all. I just: patch < foo make cvs ci I agree with your statement about things outside of ports/emulators/wine. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 13:28: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 ACF4C37B419; Fri, 12 Apr 2002 13:28:06 -0700 (PDT) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CKS6f82153; Fri, 12 Apr 2002 13:28:06 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200204122028.g3CKS6f82153@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Fri, 12 Apr 2002 13:28:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/sendmail rc.sendmail X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gshapiro 2002/04/12 13:28:06 PDT Modified files: etc/sendmail rc.sendmail Log: Add my Copyright on this file so I can allow others to use it Revision Changes Path 1.2 +2 -1 src/etc/sendmail/rc.sendmail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 13:29: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 00F4637B404; Fri, 12 Apr 2002 13:29:12 -0700 (PDT) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CKTBR82309; Fri, 12 Apr 2002 13:29:11 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200204122029.g3CKTBR82309@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Fri, 12 Apr 2002 13:29:11 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/sendmail rc.sendmail 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 gshapiro 2002/04/12 13:29:11 PDT Modified files: (Branch: RELENG_4) etc/sendmail rc.sendmail Log: MFC: Add my Copyright on this file so I can allow others to use it Revision Changes Path 1.2 +2 -1 src/etc/sendmail/rc.sendmail Revision Changes Path 1.1.2.2 +2 -1 src/etc/sendmail/rc.sendmail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 13:37:41 2002 Delivered-To: cvs-all@freebsd.org Received: from mgr1.xmission.com (mgr1.xmission.com [198.60.22.201]) by hub.freebsd.org (Postfix) with ESMTP id B8A0937B400; Fri, 12 Apr 2002 13:37:35 -0700 (PDT) Received: from [207.135.128.145] (helo=misty.eyesbeyond.com) by mgr1.xmission.com with esmtp (Exim 3.22 #1) id 16w7na-0006nx-00; Fri, 12 Apr 2002 14:37:35 -0600 Received: (from glewis@localhost) by misty.eyesbeyond.com (8.11.6/8.11.6) id g3CKbUt28483; Sat, 13 Apr 2002 06:07:30 +0930 (CST) (envelope-from glewis) Date: Sat, 13 Apr 2002 06:07:30 +0930 From: Greg Lewis To: Maxim Sobolev Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/java/jdk12-beta Makefile Message-ID: <20020413060730.A28443@misty.eyesbeyond.com> References: <200204122005.g3CK5br77855@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: <200204122005.g3CK5br77855@freefall.freebsd.org>; from sobomax@FreeBSD.org on Fri, Apr 12, 2002 at 01:05:37PM -0700 Sender: owner-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, Apr 12, 2002 at 01:05:37PM -0700, Maxim Sobolev wrote: > sobomax 2002/04/12 13:05:37 PDT > > Modified files: > java/jdk12-beta Makefile > Log: > Hand over maintainership to Java Boy (glewis). :))) Does that mean my Super Power is "can port the JDK to FreeBSD"? I'd kinda been hoping for something more awe inspiring ;). -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 13:43: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from cs.rice.edu (cs.rice.edu [128.42.1.30]) by hub.freebsd.org (Postfix) with ESMTP id E19CF37B405; Fri, 12 Apr 2002 13:42:56 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by cs.rice.edu (Postfix) with ESMTP id EE46D18F4; Fri, 12 Apr 2002 15:42:53 -0500 (CDT) Received: by cs.rice.edu (Postfix, from userid 19572) id EFB5C18ED; Fri, 12 Apr 2002 15:42:37 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by cs.rice.edu (Postfix) with ESMTP id D323C18EC; Fri, 12 Apr 2002 15:42:37 -0500 (CDT) Date: Fri, 12 Apr 2002 15:42:37 -0500 (CDT) From: Alan Cox To: Thomas Moestl Cc: , Subject: Re: cvs commit: src/sys/kern sys_pipe.c In-Reply-To: <200204121938.g3CJcfk69260@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS snapshot-20010714 Sender: owner-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, 12 Apr 2002, Thomas Moestl wrote: > tmm 2002/04/12 12:38:41 PDT > > Modified files: > sys/kern sys_pipe.c > Log: > Do not use pmap_kextract() to find out the physical address of a user > belong to a user virtual address; while this happens to work on some > architectures, it can't on sparc64, since user and kernel virtual > address spaces overlap there (the distinction between them is done via > separate address space identifiers). > Why not pmap_extract() on the map->pmap? pmap_extract() is the equivalent of pmap_kextract() for ordinary pmap's, i.e., not the kernel pmap. Alan > Instead, look up the page in the vm_map of the process in question. > > Reviewed by: jake > > Revision Changes Path > 1.102 +17 -6 src/sys/kern/sys_pipe.c > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 14: 3:10 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by hub.freebsd.org (Postfix) with SMTP id 94C4337B404 for ; Fri, 12 Apr 2002 14:02:58 -0700 (PDT) Received: (qmail 13448 invoked by uid 0); 12 Apr 2002 21:02:47 -0000 Received: from pd9538f17.dip.t-dialin.net (HELO forge.local) (217.83.143.23) by mail.gmx.net (mp013-rz3) with SMTP; 12 Apr 2002 21:02:47 -0000 Received: from tmm by forge.local with local (Exim 3.35 #1) id 16w8C0-000103-00; Fri, 12 Apr 2002 23:02:48 +0200 Date: Fri, 12 Apr 2002 23:02:48 +0200 From: Thomas Moestl To: Alan Cox Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sys_pipe.c Message-ID: <20020412210248.GB290@crow.dom2ip.de> Mail-Followup-To: Alan Cox , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200204121938.g3CJcfk69260@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.28i Sender: owner-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, 2002/04/12 at 15:42:37 -0500, Alan Cox wrote: > > > On Fri, 12 Apr 2002, Thomas Moestl wrote: > > > tmm 2002/04/12 12:38:41 PDT > > > > Modified files: > > sys/kern sys_pipe.c > > Log: > > Do not use pmap_kextract() to find out the physical address of a user > > belong to a user virtual address; while this happens to work on some > > architectures, it can't on sparc64, since user and kernel virtual > > address spaces overlap there (the distinction between them is done via > > separate address space identifiers). > > > > Why not pmap_extract() on the map->pmap? pmap_extract() is the equivalent > of pmap_kextract() for ordinary pmap's, i.e., not the kernel pmap. Since a pmap module is allowed to drop a mapping at any time, this would unnecessarily open a race between the vm_fault_quick() and the pmap_extract() which might bite us later SMPng-wise. The same is in a way true for the code I committed (a pageout may happen in between), but that should be easy to fix when it is required (by just replacing the vm_fault_quick()/vm_page_wire() sequence with a vm_fault_user_wire()). - thomas -- Thomas Moestl http://www.tu-bs.de/~y0015675/ http://people.FreeBSD.org/~tmm/ PGP fingerprint: 1C97 A604 2BD0 E492 51D0 9C0F 1FE6 4F1D 419C 776C To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 14: 5:37 2002 Delivered-To: cvs-all@freebsd.org Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by hub.freebsd.org (Postfix) with ESMTP id C5B9037B400; Fri, 12 Apr 2002 14:05:29 -0700 (PDT) Received: (from jake@localhost) by k6.locore.ca (8.11.6/8.11.6) id g3CL8g215070; Fri, 12 Apr 2002 17:08:42 -0400 (EDT) (envelope-from jake) Date: Fri, 12 Apr 2002 17:08:42 -0400 From: Jake Burkholder To: Alan Cox Cc: Thomas Moestl , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sys_pipe.c Message-ID: <20020412170842.B10110@locore.ca> References: <200204121938.g3CJcfk69260@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 alc@cs.rice.edu on Fri, Apr 12, 2002 at 03:42:37PM -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 Apparently, On Fri, Apr 12, 2002 at 03:42:37PM -0500, Alan Cox said words to the effect of; > > > On Fri, 12 Apr 2002, Thomas Moestl wrote: > > > tmm 2002/04/12 12:38:41 PDT > > > > Modified files: > > sys/kern sys_pipe.c > > Log: > > Do not use pmap_kextract() to find out the physical address of a user > > belong to a user virtual address; while this happens to work on some > > architectures, it can't on sparc64, since user and kernel virtual > > address spaces overlap there (the distinction between them is done via > > separate address space identifiers). > > > > Why not pmap_extract() on the map->pmap? pmap_extract() is the equivalent > of pmap_kextract() for ordinary pmap's, i.e., not the kernel pmap. > > Alan Because the sparc64 pmap uses a hash table like structure for non-kernel pmaps with fixed size buckets. If there are too many hash collisions a mapping can be forced out causing a replacement and a soft fault on the next access. Basically, pmap_extract is not guaranteed to work for ordinary pmaps. Jake > > > Instead, look up the page in the vm_map of the process in question. > > > > Reviewed by: jake > > > > Revision Changes Path > > 1.102 +17 -6 src/sys/kern/sys_pipe.c > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 14:17: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 5A38037B400; Fri, 12 Apr 2002 14:17:38 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CLHcF92496; Fri, 12 Apr 2002 14:17:38 -0700 (PDT) (envelope-from jhb) Message-Id: <200204122117.g3CLHcF92496@freefall.freebsd.org> From: John Baldwin Date: Fri, 12 Apr 2002 14:17:38 -0700 (PDT) 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 jhb 2002/04/12 14:17:38 PDT Modified files: sys/kern sys_process.c Log: Rework ptrace(2) to be more locking friendly. We do any needed copyin()'s and acquire the proctree_lock if needed first. Then we lock the process if necessary and fiddle with it as appropriate. Finally we drop locks and do any needed copyout's. This greatly simplifies the locking. Revision Changes Path 1.89 +114 -86 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 Apr 12 14: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 A371237B404; Fri, 12 Apr 2002 14:18:05 -0700 (PDT) Received: (from charnier@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CLI5992593; Fri, 12 Apr 2002 14:18:05 -0700 (PDT) (envelope-from charnier) Message-Id: <200204122118.g3CLI5992593@freefall.freebsd.org> From: Philippe Charnier Date: Fri, 12 Apr 2002 14:18:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/doscmd cwd.c dos.h ems.c emuint.c emuint.h trace.c tty.c xms.c xms.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 charnier 2002/04/12 14:18:05 PDT Modified files: usr.bin/doscmd cwd.c dos.h ems.c emuint.c emuint.h trace.c tty.c xms.c xms.h Log: Reduce the number of spelling mistakes. Revision Changes Path 1.15 +2 -2 src/usr.bin/doscmd/cwd.c 1.5 +3 -3 src/usr.bin/doscmd/dos.h 1.11 +3 -3 src/usr.bin/doscmd/ems.c 1.6 +1 -1 src/usr.bin/doscmd/emuint.c 1.3 +1 -1 src/usr.bin/doscmd/emuint.h 1.10 +2 -2 src/usr.bin/doscmd/trace.c 1.25 +2 -2 src/usr.bin/doscmd/tty.c 1.14 +5 -5 src/usr.bin/doscmd/xms.c 1.3 +4 -4 src/usr.bin/doscmd/xms.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 14:21:43 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail11.speakeasy.net [216.254.0.211]) by hub.freebsd.org (Postfix) with ESMTP id D481537B405 for ; Fri, 12 Apr 2002 14:21:36 -0700 (PDT) Received: (qmail 1426 invoked from network); 12 Apr 2002 21:21:35 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail11.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 12 Apr 2002 21:21:35 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g3CLMQv62231; Fri, 12 Apr 2002 17:22:26 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <200204122117.g3CLHcF92496@freefall.freebsd.org> Date: Fri, 12 Apr 2002 17:20:48 -0400 (EDT) From: John Baldwin To: John Baldwin Subject: RE: cvs commit: src/sys/kern sys_process.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 12-Apr-2002 John Baldwin wrote: > jhb 2002/04/12 14:17:38 PDT > > Modified files: > sys/kern sys_process.c > Log: > Rework ptrace(2) to be more locking friendly. We do any needed copyin()'s > and acquire the proctree_lock if needed first. Then we lock the process > if necessary and fiddle with it as appropriate. Finally we drop locks and > do any needed copyout's. This greatly simplifies the locking. I've tested this on i386 lightly (gdb still works for a trivial program as far as breakpoints and running it.) Since gdb on alpha is busted this wasn't tested on alpha. :-( I would appreciate if people would make sure I haven't broken things. They shouldn't be broken in theory, but practice doesn't always == theory. -- 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 Fri Apr 12 14:25: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 A2F9737B431; Fri, 12 Apr 2002 14:25:16 -0700 (PDT) Received: (from charnier@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CLPGw93588; Fri, 12 Apr 2002 14:25:16 -0700 (PDT) (envelope-from charnier) Message-Id: <200204122125.g3CLPGw93588@freefall.freebsd.org> From: Philippe Charnier Date: Fri, 12 Apr 2002 14:25:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/find operator.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 charnier 2002/04/12 14:25:16 PDT Modified files: usr.bin/find operator.c Log: Replace err() with errx(), errno is garbage in this context. Revision Changes Path 1.13 +1 -1 src/usr.bin/find/operator.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 14:31: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 6817637B400; Fri, 12 Apr 2002 14:31:24 -0700 (PDT) Received: (from charnier@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CLVOG94312; Fri, 12 Apr 2002 14:31:24 -0700 (PDT) (envelope-from charnier) Message-Id: <200204122131.g3CLVOG94312@freefall.freebsd.org> From: Philippe Charnier Date: Fri, 12 Apr 2002 14:31:24 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/fstat fstat.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 charnier 2002/04/12 14:31:24 PDT Modified files: usr.bin/fstat fstat.1 Log: .Ar filename ... is equivalent to .Ar. Revision Changes Path 1.16 +2 -2 src/usr.bin/fstat/fstat.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 14:36:11 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 79ACF37B405; Fri, 12 Apr 2002 14:36:08 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3CLa7Ym030813; Fri, 12 Apr 2002 14:36:07 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3CLYpXo030784; Fri, 12 Apr 2002 14:34:51 -0700 (PDT) Date: Fri, 12 Apr 2002 14:34:51 -0700 From: "David O'Brien" To: John Baldwin Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sys_process.c Message-ID: <20020412143451.A30746@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200204122117.g3CLHcF92496@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 jhb@FreeBSD.org on Fri, Apr 12, 2002 at 05:20:48PM -0400 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 Fri, Apr 12, 2002 at 05:20:48PM -0400, John Baldwin wrote: > Since gdb on alpha is busted this wasn't tested on alpha. :-( Grab the binary from the 4.5-RELEASE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 14:36: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 0061137B419; Fri, 12 Apr 2002 14:36:55 -0700 (PDT) Received: (from charnier@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CLasY95208; Fri, 12 Apr 2002 14:36:54 -0700 (PDT) (envelope-from charnier) Message-Id: <200204122136.g3CLasY95208@freefall.freebsd.org> From: Philippe Charnier Date: Fri, 12 Apr 2002 14:36:54 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/gcore gcore.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 charnier 2002/04/12 14:36:54 PDT Modified files: usr.bin/gcore gcore.c Log: Do not print error message twice. Revision Changes Path 1.25 +5 -3 src/usr.bin/gcore/gcore.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 14:46: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 918FD37B404; Fri, 12 Apr 2002 14:46:23 -0700 (PDT) Received: by leviathan.inethouston.net (Postfix, from userid 1001) id 9BB903198C4; Fri, 12 Apr 2002 16:46:22 -0500 (CDT) Date: Fri, 12 Apr 2002 16:46:22 -0500 From: "David W. Chapman Jr." To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, kde@freebsd.org Subject: Re: cvs commit: src/contrib/binutils - Imported sources Message-ID: <20020412214622.GC56084@leviathan.inethouston.net> Reply-To: "David W. Chapman Jr." Mail-Followup-To: "David E. O'Brien" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, kde@freebsd.org References: <200204121934.g3CJYhf68745@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204121934.g3CJYhf68745@freefall.freebsd.org> User-Agent: Mutt/1.3.28i 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 On Fri, Apr 12, 2002 at 12:34:43PM -0700, David E. O'Brien wrote: > obrien 2002/04/12 12:34:43 PDT > > src/contrib/binutils - Imported sources > Update of /home/ncvs/src/contrib/binutils > In directory freefall.freebsd.org:/c/tmp/cvs-serv67826 > > Log Message: > Import of Binutils from the FSF 2.12 branch. > (this fixes several linker problems and coredumps) > These bits are taken from the FSF anoncvs repo on 10-April-2002 13:24 Zulu > Is it known if one of the linker problems that is fixed in this version is the objprelink problem? If its not known, I can rebuild kde tonight and test kde with OBJPRELINK -- 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 Fri Apr 12 15: 0: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 B5AD637B404; Fri, 12 Apr 2002 15:00:04 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CM04798618; Fri, 12 Apr 2002 15:00:04 -0700 (PDT) (envelope-from knu) Message-Id: <200204122200.g3CM04798618@freefall.freebsd.org> From: Akinori MUSHA Date: Fri, 12 Apr 2002 15:00:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/ruby-webunit 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/04/12 15:00:04 PDT Modified files: www/ruby-webunit Makefile distinfo pkg-descr pkg-plist Log: Update to 20020410. Revision Changes Path 1.6 +2 -2 ports/www/ruby-webunit/Makefile 1.5 +1 -1 ports/www/ruby-webunit/distinfo 1.2 +2 -2 ports/www/ruby-webunit/pkg-descr 1.3 +2 -2 ports/www/ruby-webunit/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 Apr 12 15: 6: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 C53C737B400; Fri, 12 Apr 2002 15:06:16 -0700 (PDT) Received: (from trhodes@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CM6G603461; Fri, 12 Apr 2002 15:06:16 -0700 (PDT) (envelope-from trhodes) Message-Id: <200204122206.g3CM6G603461@freefall.freebsd.org> From: Tom Rhodes Date: Fri, 12 Apr 2002 15:06:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 tap.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 trhodes 2002/04/12 15:06:16 PDT Modified files: share/man/man4 tap.4 Log: Make a few content fixes/additions to tap(4) manual page. PR: 36985 Submitted by: Hiten Pandya MFC after: 4 days Revision Changes Path 1.12 +24 -17 src/share/man/man4/tap.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 15:16:52 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 C230537B416; Fri, 12 Apr 2002 15:16:48 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3CMGiYm031113; Fri, 12 Apr 2002 15:16:44 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3CMFTIU031093; Fri, 12 Apr 2002 15:15:29 -0700 (PDT) Date: Fri, 12 Apr 2002 15:15:29 -0700 From: "David O'Brien" To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, kde@FreeBSD.org Subject: Re: cvs commit: src/contrib/binutils - Imported sources Message-ID: <20020412151529.B31056@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200204121934.g3CJYhf68745@freefall.freebsd.org> <20020412214622.GC56084@leviathan.inethouston.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020412214622.GC56084@leviathan.inethouston.net>; from dwcjr@inethouston.net on Fri, Apr 12, 2002 at 04:46:22PM -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 Fri, Apr 12, 2002 at 04:46:22PM -0500, David W. Chapman Jr. wrote: > On Fri, Apr 12, 2002 at 12:34:43PM -0700, David E. O'Brien wrote: > > obrien 2002/04/12 12:34:43 PDT > > > > src/contrib/binutils - Imported sources > > Update of /home/ncvs/src/contrib/binutils > > In directory freefall.freebsd.org:/c/tmp/cvs-serv67826 > > > > Log Message: > > Import of Binutils from the FSF 2.12 branch. > > (this fixes several linker problems and coredumps) > > These bits are taken from the FSF anoncvs repo on 10-April-2002 13:24 Zulu > > > Is it known if one of the linker problems that is fixed in this > version is the objprelink problem? If its not known, I can rebuild > kde tonight and test kde with OBJPRELINK I do not know. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 15:18:20 2002 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 8219F37B405; Fri, 12 Apr 2002 15:18:12 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [IPv6:fec0::1:12]) by Awfulhak.org (8.12.2/8.11.6) with ESMTP id g3CMIAEv002442; Fri, 12 Apr 2002 23:18:10 +0100 (BST) (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.12.2/8.12.2) with ESMTP id g3CMI1OF096403; Fri, 12 Apr 2002 23:18:01 +0100 (BST) (envelope-from brian@freebsd-services.com) Message-Id: <200204122218.g3CMI1OF096403@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Philippe Charnier Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/usr.bin/make job.c main.c make.1 In-Reply-To: Message from Philippe Charnier of "Fri, 12 Apr 2002 06:23:34 PDT." <200204121323.g3CDNYO71020@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 12 Apr 2002 23:18:01 +0100 From: Brian Somers Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > charnier 2002/04/12 06:23:34 PDT > > Modified files: > usr.bin/make job.c main.c make.1 > Log: > Reorder #include. Cast arg #2 of lseek to an off_t when constant. No need to > test if failsafe memory allocation fails, it can't. perror -> warn. Use > failsafe memory allocation provided. > > Use .Pa and .Ar. Uppercase (first letter) programname after dot. > > Revision Changes Path > 1.29 +6 -8 src/usr.bin/make/job.c > 1.52 +4 -10 src/usr.bin/make/main.c > 1.49 +18 -14 src/usr.bin/make/make.1 I believe that the last time this came up, the consensus what that program names aren't capitalised, even if they're the first word in a sentence. -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 15:22: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 97BE137B416; Fri, 12 Apr 2002 15:22:27 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CMMRr05430; Fri, 12 Apr 2002 15:22:27 -0700 (PDT) (envelope-from des) Message-Id: <200204122222.g3CMMRr05430@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 12 Apr 2002 15:22:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/openpam/include/security openpam.h X-FreeBSD-CVS-Branch: OPENPAM Sender: owner-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/04/12 15:22:27 PDT Modified files: (Branch: OPENPAM) contrib/openpam/include/security openpam.h Log: Fix typo in openpam_log macro (perforce change 9634) Sponsored by: DARPA, NAI Labs Revision Changes Path 1.1.1.8 +2 -2 src/contrib/openpam/include/security/openpam.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 15: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 B5F9A37B47A; Fri, 12 Apr 2002 15:27:25 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CMRPG06609; Fri, 12 Apr 2002 15:27:25 -0700 (PDT) (envelope-from des) Message-Id: <200204122227.g3CMRPG06609@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 12 Apr 2002 15:27:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/libpam pam_debug_log.c src/lib/libpam/libpam/security pam_mod_misc.h src/lib/libpam/modules/pam_deny pam_deny.c src/lib/libpam/modules/pam_ftp pam_ftp.c src/lib/libpam/modules/pam_kerberosIV klogin.c klogin.h pam_kerberosIV.c src/lib/libpam/modules/pam_krb5 ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/12 15:27:25 PDT Modified files: lib/libpam/libpam pam_debug_log.c lib/libpam/libpam/security pam_mod_misc.h lib/libpam/modules/pam_deny pam_deny.c lib/libpam/modules/pam_ftp pam_ftp.c lib/libpam/modules/pam_kerberosIV klogin.c 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 Added files: lib/libpam/modules/pam_kerberosIV klogin.h Log: Major cleanup: - add __unused where appropriate - PAM_RETURN -> return since OpenPAM already logs the return value. - make PAM_LOG use openpam_log() - make PAM_VERBOSE_ERROR use openpam_get_option() and check flags for PAM_SILENT - remove dummy functions since OpenPAM handles missing service functions - fix various warnings Sponsored by: DARPA, NAI Labs Revision Changes Path 1.6 +10 -84 src/lib/libpam/libpam/pam_debug_log.c 1.10 +4 -9 src/lib/libpam/libpam/security/pam_mod_misc.h 1.9 +22 -54 src/lib/libpam/modules/pam_deny/pam_deny.c 1.11 +11 -65 src/lib/libpam/modules/pam_ftp/pam_ftp.c 1.13 +3 -4 src/lib/libpam/modules/pam_kerberosIV/klogin.c 1.1 +5 -0 src/lib/libpam/modules/pam_kerberosIV/klogin.h (new) 1.10 +26 -28 src/lib/libpam/modules/pam_kerberosIV/pam_kerberosIV.c 1.8 +89 -109 src/lib/libpam/modules/pam_krb5/pam_krb5.c 1.10 +22 -83 src/lib/libpam/modules/pam_lastlog/pam_lastlog.c 1.8 +9 -76 src/lib/libpam/modules/pam_login_access/pam_login_access.c 1.10 +11 -70 src/lib/libpam/modules/pam_nologin/pam_nologin.c 1.22 +15 -69 src/lib/libpam/modules/pam_opie/pam_opie.c 1.9 +14 -73 src/lib/libpam/modules/pam_opieaccess/pam_opieaccess.c 1.8 +21 -57 src/lib/libpam/modules/pam_permit/pam_permit.c 1.12 +37 -88 src/lib/libpam/modules/pam_radius/pam_radius.c 1.8 +7 -66 src/lib/libpam/modules/pam_rootok/pam_rootok.c 1.11 +9 -77 src/lib/libpam/modules/pam_securetty/pam_securetty.c 1.9 +14 -80 src/lib/libpam/modules/pam_self/pam_self.c 1.35 +81 -102 src/lib/libpam/modules/pam_ssh/pam_ssh.c 1.12 +29 -81 src/lib/libpam/modules/pam_tacplus/pam_tacplus.c 1.32 +36 -67 src/lib/libpam/modules/pam_unix/pam_unix.c 1.11 +24 -73 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 Fri Apr 12 15: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 A675837B427; Fri, 12 Apr 2002 15:28:22 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CMSMP06816; Fri, 12 Apr 2002 15:28:22 -0700 (PDT) (envelope-from marcus) Message-Id: <200204122228.g3CMSMP06816@freefall.freebsd.org> From: Joe Marcus Clarke Date: Fri, 12 Apr 2002 15:28:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/gnomecommon 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 marcus 2002/04/12 15:28:22 PDT Modified files: devel Makefile Added files: devel/gnomecommon Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add gnomecommon, a collection common GNOME 2.0 automake macros. Reviewed by: sobomax Approved by: sobomax Revision Changes Path 1.796 +1 -0 ports/devel/Makefile 1.1 +24 -0 ports/devel/gnomecommon/Makefile (new) 1.1 +1 -0 ports/devel/gnomecommon/distinfo (new) 1.1 +1 -0 ports/devel/gnomecommon/pkg-comment (new) 1.1 +4 -0 ports/devel/gnomecommon/pkg-descr (new) 1.1 +42 -0 ports/devel/gnomecommon/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 Apr 12 15:32: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 CF3E037B433; Fri, 12 Apr 2002 15:28:24 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CMSOC06850; Fri, 12 Apr 2002 15:28:24 -0700 (PDT) (envelope-from marcus) Message-Id: <200204122228.g3CMSOC06850@freefall.freebsd.org> From: Joe Marcus Clarke Date: Fri, 12 Apr 2002 15:28:24 -0700 (PDT) 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 marcus 2002/04/12 15:28:24 PDT Modified files: . modules Log: gnomecommon --> ports/devel/gnomecommon Revision Changes Path 1.4977 +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 Apr 12 15:54: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from cs.rice.edu (cs.rice.edu [128.42.1.30]) by hub.freebsd.org (Postfix) with ESMTP id EF63937B400; Fri, 12 Apr 2002 15:53:52 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by cs.rice.edu (Postfix) with ESMTP id 5AC5918F7; Fri, 12 Apr 2002 17:53:52 -0500 (CDT) Received: by cs.rice.edu (Postfix, from userid 19572) id A231718F8; Fri, 12 Apr 2002 17:53:50 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by cs.rice.edu (Postfix) with ESMTP id 8A4F318F7; Fri, 12 Apr 2002 17:53:50 -0500 (CDT) Date: Fri, 12 Apr 2002 17:53:50 -0500 (CDT) From: Alan Cox To: Jake Burkholder Cc: Thomas Moestl , , Subject: Re: cvs commit: src/sys/kern sys_pipe.c In-Reply-To: <20020412170842.B10110@locore.ca> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS snapshot-20010714 Sender: owner-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, 12 Apr 2002, Jake Burkholder wrote: > Apparently, On Fri, Apr 12, 2002 at 03:42:37PM -0500, > Alan Cox said words to the effect of; > > > > > > > On Fri, 12 Apr 2002, Thomas Moestl wrote: > > > > > tmm 2002/04/12 12:38:41 PDT > > > > > > Modified files: > > > sys/kern sys_pipe.c > > > Log: > > > Do not use pmap_kextract() to find out the physical address of a user > > > belong to a user virtual address; while this happens to work on some > > > architectures, it can't on sparc64, since user and kernel virtual > > > address spaces overlap there (the distinction between them is done via > > > separate address space identifiers). > > > > > > > Why not pmap_extract() on the map->pmap? pmap_extract() is the equivalent > > of pmap_kextract() for ordinary pmap's, i.e., not the kernel pmap. > > > > Alan > > Because the sparc64 pmap uses a hash table like structure for non-kernel > pmaps with fixed size buckets. If there are too many hash collisions a > mapping can be forced out causing a replacement and a soft fault on the > next access. Basically, pmap_extract is not guaranteed to work for ordinary > pmaps. > The previous line is a vm_fault_quick() that should trigger the soft fault so that pmap_extract() returns a useful value. Alan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 16:15: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 AFDC737B405; Fri, 12 Apr 2002 16:15:33 -0700 (PDT) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CNFXu16234; Fri, 12 Apr 2002 16:15:33 -0700 (PDT) (envelope-from lioux) Message-Id: <200204122315.g3CNFXu16234@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Fri, 12 Apr 2002 16:15:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/qmail 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/04/12 16:15:32 PDT Modified files: mail/qmail Makefile Log: Sanitize MASTER_SITES Submitted by: fenner distifile survey Revision Changes Path 1.35 +0 -33 ports/mail/qmail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 16:17:33 2002 Delivered-To: cvs-all@freebsd.org Received: from cs.rice.edu (cs.rice.edu [128.42.1.30]) by hub.freebsd.org (Postfix) with ESMTP id 759FE37B400; Fri, 12 Apr 2002 16:17:24 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by cs.rice.edu (Postfix) with ESMTP id CAFEC18B4; Fri, 12 Apr 2002 18:17:23 -0500 (CDT) Received: by cs.rice.edu (Postfix, from userid 19572) id DD54318F8; Fri, 12 Apr 2002 18:17:21 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by cs.rice.edu (Postfix) with ESMTP id C67AF18B4; Fri, 12 Apr 2002 18:17:21 -0500 (CDT) Date: Fri, 12 Apr 2002 18:17:21 -0500 (CDT) From: Alan Cox To: Thomas Moestl Cc: , Subject: Re: cvs commit: src/sys/kern sys_pipe.c In-Reply-To: <20020412210248.GB290@crow.dom2ip.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS snapshot-20010714 Sender: owner-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, 12 Apr 2002, Thomas Moestl wrote: > On Fri, 2002/04/12 at 15:42:37 -0500, Alan Cox wrote: > > > > > > On Fri, 12 Apr 2002, Thomas Moestl wrote: > > > > > tmm 2002/04/12 12:38:41 PDT > > > > > > Modified files: > > > sys/kern sys_pipe.c > > > Log: > > > Do not use pmap_kextract() to find out the physical address of a user > > > belong to a user virtual address; while this happens to work on some > > > architectures, it can't on sparc64, since user and kernel virtual > > > address spaces overlap there (the distinction between them is done via > > > separate address space identifiers). > > > > > > > Why not pmap_extract() on the map->pmap? pmap_extract() is the equivalent > > of pmap_kextract() for ordinary pmap's, i.e., not the kernel pmap. > > Since a pmap module is allowed to drop a mapping at any time, this > would unnecessarily open a race between the vm_fault_quick() and the > pmap_extract() which might bite us later SMPng-wise. > The same is in a way true for the code I committed (a pageout may > happen in between), but that should be easy to fix when it is required > (by just replacing the vm_fault_quick()/vm_page_wire() sequence with a > vm_fault_user_wire()). With Giant out of the picture, I agree that there is a race condition in both the old code and in your new code. The same race condition also exists in vmapbuf() that's used by both the physio and aio code. My concern is that vm_map_lookup(), etc. are not cheap operations ... to the point that copying the data would become cheaper in some cases. I think in the short term you should use pmap_extract() to resolve the issue that the address is in user-space and not kernel-space. This is without question a "bug" in the old code. pmap_kextract() is faster, so that's almost certainly why it's been used. And, in the long term, we need to find a way to make the combination of vm_fault_quick()/pmap_extract() atomic. Also, at a low-level, your new code has a bug: You assume that the page will be found in the top-level vm object. If the sending process has forked between the time that the buffer was initialized and sent down the pipe, the pages may not be in the top-level vm object. I'm afraid that you need to recur on the shadow chain. Alan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 16:19:40 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 7C36B37B416; Fri, 12 Apr 2002 16:19:34 -0700 (PDT) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.6/8.11.6) with SMTP id g3CNJRw19871; Fri, 12 Apr 2002 19:19:27 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Fri, 12 Apr 2002 19:19:26 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Coleman Kane Cc: John Baldwin , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, cvs@FreeBSD.org Subject: Re: cvs commit: src/sys/pci agp_amd.c agpreg.h In-Reply-To: <20020412141839.B41510@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 Fri, 12 Apr 2002, Coleman Kane wrote: > Alright, I will do that. The code currently causes crashes (to kdb) in > RELENG_4_5 when enabled, so that's why I committed it. This suggests we need some sort of access control on the branch -- this isn't the first "oops, I didn't realize" commit, but these commits really muck up automated version control for patches. Please ask cvs@ to remove the change from CVS using CVS editing magic. > > -- > coleman > > On Fri, Apr 12, 2002 at 01:22:28PM -0400, John Baldwin wrote: > > > > On 12-Apr-2002 Coleman Kane wrote: > > > cokane 2002/04/12 10:05:48 PDT > > > > > > Modified files: (Branch: RELENG_4_5) > > > sys/pci agp_amd.c agpreg.h > > > Log: > > > This should fix the lock-ups associated with AGP and AMD761 chips. > > > The previous revision was rather hastily MFC'd before the 761 got any > > > real testing. > > > > > > Obtained from: Eirc Anholt > > > > Commits to the RELENG_X_Y branches (aka release branches) need to be > > approved by either the release engineers or the security officer team. > > You should probably back this out and run it by re@ first. For one thing > > there are extra steps involved with committing changes to these branches > > including adding a note to UPDATING and bumping the patch version. > > > > -- > > > > 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 Fri Apr 12 16: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 69A0937B405; Fri, 12 Apr 2002 16:20:30 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3CNKUv16781; Fri, 12 Apr 2002 16:20:30 -0700 (PDT) (envelope-from des) Message-Id: <200204122320.g3CNKUv16781@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 12 Apr 2002 16:20:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/pam.d rsh X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/12 16:20:30 PDT Modified files: etc/pam.d rsh Log: Use pam_rhosts(8). Revision Changes Path 1.3 +2 -2 src/etc/pam.d/rsh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 16:46: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by hub.freebsd.org (Postfix) with SMTP id EB4F437B405 for ; Fri, 12 Apr 2002 16:45:57 -0700 (PDT) Received: (qmail 26269 invoked by uid 0); 12 Apr 2002 23:45:56 -0000 Received: from pd9538f17.dip.t-dialin.net (HELO forge.local) (217.83.143.23) by mail.gmx.net (mp004-rz3) with SMTP; 12 Apr 2002 23:45:56 -0000 Received: from tmm by forge.local with local (Exim 3.35 #1) id 16wAjs-0001Yp-00; Sat, 13 Apr 2002 01:45:56 +0200 Date: Sat, 13 Apr 2002 01:45:56 +0200 From: Thomas Moestl To: Alan Cox Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sys_pipe.c Message-ID: <20020412234534.GC290@crow.dom2ip.de> Mail-Followup-To: Alan Cox , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <20020412210248.GB290@crow.dom2ip.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.28i Sender: owner-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, 2002/04/12 at 18:17:21 -0500, Alan Cox wrote: > > > On Fri, 12 Apr 2002, Thomas Moestl wrote: > > > On Fri, 2002/04/12 at 15:42:37 -0500, Alan Cox wrote: > > > > > > > > > On Fri, 12 Apr 2002, Thomas Moestl wrote: > > > > > > > tmm 2002/04/12 12:38:41 PDT > > > > > > > > Modified files: > > > > sys/kern sys_pipe.c > > > > Log: > > > > Do not use pmap_kextract() to find out the physical address of a user > > > > belong to a user virtual address; while this happens to work on some > > > > architectures, it can't on sparc64, since user and kernel virtual > > > > address spaces overlap there (the distinction between them is done via > > > > separate address space identifiers). > > > > > > > > > > Why not pmap_extract() on the map->pmap? pmap_extract() is the equivalent > > > of pmap_kextract() for ordinary pmap's, i.e., not the kernel pmap. > > > > Since a pmap module is allowed to drop a mapping at any time, this > > would unnecessarily open a race between the vm_fault_quick() and the > > pmap_extract() which might bite us later SMPng-wise. > > The same is in a way true for the code I committed (a pageout may > > happen in between), but that should be easy to fix when it is required > > (by just replacing the vm_fault_quick()/vm_page_wire() sequence with a > > vm_fault_user_wire()). > > With Giant out of the picture, I agree that there is a race condition in > both the old code and in your new code. The same race condition > also exists in vmapbuf() that's used by both the physio and aio code. My > concern is that vm_map_lookup(), etc. are not cheap operations ... to the > point that copying the data would become cheaper in some cases. > > I think in the short term you should use pmap_extract() to resolve the > issue that the address is in user-space and not kernel-space. This is > without question a "bug" in the old code. pmap_kextract() is faster, so > that's almost certainly why it's been used. And, in the long term, we > need to find a way to make the combination of > vm_fault_quick()/pmap_extract() atomic. > > Also, at a low-level, your new code has a bug: You assume that the page > will be found in the top-level vm object. If the sending process has > forked between the time that the buffer was initialized and sent down the > pipe, the pages may not be in the top-level vm object. I'm afraid that > you need to recur on the shadow chain. Uuh. That's of course correct, I should have thought of that :( Using my method, vm_fault_user_wire() would indeed have been required. I'm backing this out for now, and will redo it tomorrow, using pmap_extract() as you proposed. Sorry for the trouble. - thomas -- Thomas Moestl http://www.tu-bs.de/~y0015675/ http://people.FreeBSD.org/~tmm/ PGP fingerprint: 1C97 A604 2BD0 E492 51D0 9C0F 1FE6 4F1D 419C 776C To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 16:51:58 2002 Delivered-To: cvs-all@freebsd.org Received: from cs.rice.edu (cs.rice.edu [128.42.1.30]) by hub.freebsd.org (Postfix) with ESMTP id 684CA37B405; Fri, 12 Apr 2002 16:51:53 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by cs.rice.edu (Postfix) with ESMTP id AD3E618F4; Fri, 12 Apr 2002 18:51:52 -0500 (CDT) Received: by cs.rice.edu (Postfix, from userid 19572) id 6ABA218FD; Fri, 12 Apr 2002 18:51:49 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by cs.rice.edu (Postfix) with ESMTP id 50C7A18F9; Fri, 12 Apr 2002 18:51:49 -0500 (CDT) Date: Fri, 12 Apr 2002 18:51:48 -0500 (CDT) From: Alan Cox To: Thomas Moestl Cc: , Subject: Re: cvs commit: src/sys/kern sys_pipe.c In-Reply-To: <20020412234534.GC290@crow.dom2ip.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS snapshot-20010714 Sender: owner-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, 13 Apr 2002, Thomas Moestl wrote: > Uuh. That's of course correct, I should have thought of that :( > Using my method, vm_fault_user_wire() would indeed have been > required. > I'm backing this out for now, and will redo it tomorrow, using > pmap_extract() as you proposed. > > Sorry for the trouble. > It's no trouble! I'm happy to help, including reviewing the change if you like. Alan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 16:59:45 2002 Delivered-To: cvs-all@freebsd.org Received: from host213-123-130-182.in-addr.btopenworld.com (host213-123-130-182.in-addr.btopenworld.com [213.123.130.182]) by hub.freebsd.org (Postfix) with ESMTP id 3D60237B404; Fri, 12 Apr 2002 16:59:40 -0700 (PDT) Received: by host213-123-130-182.in-addr.btopenworld.com (Postfix, from userid 1001) id 14AA595; Sat, 13 Apr 2002 00:59:59 +0100 (BST) Date: Sat, 13 Apr 2002 00:59:59 +0100 From: Dominic Marks To: "David W. Chapman Jr." Cc: "David E. O'Brien" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, kde@freebsd.org Subject: Re: cvs commit: src/contrib/binutils - Imported sources Message-ID: <20020413005958.A12540@host213-123-130-182.in-addr.bto> References: <200204121934.g3CJYhf68745@freefall.freebsd.org> <20020412214622.GC56084@leviathan.inethouston.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020412214622.GC56084@leviathan.inethouston.net>; from dwcjr@inethouston.net on Fri, Apr 12, 2002 at 04:46:22PM -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 On Fri, Apr 12, 2002 at 04:46:22PM -0500, David W. Chapman Jr. wrote: > On Fri, Apr 12, 2002 at 12:34:43PM -0700, David E. O'Brien wrote: > > obrien 2002/04/12 12:34:43 PDT > > > > src/contrib/binutils - Imported sources > > Update of /home/ncvs/src/contrib/binutils > > In directory freefall.freebsd.org:/c/tmp/cvs-serv67826 > > > > Log Message: > > Import of Binutils from the FSF 2.12 branch. > > (this fixes several linker problems and coredumps) > > These bits are taken from the FSF anoncvs repo on 10-April-2002 13:24 Zulu > > > Is it known if one of the linker problems that is fixed in this > version is the objprelink problem? If its not known, I can rebuild > kde tonight and test kde with OBJPRELINK As objprelink porter/maintainer (+ help from will) I can tell you that it's costs outway its benefits. The improvement in performance could be described as minimal at best. It won't be used with KDE3 (its minor speed boost becomes meaningless). I suggest just pulling it out of your KDE build if it is causing you problems. Its not worth fighting with it. > -- > 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 -- Dominic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 17: 1: 8 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 C410E37B41D; Fri, 12 Apr 2002 17:01:04 -0700 (PDT) Received: from dwcjr (dwcjr [192.168.0.216]) by leviathan.inethouston.net (Postfix) with SMTP id 8C35C3198C3; Fri, 12 Apr 2002 19:01:04 -0500 (CDT) Message-ID: <00c201c1e27e$4bb7d4e0$d800a8c0@dwcjr> From: "David W. Chapman Jr." To: "Dominic Marks" Cc: , , References: <200204121934.g3CJYhf68745@freefall.freebsd.org> <20020412214622.GC56084@leviathan.inethouston.net> <20020413005958.A12540@host213-123-130-182.in-addr.bto> Subject: Re: cvs commit: src/contrib/binutils - Imported sources Date: Fri, 12 Apr 2002 19:01:00 -0500 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 > > Is it known if one of the linker problems that is fixed in this > > version is the objprelink problem? If its not known, I can rebuild > > kde tonight and test kde with OBJPRELINK > > As objprelink porter/maintainer (+ help from will) I can tell you that > it's costs outway its benefits. The improvement in performance could > be described as minimal at best. It won't be used with KDE3 (its minor > speed boost becomes meaningless). I suggest just pulling it out of > your KDE build if it is causing you problems. Its not worth fighting > with it. > Currently the kde ports won't link against objprelink, but I didn't know that it doesn't improve performance that much, thanks for the info. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 17: 3: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 9A96037B405; Fri, 12 Apr 2002 17:03:07 -0700 (PDT) Received: (from tmm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D037t21769; Fri, 12 Apr 2002 17:03:07 -0700 (PDT) (envelope-from tmm) Message-Id: <200204130003.g3D037t21769@freefall.freebsd.org> From: Thomas Moestl Date: Fri, 12 Apr 2002 17:03:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern sys_pipe.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/04/12 17:03:07 PDT Modified files: sys/kern sys_pipe.c Log: Back out the last revision - it does not work correctly when one of the pages in question is not in the top-level vm object, but in one of the shadow ones. Pointed out by: alc Pointy hat to: tmm Revision Changes Path 1.103 +6 -17 src/sys/kern/sys_pipe.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 17: 6:28 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 1928837B427; Fri, 12 Apr 2002 17:06:04 -0700 (PDT) Received: (from mike@localhost) by espresso.q9media.com (8.11.6/8.11.6) id g3CNx7v65490; Fri, 12 Apr 2002 19:59:07 -0400 (EDT) (envelope-from mike) Date: Fri, 12 Apr 2002 19:59:07 -0400 From: Mike Barcroft To: Brian Somers Cc: Philippe Charnier , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make job.c main.c make.1 Message-ID: <20020412195907.K28249@espresso.q9media.com> References: <200204122218.g3CMI1OF096403@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204122218.g3CMI1OF096403@hak.lan.Awfulhak.org>; from brian@freebsd-services.com on Fri, Apr 12, 2002 at 11:18:01PM +0100 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 Brian Somers writes: > > charnier 2002/04/12 06:23:34 PDT > > > > Modified files: > > usr.bin/make job.c main.c make.1 > > Log: > > Reorder #include. Cast arg #2 of lseek to an off_t when constant. No need to > > test if failsafe memory allocation fails, it can't. perror -> warn. Use > > failsafe memory allocation provided. > > > > Use .Pa and .Ar. Uppercase (first letter) programname after dot. > > > > Revision Changes Path > > 1.29 +6 -8 src/usr.bin/make/job.c > > 1.52 +4 -10 src/usr.bin/make/main.c > > 1.49 +18 -14 src/usr.bin/make/make.1 > > I believe that the last time this came up, the consensus what that > program names aren't capitalised, even if they're the first word in a > sentence. I prefer "The make utility..." or something to that affect. That way you don't need to break English or the reverse-proper name, make. 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 Fri Apr 12 17:18:21 2002 Delivered-To: cvs-all@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id ED09A37B404; Fri, 12 Apr 2002 17:18:14 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [IPv6:fec0::1:12]) by Awfulhak.org (8.12.2/8.11.6) with ESMTP id g3D0I9Ev002730; Sat, 13 Apr 2002 01:18:09 +0100 (BST) (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.12.2/8.12.2) with ESMTP id g3D0HxOF097410; Sat, 13 Apr 2002 01:17:59 +0100 (BST) (envelope-from brian@freebsd-services.com) Message-Id: <200204130017.g3D0HxOF097410@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Mike Barcroft Cc: Brian Somers , Philippe Charnier , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: src/usr.bin/make job.c main.c make.1 In-Reply-To: Message from Mike Barcroft of "Fri, 12 Apr 2002 19:59:07 EDT." <20020412195907.K28249@espresso.q9media.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 13 Apr 2002 01:17:59 +0100 From: Brian Somers Sender: owner-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 Somers writes: > > > charnier 2002/04/12 06:23:34 PDT > > > > > > Modified files: > > > usr.bin/make job.c main.c make.1 > > > Log: > > > Reorder #include. Cast arg #2 of lseek to an off_t when constant. No need to > > > test if failsafe memory allocation fails, it can't. perror -> warn. Use > > > failsafe memory allocation provided. > > > > > > Use .Pa and .Ar. Uppercase (first letter) programname after dot. > > > > > > Revision Changes Path > > > 1.29 +6 -8 src/usr.bin/make/job.c > > > 1.52 +4 -10 src/usr.bin/make/main.c > > > 1.49 +18 -14 src/usr.bin/make/make.1 > > > > I believe that the last time this came up, the consensus what that > > program names aren't capitalised, even if they're the first word in a > > sentence. > > I prefer "The make utility..." or something to that affect. That way > you don't need to break English or the reverse-proper name, make. Yes, avoiding the problem seems sensible :*) > Best regards, > Mike Barcroft -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 17: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 C7FA537B405; Fri, 12 Apr 2002 17:40:13 -0700 (PDT) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D0eDm33778; Fri, 12 Apr 2002 17:40:13 -0700 (PDT) (envelope-from keramida) Message-Id: <200204130040.g3D0eDm33778@freefall.freebsd.org> From: Giorgos Keramidas Date: Fri, 12 Apr 2002 17:40:12 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.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 keramida 2002/04/12 17:40:12 PDT Modified files: en_US.ISO8859-1/books/handbook/ppp-and-slip chapter.sgml Log: Add more stuff to the PPPoA section of the Handbook. PR: docs/37030 Submitted by: Dominic Marks Revision Changes Path 1.71 +72 -13 doc/en_US.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 17:51: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 C48CF37B416; Fri, 12 Apr 2002 17:51:50 -0700 (PDT) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D0poU34950; Fri, 12 Apr 2002 17:51:50 -0700 (PDT) (envelope-from keramida) Message-Id: <200204130051.g3D0poU34950@freefall.freebsd.org> From: Giorgos Keramidas Date: Fri, 12 Apr 2002 17:51:50 -0700 (PDT) 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 keramida 2002/04/12 17:51:50 PDT Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Add Dominic Marks to the hall of fame, crediting his submissions to our PR database and in hope of getting more work of the same high quality out of him :) Revision Changes Path 1.152 +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 Apr 12 18: 4: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 A270C37B405; Fri, 12 Apr 2002 18:04:08 -0700 (PDT) Received: (from glewis@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D148336194; Fri, 12 Apr 2002 18:04:08 -0700 (PDT) (envelope-from glewis) Message-Id: <200204130104.g3D148336194@freefall.freebsd.org> From: Greg Lewis Date: Fri, 12 Apr 2002 18:04:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/jdk12-beta 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 glewis 2002/04/12 18:04:08 PDT Modified files: java/jdk12-beta Makefile Log: Fix user and group ownership of the installed files when they have been built by someone other than root. Instead of moving the files with tar, move them with cpio and set up ownership. This leaves 11 of the ports listed in the PR still to go. PR: 36411 Submitted by: Alan Eldridge Reviewed by: sobomax Approved by: sobomax Revision Changes Path 1.8 +4 -4 ports/java/jdk12-beta/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 18:17: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 0AD6C37B422; Fri, 12 Apr 2002 18:17:22 -0700 (PDT) Received: (from eric@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D1HLH41237; Fri, 12 Apr 2002 18:17:21 -0700 (PDT) (envelope-from eric) Message-Id: <200204130117.g3D1HLH41237@freefall.freebsd.org> From: Eric Melville Date: Fri, 12 Apr 2002 18:17:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/man/man man.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 eric 2002/04/12 18:17:21 PDT Modified files: gnu/usr.bin/man/man man.c Log: Fix compilation in the non-FreeBSD case. Sponsored by: Apple Revision Changes Path 1.54 +2 -0 src/gnu/usr.bin/man/man/man.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 18: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 DE01937B433; Fri, 12 Apr 2002 18:21:19 -0700 (PDT) Received: (from horikawa@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D1LJE41947; Fri, 12 Apr 2002 18:21:19 -0700 (PDT) (envelope-from horikawa) Message-Id: <200204130121.g3D1LJE41947@freefall.freebsd.org> From: Kazuo Horikawa Date: Fri, 12 Apr 2002 18:21:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man1 as.1 chpass.1 ctags.1 cvs.1 dc.1 ed.1 ee.1 fdwrite.1 file.1 gdb.1 gprof.1 ldd.1 lex.1 locate.1 mail.1 perl.1 pkg_add.1 tcsh.1 tput.1 vi.1 w.1 window.1 xargs.1 doc/ja_JP.eucJP/man/man2 open.2 sigaltstack.2 socket.2 umask.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 horikawa 2002/04/12 18:21:19 PDT Modified files: ja_JP.eucJP/man/man1 as.1 chpass.1 ctags.1 cvs.1 dc.1 ed.1 ee.1 fdwrite.1 file.1 gdb.1 gprof.1 ldd.1 lex.1 locate.1 mail.1 perl.1 pkg_add.1 tcsh.1 tput.1 vi.1 w.1 window.1 xargs.1 ja_JP.eucJP/man/man2 open.2 sigaltstack.2 socket.2 umask.2 ja_JP.eucJP/man/man4 bpf.4 opie.4 psm.4 sa.4 sio.4 splash.4 ja_JP.eucJP/man/man5 amd.conf.5 crontab.5 disklabel.5 make.conf.5 named.conf.5 netgroup.5 procfs.5 publickey.5 termcap.5 ja_JP.eucJP/man/man7 groff.7 groff_man.7 groff_mwww.7 re_format.7 security.7 ja_JP.eucJP/man/man8 boot_i386.8 disklabel.8 named-xfer.8 pam_radius.8 ppp.8 pppctl.8 praliases.8 pw.8 pwd_mkdb.8 routed.8 shutdown.8 tcpdchk.8 ja_JP.eucJP/man/man9 copy.9 Log: Remove unnecessary space before Japanese punctuation character. Submitted by: OHSAWA Chitoshi Revision Changes Path 1.8 +2 -2 doc/ja_JP.eucJP/man/man1/as.1 1.22 +2 -2 doc/ja_JP.eucJP/man/man1/chpass.1 1.9 +1 -1 doc/ja_JP.eucJP/man/man1/ctags.1 1.17 +1 -1 doc/ja_JP.eucJP/man/man1/cvs.1 1.9 +2 -2 doc/ja_JP.eucJP/man/man1/dc.1 1.19 +7 -7 doc/ja_JP.eucJP/man/man1/ed.1 1.14 +2 -2 doc/ja_JP.eucJP/man/man1/ee.1 1.15 +2 -2 doc/ja_JP.eucJP/man/man1/fdwrite.1 1.22 +1 -1 doc/ja_JP.eucJP/man/man1/file.1 1.9 +2 -2 doc/ja_JP.eucJP/man/man1/gdb.1 1.11 +2 -2 doc/ja_JP.eucJP/man/man1/gprof.1 1.9 +2 -2 doc/ja_JP.eucJP/man/man1/ldd.1 1.11 +1 -1 doc/ja_JP.eucJP/man/man1/lex.1 1.14 +2 -2 doc/ja_JP.eucJP/man/man1/locate.1 1.25 +1 -1 doc/ja_JP.eucJP/man/man1/mail.1 1.9 +44 -44 doc/ja_JP.eucJP/man/man1/perl.1 1.27 +2 -2 doc/ja_JP.eucJP/man/man1/pkg_add.1 1.14 +2 -2 doc/ja_JP.eucJP/man/man1/tcsh.1 1.12 +4 -4 doc/ja_JP.eucJP/man/man1/tput.1 1.11 +4 -4 doc/ja_JP.eucJP/man/man1/vi.1 1.15 +1 -1 doc/ja_JP.eucJP/man/man1/w.1 1.11 +6 -6 doc/ja_JP.eucJP/man/man1/window.1 1.11 +2 -2 doc/ja_JP.eucJP/man/man1/xargs.1 1.12 +1 -1 doc/ja_JP.eucJP/man/man2/open.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/sigaltstack.2 1.9 +1 -1 doc/ja_JP.eucJP/man/man2/socket.2 1.8 +1 -1 doc/ja_JP.eucJP/man/man2/umask.2 1.3 +2 -2 doc/ja_JP.eucJP/man/man4/bpf.4 1.4 +2 -2 doc/ja_JP.eucJP/man/man4/opie.4 1.4 +1 -1 doc/ja_JP.eucJP/man/man4/psm.4 1.3 +1 -1 doc/ja_JP.eucJP/man/man4/sa.4 1.3 +2 -2 doc/ja_JP.eucJP/man/man4/sio.4 1.4 +1 -1 doc/ja_JP.eucJP/man/man4/splash.4 1.16 +1 -1 doc/ja_JP.eucJP/man/man5/amd.conf.5 1.17 +1 -1 doc/ja_JP.eucJP/man/man5/crontab.5 1.12 +1 -1 doc/ja_JP.eucJP/man/man5/disklabel.5 1.19 +1 -1 doc/ja_JP.eucJP/man/man5/make.conf.5 1.7 +2 -2 doc/ja_JP.eucJP/man/man5/named.conf.5 1.8 +2 -2 doc/ja_JP.eucJP/man/man5/netgroup.5 1.12 +2 -2 doc/ja_JP.eucJP/man/man5/procfs.5 1.7 +1 -1 doc/ja_JP.eucJP/man/man5/publickey.5 1.16 +2 -2 doc/ja_JP.eucJP/man/man5/termcap.5 1.13 +2 -2 doc/ja_JP.eucJP/man/man7/groff.7 1.6 +2 -2 doc/ja_JP.eucJP/man/man7/groff_man.7 1.5 +2 -2 doc/ja_JP.eucJP/man/man7/groff_mwww.7 1.11 +1 -1 doc/ja_JP.eucJP/man/man7/re_format.7 1.22 +1 -1 doc/ja_JP.eucJP/man/man7/security.7 1.25 +3 -3 doc/ja_JP.eucJP/man/man8/boot_i386.8 1.28 +1 -1 doc/ja_JP.eucJP/man/man8/disklabel.8 1.7 +2 -2 doc/ja_JP.eucJP/man/man8/named-xfer.8 1.11 +2 -2 doc/ja_JP.eucJP/man/man8/pam_radius.8 1.61 +2 -2 doc/ja_JP.eucJP/man/man8/ppp.8 1.17 +2 -2 doc/ja_JP.eucJP/man/man8/pppctl.8 1.10 +1 -1 doc/ja_JP.eucJP/man/man8/praliases.8 1.20 +3 -3 doc/ja_JP.eucJP/man/man8/pw.8 1.13 +3 -3 doc/ja_JP.eucJP/man/man8/pwd_mkdb.8 1.20 +1 -1 doc/ja_JP.eucJP/man/man8/routed.8 1.14 +1 -1 doc/ja_JP.eucJP/man/man8/shutdown.8 1.4 +2 -2 doc/ja_JP.eucJP/man/man8/tcpdchk.8 1.7 +1 -1 doc/ja_JP.eucJP/man/man9/copy.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 19: 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 9B64837B404; Fri, 12 Apr 2002 19:04:45 -0700 (PDT) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D24jr46164; Fri, 12 Apr 2002 19:04:45 -0700 (PDT) (envelope-from keramida) Message-Id: <200204130204.g3D24jr46164@freefall.freebsd.org> From: Giorgos Keramidas Date: Fri, 12 Apr 2002 19:04:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 security.7 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 keramida 2002/04/12 19:04:45 PDT Modified files: (Branch: RELENG_4) share/man/man7 security.7 Log: Sync with -current. This fixes several typos. Revision Changes Path 1.13.2.11 +7 -7 src/share/man/man7/security.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 19:21:36 2002 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id EA43337B41F; Fri, 12 Apr 2002 19:21:27 -0700 (PDT) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id D054F81437; Sat, 13 Apr 2002 11:51:25 +0930 (CST) Date: Sat, 13 Apr 2002 11:51:25 +0930 From: Greg 'groggy' Lehey To: John Baldwin Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sys_process.c Message-ID: <20020413115125.E12778@wantadilla.lemis.com> References: <200204122117.g3CLHcF92496@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.23i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Sender: owner-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 Friday, 12 April 2002 at 17:20:48 -0400, John Baldwin wrote: > > On 12-Apr-2002 John Baldwin wrote: >> jhb 2002/04/12 14:17:38 PDT >> >> Modified files: >> sys/kern sys_process.c >> Log: >> Rework ptrace(2) to be more locking friendly. We do any needed copyin()'s >> and acquire the proctree_lock if needed first. Then we lock the process >> if necessary and fiddle with it as appropriate. Finally we drop locks and >> do any needed copyout's. This greatly simplifies the locking. > > I've tested this on i386 lightly (gdb still works for a trivial program as far > as breakpoints and running it.) Since gdb on alpha is busted this wasn't > tested on alpha. :-( I would appreciate if people would make sure I haven't > broken things. They shouldn't be broken in theory, but practice doesn't always > == theory. What's the status of gdb? This makes it sound as if it's broken. Am I misinterpreting? Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 21: 6: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 CA49137B405; Fri, 12 Apr 2002 21:06:34 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D46Y571988; Fri, 12 Apr 2002 21:06:34 -0700 (PDT) (envelope-from marcel) Message-Id: <200204130406.g3D46Y571988@freefall.freebsd.org> From: Marcel Moolenaar Date: Fri, 12 Apr 2002 21:06:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/ia64/gen Makefile.inc unwind.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 marcel 2002/04/12 21:06:34 PDT Modified files: lib/libc/ia64/gen Makefile.inc Added files: lib/libc/ia64/gen unwind.c Log: Implement _Unwind_FindTableEntry(). This function is part of GCC for some configurations, but not for FreeBSD (yet?). Have one in libc in the mean time. Revision Changes Path 1.4 +4 -0 src/lib/libc/ia64/gen/Makefile.inc 1.1 +126 -0 src/lib/libc/ia64/gen/unwind.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 Apr 12 21: 7: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 DBDBD37B400; Fri, 12 Apr 2002 21:07:07 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D477a72150; Fri, 12 Apr 2002 21:07:07 -0700 (PDT) (envelope-from imp) Message-Id: <200204130407.g3D477a72150@freefall.freebsd.org> From: Warner Losh Date: Fri, 12 Apr 2002 21:07:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pccbb pccbb.c pccbbreg.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/04/12 21:07:07 PDT Modified files: sys/dev/pccbb pccbb.c pccbbreg.h Log: Restore NetBSD copyrights that shouldn't have been removed in the first place. Revision Changes Path 1.43 +30 -0 src/sys/dev/pccbb/pccbb.c 1.10 +30 -0 src/sys/dev/pccbb/pccbbreg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 21:17: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 1B4C037B405; Fri, 12 Apr 2002 21:17:30 -0700 (PDT) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D4HUD73673; Fri, 12 Apr 2002 21:17:30 -0700 (PDT) (envelope-from pat) Message-Id: <200204130417.g3D4HUD73673@freefall.freebsd.org> From: Patrick Li Date: Fri, 12 Apr 2002 21:17:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/p5-Net-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 pat 2002/04/12 21:17:28 PDT Modified files: net/p5-Net-Server Makefile distinfo Log: Update to 0.83 Approved by: maintainer Revision Changes Path 1.3 +3 -2 ports/net/p5-Net-Server/Makefile 1.3 +1 -1 ports/net/p5-Net-Server/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 21:25: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 146BD37B405; Fri, 12 Apr 2002 21:25:57 -0700 (PDT) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D4Pv674565; Fri, 12 Apr 2002 21:25:57 -0700 (PDT) (envelope-from dd) Message-Id: <200204130425.g3D4Pv674565@freefall.freebsd.org> From: Dima Dorfman Date: Fri, 12 Apr 2002 21:25:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/locale nl_langinfo.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/12 21:25:57 PDT Modified files: lib/libc/locale nl_langinfo.3 Log: This was recently MFC'd, so it will appear in 4.6. PR: 37018 Revision Changes Path 1.4 +1 -1 src/lib/libc/locale/nl_langinfo.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 22:49: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 2141437B405; Fri, 12 Apr 2002 22:49:34 -0700 (PDT) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D5nYt86283; Fri, 12 Apr 2002 22:49:34 -0700 (PDT) (envelope-from ache) Message-Id: <200204130549.g3D5nYt86283@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Fri, 12 Apr 2002 22:49:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin 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 ache 2002/04/12 22:49:33 PDT Modified files: gnu/usr.bin Makefile Log: Re-add sort spammed in v1.62 Revision Changes Path 1.63 +1 -1 src/gnu/usr.bin/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 22:52: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 030B437B404; Fri, 12 Apr 2002 22:52:36 -0700 (PDT) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D5qZk86547; Fri, 12 Apr 2002 22:52:35 -0700 (PDT) (envelope-from imp) Message-Id: <200204130552.g3D5qZk86547@freefall.freebsd.org> From: Warner Losh Date: Fri, 12 Apr 2002 22:52:35 -0700 (PDT) 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/04/12 22:52:35 PDT Modified files: sys/dev/pci pci_pci.c Log: Fix an edge case wrt membase, but more changes needed Revision Changes Path 1.13 +1 -1 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 Fri Apr 12 23:14: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 B185737B404; Fri, 12 Apr 2002 23:14:30 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D6EUb92676; Fri, 12 Apr 2002 23:14:30 -0700 (PDT) (envelope-from des) Message-Id: <200204130614.g3D6EUb92676@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 12 Apr 2002 23:14:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/libpam pam_debug_log.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/04/12 23:14:30 PDT Modified files: lib/libpam/libpam pam_debug_log.c Log: Change || into && (braino in previous commit). Also append \n to the error message. Revision Changes Path 1.7 +2 -2 src/lib/libpam/libpam/pam_debug_log.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 23:19: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 118BE37B405; Fri, 12 Apr 2002 23:19:33 -0700 (PDT) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D6JX793381; Fri, 12 Apr 2002 23:19:33 -0700 (PDT) (envelope-from dougb) Message-Id: <200204130619.g3D6JX793381@freefall.freebsd.org> From: Doug Barton Date: Fri, 12 Apr 2002 23:19:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/xscreensaver 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 dougb 2002/04/12 23:19:32 PDT Modified files: x11/xscreensaver Makefile Log: Make it easier to find libjpeg in non-standard installs. Submitted by: A cast of thousands Revision Changes Path 1.51 +2 -1 ports/x11/xscreensaver/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 23: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 97C1A37B41A; Fri, 12 Apr 2002 23:20:02 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D6K2t93544; Fri, 12 Apr 2002 23:20:02 -0700 (PDT) (envelope-from des) Message-Id: <200204130620.g3D6K2t93544@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 12 Apr 2002 23:20:02 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libypclnt Makefile ypclnt_connect.c ypclnt_error.c ypclnt_free.c ypclnt_get.c ypclnt_new.c ypclnt_passwd.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/04/12 23:20:02 PDT Added files: lib/libypclnt Makefile ypclnt_connect.c ypclnt_error.c ypclnt_free.c ypclnt_get.c ypclnt_new.c ypclnt_passwd.c Log: NIS client toolbox. This centralizes code which is duplicated all over our tree. Sponsored by: DARPA, NAI Labs. Revision Changes Path 1.1 +54 -0 src/lib/libypclnt/Makefile (new) 1.1 +90 -0 src/lib/libypclnt/ypclnt_connect.c (new) 1.1 +59 -0 src/lib/libypclnt/ypclnt_error.c (new) 1.1 +51 -0 src/lib/libypclnt/ypclnt_free.c (new) 1.1 +52 -0 src/lib/libypclnt/ypclnt_get.c (new) 1.1 +62 -0 src/lib/libypclnt/ypclnt_new.c (new) 1.1 +129 -0 src/lib/libypclnt/ypclnt_passwd.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 Apr 12 23: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 0CD0537B420; Fri, 12 Apr 2002 23:20:32 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D6KWq93626; Fri, 12 Apr 2002 23:20:32 -0700 (PDT) (envelope-from des) Message-Id: <200204130620.g3D6KWq93626@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 12 Apr 2002 23:20:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libypclnt ypclnt.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/04/12 23:20:31 PDT Added files: lib/libypclnt ypclnt.h Log: Header file for libypclnt. Sponsored by: DARPA, NAI Labs Revision Changes Path 1.1 +61 -0 src/lib/libypclnt/ypclnt.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 Apr 12 23:22: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 A7B8837B416; Fri, 12 Apr 2002 23:22:10 -0700 (PDT) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D6MAM94341; Fri, 12 Apr 2002 23:22:10 -0700 (PDT) (envelope-from dougb) Message-Id: <200204130622.g3D6MAM94341@freefall.freebsd.org> From: Doug Barton Date: Fri, 12 Apr 2002 23:22:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/xscreensaver/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 dougb 2002/04/12 23:22:10 PDT Modified files: x11/xscreensaver/files patch-ab Log: Silence a spurious warning caused by an attempt to check if an rpm of xscreensaver is already installed on a linux system. This is a no-op for us, but users have complained about the warning. Revision Changes Path 1.13 +14 -0 ports/x11/xscreensaver/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 Fri Apr 12 23:57: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 82BBF37B400; Fri, 12 Apr 2002 23:57:15 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D6vFx00630; Fri, 12 Apr 2002 23:57:15 -0700 (PDT) (envelope-from des) Message-Id: <200204130657.g3D6vFx00630@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 12 Apr 2002 23:57:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libypclnt Makefile ypclnt_passwd.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/04/12 23:57:15 PDT Modified files: lib/libypclnt Makefile ypclnt_passwd.c Log: Add support for FreeBSD-specific "master" update. Sponsored by: DARPA, NAI Labs Revision Changes Path 1.2 +2 -1 src/lib/libypclnt/Makefile 1.2 +142 -4 src/lib/libypclnt/ypclnt_passwd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Apr 12 23:59: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 AE6F037B4EB; Fri, 12 Apr 2002 23:58:32 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D6w4v00923; Fri, 12 Apr 2002 23:58:04 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204130658.g3D6w4v00923@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 12 Apr 2002 23:58:02 -0700 (PDT) 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/04/12 23:58:02 PDT Modified files: . modules Log: qgo --> ports/games/qgo Revision Changes Path 1.4978 +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 Apr 12 23:59: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 40D6F37B625; Fri, 12 Apr 2002 23:58:47 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D6vtK00875; Fri, 12 Apr 2002 23:57:55 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204130657.g3D6vtK00875@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 12 Apr 2002 23:57:45 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games Makefile ports/games/qgo Makefile distinfo pkg-comment pkg-descr pkg-plist ports/games/qgo/files patch-src:main.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 ijliao 2002/04/12 23:57:45 PDT Modified files: games Makefile Added files: games/qgo Makefile distinfo pkg-comment pkg-descr pkg-plist games/qgo/files patch-src:main.cpp Log: add qgo 0.0.8 A Go board and SGF editor written with the Qt library Revision Changes Path 1.452 +1 -0 ports/games/Makefile 1.1 +29 -0 ports/games/qgo/Makefile (new) 1.1 +1 -0 ports/games/qgo/distinfo (new) 1.1 +41 -0 ports/games/qgo/files/patch-src:main.cpp (new) 1.1 +1 -0 ports/games/qgo/pkg-comment (new) 1.1 +5 -0 ports/games/qgo/pkg-descr (new) 1.1 +25 -0 ports/games/qgo/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 Apr 13 0: 3:51 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 C6F5437B400; Sat, 13 Apr 2002 00:03:47 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3D73hYm034237; Sat, 13 Apr 2002 00:03:43 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3D72SeK034227; Sat, 13 Apr 2002 00:02:28 -0700 (PDT) Date: Sat, 13 Apr 2002 00:02:28 -0700 From: "David O'Brien" To: "Greg 'groggy' Lehey" Cc: John Baldwin , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sys_process.c Message-ID: <20020413000228.A34207@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200204122117.g3CLHcF92496@freefall.freebsd.org> <20020413115125.E12778@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020413115125.E12778@wantadilla.lemis.com>; from grog@FreeBSD.org on Sat, Apr 13, 2002 at 11:51:25AM +0930 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 Sat, Apr 13, 2002 at 11:51:25AM +0930, Greg 'groggy' Lehey wrote: > What's the status of gdb? This makes it sound as if it's broken. Am > I misinterpreting? It is broken on Alpha in -current. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 0:23: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 0B04837B41A; Sat, 13 Apr 2002 00:23:26 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D7NQN07650; Sat, 13 Apr 2002 00:23:26 -0700 (PDT) (envelope-from des) Message-Id: <200204130723.g3D7NQN07650@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 13 Apr 2002 00:23:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.libnames.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 des 2002/04/13 00:23:25 PDT Modified files: share/mk bsd.libnames.mk Log: Add libypclnt. Revision Changes Path 1.54 +1 -0 src/share/mk/bsd.libnames.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 0:24: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 6B6F637B405; Sat, 13 Apr 2002 00:24:14 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D7OEH07759; Sat, 13 Apr 2002 00:24:14 -0700 (PDT) (envelope-from des) Message-Id: <200204130724.g3D7OEH07759@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 13 Apr 2002 00:24:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/13 00:24:14 PDT Modified files: . Makefile.inc1 Log: Add libypclnt to the includes target. Revision Changes Path 1.255 +1 -0 src/Makefile.inc1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 1:20: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 6589537B4AD; Sat, 13 Apr 2002 01:20:28 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D8KGx17608; Sat, 13 Apr 2002 01:20:16 -0700 (PDT) (envelope-from marcel) Message-Id: <200204130820.g3D8KGx17608@freefall.freebsd.org> From: Marcel Moolenaar Date: Sat, 13 Apr 2002 01:20:15 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/savecore savecore.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 marcel 2002/04/13 01:20:15 PDT Modified files: sbin/savecore savecore.c Log: High-level changes (user visible): o Implement -c (clear) to clear previously kept headers (note that dumps not cleared will remain until -c is used), o Implement -f (force) to allow re-saving a previously saved dump, o Implement -k (keep) and make clearing the dump header the default, o Implement -v (verbose) and make most output conditional upon it, o Emit minimal output for the non-verbose case with the assumption that savecore is run mostly from within /etc/rc, o Update usage message to reflect what is and what's not, o mark -d as obsolete. Low-level changes: o Rename devname to device, for devname mirrors a global declaration and GCC 3.x warns about it, o Open the dump device R/W for clear and !keep to work, o Reorder the locals of DoFile according to style(9), o Remove newlines from strings passed to warn* and err*, o Use stat(2) to check if a dump has been saved before, o Truncate existing core and info files to support force, o First check for the magic and the version before we complain about parity errors. This prevents emitting parity error messages when there's no dump, o Keep track of the number of headers found and the number of headers saved to support the minimal output, o Close files we opened in DoFile. Not critical, but cleaner. Revision Changes Path 1.55 +137 -56 src/sbin/savecore/savecore.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 1:30:17 2002 Delivered-To: cvs-all@freebsd.org Received: from a96180.upc-a.chello.nl (a96180.upc-a.chello.nl [62.163.96.180]) by hub.freebsd.org (Postfix) with ESMTP id D8A0F37B400; Sat, 13 Apr 2002 01:30:11 -0700 (PDT) Received: by a96180.upc-a.chello.nl (Postfix, from userid 1001) id 056E02174; Sat, 13 Apr 2002 10:30:10 +0200 (CEST) Date: Sat, 13 Apr 2002 10:30:09 +0200 From: Jeroen Ruigrok/asmodai To: Mike Barcroft Cc: Brian Somers , Philippe Charnier , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make job.c main.c make.1 Message-ID: <20020413083009.GA40979@daemon.ninth-circle.org> References: <200204122218.g3CMI1OF096403@hak.lan.Awfulhak.org> <20020412195907.K28249@espresso.q9media.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020412195907.K28249@espresso.q9media.com> User-Agent: Mutt/1.3.28i Organisation: Ninth Circle Enterprises Sender: owner-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 [20020413 02:15], Mike Barcroft (mike@FreeBSD.org) wrote: >I prefer "The make utility..." or something to that affect. That way >you don't need to break English or the reverse-proper name, make. If I remember correctly, that was the outcome we decided upon. -- Jeroen Ruigrok van der Werven / asmodai / Kita no Mono asmodai@[wxs.nl|xmach.org], finger asmodai@ninth-circle.org http://www.softweyr.com/asmodai/ | http://www.[tendra|xmach].org/ Can your hear the Dolphin's cry..? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 1:31:52 2002 Delivered-To: cvs-all@freebsd.org Received: from kayak.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by hub.freebsd.org (Postfix) with ESMTP id 5048337B416; Sat, 13 Apr 2002 01:31:47 -0700 (PDT) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by kayak.xcllnt.net (8.11.6/8.11.4) with ESMTP id g3D8VlJ29462; Sat, 13 Apr 2002 01:31:47 -0700 (PDT) (envelope-from marcel@kayak.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.2/8.12.2) with ESMTP id g3D8Vkrw055175; Sat, 13 Apr 2002 01:31:46 -0700 (PDT) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.2/8.12.2/Submit) id g3D8VkHY055174; Sat, 13 Apr 2002 01:31:46 -0700 (PDT) Date: Sat, 13 Apr 2002 01:31:46 -0700 From: Marcel Moolenaar To: Doug Rabson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ia64/ia64 trap.c Message-ID: <20020413083146.GA53915@athlon.pn.xcllnt.net> References: <200204120741.g3C7fGK79298@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204120741.g3C7fGK79298@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 Fri, Apr 12, 2002 at 12:41:16AM -0700, Doug Rabson wrote: > dfr 2002/04/12 00:41:16 PDT > > Modified files: > sys/ia64/ia64 trap.c > Log: > Print extra information in printtrap() if the interrupted state was for > an IA-32 process. Don't sign extend arguments in ia32_syscall - its not > normally going to be useful (e.g. pointers need to be zero extended). Doug, Just to make sure we're on the same page. We rule out pointer swizzling, because IA-32 processes run in region 0 only. Right? -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 1:34:29 2002 Delivered-To: cvs-all@freebsd.org Received: from a96180.upc-a.chello.nl (a96180.upc-a.chello.nl [62.163.96.180]) by hub.freebsd.org (Postfix) with ESMTP id EAE1B37B416; Sat, 13 Apr 2002 01:34:24 -0700 (PDT) Received: by a96180.upc-a.chello.nl (Postfix, from userid 1001) id DD0F32170; Sat, 13 Apr 2002 10:34:22 +0200 (CEST) Date: Sat, 13 Apr 2002 10:34:22 +0200 From: Jeroen Ruigrok/asmodai To: =?iso-8859-15?Q?S=F8ren?= Schmidt Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ata ata-raid.c Message-ID: <20020413083422.GB40979@daemon.ninth-circle.org> References: <200204121408.g3CE8dD82248@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200204121408.g3CE8dD82248@freefall.freebsd.org> User-Agent: Mutt/1.3.28i Organisation: Ninth Circle Enterprises Sender: owner-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 [20020412 16:15], Søren Schmidt (sos@FreeBSD.org) wrote: > Log: > Add a BUF_LOCKINIT to init struct buf's before use. Thanks! This should fix the panic on boot problem with ATA in STABLE. A kernel with options INVARIANTS compiled in would panic with a biodone: bp 0x not busy 0 Due to the KASSERT code in vfs_bio.c:biodone() being triggered. struct bio in CURRENT has different usage semantics than STABLE with its struct buf. -- Jeroen Ruigrok van der Werven / asmodai / Kita no Mono asmodai@[wxs.nl|xmach.org], finger asmodai@ninth-circle.org http://www.softweyr.com/asmodai/ | http://www.[tendra|xmach].org/ We should take care not to make the intellect our god; it has, of course, powerful muscles, but no personality... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 1:36:43 2002 Delivered-To: cvs-all@freebsd.org Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by hub.freebsd.org (Postfix) with ESMTP id 3246837B416 for ; Sat, 13 Apr 2002 01:36:41 -0700 (PDT) Received: from zippy.mybox.zip ([207.214.149.50]) by mta7.pltn13.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with ESMTP id <0GUH00EJ7ZX31S@mta7.pltn13.pbi.net> for cvs-all@FreeBSD.ORG; Sat, 13 Apr 2002 01:36:40 -0700 (PDT) Received: by zippy.mybox.zip (Postfix, from userid 1000) id 6B54A17D0; Sat, 13 Apr 2002 01:36:37 -0700 (PDT) Date: Sat, 13 Apr 2002 01:36:37 -0700 From: Alex Zepeda Subject: Re: cvs commit: src/contrib/binutils - Imported sources In-reply-to: <20020413005958.A12540@host213-123-130-182.in-addr.bto> To: Dominic Marks , cvs-all@FreeBSD.ORG Message-id: <20020413083636.GA634@zippy.mybox.zip> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT Content-disposition: inline User-Agent: Mutt/1.3.28i References: <200204121934.g3CJYhf68745@freefall.freebsd.org> <20020412214622.GC56084@leviathan.inethouston.net> <20020413005958.A12540@host213-123-130-182.in-addr.bto> Sender: owner-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, Apr 13, 2002 at 12:59:59AM +0100, Dominic Marks wrote: > As objprelink porter/maintainer (+ help from will) I can tell you that > it's costs outway its benefits. The improvement in performance could > be described as minimal at best. It won't be used with KDE3 (its minor > speed boost becomes meaningless). I suggest just pulling it out of > your KDE build if it is causing you problems. Its not worth fighting > with it. While I agree that objprelink isn't worth the hassle, KDE3 hasn't really rendered its minor speed boost meaningless. A more worthwhile endeavor would be to start filtering what goes in a library's export table. Smaller tables == faster loading. Currently everything's exported, and given how Qt (ab)uses C++ and the piss poor way in which C++ is handled by the binutils... there are loads of useless symbols bloating the libraries. - alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 1:42:18 2002 Delivered-To: cvs-all@freebsd.org Received: from kayak.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by hub.freebsd.org (Postfix) with ESMTP id 73F7D37B400; Sat, 13 Apr 2002 01:42:15 -0700 (PDT) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by kayak.xcllnt.net (8.11.6/8.11.4) with ESMTP id g3D8gFJ29481; Sat, 13 Apr 2002 01:42:15 -0700 (PDT) (envelope-from marcel@kayak.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.2/8.12.2) with ESMTP id g3D8gErw055799; Sat, 13 Apr 2002 01:42:14 -0700 (PDT) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.2/8.12.2/Submit) id g3D8gEIH055798; Sat, 13 Apr 2002 01:42:14 -0700 (PDT) Date: Sat, 13 Apr 2002 01:42:14 -0700 From: Marcel Moolenaar To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src Makefile.inc1 src/tools make_libdeps.sh Message-ID: <20020413084214.GB53915@athlon.pn.xcllnt.net> References: <200204121946.g3CJkPX70592@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204121946.g3CJkPX70592@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 Fri, Apr 12, 2002 at 12:46:25PM -0700, Ruslan Ermilov wrote: > ru 2002/04/12 12:46:25 PDT > > Added files: > tools make_libdeps.sh > Log: > Add a tool (and the first application of it) that could be used > to automate building of libraries. Good one! -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 1:48:11 2002 Delivered-To: cvs-all@freebsd.org Received: from host213-123-130-182.in-addr.btopenworld.com (host213-123-130-182.in-addr.btopenworld.com [213.123.130.182]) by hub.freebsd.org (Postfix) with ESMTP id F18E837B405 for ; Sat, 13 Apr 2002 01:48:08 -0700 (PDT) Received: by host213-123-130-182.in-addr.btopenworld.com (Postfix, from userid 1001) id 58C3A6CD; Sat, 13 Apr 2002 09:48:22 +0100 (BST) Date: Sat, 13 Apr 2002 09:48:22 +0100 From: Dominic Marks To: Alex Zepeda Cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/contrib/binutils - Imported sources Message-ID: <20020413094822.B61253@host213-123-130-182.in-addr.bto> References: <200204121934.g3CJYhf68745@freefall.freebsd.org> <20020412214622.GC56084@leviathan.inethouston.net> <20020413005958.A12540@host213-123-130-182.in-addr.bto> <20020413083636.GA634@zippy.mybox.zip> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020413083636.GA634@zippy.mybox.zip>; from jazepeda@pacbell.net on Sat, Apr 13, 2002 at 01:36:37AM -0700 Sender: owner-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, Apr 13, 2002 at 01:36:37AM -0700, Alex Zepeda wrote: > On Sat, Apr 13, 2002 at 12:59:59AM +0100, Dominic Marks wrote: > > > As objprelink porter/maintainer (+ help from will) I can tell you that > > it's costs outway its benefits. The improvement in performance could > > be described as minimal at best. It won't be used with KDE3 (its minor > > speed boost becomes meaningless). I suggest just pulling it out of > > your KDE build if it is causing you problems. Its not worth fighting > > with it. > > While I agree that objprelink isn't worth the hassle, KDE3 hasn't really > rendered its minor speed boost meaningless. A more worthwhile endeavor > would be to start filtering what goes in a library's export table. > Smaller tables == faster loading. Currently everything's exported, and > given how Qt (ab)uses C++ and the piss poor way in which C++ is handled by > the binutils... there are loads of useless symbols bloating the libraries. As long as it works correctly and doesn't cause working applications to break in strange and wonderful ways, I agree. There has been evidence to suggest objprelink has created a number of reliability problems in certain applications. Anyway, this subject is for the KDE people to discuss. :) > - alex -- Dominic To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 2: 7: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 5DBED37B404; Sat, 13 Apr 2002 02:07:22 -0700 (PDT) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D97MC25887; Sat, 13 Apr 2002 02:07:22 -0700 (PDT) (envelope-from dd) Message-Id: <200204130907.g3D97MC25887@freefall.freebsd.org> From: Dima Dorfman Date: Sat, 13 Apr 2002 02:07:22 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 make.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/13 02:07:22 PDT Modified files: share/man/man5 make.conf.5 Log: ${BDECFLAGS} gets added to CFLAGS, not CXFLAGS. PR: 37032 Submitted by: Joshua Goodall Revision Changes Path 1.41 +1 -1 src/share/man/man5/make.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 2:10: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 D896037B41B; Sat, 13 Apr 2002 02:10:07 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D9A7q26178; Sat, 13 Apr 2002 02:10:07 -0700 (PDT) (envelope-from obrien) Message-Id: <200204130910.g3D9A7q26178@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 02:10:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make job.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/04/13 02:10:07 PDT Modified files: usr.bin/make job.c Log: Check to make sure fdopen() succeeds in make(1). Submitted by: jmallett Inspired by: NetBSD Revision Changes Path 1.30 +2 -0 src/usr.bin/make/job.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 2:28: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 E605B37B405; Sat, 13 Apr 2002 02:28:43 -0700 (PDT) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D9Sh528223; Sat, 13 Apr 2002 02:28:43 -0700 (PDT) (envelope-from znerd) Message-Id: <200204130928.g3D9Sh528223@freefall.freebsd.org> From: Ernst de Haan Date: Sat, 13 Apr 2002 02:28:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_jk Makefile ports/www/mod_jk/files Makefile.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 znerd 2002/04/13 02:28:43 PDT Modified files: www/mod_jk Makefile www/mod_jk/files Makefile.freebsd Log: Not using pthreads anymore. This fixes a problem with Apache servers built without pthreads. Bumped PORTREVISION. PR: 36993 Suggested by: Jan Grant Revision Changes Path 1.8 +2 -1 ports/www/mod_jk/Makefile 1.3 +2 -2 ports/www/mod_jk/files/Makefile.freebsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 2: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 13B1B37B416; Sat, 13 Apr 2002 02:43:08 -0700 (PDT) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D9h8330195; Sat, 13 Apr 2002 02:43:08 -0700 (PDT) (envelope-from znerd) Message-Id: <200204130943.g3D9h8330195@freefall.freebsd.org> From: Ernst de Haan Date: Sat, 13 Apr 2002 02:43:07 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/saxon 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 znerd 2002/04/13 02:43:07 PDT Modified files: textproc/saxon Makefile distinfo Log: Update to 6.5.2. Submitted by: maintainer PR: 37031 Revision Changes Path 1.4 +1 -1 ports/textproc/saxon/Makefile 1.3 +1 -1 ports/textproc/saxon/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 2:49: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 65F2037B400; Sat, 13 Apr 2002 02:49:34 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3D9nYE31181; Sat, 13 Apr 2002 02:49:34 -0700 (PDT) (envelope-from obrien) Message-Id: <200204130949.g3D9nYE31181@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 02:49:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make str.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/04/13 02:49:34 PDT Modified files: usr.bin/make str.c Log: Constify str_concat() Submitted by: jmallett Revision Changes Path 1.15 +4 -4 src/usr.bin/make/str.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 3: 2: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 3F62437B404; Sat, 13 Apr 2002 03:02:27 -0700 (PDT) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DA2Rk33019; Sat, 13 Apr 2002 03:02:27 -0700 (PDT) (envelope-from znerd) Message-Id: <200204131002.g3DA2Rk33019@freefall.freebsd.org> From: Ernst de Haan Date: Sat, 13 Apr 2002 03:02:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/spread Makefile distinfo pkg-plist ports/net/spread/files patch-data_link.c patch-session.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 znerd 2002/04/13 03:02:27 PDT Modified files: net/spread Makefile distinfo pkg-plist Added files: net/spread/files patch-data_link.c patch-session.c Log: Update to release 3.16.2. Added stability fixes. Updated manpages. Use USE_JAVA. Handle jikes properly. Dtrt wrt javadoc. PR: 36814 Submitted by: maintainer Revision Changes Path 1.6 +18 -16 ports/net/spread/Makefile 1.3 +1 -1 ports/net/spread/distinfo 1.1 +10 -0 ports/net/spread/files/patch-data_link.c (new) 1.1 +10 -0 ports/net/spread/files/patch-session.c (new) 1.3 +0 -1 ports/net/spread/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 Apr 13 3: 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 1364037B404; Sat, 13 Apr 2002 03:05:34 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DA5YF36069; Sat, 13 Apr 2002 03:05:34 -0700 (PDT) (envelope-from obrien) Message-Id: <200204131005.g3DA5YF36069@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 03:05:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make arch.c buf.c compat.c cond.c dir.c hash.c job.c make.c nonints.h parse.c str.c suff.c targ.c var.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/04/13 03:05:32 PDT Modified files: usr.bin/make arch.c buf.c compat.c cond.c dir.c hash.c job.c make.c nonints.h parse.c str.c suff.c targ.c var.c Log: De'register. Revision Changes Path 1.23 +1 -1 src/usr.bin/make/arch.c 1.13 +10 -10 src/usr.bin/make/buf.c 1.24 +1 -1 src/usr.bin/make/compat.c 1.17 +4 -4 src/usr.bin/make/cond.c 1.19 +8 -8 src/usr.bin/make/dir.c 1.14 +20 -21 src/usr.bin/make/hash.c 1.31 +18 -18 src/usr.bin/make/job.c 1.16 +13 -13 src/usr.bin/make/make.c 1.11 +1 -1 src/usr.bin/make/nonints.h 1.31 +11 -11 src/usr.bin/make/parse.c 1.16 +9 -9 src/usr.bin/make/str.c 1.19 +12 -12 src/usr.bin/make/suff.c 1.17 +6 -6 src/usr.bin/make/targ.c 1.25 +15 -15 src/usr.bin/make/var.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 3:10:57 2002 Delivered-To: cvs-all@freebsd.org Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (Postfix) with ESMTP id 0B37637B405; Sat, 13 Apr 2002 03:10:50 -0700 (PDT) Received: (from uucp@localhost) by frmug.org (8.11.3/8.11.3/frmug-2.7/nospam) with UUCP id g3DAAhD89843; Sat, 13 Apr 2002 12:10:43 +0200 (CEST) (envelope-from charnier@xp11.frmug.org) Received: from xp11.frmug.org (xp11.frmug.org [127.0.0.1]) by xp11.frmug.org (8.12.2/8.11.1/xp11-uucp-1.1) with ESMTP id g3D9lM6W011594; Sat, 13 Apr 2002 11:47:22 +0200 (CEST) (envelope-from charnier@xp11.frmug.org) Message-Id: <200204130947.g3D9lM6W011594@xp11.frmug.org> To: Brian Somers Cc: Philippe Charnier , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make job.c main.c make.1 In-Reply-To: Message from Brian Somers of "Fri, 12 Apr 2002 23:18:01 BST." <200204122218.g3CMI1OF096403@hak.lan.Awfulhak.org> Date: Sat, 13 Apr 2002 11:47:22 +0200 From: "Philippe Charnier" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Salut, Brian Somers wrote: >> charnier 2002/04/12 06:23:34 PDT >> >> Modified files: >> usr.bin/make job.c main.c make.1 >> Log: [...] >> Uppercase (first letter) programname after dot. >> >I believe that the last time this came up, the consensus what that >program names aren't capitalised, even if they're the first word in a >sentence. I remember exactly the opposite (but I was not able to get the bits after a search in the archives, so I could be wrong) because I do not like myself uppercasing .Nm (I made lot of commits in this area near 1997) and I remember being in the wrong side of the consensus. Someone stated that the most important was to preserve grammar, and I can't have any argument against that. What was proposed in pr docs/31640 is an alternative (start sentences with ``The .Nm utility'') but the provided patch is also inconsistent (utility vs command). I think someone need to clearly << dictate >> the rule (in mdoc.samples(7) ??) before we can turn the man pages into a consistent state. Also note that the same question should be asked concerning section 3 and .Fn. ------ ------ Philippe Charnier charnier@{xp11.frmug.org,free.fr,FreeBSD.org} ``a PC not running FreeBSD is like a venusian with no tentacles'' ------------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 3:13: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 0364537B421; Sat, 13 Apr 2002 03:13:40 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DADd538587; Sat, 13 Apr 2002 03:13:39 -0700 (PDT) (envelope-from obrien) Message-Id: <200204131013.g3DADd538587@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 03:13:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make str.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/04/13 03:13:39 PDT Modified files: usr.bin/make str.c Log: Make str_concat handle NULL arguments properly (a-la how ODE-2.3.6 make does). Submitted by: jmallett Inspired by: CMU BUILDTOOLS4 coredumping, ODE-2.3.6 make(1) Revision Changes Path 1.17 +13 -12 src/usr.bin/make/str.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 3: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 CAE4F37B416; Sat, 13 Apr 2002 03:16:53 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DAGru39108; Sat, 13 Apr 2002 03:16:53 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204131016.g3DAGru39108@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sat, 13 Apr 2002 03:16:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys fcntl.2 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 asmodai 2002/04/13 03:16:53 PDT Modified files: lib/libc/sys fcntl.2 sys/kern kern_descrip.c Log: Use the correct macros for F_SETFD/F_GETFD instead of magic numbers. Reflect that fact in the manual page. PR: 12723 Submitted by: Peter Jeremy Approved by: bde MFC after: 2 weeks Revision Changes Path 1.37 +12 -4 src/lib/libc/sys/fcntl.2 1.135 +3 -2 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 Sat Apr 13 3:17: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 211DE37B405; Sat, 13 Apr 2002 03:17:19 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DAHJr39232; Sat, 13 Apr 2002 03:17:19 -0700 (PDT) (envelope-from obrien) Message-Id: <200204131017.g3DAHJr39232@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 03:17:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c make.c parse.c str.c suff.c targ.c var.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/04/13 03:17:19 PDT Modified files: usr.bin/make arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c make.c parse.c str.c suff.c targ.c var.c Log: Update SCM ID method. Revision Changes Path 1.24 +1 -3 src/usr.bin/make/arch.c 1.14 +1 -3 src/usr.bin/make/buf.c 1.25 +1 -3 src/usr.bin/make/compat.c 1.18 +1 -3 src/usr.bin/make/cond.c 1.20 +1 -3 src/usr.bin/make/dir.c 1.14 +1 -3 src/usr.bin/make/for.c 1.15 +1 -3 src/usr.bin/make/hash.c 1.32 +1 -3 src/usr.bin/make/job.c 1.53 +2 -2 src/usr.bin/make/main.c 1.17 +1 -3 src/usr.bin/make/make.c 1.32 +1 -3 src/usr.bin/make/parse.c 1.18 +1 -3 src/usr.bin/make/str.c 1.20 +1 -3 src/usr.bin/make/suff.c 1.18 +1 -3 src/usr.bin/make/targ.c 1.26 +1 -3 src/usr.bin/make/var.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 3:29: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 6B17A37B400; Sat, 13 Apr 2002 03:29:48 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DATmx40638; Sat, 13 Apr 2002 03:29:48 -0700 (PDT) (envelope-from murray) Message-Id: <200204131029.g3DATmx40638@freefall.freebsd.org> From: Murray Stokely Date: Sat, 13 Apr 2002 03:29:48 -0700 (PDT) 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 murray 2002/04/13 03:29:48 PDT Modified files: en/projects projects.sgml Log: Update link to C99 and POSIX conformance project pages. Revision Changes Path 1.125 +2 -2 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 Sat Apr 13 3:32: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 5A0CF37B41B; Sat, 13 Apr 2002 03:32:37 -0700 (PDT) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DAWbm40923; Sat, 13 Apr 2002 03:32:37 -0700 (PDT) (envelope-from asmodai) Message-Id: <200204131032.g3DAWbm40923@freefall.freebsd.org> From: Jeroen Ruigrok van der Werven Date: Sat, 13 Apr 2002 03:32:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/vmstat vmstat.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 asmodai 2002/04/13 03:32:37 PDT Modified files: usr.bin/vmstat vmstat.c Log: Fix a missed conversion of lld to llu for the uint64_t ks_calls and cast to unsigned long long. Don't be too overzealous with the printing of ks_calls in the total statistics, cut back from 20 to 13 positions to print (which should last a couple of years easily (20 digits is enough for 3168 years of calls at a measly billion (10^9) calls per second.)). Submitted by: bde Revision Changes Path 1.57 +7 -6 src/usr.bin/vmstat/vmstat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 3:38: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 DF6D037B400; Sat, 13 Apr 2002 03:38:36 -0700 (PDT) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DAca741696; Sat, 13 Apr 2002 03:38:36 -0700 (PDT) (envelope-from znerd) Message-Id: <200204131038.g3DAca741696@freefall.freebsd.org> From: Ernst de Haan Date: Sat, 13 Apr 2002 03:38:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang Makefile ports/lang/kawa 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 znerd 2002/04/13 03:38:36 PDT Modified files: lang Makefile Added files: lang/kawa Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add kawa. Kawa is a Java-based Scheme implementation. PR: 34214 Submitted by: Zach Garner Revision Changes Path 1.290 +1 -0 ports/lang/Makefile 1.1 +33 -0 ports/lang/kawa/Makefile (new) 1.1 +1 -0 ports/lang/kawa/distinfo (new) 1.1 +1 -0 ports/lang/kawa/pkg-comment (new) 1.1 +7 -0 ports/lang/kawa/pkg-descr (new) 1.1 +3 -0 ports/lang/kawa/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 Apr 13 3:46: 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 AA65637B404; Sat, 13 Apr 2002 03:46:03 -0700 (PDT) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DAk3Q42429; Sat, 13 Apr 2002 03:46:03 -0700 (PDT) (envelope-from znerd) Message-Id: <200204131046.g3DAk3Q42429@freefall.freebsd.org> From: Ernst de Haan Date: Sat, 13 Apr 2002 03:46:03 -0700 (PDT) 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 znerd 2002/04/13 03:46:03 PDT Modified files: . modules Log: kawa --> ports/lang/kawa Revision Changes Path 1.4979 +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 Apr 13 3: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 216BF37B400; Sat, 13 Apr 2002 03:57:58 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DAvwZ44045; Sat, 13 Apr 2002 03:57:58 -0700 (PDT) (envelope-from obrien) Message-Id: <200204131057.g3DAvwZ44045@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 03:57:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make Makefile buf.c buf.h compat.c cond.c config.h dir.c dir.h for.c hash.c hash.h job.c job.h list.h lst.h main.c make.1 make.h nonints.h pathnames.h sprite.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/04/13 03:57:57 PDT Modified files: usr.bin/make Makefile buf.c buf.h compat.c cond.c config.h dir.c dir.h for.c hash.c hash.h job.c job.h list.h lst.h main.c make.1 make.h nonints.h pathnames.h sprite.h Log: Fix copyrights, and undo SCS ID damage. Revision Changes Path 1.21 +1 -0 src/usr.bin/make/Makefile 1.15 +2 -1 src/usr.bin/make/buf.c 1.11 +3 -2 src/usr.bin/make/buf.h 1.26 +2 -1 src/usr.bin/make/compat.c 1.19 +2 -1 src/usr.bin/make/cond.c 1.11 +4 -3 src/usr.bin/make/config.h 1.21 +2 -1 src/usr.bin/make/dir.c 1.10 +3 -2 src/usr.bin/make/dir.h 1.15 +5 -2 src/usr.bin/make/for.c 1.16 +2 -1 src/usr.bin/make/hash.c 1.11 +3 -2 src/usr.bin/make/hash.h 1.33 +2 -1 src/usr.bin/make/job.c 1.14 +3 -2 src/usr.bin/make/job.h 1.10 +4 -3 src/usr.bin/make/list.h 1.14 +3 -2 src/usr.bin/make/lst.h 1.54 +4 -2 src/usr.bin/make/main.c 1.51 +2 -2 src/usr.bin/make/make.1 1.17 +1 -1 src/usr.bin/make/make.h 1.12 +1 -1 src/usr.bin/make/nonints.h 1.10 +1 -1 src/usr.bin/make/pathnames.h 1.12 +2 -2 src/usr.bin/make/sprite.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 3: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 B3B1D37B41A; Sat, 13 Apr 2002 03:59:09 -0700 (PDT) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DAx9844382; Sat, 13 Apr 2002 03:59:09 -0700 (PDT) (envelope-from markm) Message-Id: <200204131059.g3DAx9844382@freefall.freebsd.org> From: Mark Murray Date: Sat, 13 Apr 2002 03:59:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/telnet/arpa telnet.h src/crypto/telnet/libtelnet auth-proto.h auth.c auth.h enc-proto.h enc_des.c encrypt.c encrypt.h genget.c getent.c kerberos.c kerberos5.c key-proto.h krb4encpwd.c misc-proto.h misc.c pk.c pk.h read_password.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 markm 2002/04/13 03:59:09 PDT Modified files: (Branch: RELENG_4) crypto/telnet/arpa telnet.h crypto/telnet/libtelnet auth-proto.h auth.c auth.h enc-proto.h enc_des.c encrypt.c encrypt.h genget.c getent.c kerberos.c kerberos5.c key-proto.h krb4encpwd.c misc-proto.h misc.c pk.c pk.h read_password.c rsaencpwd.c sra.c crypto/telnet/telnet authenc.c commands.c defines.h externs.h main.c network.c ring.c ring.h sys_bsd.c telnet.1 telnet.c terminal.c utilities.c crypto/telnet/telnetd authenc.c defs.h ext.h pathnames.h slc.c state.c sys_term.c telnetd.8 telnetd.c telnetd.h termstat.c utility.c Removed files: (Branch: RELENG_4) crypto/telnet/libtelnet spx.c crypto/telnet/telnet tn3270.c Log: MFC: Huge cleanup of telnet. Warns, etc. Revision Changes Path 1.3.2.3 +10 -10 src/crypto/telnet/arpa/telnet.h 1.3.2.2 +44 -42 src/crypto/telnet/libtelnet/auth-proto.h 1.3.2.5 +66 -129 src/crypto/telnet/libtelnet/auth.c 1.1.1.1.8.1 +8 -15 src/crypto/telnet/libtelnet/auth.h 1.3.2.2 +67 -70 src/crypto/telnet/libtelnet/enc-proto.h 1.3.2.1 +111 -163 src/crypto/telnet/libtelnet/enc_des.c 1.3.2.2 +108 -184 src/crypto/telnet/libtelnet/encrypt.c 1.4.2.1 +12 -20 src/crypto/telnet/libtelnet/encrypt.h 1.2.8.2 +15 -17 src/crypto/telnet/libtelnet/genget.c 1.2.6.2 +26 -23 src/crypto/telnet/libtelnet/getent.c 1.3.2.1 +50 -90 src/crypto/telnet/libtelnet/kerberos.c 1.1.1.1.8.1 +646 -609 src/crypto/telnet/libtelnet/kerberos5.c 1.1.1.1.8.1 +6 -12 src/crypto/telnet/libtelnet/key-proto.h 1.3.2.1 +8 -27 src/crypto/telnet/libtelnet/krb4encpwd.c 1.1.1.1.8.1 +17 -16 src/crypto/telnet/libtelnet/misc-proto.h 1.2.8.2 +27 -22 src/crypto/telnet/libtelnet/misc.c 1.2.2.3 +31 -66 src/crypto/telnet/libtelnet/pk.c 1.1.2.3 +1 -13 src/crypto/telnet/libtelnet/pk.h 1.1.1.1.8.2 +4 -2 src/crypto/telnet/libtelnet/read_password.c 1.1.1.1.8.1 +4 -21 src/crypto/telnet/libtelnet/rsaencpwd.c 1.2.8.2 +0 -592 src/crypto/telnet/libtelnet/spx.c (dead) 1.1.2.6 +49 -134 src/crypto/telnet/libtelnet/sra.c 1.2.8.2 +22 -27 src/crypto/telnet/telnet/authenc.c 1.12.2.5 +463 -717 src/crypto/telnet/telnet/commands.c 1.1.1.1.8.1 +1 -6 src/crypto/telnet/telnet/defines.h 1.4.2.2 +106 -117 src/crypto/telnet/telnet/externs.h 1.4.2.5 +63 -79 src/crypto/telnet/telnet/main.c 1.2.8.2 +14 -16 src/crypto/telnet/telnet/network.c 1.2.8.2 +30 -77 src/crypto/telnet/telnet/ring.c 1.1.1.1.8.1 +15 -13 src/crypto/telnet/telnet/ring.h 1.2.8.4 +85 -193 src/crypto/telnet/telnet/sys_bsd.c 1.4.2.9 +5 -5 src/crypto/telnet/telnet/telnet.1 1.4.2.5 +201 -494 src/crypto/telnet/telnet/telnet.c 1.2.8.2 +17 -26 src/crypto/telnet/telnet/terminal.c 1.2.8.2 +0 -416 src/crypto/telnet/telnet/tn3270.c (dead) 1.2.8.2 +40 -80 src/crypto/telnet/telnet/utilities.c 1.4.2.2 +21 -24 src/crypto/telnet/telnetd/authenc.c 1.1.1.1.8.1 +1 -39 src/crypto/telnet/telnetd/defs.h 1.2.8.4 +92 -119 src/crypto/telnet/telnetd/ext.h 1.1.1.1.8.2 +1 -1 src/crypto/telnet/telnetd/pathnames.h 1.4.2.3 +35 -45 src/crypto/telnet/telnetd/slc.c 1.4.2.3 +52 -81 src/crypto/telnet/telnetd/state.c 1.7.2.4 +151 -1174 src/crypto/telnet/telnetd/sys_term.c 1.5.2.6 +32 -64 src/crypto/telnet/telnetd/telnetd.8 1.11.2.5 +78 -470 src/crypto/telnet/telnetd/telnetd.c 1.1.1.1.8.1 +2 -2 src/crypto/telnet/telnetd/telnetd.h 1.4.2.4 +32 -69 src/crypto/telnet/telnetd/termstat.c 1.5.2.4 +46 -76 src/crypto/telnet/telnetd/utility.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 4: 0: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 DA8BA37B404; Sat, 13 Apr 2002 04:00:52 -0700 (PDT) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DB0qj45433; Sat, 13 Apr 2002 04:00:52 -0700 (PDT) (envelope-from markm) Message-Id: <200204131100.g3DB0qj45433@freefall.freebsd.org> From: Mark Murray Date: Sat, 13 Apr 2002 04:00:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure Makefile.inc src/secure/lib/libtelnet Makefile src/secure/libexec/telnetd Makefile src/secure/usr.bin/telnet Makefile src/kerberosIV Makefile.inc src/kerberosIV/lib/libtelnet Makefile src/kerberosIV/libexec/telnetd ... 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 markm 2002/04/13 04:00:52 PDT Modified files: (Branch: RELENG_4) secure Makefile.inc secure/lib/libtelnet Makefile secure/libexec/telnetd Makefile secure/usr.bin/telnet Makefile kerberosIV Makefile.inc kerberosIV/lib/libtelnet Makefile kerberosIV/libexec/telnetd Makefile kerberosIV/usr.bin/telnet Makefile Log: MFC: Merge infrastucture for cleaned-up secure telnet. Revision Changes Path 1.8.2.2 +2 -2 src/kerberosIV/Makefile.inc 1.7.2.1 +23 -14 src/kerberosIV/lib/libtelnet/Makefile 1.7.2.4 +12 -13 src/kerberosIV/libexec/telnetd/Makefile 1.8.2.3 +16 -16 src/kerberosIV/usr.bin/telnet/Makefile 1.13.2.3 +2 -3 src/secure/Makefile.inc 1.17.2.5 +16 -11 src/secure/lib/libtelnet/Makefile 1.19.2.2 +11 -8 src/secure/libexec/telnetd/Makefile 1.21.2.2 +12 -10 src/secure/usr.bin/telnet/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 4: 3: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 9F25337B404; Sat, 13 Apr 2002 04:03:31 -0700 (PDT) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DB3VW49525; Sat, 13 Apr 2002 04:03:31 -0700 (PDT) (envelope-from markm) Message-Id: <200204131103.g3DB3VW49525@freefall.freebsd.org> From: Mark Murray Date: Sat, 13 Apr 2002 04:03:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libtelnet Makefile src/libexec/telnetd Makefile src/usr.bin/telnet 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 markm 2002/04/13 04:03:31 PDT Modified files: (Branch: RELENG_4) lib/libtelnet Makefile libexec/telnetd Makefile usr.bin/telnet Makefile Log: MFC: build infrastructure for cleaned up telnet, including new "make unifdef" target to ease merge-from-secure-telnet. Revision Changes Path 1.10.2.1 +26 -9 src/lib/libtelnet/Makefile 1.13.2.2 +34 -13 src/libexec/telnetd/Makefile 1.14.2.2 +30 -55 src/usr.bin/telnet/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 4: 7: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 444DA37B400; Sat, 13 Apr 2002 04:07:14 -0700 (PDT) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DB7Er53759; Sat, 13 Apr 2002 04:07:14 -0700 (PDT) (envelope-from markm) Message-Id: <200204131107.g3DB7Er53759@freefall.freebsd.org> From: Mark Murray Date: Sat, 13 Apr 2002 04:07:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libtelnet genget.c getent.c misc-proto.h misc.c src/libexec/telnetd defs.h ext.h global.c slc.c state.c sys_term.c telnetd.c telnetd.h termstat.c utility.c src/usr.bin/telnet authenc.c commands.c defines.h externs.h main.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 markm 2002/04/13 04:07:14 PDT Modified files: (Branch: RELENG_4) lib/libtelnet genget.c getent.c misc-proto.h misc.c libexec/telnetd defs.h ext.h global.c slc.c state.c sys_term.c telnetd.c telnetd.h termstat.c utility.c usr.bin/telnet authenc.c commands.c defines.h externs.h main.c network.c ring.c ring.h sys_bsd.c telnet.c terminal.c utilities.c include/arpa telnet.h Removed files: (Branch: RELENG_4) usr.bin/telnet tn3270.c Log: MFC: unifdef'ed secure telnet to obliterate gratuitous diffs between secure telnet and base telnet. Revision Changes Path 1.5.6.2 +9 -8 src/include/arpa/telnet.h 1.2.8.1 +28 -25 src/lib/libtelnet/genget.c 1.3.6.1 +25 -20 src/lib/libtelnet/getent.c 1.1.1.1.14.1 +17 -16 src/lib/libtelnet/misc-proto.h 1.3.8.1 +15 -30 src/lib/libtelnet/misc.c 1.1.1.1.14.1 +1 -39 src/libexec/telnetd/defs.h 1.7.2.4 +91 -123 src/libexec/telnetd/ext.h 1.3.2.1 +1 -1 src/libexec/telnetd/global.c 1.8.2.4 +36 -46 src/libexec/telnetd/slc.c 1.9.2.4 +45 -124 src/libexec/telnetd/state.c 1.24.2.7 +182 -1223 src/libexec/telnetd/sys_term.c 1.22.2.8 +83 -534 src/libexec/telnetd/telnetd.c 1.1.1.1.14.1 +2 -2 src/libexec/telnetd/telnetd.h 1.9.2.4 +44 -80 src/libexec/telnetd/termstat.c 1.13.2.4 +51 -147 src/libexec/telnetd/utility.c 1.2.14.1 +5 -69 src/usr.bin/telnet/authenc.c 1.21.2.5 +428 -775 src/usr.bin/telnet/commands.c 1.1.1.1.14.1 +1 -6 src/usr.bin/telnet/defines.h 1.5.2.2 +106 -108 src/usr.bin/telnet/externs.h 1.10.2.5 +30 -113 src/usr.bin/telnet/main.c 1.2.14.1 +17 -13 src/usr.bin/telnet/network.c 1.3.6.1 +29 -68 src/usr.bin/telnet/ring.c 1.2.14.1 +13 -11 src/usr.bin/telnet/ring.h 1.5.6.1 +195 -241 src/usr.bin/telnet/sys_bsd.c 1.8.2.3 +190 -540 src/usr.bin/telnet/telnet.c 1.3.6.1 +19 -22 src/usr.bin/telnet/terminal.c 1.1.1.2.6.1 +0 -411 src/usr.bin/telnet/tn3270.c (dead) 1.3.12.1 +39 -142 src/usr.bin/telnet/utilities.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 4: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 6EBDA37B400; Sat, 13 Apr 2002 04:35:48 -0700 (PDT) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DBZmk57841; Sat, 13 Apr 2002 04:35:48 -0700 (PDT) (envelope-from znerd) Message-Id: <200204131135.g3DBZmk57841@freefall.freebsd.org> From: Ernst de Haan Date: Sat, 13 Apr 2002 04:35:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/jakarta-ant Makefile ports/devel/jakarta-ant/files patch-bin::ant X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/13 04:35:48 PDT Modified files: devel/jakarta-ant Makefile Added files: devel/jakarta-ant/files patch-bin::ant Log: Now uses ${USE_JAVA} and ${FIND}. Using ${SED} i.s.o. ${PERL} for replacements. Made the output of the make process friendlier. Fixed the problem that JAVA_HOME had to be set. Bumped PORTREVISION. PR: 32382 Revision Changes Path 1.7 +37 -14 ports/devel/jakarta-ant/Makefile 1.1 +28 -0 ports/devel/jakarta-ant/files/patch-bin::ant (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 5: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 A996E37B405; Sat, 13 Apr 2002 05:18:00 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DCI0Z68354; Sat, 13 Apr 2002 05:18:00 -0700 (PDT) (envelope-from obrien) Message-Id: <200204131218.g3DCI0Z68354@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 05:18:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make job.c job.h main.c make.1 make.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/04/13 05:18:00 PDT Modified files: usr.bin/make job.c job.h main.c make.1 make.c Log: Prefer BSDmakefile over makefile and Makefile. Submitted by: jmallett Obtained from: OpenBSD Revision Changes Path 1.34 +4 -4 src/usr.bin/make/job.c 1.15 +1 -1 src/usr.bin/make/job.h 1.55 +2 -1 src/usr.bin/make/main.c 1.52 +1 -0 src/usr.bin/make/make.1 1.18 +1 -1 src/usr.bin/make/make.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 5:20: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 3D81137B404; Sat, 13 Apr 2002 05:20:52 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DCKqr68958; Sat, 13 Apr 2002 05:20:52 -0700 (PDT) (envelope-from obrien) Message-Id: <200204131220.g3DCKqr68958@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 05:20:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make 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 obrien 2002/04/13 05:20:52 PDT Modified files: usr.bin/make main.c Log: Fix a minor lint warning. Revision Changes Path 1.56 +2 -0 src/usr.bin/make/main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 5:21: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 F0A5B37B416; Sat, 13 Apr 2002 05:21:30 -0700 (PDT) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DCLUK69059; Sat, 13 Apr 2002 05:21:30 -0700 (PDT) (envelope-from znerd) Message-Id: <200204131221.g3DCLUK69059@freefall.freebsd.org> From: Ernst de Haan Date: Sat, 13 Apr 2002 05:21:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/spread 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 znerd 2002/04/13 05:21:30 PDT Modified files: net/spread Makefile Log: Added some alternative download locations. Revision Changes Path 1.7 +4 -1 ports/net/spread/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 5:23: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 4931A37B404; Sat, 13 Apr 2002 05:23:39 -0700 (PDT) Received: (from hm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DCNdV69418; Sat, 13 Apr 2002 05:23:39 -0700 (PDT) (envelope-from hm) Message-Id: <200204131223.g3DCNdV69418@freefall.freebsd.org> From: Hellmuth Michaelis Date: Sat, 13 Apr 2002 05:23:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/isdn holidays.D X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hm 2002/04/13 05:23:39 PDT Modified files: etc/isdn holidays.D Log: update german national holidays file for 2002, 2003 and 2004 Revision Changes Path 1.3 +27 -10 src/etc/isdn/holidays.D To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 5:25:34 2002 Delivered-To: cvs-all@freebsd.org Received: from finntroll.newgold.net (Durham-ar1-4-64-252-019.dsl.genuity.net [4.64.252.19]) by hub.freebsd.org (Postfix) with SMTP id A3B0337B404 for ; Sat, 13 Apr 2002 05:25:28 -0700 (PDT) Received: (qmail 12978 invoked by uid 1001); 13 Apr 2002 12:30:44 -0000 Date: Sat, 13 Apr 2002 12:30:44 +0000 From: "J. Mallett" To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make job.c job.h main.c make.1 make.c Message-ID: <20020413123044.GB13221@FreeBSD.ORG> References: <200204131218.g3DCI0Z68354@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204131218.g3DCI0Z68354@freefall.freebsd.org> User-Agent: Mutt/1.3.27i Organisation: FreeBSD Sender: owner-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, Apr 13, 2002 at 05:18:00AM -0700, David E. O'Brien wrote: > obrien 2002/04/13 05:18:00 PDT > > Modified files: > usr.bin/make job.c job.h main.c make.1 make.c > Log: > Prefer BSDmakefile over makefile and Makefile. > > Submitted by: jmallett It looks like from the modified files you also hit it with the Job_{End,Finish} changes, which I will say a word about... NetBSD uses Job_Finish where we use[d] Job_End, OpenBSD used to do what we had, and that's where we got it from, but they have now deprecated Job_End. At least, that's what I've gathered from source code comments. Anyway, it reduces diffs with NetBSD, which is nice if like me you put FreeBSD's job.c into NetBSD make(1). There are other considerations, but for now they are just considerations, nothing simple to act on. As per BSDmakefile, ODE, GNU, and OpenBSD have done this for ages, I have it in my repo, and so on. It's just a Good Idea (tm), especially in an open source project, where we know that we deal with more than one version of make(1). This makes life easier when doing a complex, portable build system. Well, there ya go. -- jmallett@FreeBSD.org | C, MIPS, POSIX, UNIX, BSD, IRC Geek. http://www.FreeBSD.org | The Power to Serve "We all need mirrors to remind ourselves who we are -- I'm no different." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 5:34:51 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 AFDEF37B405; Sat, 13 Apr 2002 05:34:47 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3DCYkYm039083; Sat, 13 Apr 2002 05:34:46 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3DCXVgb038422; Sat, 13 Apr 2002 05:33:31 -0700 (PDT) Date: Sat, 13 Apr 2002 05:33:31 -0700 From: "David O'Brien" To: "J. Mallett" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make job.c job.h main.c make.1 make.c Message-ID: <20020413053330.A96771@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <200204131218.g3DCI0Z68354@freefall.freebsd.org> <20020413123044.GB13221@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: <20020413123044.GB13221@FreeBSD.ORG>; from jmallett@FreeBSD.ORG on Sat, Apr 13, 2002 at 12:30:44PM +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 Sat, Apr 13, 2002 at 12:30:44PM +0000, J. Mallett wrote: > On Sat, Apr 13, 2002 at 05:18:00AM -0700, David E. O'Brien wrote: > > obrien 2002/04/13 05:18:00 PDT > > > > Modified files: > > usr.bin/make job.c job.h main.c make.1 make.c > > Log: > > Prefer BSDmakefile over makefile and Makefile. > > It looks like from the modified files you also hit it with the I've said it before and I'll say it again -- CVS sucks and it hates me. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 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 BF42937B404; Sat, 13 Apr 2002 05:43:11 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DChBN71880; Sat, 13 Apr 2002 05:43:11 -0700 (PDT) (envelope-from murray) Message-Id: <200204131243.g3DChBN71880@freefall.freebsd.org> From: Murray Stokely Date: Sat, 13 Apr 2002 05:43:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall sysinstall.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 murray 2002/04/13 05:43:07 PDT Modified files: usr.sbin/sysinstall sysinstall.h Log: Add the concept of a volume to the device and package structures. If these values are different for a given package, then we must prompt the user to insert another disc before the package can be installed. Revision Changes Path 1.225 +2 -0 src/usr.sbin/sysinstall/sysinstall.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 5:44: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 3D14F37B416; Sat, 13 Apr 2002 05:44:19 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DCiJG72314; Sat, 13 Apr 2002 05:44:19 -0700 (PDT) (envelope-from murray) Message-Id: <200204131244.g3DCiJG72314@freefall.freebsd.org> From: Murray Stokely Date: Sat, 13 Apr 2002 05:44:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall cdrom.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 murray 2002/04/13 05:44:19 PDT Modified files: usr.sbin/sysinstall cdrom.c Log: Read the CD_VOLUME property from the cdrom.inf file and use it to initialize the volume ID for the media device in use. Revision Changes Path 1.51 +8 -1 src/usr.sbin/sysinstall/cdrom.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 5:46: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 98FC737B400; Sat, 13 Apr 2002 05:46:40 -0700 (PDT) Received: (from bp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DCkef73017; Sat, 13 Apr 2002 05:46:40 -0700 (PDT) (envelope-from bp) Message-Id: <200204131246.g3DCkef73017@freefall.freebsd.org> From: Boris Popov Date: Sat, 13 Apr 2002 05:46:40 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_mchain.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 bp 2002/04/13 05:46:40 PDT Modified files: (Branch: RELENG_4) sys/kern subr_mchain.c Log: MFC: rev 1.4 - Add support for iovcnt > 1. Revision Changes Path 1.2.2.2 +16 -14 src/sys/kern/subr_mchain.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 5:50: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 AA1E137B405; Sat, 13 Apr 2002 05:50:32 -0700 (PDT) Received: (from bp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DCoWN73492; Sat, 13 Apr 2002 05:50:32 -0700 (PDT) (envelope-from bp) Message-Id: <200204131250.g3DCoWN73492@freefall.freebsd.org> From: Boris Popov Date: Sat, 13 Apr 2002 05:50:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netsmb smb.h smb_conn.h smb_smb.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 bp 2002/04/13 05:50:32 PDT Modified files: (Branch: RELENG_4) sys/netsmb smb.h smb_conn.h smb_smb.c Log: MFC: Remove redundant checks for iovcnt. Add unicode related definition for future use. Describe Samba bug. Add subfunction definition. Revision Changes Path 1.1.2.2 +1 -0 src/sys/netsmb/smb.h 1.1.2.2 +1 -0 src/sys/netsmb/smb_conn.h 1.1.2.2 +16 -8 src/sys/netsmb/smb_smb.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 6: 0: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 BFAC637B400; Sat, 13 Apr 2002 06:00:43 -0700 (PDT) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DD0hq82632; Sat, 13 Apr 2002 06:00:43 -0700 (PDT) (envelope-from murray) Message-Id: <200204131300.g3DD0hq82632@freefall.freebsd.org> From: Murray Stokely Date: Sat, 13 Apr 2002 06:00:43 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall index.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 murray 2002/04/13 06:00:43 PDT Modified files: usr.sbin/sysinstall index.c Log: Add support for an additional field to the packages/INDEX file. If present, this field specifies the media volume that the disc is contained on. If the volume of a given packages is different than the current volume of mediaDevice, then the user is prompted -- "This is disc #%d. Package %s is on disc #%d\n" "Would you like to switch discs now?\n" If the user selects yes, then DEVICE_SHUTDOWN is called and the user is then prompted -- "Please remove disc #%d from you drive, and add disc #%d" This works well for a carefully crafted INDEX file, but more work needs to be done to sort dependencies on a given package based on the volume that they reside on, to minimize the amount of disc flipping required of the user. This commit is a no-op for normal INDEX files and FreeBSD CDs. These additional features are only used if the INDEX and cdrom.inf file have multi-volume support. Revision Changes Path 1.96 +45 -8 src/usr.sbin/sysinstall/index.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 6:51:55 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 24BE437B405; Sat, 13 Apr 2002 06:51:51 -0700 (PDT) Received: by flood.ping.uio.no (Postfix, from userid 2602) id D0EFB5309; Sat, 13 Apr 2002 15:51:48 +0200 (CEST) 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: "Philippe Charnier" Cc: Brian Somers , Philippe Charnier , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make job.c main.c make.1 References: <200204130947.g3D9lM6W011594@xp11.frmug.org> From: Dag-Erling Smorgrav Date: 13 Apr 2002 15:51:48 +0200 In-Reply-To: <200204130947.g3D9lM6W011594@xp11.frmug.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 "Philippe Charnier" writes: > Brian Somers wrote: > > I believe that the last time this came up, the consensus what that > > program names aren't capitalised, even if they're the first word in a > > sentence. > I remember exactly the opposite (but I was not able to get the bits > after a search in the archives, so I could be wrong) Both wrong: the consensus was that program and function names should never be the first word in a sentence, and that if necessary one should wrap them in "The ${foo} utility" or "The ${foo} function", as appropriate. 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 Sat Apr 13 6:59: 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 CD25737B41A; Sat, 13 Apr 2002 06:58:57 -0700 (PDT) Received: (from eivind@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DDwvF95876; Sat, 13 Apr 2002 06:58:57 -0700 (PDT) (envelope-from eivind) Message-Id: <200204131358.g3DDwvF95876@freefall.freebsd.org> From: Eivind Eklund Date: Sat, 13 Apr 2002 06:58:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/isync Makefile distinfo pkg-descr ports/mail/isync/files patch-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 eivind 2002/04/13 06:58:57 PDT Modified files: mail/isync Makefile distinfo pkg-descr Added files: mail/isync/files patch-config.c Log: Update and bugfix. WARNING: The format for the mailboxes has changed, so you will get duplicate messages if you have old mailboxes lying around. I have delayed this upgrade as I was planning to write a conversion script, but feel that it has been too long already. Bugfix by: nectar Revision Changes Path 1.5 +7 -2 ports/mail/isync/Makefile 1.4 +1 -1 ports/mail/isync/distinfo 1.1 +8 -0 ports/mail/isync/files/patch-config.c (new) 1.3 +1 -1 ports/mail/isync/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 Apr 13 7:25:45 2002 Delivered-To: cvs-all@freebsd.org Received: from anchor-post-31.mail.demon.net (anchor-post-31.mail.demon.net [194.217.242.89]) by hub.freebsd.org (Postfix) with ESMTP id 5B8B437B405; Sat, 13 Apr 2002 07:25:36 -0700 (PDT) Received: from mailgate.nlsystems.com ([62.49.251.130] helo=herring.nlsystems.com) by anchor-post-31.mail.demon.net with esmtp (Exim 3.35 #1) id 16wOT8-000LZB-0V; Sat, 13 Apr 2002 15:25:34 +0100 Received: from salmon.nlsystems.com (salmon [10.0.0.3]) by herring.nlsystems.com (8.12.2/8.11.2) with ESMTP id g3DEPYaf001292; Sat, 13 Apr 2002 15:25:34 +0100 (BST) (envelope-from dfr@nlsystems.com) Date: Sat, 13 Apr 2002 15:25:34 +0100 (BST) From: Doug Rabson To: Marcel Moolenaar Cc: Doug Rabson , , Subject: Re: cvs commit: src/sys/ia64/ia64 trap.c In-Reply-To: <20020413083146.GA53915@athlon.pn.xcllnt.net> Message-ID: <20020413152404.J26844-100000@salmon.nlsystems.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 Sat, 13 Apr 2002, Marcel Moolenaar wrote: > On Fri, Apr 12, 2002 at 12:41:16AM -0700, Doug Rabson wrote: > > dfr 2002/04/12 00:41:16 PDT > > > > Modified files: > > sys/ia64/ia64 trap.c > > Log: > > Print extra information in printtrap() if the interrupted state was for > > an IA-32 process. Don't sign extend arguments in ia32_syscall - its not > > normally going to be useful (e.g. pointers need to be zero extended). > > Doug, > > Just to make sure we're on the same page. We rule out pointer swizzling, > because IA-32 processes run in region 0 only. Right? I don't think we absolutely have to rule out pointer swizzling at this point for ILP32 apps using native ia64 instruction set. For ia32 applications, the pointer conversion is stricly zero-extension, i.e. region 0 only. -- Doug Rabson Mail: dfr@nlsystems.com Phone: +44 20 8348 6160 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 7:32: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 30B1D37B404; Sat, 13 Apr 2002 07:32:47 -0700 (PDT) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DEWlw03487; Sat, 13 Apr 2002 07:32:47 -0700 (PDT) (envelope-from rwatson) Message-Id: <200204131432.g3DEWlw03487@freefall.freebsd.org> From: Robert Watson Date: Sat, 13 Apr 2002 07:32:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/events/2002 bsdcon-devsummit.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 rwatson 2002/04/13 07:32:46 PDT Modified files: en/events/2002 bsdcon-devsummit.sgml Log: Typo correction. Submitted by: Hiten Pandya Revision Changes Path 1.5 +2 -2 www/en/events/2002/bsdcon-devsummit.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 8:14: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from finntroll.newgold.net (Durham-ar1-4-64-252-019.dsl.genuity.net [4.64.252.19]) by hub.freebsd.org (Postfix) with SMTP id BCEED37B405 for ; Sat, 13 Apr 2002 08:13:56 -0700 (PDT) Received: (qmail 23227 invoked by uid 1001); 13 Apr 2002 15:19:13 -0000 Date: Sat, 13 Apr 2002 15:19:13 +0000 From: "J. Mallett" To: David O'Brien Cc: "J. Mallett" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make job.c job.h main.c make.1 make.c Message-ID: <20020413151913.GB26522@FreeBSD.ORG> References: <200204131218.g3DCI0Z68354@freefall.freebsd.org> <20020413123044.GB13221@FreeBSD.ORG> <20020413053330.A96771@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020413053330.A96771@dragon.nuxi.com> User-Agent: Mutt/1.3.27i Organisation: FreeBSD Sender: owner-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, Apr 13, 2002 at 05:33:31AM -0700, David O'Brien wrote: > On Sat, Apr 13, 2002 at 12:30:44PM +0000, J. Mallett wrote: > > On Sat, Apr 13, 2002 at 05:18:00AM -0700, David E. O'Brien wrote: > > > obrien 2002/04/13 05:18:00 PDT > > > > > > Modified files: > > > usr.bin/make job.c job.h main.c make.1 make.c > > > Log: > > > Prefer BSDmakefile over makefile and Makefile. > > > > It looks like from the modified files you also hit it with the > > I've said it before and I'll say it again -- CVS sucks and it hates me. At least if it were P4, it'd have a facility to go back and edit change messages *duck*. Anyway, might be a good idea to go back and do a forced commit to make.c, job.c, and job.h mentioning what actually changed in the given revisions, for the sake of the people who pick up development of our make(1), in oh, fifteen years or so, and want to know what BSDmakefile has to do with the renaming of a tiny function ;) Not that our make(1) will be meaningful a few years from now in all likelyhood. Speaking of which, with changes to try execing a command via a shell if it fails of its own accord, and with our job.c, NetBSD make(1) has gotten so far most of the way in buildworld though it could still crap out near the end I'm sure. That reminds me, in where we check for shell builtins, we iterate over a list of known builtins we might want, and if it is one of them, we execute it. We do this for every non-wildcard command (those get passed to the shell anyway)... This is a lot less efficient than trying to execute the command, and passing it to /bin/sh -c if that fails, in the best case, and in the worst case, my way is only slightly worse... The worst case, trying to execute a command that does not exist and never will work, is not something we should feel obligated to optimize for. Thoughts? If that seems reasonable I'll post my diffs relative to NetBSD make(1) should I not run into some place where it pukes. If anyone knows of a place where NetBSD's make(1) has been known not to work with what we need it to work with, please let me know so I can try to fix that. Thanks. -- jmallett@FreeBSD.org | C, MIPS, POSIX, UNIX, BSD, IRC Geek. http://www.FreeBSD.org | The Power to Serve "We all need mirrors to remind ourselves who we are -- I'm no different." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 8:33: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 5B43137B400; Sat, 13 Apr 2002 08:33:26 -0700 (PDT) Received: (from bp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DFXQ915095; Sat, 13 Apr 2002 08:33:26 -0700 (PDT) (envelope-from bp) Message-Id: <200204131533.g3DFXQ915095@freefall.freebsd.org> From: Boris Popov Date: Sat, 13 Apr 2002 08:33:26 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/smbfs smbfs_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 bp 2002/04/13 08:33:26 PDT Modified files: sys/fs/smbfs smbfs_vnops.c Log: Check write permissions before creating anything. PR: kern/27883 MFC after: 1 week Revision Changes Path 1.18 +3 -0 src/sys/fs/smbfs/smbfs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 8:53:36 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 025F237B404; Sat, 13 Apr 2002 08:53:25 -0700 (PDT) Received: (from mike@localhost) by espresso.q9media.com (8.11.6/8.11.6) id g3DFkhe03983; Sat, 13 Apr 2002 11:46:43 -0400 (EDT) (envelope-from mike) Date: Sat, 13 Apr 2002 11:46:43 -0400 From: Mike Barcroft To: Marcel Moolenaar Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c Message-ID: <20020413114643.A2860@espresso.q9media.com> References: <200204130820.g3D8KGx17608@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204130820.g3D8KGx17608@freefall.freebsd.org>; from marcel@FreeBSD.org on Sat, Apr 13, 2002 at 01:20:15AM -0700 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 Marcel Moolenaar writes: > marcel 2002/04/13 01:20:15 PDT > > Modified files: > sbin/savecore savecore.c > Log: > High-level changes (user visible): > o Implement -c (clear) to clear previously kept headers (note that > dumps not cleared will remain until -c is used), > o Implement -f (force) to allow re-saving a previously saved dump, > o Implement -k (keep) and make clearing the dump header the default, > o Implement -v (verbose) and make most output conditional upon it, > o Emit minimal output for the non-verbose case with the assumption > that savecore is run mostly from within /etc/rc, > o Update usage message to reflect what is and what's not, > o mark -d as obsolete. [...] > > Revision Changes Path > 1.55 +137 -56 src/sbin/savecore/savecore.c Is anyone working on a manual for this? 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 Sat Apr 13 9:10: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 111FB37B405; Sat, 13 Apr 2002 09:10:19 -0700 (PDT) Received: (from mike@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DGAJW24592; Sat, 13 Apr 2002 09:10:19 -0700 (PDT) (envelope-from mike) Message-Id: <200204131610.g3DGAJW24592@freefall.freebsd.org> From: Mike Barcroft Date: Sat, 13 Apr 2002 09:10:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/projects/c99 index.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/04/13 09:10:18 PDT Modified files: en/projects/c99 index.sgml Log: Add two unassigned tasks: o C99 floating point classification macros: fpclassify(), isfinite(), isinf(), isnan(), isnormal(), signbit() o C99 floating point comparison macros: isgreater(), isgreaterequal(), isless(), islessequal(), islessgreater(), isunordered() Revision Changes Path 1.3 +20 -2 www/en/projects/c99/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 9:19: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 8427E37B419; Sat, 13 Apr 2002 09:19:39 -0700 (PDT) Received: (from demon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DGJdp25802; Sat, 13 Apr 2002 09:19:39 -0700 (PDT) (envelope-from demon) Message-Id: <200204131619.g3DGJdp25802@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sat, 13 Apr 2002 09:19:39 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/mrtg 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/04/13 09:19:39 PDT Modified files: net/mrtg Makefile distinfo Log: Upgrade to 2.9.18pre6 Revision Changes Path 1.46 +2 -2 ports/net/mrtg/Makefile 1.29 +1 -1 ports/net/mrtg/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 9: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 9548137B405; Sat, 13 Apr 2002 09:33:14 -0700 (PDT) Received: (from cy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DGXEP27543; Sat, 13 Apr 2002 09:33:14 -0700 (PDT) (envelope-from cy) Message-Id: <200204131633.g3DGXEP27543@freefall.freebsd.org> From: Cy Schubert Date: Sat, 13 Apr 2002 09:33:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules ports/security Makefile ports/security/krb5-beta Makefile distinfo pkg-comment pkg-descr pkg-plist ports/security/krb5-beta/files README.FreeBSD patch-ac patch-ad patch-ae patch-af patch-ai patch-aj ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/13 09:33:14 PDT Modified files: . modules security Makefile Added files: security/krb5-beta Makefile distinfo pkg-comment pkg-descr pkg-plist security/krb5-beta/files README.FreeBSD patch-ac patch-ad patch-ae patch-af patch-ai patch-aj patch-appl::bsd::Makefile.in patch-appl::bsd::klogind.M patch-appl::telnet::telnetd::Makefile.in patch-appl::telnet::telnetd::telnetd.8 patch-appl::telnet::telnetd::utility.c patch-as patch-at patch-av patch-ax patch-ay patch-ba patch-bb Log: New MIT Kerberos V beta, V 1.2.5-beta1. Revision Changes Path 1.4980 +1 -0 CVSROOT/modules 1.290 +1 -0 ports/security/Makefile 1.4 +128 -0 ports/security/krb5-beta/Makefile (new) 1.4 +1 -0 ports/security/krb5-beta/distinfo (new) 1.3 +32 -0 ports/security/krb5-beta/files/README.FreeBSD (new) 1.3 +13 -0 ports/security/krb5-beta/files/patch-ac (new) 1.3 +13 -0 ports/security/krb5-beta/files/patch-ad (new) 1.3 +13 -0 ports/security/krb5-beta/files/patch-ae (new) 1.3 +13 -0 ports/security/krb5-beta/files/patch-af (new) 1.3 +28 -0 ports/security/krb5-beta/files/patch-ai (new) 1.3 +19 -0 ports/security/krb5-beta/files/patch-aj (new) 1.3 +11 -0 ports/security/krb5-beta/files/patch-appl::bsd::Makefile.in (new) 1.3 +34 -0 ports/security/krb5-beta/files/patch-appl::bsd::klogind.M (new) 1.3 +11 -0 ports/security/krb5-beta/files/patch-appl::telnet::telnetd::Makefile.in (new) 1.3 +22 -0 ports/security/krb5-beta/files/patch-appl::telnet::telnetd::telnetd.8 (new) 1.3 +38 -0 ports/security/krb5-beta/files/patch-appl::telnet::telnetd::utility.c (new) 1.3 +199 -0 ports/security/krb5-beta/files/patch-as (new) 1.3 +14 -0 ports/security/krb5-beta/files/patch-at (new) 1.3 +15 -0 ports/security/krb5-beta/files/patch-av (new) 1.3 +11 -0 ports/security/krb5-beta/files/patch-ax (new) 1.3 +50 -0 ports/security/krb5-beta/files/patch-ay (new) 1.3 +81 -0 ports/security/krb5-beta/files/patch-ba (new) 1.3 +10 -0 ports/security/krb5-beta/files/patch-bb (new) 1.3 +1 -0 ports/security/krb5-beta/pkg-comment (new) 1.3 +24 -0 ports/security/krb5-beta/pkg-descr (new) 1.3 +124 -0 ports/security/krb5-beta/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 Apr 13 9:38: 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 5360E37B41C; Sat, 13 Apr 2002 09:38:04 -0700 (PDT) Received: (from gshapiro@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DGc4S28218; Sat, 13 Apr 2002 09:38:04 -0700 (PDT) (envelope-from gshapiro) Message-Id: <200204131638.g3DGc4S28218@freefall.freebsd.org> From: Gregory Neil Shapiro Date: Sat, 13 Apr 2002 09:38:04 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING 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 gshapiro 2002/04/13 09:38:04 PDT Modified files: (Branch: RELENG_4) . UPDATING Log: The MTA startup script changes have been MFC'ed so MFC the UPDATING information as well. Revision Changes Path 1.73.2.58 +7 -0 src/UPDATING To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 9:39:47 2002 Delivered-To: cvs-all@freebsd.org Received: from finntroll.newgold.net (Durham-ar1-4-64-252-019.dsl.genuity.net [4.64.252.19]) by hub.freebsd.org (Postfix) with SMTP id 9859837B419 for ; Sat, 13 Apr 2002 09:39:40 -0700 (PDT) Received: (qmail 6850 invoked by uid 1001); 13 Apr 2002 16:44:58 -0000 Date: Sat, 13 Apr 2002 16:44:57 +0000 From: "J. Mallett" To: "J. Mallett" Cc: David O'Brien , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make job.c job.h main.c make.1 make.c Message-ID: <20020413164457.GA8591@FreeBSD.ORG> References: <200204131218.g3DCI0Z68354@freefall.freebsd.org> <20020413123044.GB13221@FreeBSD.ORG> <20020413053330.A96771@dragon.nuxi.com> <20020413151913.GB26522@FreeBSD.ORG> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020413151913.GB26522@FreeBSD.ORG> User-Agent: Mutt/1.3.27i Organisation: FreeBSD Sender: owner-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, Apr 13, 2002 at 03:19:13PM +0000, J. Mallett wrote: > > Thoughts? If that seems reasonable I'll post my diffs relative to NetBSD > make(1) should I not run into some place where it pukes. If anyone knows > of a place where NetBSD's make(1) has been known not to work with what we > need it to work with, please let me know so I can try to fix that. > I just got through a buildworld, so I decided it's time to post the diffs. I'm going to run it with our make(1) now, and compare performance. If there is not a significant boost, and if there aren't things in NetBSD that stand out as things we want, I'm not sure whether it's worth it or not. I like the ability to use ODE :@@@, but that's neither here nor there. The diffs explain: http://people.freebsd.org/~jmallett/NetBSD.make.diff Again, these are relative to NetBSD -rHEAD. -- jmallett@FreeBSD.org | C, MIPS, POSIX, UNIX, BSD, IRC Geek. http://www.FreeBSD.org | The Power to Serve "We all need mirrors to remind ourselves who we are -- I'm no different." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 9:47: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 DFBE337B416; Sat, 13 Apr 2002 09:47:10 -0700 (PDT) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DGlAr29570; Sat, 13 Apr 2002 09:47:10 -0700 (PDT) (envelope-from ue) Message-Id: <200204131647.g3DGlAr29570@freefall.freebsd.org> From: Udo Erdelhoff Date: Sat, 13 Apr 2002 09:47:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.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 ue 2002/04/13 09:47:10 PDT Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: MFC 1.36 and 1.37: Assorted SGML fixes (missing closing tags, opening tags that should have been closing tags, lists should not be inside paragraphs) Revision Changes Path 1.13.2.19 +87 -112 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 9:51: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 8568837B41C; Sat, 13 Apr 2002 09:51:14 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DGpEN30154; Sat, 13 Apr 2002 09:51:14 -0700 (PDT) (envelope-from marcus) Message-Id: <200204131651.g3DGpEN30154@freefall.freebsd.org> From: Joe Marcus Clarke Date: Sat, 13 Apr 2002 09:51:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/ogle Makefile ports/graphics/ogle-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 marcus 2002/04/13 09:51:14 PDT Modified files: graphics/ogle Makefile graphics/ogle-gui Makefile Log: Allow ogle and ogle-gui to find the libxml2 header files. According to www.libxml.org, libxml and libxml2 header files should be #include'd as and not just . Reported by: many Submitted by: lioux Reviewed by: sobomax Approved by: lioux Revision Changes Path 1.11 +2 -1 ports/graphics/ogle-gui/Makefile 1.5 +2 -0 ports/graphics/ogle/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 10: 6: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 27CE737B400; Sat, 13 Apr 2002 10:06:32 -0700 (PDT) Received: (from marcus@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DH6WB35830; Sat, 13 Apr 2002 10:06:32 -0700 (PDT) (envelope-from marcus) Message-Id: <200204131706.g3DH6WB35830@freefall.freebsd.org> From: Joe Marcus Clarke Date: Sat, 13 Apr 2002 10:06:32 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mozilla Makefile ports/www/mozilla-headers 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 marcus 2002/04/13 10:06:32 PDT Modified files: www/mozilla Makefile www/mozilla-headers Makefile Log: Allow installed files to have correct permissions when built by a non-root user. PR: 35980 Submitted by: Alan Eldridge Reviewed by: sobomax Approved by: sobomax Revision Changes Path 1.5 +3 -2 ports/www/mozilla-headers/Makefile 1.90 +2 -2 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 Sat Apr 13 10:19: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 873F537B400; Sat, 13 Apr 2002 10:19:52 -0700 (PDT) Received: (from jim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DHJqw39343; Sat, 13 Apr 2002 10:19:52 -0700 (PDT) (envelope-from jim) Message-Id: <200204131719.g3DHJqw39343@freefall.freebsd.org> From: Jim Mock Date: Sat, 13 Apr 2002 10:19:52 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/java-tomcat 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 jim 2002/04/13 10:19:52 PDT Modified files: en_US.ISO8859-1/articles/java-tomcat article.sgml Log: Add a missing tag that was causing some funky whitespace in the output. Noticed by: Marc Fonvieille Revision Changes Path 1.2 +1 -1 doc/en_US.ISO8859-1/articles/java-tomcat/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 Apr 13 10:45: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 AAFC237B404; Sat, 13 Apr 2002 10:45:13 -0700 (PDT) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DHjDc43225; Sat, 13 Apr 2002 10:45:13 -0700 (PDT) (envelope-from knu) Message-Id: <200204131745.g3DHjDc43225@freefall.freebsd.org> From: Akinori MUSHA Date: Sat, 13 Apr 2002 10:45:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/ruby-csv 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/04/13 10:45:13 PDT Modified files: textproc/ruby-csv Makefile distinfo Log: Update to 1.1.1. Revision Changes Path 1.5 +1 -1 ports/textproc/ruby-csv/Makefile 1.5 +1 -1 ports/textproc/ruby-csv/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 11: 2:55 2002 Delivered-To: cvs-all@freebsd.org Received: from kayak.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by hub.freebsd.org (Postfix) with ESMTP id 5009537B405; Sat, 13 Apr 2002 11:02:48 -0700 (PDT) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by kayak.xcllnt.net (8.11.6/8.11.4) with ESMTP id g3DI2mJ33064; Sat, 13 Apr 2002 11:02:48 -0700 (PDT) (envelope-from marcel@kayak.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp01.pn.xcllnt.net (8.12.2/8.12.2) with ESMTP id g3DI30jv000377; Sat, 13 Apr 2002 11:03:00 -0700 (PDT) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.2/8.12.2/Submit) id g3DI306P000376; Sat, 13 Apr 2002 11:03:00 -0700 (PDT) Date: Sat, 13 Apr 2002 11:03:00 -0700 From: Marcel Moolenaar To: Mike Barcroft Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c Message-ID: <20020413180300.GB319@dhcp01.pn.xcllnt.net> References: <200204130820.g3D8KGx17608@freefall.freebsd.org> <20020413114643.A2860@espresso.q9media.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020413114643.A2860@espresso.q9media.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 Sat, Apr 13, 2002 at 11:46:43AM -0400, Mike Barcroft wrote: > Marcel Moolenaar writes: > > marcel 2002/04/13 01:20:15 PDT > > > > Modified files: > > sbin/savecore savecore.c > > Log: > > High-level changes (user visible): > > o Implement -c (clear) to clear previously kept headers (note that > > dumps not cleared will remain until -c is used), > > o Implement -f (force) to allow re-saving a previously saved dump, > > o Implement -k (keep) and make clearing the dump header the default, > > o Implement -v (verbose) and make most output conditional upon it, > > o Emit minimal output for the non-verbose case with the assumption > > that savecore is run mostly from within /etc/rc, > > o Update usage message to reflect what is and what's not, > > o mark -d as obsolete. > [...] > > > > Revision Changes Path > > 1.55 +137 -56 src/sbin/savecore/savecore.c > > Is anyone working on a manual for this? Unless someone is doing it secretly: no. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 11:17: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 621AD37B405; Sat, 13 Apr 2002 11:17:34 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DIHYq52292; Sat, 13 Apr 2002 11:17:34 -0700 (PDT) (envelope-from ade) Message-Id: <200204131817.g3DIHYq52292@freefall.freebsd.org> From: Ade Lovett Date: Sat, 13 Apr 2002 11:17:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/ImageMagick 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 ade 2002/04/13 11:17:34 PDT Modified files: graphics/ImageMagick Makefile Log: Add USE_GCC295 for 3.x systems that need it to build. PR: 36831 Submitted by: Julian C. Dunn Revision Changes Path 1.137 +1 -0 ports/graphics/ImageMagick/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 11:19:18 2002 Delivered-To: cvs-all@freebsd.org Received: from volcano.planet.it (volcano.planet.it [212.110.160.74]) by hub.freebsd.org (Postfix) with ESMTP id 6124C37B419; Sat, 13 Apr 2002 11:19:13 -0700 (PDT) Received: from olgeni.olgeni (ppp-104.dial1.ctonet.it [212.110.176.104]) by volcano.planet.it (Postfix) with ESMTP id 3D65711F7FA; Sat, 13 Apr 2002 20:19:11 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by olgeni.olgeni (8.12.2/8.12.2) with ESMTP id g3DIJ0mm066783; Sat, 13 Apr 2002 20:19:02 +0200 (CEST) (envelope-from olgeni@uli.it) Date: Sat, 13 Apr 2002 20:19:00 +0200 (CEST) From: Jimmy Olgeni X-X-Sender: olgeni@olgeni.olgeni To: Palle Girgensohn Cc: Ying-Chieh Liao , , Subject: Re: cvs commit: ports/databases/p5-postgresql-plperl Makefile ports/databases/postgresql-jdbc Makefile ports/databases/postgresql-odbc Makefile ports/databases/postgresql-pltcl Makefile In-Reply-To: <200204110508.g3B58Yd01597@freefall.freebsd.org> Message-ID: <20020413201712.H66780-100000@olgeni.olgeni> 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! On Wed, 10 Apr 2002, Ying-Chieh Liao wrote: > ijliao 2002/04/10 22:08:34 PDT > > Modified files: > databases/p5-postgresql-plperl Makefile > databases/postgresql-jdbc Makefile > databases/postgresql-odbc Makefile > databases/postgresql-pltcl Makefile Looks like postgresql-tcltk is missing :o) -- jimmy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 11:21:58 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 A30E837B400; Sat, 13 Apr 2002 11:21:55 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3DILqYm025421; Sat, 13 Apr 2002 11:21:52 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3DIKbwD025390; Sat, 13 Apr 2002 11:20:37 -0700 (PDT) Date: Sat, 13 Apr 2002 11:20:37 -0700 From: "David O'Brien" To: "J. Mallett" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make job.c job.h main.c make.1 make.c Message-ID: <20020413112037.B25339@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <200204131218.g3DCI0Z68354@freefall.freebsd.org> <20020413123044.GB13221@FreeBSD.ORG> <20020413053330.A96771@dragon.nuxi.com> <20020413151913.GB26522@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: <20020413151913.GB26522@FreeBSD.ORG>; from jmallett@FreeBSD.ORG on Sat, Apr 13, 2002 at 03:19:13PM +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 Sat, Apr 13, 2002 at 03:19:13PM +0000, J. Mallett wrote: > > I've said it before and I'll say it again -- CVS sucks and it hates me. > > At least if it were P4, it'd have a facility to go back and edit change > messages *duck*. I seriously doubt it. CVS offers the same functionalty; but using it disallowed by CVS@. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 11:24:35 2002 Delivered-To: cvs-all@freebsd.org Received: from finntroll.newgold.net (Durham-ar1-4-64-252-019.dsl.genuity.net [4.64.252.19]) by hub.freebsd.org (Postfix) with SMTP id 26F6E37B41B for ; Sat, 13 Apr 2002 11:24:29 -0700 (PDT) Received: (qmail 3442 invoked by uid 1001); 13 Apr 2002 18:29:47 -0000 Date: Sat, 13 Apr 2002 18:29:47 +0000 From: "J. Mallett" To: David O'Brien Cc: "J. Mallett" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make job.c job.h main.c make.1 make.c Message-ID: <20020413182947.GC8591@FreeBSD.ORG> References: <200204131218.g3DCI0Z68354@freefall.freebsd.org> <20020413123044.GB13221@FreeBSD.ORG> <20020413053330.A96771@dragon.nuxi.com> <20020413151913.GB26522@FreeBSD.ORG> <20020413112037.B25339@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020413112037.B25339@dragon.nuxi.com> User-Agent: Mutt/1.3.27i Organisation: FreeBSD Sender: owner-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, Apr 13, 2002 at 11:20:37AM -0700, David O'Brien wrote: > On Sat, Apr 13, 2002 at 03:19:13PM +0000, J. Mallett wrote: > > > I've said it before and I'll say it again -- CVS sucks and it hates me. > > > > At least if it were P4, it'd have a facility to go back and edit change > > messages *duck*. > > I seriously doubt it. CVS offers the same functionalty; but using it > disallowed by CVS@. I know you can edit the RCS files... does the log command have a facility for this???? -- jmallett@FreeBSD.org | C, MIPS, POSIX, UNIX, BSD, IRC Geek. http://www.FreeBSD.org | The Power to Serve "We all need mirrors to remind ourselves who we are -- I'm no different." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 11:27:47 2002 Delivered-To: cvs-all@freebsd.org Received: from horsey.gshapiro.net (horsey.gshapiro.net [209.220.147.178]) by hub.freebsd.org (Postfix) with ESMTP id 149FC37B405; Sat, 13 Apr 2002 11:27:42 -0700 (PDT) Received: from horsey.gshapiro.net (gshapiro@localhost [127.0.0.1]) by horsey.gshapiro.net (8.12.3/8.12.3) with ESMTP id g3DIRemk090473 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Sat, 13 Apr 2002 11:27:40 -0700 (PDT) Received: (from gshapiro@localhost) by horsey.gshapiro.net (8.12.3/8.12.3/Submit) id g3DIRemT090470; Sat, 13 Apr 2002 11:27:40 -0700 (PDT) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15544.30876.323895.394345@horsey.gshapiro.net> Date: Sat, 13 Apr 2002 11:27:40 -0700 From: Gregory Neil Shapiro To: "J. Mallett" Cc: "David O'Brien" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make job.c job.h main.c make.1 make.c In-Reply-To: <20020413182947.GC8591@FreeBSD.ORG> References: <200204131218.g3DCI0Z68354@freefall.freebsd.org> <20020413123044.GB13221@FreeBSD.ORG> <20020413053330.A96771@dragon.nuxi.com> <20020413151913.GB26522@FreeBSD.ORG> <20020413112037.B25339@dragon.nuxi.com> <20020413182947.GC8591@FreeBSD.ORG> X-Mailer: VM 7.00 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jmallett> I know you can edit the RCS files... does the log command have a jmallett> facility for this???? Try: cvs -H admin Some useful ones include: -m rev:msg Replace revision's log message. -o range Delete (outdate) specified range of revisions: rev1:rev2 Between rev1 and rev2, including rev1 and rev2. rev1::rev2 Between rev1 and rev2, excluding rev1 and rev2. rev: rev and following revisions on the same branch. rev:: After rev on the same branch. :rev rev and previous revisions on the same branch. ::rev Before rev on the same branch. rev Just rev. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 11:31:11 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 3255B37B400; Sat, 13 Apr 2002 11:31:08 -0700 (PDT) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g3DIV7Ym025568; Sat, 13 Apr 2002 11:31:07 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g3DITqGu025555; Sat, 13 Apr 2002 11:29:52 -0700 (PDT) Date: Sat, 13 Apr 2002 11:29:52 -0700 From: "David O'Brien" To: "J. Mallett" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make job.c job.h main.c make.1 make.c Message-ID: <20020413112952.A25490@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <200204131218.g3DCI0Z68354@freefall.freebsd.org> <20020413123044.GB13221@FreeBSD.ORG> <20020413053330.A96771@dragon.nuxi.com> <20020413151913.GB26522@FreeBSD.ORG> <20020413112037.B25339@dragon.nuxi.com> <20020413182947.GC8591@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: <20020413182947.GC8591@FreeBSD.ORG>; from jmallett@FreeBSD.ORG on Sat, Apr 13, 2002 at 06:29:47PM +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 Sat, Apr 13, 2002 at 06:29:47PM +0000, J. Mallett wrote: > > I seriously doubt it. CVS offers the same functionalty; but using it > > disallowed by CVS@. > > I know you can edit the RCS files... does the log command have a facility for > this???? cvs admin -m rev:msg Replace revision's log message. One issue I believe is that since we email log messages out to 100,000's of people; they should be considered set in stone. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 11: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 547BD37B405; Sat, 13 Apr 2002 11:38:17 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DIcHK57757; Sat, 13 Apr 2002 11:38:17 -0700 (PDT) (envelope-from dwmalone) Message-Id: <200204131838.g3DIcHK57757@freefall.freebsd.org> From: David Malone Date: Sat, 13 Apr 2002 11:38:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/tftp 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 dwmalone 2002/04/13 11:38:16 PDT Modified files: usr.bin/tftp main.c Log: Add some constness to make this WARNS clean again. Revision Changes Path 1.17 +3 -3 src/usr.bin/tftp/main.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 11:41: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 A2DC037B400; Sat, 13 Apr 2002 11:41:13 -0700 (PDT) Received: (from jim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DIfDH58089; Sat, 13 Apr 2002 11:41:13 -0700 (PDT) (envelope-from jim) Message-Id: <200204131841.g3DIfDH58089@freefall.freebsd.org> From: Jim Mock Date: Sat, 13 Apr 2002 11:41:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/java-tomcat 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 jim 2002/04/13 11:41:13 PDT Modified files: en_US.ISO8859-1/articles/java-tomcat article.sgml Log: Attack of the whitespace police. These are whitespace changes only, translators can ignore them. In the future, please use tabs for 8 spaces and two spaces after a period. This should be in the FDP Primer if it's not already (it's been beaten to death on -doc a few times over the years). Revision Changes Path 1.3 +439 -400 doc/en_US.ISO8859-1/articles/java-tomcat/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 Apr 13 11:48: 1 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 B7D3537B416; Sat, 13 Apr 2002 11:47:55 -0700 (PDT) Received: by squall.waterspout.com (Postfix, from userid 1050) id 617B39B15; Sat, 13 Apr 2002 13:47:55 -0500 (EST) Date: Sat, 13 Apr 2002 13:47:55 -0500 From: Will Andrews To: Murray Stokely Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall index.c Message-ID: <20020413184755.GB71498@squall.waterspout.com> Mail-Followup-To: Murray Stokely , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200204131300.g3DD0hq82632@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204131300.g3DD0hq82632@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 Sat, Apr 13, 2002 at 06:00:43AM -0700, Murray Stokely wrote: > Modified files: > usr.sbin/sysinstall index.c > Log: > Add support for an additional field to the packages/INDEX file. If > present, this field specifies the media volume that the disc is > contained on. If the volume of a given packages is different than the > current volume of mediaDevice, then the user is prompted -- > > "This is disc #%d. Package %s is on disc #%d\n" > "Would you like to switch discs now?\n" > > If the user selects yes, then DEVICE_SHUTDOWN is called and the user > is then prompted -- > > "Please remove disc #%d from you drive, and add disc #%d" > > This works well for a carefully crafted INDEX file, but more work > needs to be done to sort dependencies on a given package based on the > volume that they reside on, to minimize the amount of disc flipping > required of the user. > > This commit is a no-op for normal INDEX files and FreeBSD CDs. These > additional features are only used if the INDEX and cdrom.inf file have > multi-volume support. Nice work, Murray. Is there a ports side of things, or is this an in-house feature? Regards, -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 12: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 2BD4C37B404; Sat, 13 Apr 2002 12:13:56 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DJDuN65769; Sat, 13 Apr 2002 12:13:56 -0700 (PDT) (envelope-from obrien) Message-Id: <200204131913.g3DJDuN65769@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 12:13:56 -0700 (PDT) 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/04/13 12:13:56 PDT Modified files: editors/vim Makefile Log: Fix rev 1.128 to what it should have been. This fixes a `make reinstall' problem. Revision Changes Path 1.189 +6 -6 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 Sat Apr 13 12:17: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 2BEE037B404; Sat, 13 Apr 2002 12:17:50 -0700 (PDT) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DJHoi66285; Sat, 13 Apr 2002 12:17:50 -0700 (PDT) (envelope-from alc) Message-Id: <200204131917.g3DJHoi66285@freefall.freebsd.org> From: Alan Cox Date: Sat, 13 Apr 2002 12:17:50 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/sparc64 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 alc 2002/04/13 12:17:50 PDT Modified files: sys/sparc64/sparc64 machdep.c Log: o Remove vm_map_growstack() and useracc() from sendsig(). Copyout() and suword() will automatically grow the stack if needed. o Add a comment that osigreturn() and sigreturn() are MPSAFE. Revision Changes Path 1.49 +5 -20 src/sys/sparc64/sparc64/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 12: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 B213D37B404; Sat, 13 Apr 2002 12:19:46 -0700 (PDT) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DJJkI66545; Sat, 13 Apr 2002 12:19:46 -0700 (PDT) (envelope-from anders) Message-Id: <200204131919.g3DJJkI66545@freefall.freebsd.org> From: Anders Nordby Date: Sat, 13 Apr 2002 12:19:46 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/dante 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 anders 2002/04/13 12:19:46 PDT Modified files: net/dante Makefile distinfo Log: Update to 1.1.12 final. Revision Changes Path 1.16 +1 -2 ports/net/dante/Makefile 1.12 +1 -1 ports/net/dante/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 12:24:48 2002 Delivered-To: cvs-all@freebsd.org Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by hub.freebsd.org (Postfix) with ESMTP id EC63237B404; Sat, 13 Apr 2002 12:24:41 -0700 (PDT) Received: (from jake@localhost) by k6.locore.ca (8.11.6/8.11.6) id g3DJSDt21627; Sat, 13 Apr 2002 15:28:13 -0400 (EDT) (envelope-from jake) Date: Sat, 13 Apr 2002 15:28:13 -0400 From: Jake Burkholder To: Alan Cox Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sparc64/sparc64 machdep.c Message-ID: <20020413152813.H10110@locore.ca> References: <200204131917.g3DJHoi66285@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: <200204131917.g3DJHoi66285@freefall.freebsd.org>; from alc@FreeBSD.org on Sat, Apr 13, 2002 at 12:17:50PM -0700 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Apparently, On Sat, Apr 13, 2002 at 12:17:50PM -0700, Alan Cox said words to the effect of; > alc 2002/04/13 12:17:50 PDT > > Modified files: > sys/sparc64/sparc64 machdep.c > Log: > o Remove vm_map_growstack() and useracc() from sendsig(). Copyout() and > suword() will automatically grow the stack if needed. > o Add a comment that osigreturn() and sigreturn() are MPSAFE. Thanks. > > Revision Changes Path > 1.49 +5 -20 src/sys/sparc64/sparc64/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 12:36: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 2089237B400; Sat, 13 Apr 2002 12:36:49 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DJamr68672; Sat, 13 Apr 2002 12:36:48 -0700 (PDT) (envelope-from obrien) Message-Id: <200204131936.g3DJamr68672@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 12:36:47 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make str.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/04/13 12:36:47 PDT Modified files: usr.bin/make str.c Log: Revision 1.17 seems to break a subsequent buildworld (i.e. with the new make installed) in gnu/usr.bin/groff/src/preproc/eqn (which, being a build tool itself, is built with the original make during buildworld). The problem seems to be that in str_concat(), the string is not terminated when the length of the second string is 0. This apparently can happen during null suffix rule processing. Submitted by: tmm Revision Changes Path 1.19 +5 -2 src/usr.bin/make/str.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 13: 5: 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 27CDA37B405; Sat, 13 Apr 2002 13:04:59 -0700 (PDT) Received: (from jkh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DK4xk72580; Sat, 13 Apr 2002 13:04:59 -0700 (PDT) (envelope-from jkh) Message-Id: <200204132004.g3DK4xk72580@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Sat, 13 Apr 2002 13:04:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/spegla 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 jkh 2002/04/13 13:04:58 PDT Modified files: ftp/spegla Makefile distinfo Log: Add IPv6 support. Submitted by: Hajimu UMEMOTO Revision Changes Path 1.14 +5 -2 ports/ftp/spegla/Makefile 1.6 +1 -0 ports/ftp/spegla/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 13: 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 679A137B400; Sat, 13 Apr 2002 13:05:58 -0700 (PDT) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DK5wc76504; Sat, 13 Apr 2002 13:05:58 -0700 (PDT) (envelope-from alfred) Message-Id: <200204132005.g3DK5wc76504@freefall.freebsd.org> From: Alfred Perlstein Date: Sat, 13 Apr 2002 13:05:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/ghostscript-afpl/files patch-src:dviprlib.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/04/13 13:05:58 PDT Added files: print/ghostscript-afpl/files patch-src:dviprlib.c Log: Workaround for 5.x stderr non-const initialization lameness. Revision Changes Path 1.1 +23 -0 ports/print/ghostscript-afpl/files/patch-src:dviprlib.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 13: 9: 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 9793F37B400; Sat, 13 Apr 2002 13:09:06 -0700 (PDT) Received: (from tmm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DK96Q76901; Sat, 13 Apr 2002 13:09:06 -0700 (PDT) (envelope-from tmm) Message-Id: <200204132009.g3DK96Q76901@freefall.freebsd.org> From: Thomas Moestl Date: Sat, 13 Apr 2002 13:09:06 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern sys_pipe.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/04/13 13:09:06 PDT Modified files: sys/kern sys_pipe.c Log: Use pmap_extract() instead of pmap_kextract() to retrieve the physical address associated with a user virtual address in pipe_build_write_buffer(). Reviewed by: alc Revision Changes Path 1.104 +2 -1 src/sys/kern/sys_pipe.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 13:37:33 2002 Delivered-To: cvs-all@freebsd.org Received: from finntroll.newgold.net (Durham-ar1-4-64-252-019.dsl.genuity.net [4.64.252.19]) by hub.freebsd.org (Postfix) with SMTP id 4939037B41A for ; Sat, 13 Apr 2002 13:37:15 -0700 (PDT) Received: (qmail 1325 invoked by uid 1001); 13 Apr 2002 20:42:34 -0000 Date: Sat, 13 Apr 2002 20:42:34 +0000 From: "J. Mallett" To: David O'Brien Cc: "J. Mallett" , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make job.c job.h main.c make.1 make.c Message-ID: <20020413204233.GB16245@FreeBSD.ORG> References: <200204131218.g3DCI0Z68354@freefall.freebsd.org> <20020413123044.GB13221@FreeBSD.ORG> <20020413053330.A96771@dragon.nuxi.com> <20020413151913.GB26522@FreeBSD.ORG> <20020413164457.GA8591@FreeBSD.ORG> <20020413112247.C25339@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020413112247.C25339@dragon.nuxi.com> User-Agent: Mutt/1.3.27i Organisation: FreeBSD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Just finished FreeBSD buildworld, both builds were logged and timed, there is a minute gain with NetBSD make(1), and I'm not sure how much of that is random variance... Anyway, there are some differences in the way things went, mostly related to how .CURDIR is set, it appears. I've gotta crash for the night, but it looks like 95% of the stuff works exactly the same in both places. Something interesting... We have a 'depend' target, and it apparently is not set to .PHONY (or however you do such things, I'm reachig the hazy end of being up far too long) and a file called 'depend.c' exists in .PATH, so it tries to build a depend program from depend.c.... This is in the bmake stuff youv'e done for the toolchain, I'm not sure quite how to look at this, I'll compare the codepaths in both make's that affect this, and try to figure out what, if anything, should be done to make(1). Also, their parser complains (rightly so) about multiply defined build scripts for a target. Hrm. rpcgen doesn't seem to be running for yp.h and yppasswd.h in usr.sbin/rpc. yppaswd, either, but it does for other targets, gotta give that a look. Again, I see places where .CURDIR and .OBJDIR are being confused, this is in the openssh build. Those are all I can see. For those who want the real/user/sys for NetBSD and FreeBSD make(1), on my machine, here they are, respectively: NetBSD: 215m42.677s 177m4.966s 25m9.573s FreeBSD: 218m8.439s 177m51.782s 24m56.176s Very close. -- jmallett@FreeBSD.org | C, MIPS, POSIX, UNIX, BSD, IRC Geek. http://www.FreeBSD.org | The Power to Serve "We all need mirrors to remind ourselves who we are -- I'm no different." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 13:59: 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 8704137B405; Sat, 13 Apr 2002 13:59:00 -0700 (PDT) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DKx0o82989; Sat, 13 Apr 2002 13:59:00 -0700 (PDT) (envelope-from anders) Message-Id: <200204132059.g3DKx0o82989@freefall.freebsd.org> From: Anders Nordby Date: Sat, 13 Apr 2002 13:59:00 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/gcombust 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 anders 2002/04/13 13:59:00 PDT Modified files: sysutils/gcombust Makefile distinfo pkg-plist Log: Update to 0.1.49. PR: 37045 Submitted by: Herbert J. Skuhra Approved by: maintainer Revision Changes Path 1.29 +1 -1 ports/sysutils/gcombust/Makefile 1.20 +1 -1 ports/sysutils/gcombust/distinfo 1.11 +1 -0 ports/sysutils/gcombust/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 Apr 13 13:59: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 4A80437B400; Sat, 13 Apr 2002 13:59:48 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DKxmM83201; Sat, 13 Apr 2002 13:59:48 -0700 (PDT) (envelope-from dwmalone) Message-Id: <200204132059.g3DKxmM83201@freefall.freebsd.org> From: David Malone Date: Sat, 13 Apr 2002 13:59:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/tail reverse.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 dwmalone 2002/04/13 13:59:48 PDT Modified files: usr.bin/tail reverse.c Log: Fix up vendor IDs. Put a sequence point between writing to a variable and using it. Revision Changes Path 1.16 +10 -7 src/usr.bin/tail/reverse.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 14: 9: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 22A9037B405; Sat, 13 Apr 2002 14:09:56 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DL9ul88187; Sat, 13 Apr 2002 14:09:56 -0700 (PDT) (envelope-from dwmalone) Message-Id: <200204132109.g3DL9ul88187@freefall.freebsd.org> From: David Malone Date: Sat, 13 Apr 2002 14:09:56 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/systat pigs.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 dwmalone 2002/04/13 14:09:56 PDT Modified files: usr.bin/systat pigs.c Log: Remove previously unneeded and now incorrect cast of user_from_uid() to a char *. Fix up vendor ID. Revision Changes Path 1.17 +7 -7 src/usr.bin/systat/pigs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 14:28: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 F2B3B37B404; Sat, 13 Apr 2002 14:28:17 -0700 (PDT) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DLSHi90760; Sat, 13 Apr 2002 14:28:17 -0700 (PDT) (envelope-from dwmalone) Message-Id: <200204132128.g3DLSHi90760@freefall.freebsd.org> From: David Malone Date: Sat, 13 Apr 2002 14:28:17 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/limits limits.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 dwmalone 2002/04/13 14:28:17 PDT Modified files: usr.bin/limits limits.c Log: Warns cleanups: 1) Add missing initialisers. 2) Avoid shadowing rcswhich. 3) Use intmax_t and %j for printing rather than quad_t and %q. 4) Don't modify a variable twice between sequence points. Revision Changes Path 1.10 +10 -7 src/usr.bin/limits/limits.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 14:31:16 2002 Delivered-To: cvs-all@freebsd.org Received: from mao.stokely.org (mao.stokely.org [65.84.64.228]) by hub.freebsd.org (Postfix) with ESMTP id 9696837B404; Sat, 13 Apr 2002 14:30:37 -0700 (PDT) Received: by mao.stokely.org (Postfix, from userid 2074) id 5E2314B66A; Sat, 13 Apr 2002 14:30:32 -0700 (PDT) Date: Sat, 13 Apr 2002 14:30:32 -0700 From: will@csociety.org To: Murray Stokely , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall index.c Message-ID: <20020413213032.GA641@freebsdmall.com> References: <200204131300.g3DD0hq82632@freefall.freebsd.org> <20020413184755.GB71498@squall.waterspout.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020413184755.GB71498@squall.waterspout.com> User-Agent: Mutt/1.3.25i X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D Sender: owner-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, Apr 13, 2002 at 01:47:55PM -0500, Will Andrews wrote: > Nice work, Murray. Is there a ports side of things, or is this > an in-house feature? The only additional step to the current package split procedure is to take the INDEX file for each disc, add '|N' to the end of each line, where 'N' is the volume number. Then the INDEX for each disc is concatenated into one master INDEX so that each disc has an index with all of the packages on all of the volumes -- instead of only the packages for the current volume. This isn't something that can or should be added to bsd.port.mk or anything. It is just a 1 line sed script and a cat(1) command -- it might be something to tack on to the end of Steve's package split scripts. This is one example of where it makes sense for the INDEX on a CDROM to slightly diverge from the INDEX created by "make index" in the ports tree. - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 14:33: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 49C0A37B416; Sat, 13 Apr 2002 14:33:33 -0700 (PDT) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DLXXI91532; Sat, 13 Apr 2002 14:33:33 -0700 (PDT) (envelope-from phk) Message-Id: <200204132133.g3DLXXI91532@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sat, 13 Apr 2002 14:33:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/nge if_nge.c if_ngereg.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/04/13 14:33:33 PDT Modified files: sys/dev/nge if_nge.c if_ngereg.h Log: If the receiver runs out of space for an received frame in the internal FIFO or the in-RAM descriptors it will switch to RX_IDLE from where it is not restarted. We used to deal with RX_IDLE by doing a total reinit but this lost our link and caused a potential 30sec autonegotiation against switches. This was changed to a less heavyhanded approach, but this failed to restart the receiver it it were in the RX_IDLE state. This change adds the RX_IDLE and the RX_FIFO_OFLOW conditions as triggers for interrupts and receive side processing, and restarts the receiver when it is RX_IDLE. Remove the #ifdef notyet'ed nge_rxeoc() function. Sponsored by: Cybercity Internet, Denmark. MFC after: 7 days Revision Changes Path 1.28 +6 -21 src/sys/dev/nge/if_nge.c 1.6 +3 -2 src/sys/dev/nge/if_ngereg.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 14:46: 3 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 BFC7237B404; Sat, 13 Apr 2002 14:45:55 -0700 (PDT) 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 g3DLjsi23856; Sat, 13 Apr 2002 15:45:54 -0600 (MDT) (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 g3DLjrc62296; Sat, 13 Apr 2002 15:45:53 -0600 (MDT) (envelope-from imp@village.org) Date: Sat, 13 Apr 2002 15:45:37 -0600 (MDT) Message-Id: <20020413.154537.75694059.imp@village.org> To: jmallett@FreeBSD.org Cc: obrien@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make job.c job.h main.c make.1 make.c From: "M. Warner Losh" In-Reply-To: <20020413164457.GA8591@FreeBSD.ORG> References: <20020413053330.A96771@dragon.nuxi.com> <20020413151913.GB26522@FreeBSD.ORG> <20020413164457.GA8591@FreeBSD.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: <20020413164457.GA8591@FreeBSD.ORG> "J. Mallett" writes: : On Sat, Apr 13, 2002 at 03:19:13PM +0000, J. Mallett wrote: : > : > Thoughts? If that seems reasonable I'll post my diffs relative to NetBSD : > make(1) should I not run into some place where it pukes. If anyone knows : > of a place where NetBSD's make(1) has been known not to work with what we : > need it to work with, please let me know so I can try to fix that. : > : : I just got through a buildworld, so I decided it's time to post the diffs. : : I'm going to run it with our make(1) now, and compare performance. If there : is not a significant boost, and if there aren't things in NetBSD that stand : out as things we want, I'm not sure whether it's worth it or not. I like the : ability to use ODE :@@@, but that's neither here nor there. : : The diffs explain: http://people.freebsd.org/~jmallett/NetBSD.make.diff These are just to the make program itself. Are you telling me that we can now make it through a buildworld with NetBSD's make in the tree? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 14:54: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 B305D37B416; Sat, 13 Apr 2002 14:54:09 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DLs9L93967; Sat, 13 Apr 2002 14:54:09 -0700 (PDT) (envelope-from obrien) Message-Id: <200204132154.g3DLs9L93967@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 14:54:09 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/csu/alpha crt1.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/04/13 14:54:09 PDT Modified files: lib/csu/alpha crt1.c Log: Style nit and modernize SCM ID. Revision Changes Path 1.12 +2 -8 src/lib/csu/alpha/crt1.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 14:55:23 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.speakeasy.net (mail11.speakeasy.net [216.254.0.211]) by hub.freebsd.org (Postfix) with ESMTP id 2176D37B41A for ; Sat, 13 Apr 2002 14:55:16 -0700 (PDT) Received: (qmail 32278 invoked from network); 13 Apr 2002 21:55:15 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail11.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 13 Apr 2002 21:55:15 -0000 Received: from laptop.baldwin.cx (john@laptop.baldwin.cx [192.168.0.4]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g3DLuDv67630; Sat, 13 Apr 2002 17:56:13 -0400 (EDT) (envelope-from jhb@FreeBSD.org) 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: <20020413204233.GB16245@FreeBSD.ORG> Date: Sat, 13 Apr 2002 17:54:34 -0400 (EDT) From: John Baldwin To: "J. Mallett" Subject: Re: cvs commit: src/usr.bin/make job.c job.h main.c make.1 make. Cc: cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, "David O'Brien" Sender: owner-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 13-Apr-2002 J. Mallett wrote: > Just finished FreeBSD buildworld, both builds were logged and timed, there > is a minute gain with NetBSD make(1), and I'm not sure how much of that is > random variance... Anyway, there are some differences in the way things > went, mostly related to how .CURDIR is set, it appears. I've gotta crash > for the night, but it looks like 95% of the stuff works exactly the same > in both places. You can help eliminate the random variance by doing several (say 20 or more) of each test then compute various statistics to truly compare them. Just doing one of each test doesn't really mean much. -- 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 Apr 13 15: 9: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 9A3AA37B400; Sat, 13 Apr 2002 15:09:53 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DM9r299676; Sat, 13 Apr 2002 15:09:53 -0700 (PDT) (envelope-from obrien) Message-Id: <200204132209.g3DM9r299676@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 15:09:53 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libstand/sparc64 _setjmp.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 obrien 2002/04/13 15:09:53 PDT Added files: lib/libstand/sparc64 _setjmp.S Log: libstand needs _setjmp/_longjmp for FICL. Submitted by: jake Revision Changes Path 1.1 +100 -0 src/lib/libstand/sparc64/_setjmp.S (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 15:18: 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 C2AEA37B404; Sat, 13 Apr 2002 15:17:58 -0700 (PDT) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DMHwc01115; Sat, 13 Apr 2002 15:17:58 -0700 (PDT) (envelope-from kris) Message-Id: <200204132217.g3DMHwc01115@freefall.freebsd.org> From: Kris Kennaway Date: Sat, 13 Apr 2002 15:17:58 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/snort 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 kris 2002/04/13 15:17:58 PDT Modified files: security/snort Makefile distinfo Log: Upgrade to snort 1.8.6. The previous two versions (1.8.4 and 1.8.5) were buggy and short-lived; hopefully this one is better. Revision Changes Path 1.28 +2 -2 ports/security/snort/Makefile 1.15 +1 -1 ports/security/snort/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 15:19: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 2CC7F37B416; Sat, 13 Apr 2002 15:19:41 -0700 (PDT) Received: by flood.ping.uio.no (Postfix, from userid 2602) id C43285309; Sun, 14 Apr 2002 00:19:38 +0200 (CEST) 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: Mike Barcroft Cc: Marcel Moolenaar , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c References: <200204130820.g3D8KGx17608@freefall.freebsd.org> <20020413114643.A2860@espresso.q9media.com> From: Dag-Erling Smorgrav Date: 14 Apr 2002 00:19:38 +0200 In-Reply-To: <20020413114643.A2860@espresso.q9media.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 Mike Barcroft writes: > Is anyone working on a manual for this? Most of this is already documented as it's simply pre-existing functionality that was broken by recent commits. 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 Sat Apr 13 15:21: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 0F7A737B404; Sat, 13 Apr 2002 15:21:29 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DMLTU01691; Sat, 13 Apr 2002 15:21:29 -0700 (PDT) (envelope-from obrien) Message-Id: <200204132221.g3DMLTU01691@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 15:21:29 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha db_instruction.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/04/13 15:21:28 PDT Modified files: sys/alpha/alpha db_instruction.h Log: Quiet GCC 3.1 warning. Revision Changes Path 1.5 +2 -2 src/sys/alpha/alpha/db_instruction.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 15: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 6C0E137B405; Sat, 13 Apr 2002 15:32:33 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DMWX602806; Sat, 13 Apr 2002 15:32:33 -0700 (PDT) (envelope-from des) Message-Id: <200204132232.g3DMWX602806@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 13 Apr 2002 15:32:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/locale 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 des 2002/04/13 15:32:33 PDT Modified files: lib/libc/locale Makefile.inc Log: Install digittoint.3 (forgotten in rev 1.21) PR: docs/26451 Submitted by: Adrian Filipi-Martin Revision Changes Path 1.23 +1 -1 src/lib/libc/locale/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 15: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 C3DEE37B404; Sat, 13 Apr 2002 15:34:16 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DMYGg03154; Sat, 13 Apr 2002 15:34:16 -0700 (PDT) (envelope-from obrien) Message-Id: <200204132234.g3DMYGg03154@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 15:34:16 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/conf GENERIC src/sys/conf files.alpha options.alpha src/sys/sys fbio.h src/sys/dev/fb fb.c fbreg.h gfb.c tga.c src/sys/dev/gfb gfb_pci.c src/sys/dev/syscons scgfbrndr.c syscons.c syscons.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/04/13 15:34:16 PDT Modified files: sys/alpha/conf GENERIC sys/conf files.alpha options.alpha sys/sys fbio.h sys/dev/fb fb.c fbreg.h gfb.c tga.c sys/dev/gfb gfb_pci.c sys/dev/syscons scgfbrndr.c syscons.c syscons.h Log: Turn on TGA support. Submitted by: Andrew M. Miklic Revision Changes Path 1.136 +1 -0 src/sys/alpha/conf/GENERIC 1.83 +7 -0 src/sys/conf/files.alpha 1.34 +8 -0 src/sys/conf/options.alpha 1.20 +7 -6 src/sys/dev/fb/fb.c 1.11 +21 -1 src/sys/dev/fb/fbreg.h 1.2 +0 -1 src/sys/dev/fb/gfb.c 1.2 +22 -6 src/sys/dev/fb/tga.c 1.3 +2 -0 src/sys/dev/gfb/gfb_pci.c 1.16 +2 -1 src/sys/dev/syscons/scgfbrndr.c 1.383 +2 -2 src/sys/dev/syscons/syscons.c 1.74 +10 -3 src/sys/dev/syscons/syscons.h 1.12 +22 -12 src/sys/sys/fbio.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 15:35:27 2002 Delivered-To: cvs-all@freebsd.org Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (Postfix) with ESMTP id 02A9237B419; Sat, 13 Apr 2002 15:35:20 -0700 (PDT) Received: (from uucp@localhost) by frmug.org (8.11.3/8.11.3/frmug-2.7/nospam) with UUCP id g3DMZ8658683; Sun, 14 Apr 2002 00:35:08 +0200 (CEST) (envelope-from charnier@xp11.frmug.org) Received: from xp11.frmug.org (xp11.frmug.org [127.0.0.1]) by xp11.frmug.org (8.12.2/8.11.1/xp11-uucp-1.1) with ESMTP id g3DKZAIe025200; Sat, 13 Apr 2002 22:35:11 +0200 (CEST) (envelope-from charnier@xp11.frmug.org) Message-Id: <200204132035.g3DKZAIe025200@xp11.frmug.org> To: Dag-Erling Smorgrav Cc: Brian Somers , Philippe Charnier , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make job.c main.c make.1 In-Reply-To: Message from Dag-Erling Smorgrav of "13 Apr 2002 15:51:48 +0200." Date: Sat, 13 Apr 2002 22:35:10 +0200 From: "Philippe Charnier" Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Salut, Dag-Erling Smorgrav wrote: >Both wrong: the consensus was that program and function names should >never be the first word in a sentence, and that if necessary one >should wrap them in "The ${foo} utility" or "The ${foo} function", as >appropriate. > I have the "The ${foo} utility" megapatch applied in my local tree. I will start to commit it in the next few days. ------ ------ Philippe Charnier charnier@{xp11.frmug.org,free.fr,FreeBSD.org} ``a PC not running FreeBSD is like a venusian with no tentacles'' ------------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 15: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 DAF3A37B404; Sat, 13 Apr 2002 15:54:18 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DMsIa05707; Sat, 13 Apr 2002 15:54:18 -0700 (PDT) (envelope-from jhb) Message-Id: <200204132254.g3DMsIa05707@freefall.freebsd.org> From: John Baldwin Date: Sat, 13 Apr 2002 15:54:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_ktrace.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/04/13 15:54:18 PDT Modified files: sys/kern kern_ktrace.c Log: - Change the first argument of ktrcanset(), ktrsetchildren(), and ktrops() to a thread pointer so that ktrcanset() can use td_ucred. - Add some proc locking to partially protect p_tracep and p_traceflag. Revision Changes Path 1.64 +57 -32 src/sys/kern/kern_ktrace.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 16: 7: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 A465A37B416; Sat, 13 Apr 2002 16:07:06 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DN76d10901; Sat, 13 Apr 2002 16:07:06 -0700 (PDT) (envelope-from jhb) Message-Id: <200204132307.g3DN76d10901@freefall.freebsd.org> From: John Baldwin Date: Sat, 13 Apr 2002 16:07:05 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_prot.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/04/13 16:07:05 PDT Modified files: sys/kern kern_prot.c Log: - Change the algorithms of the syscalls to modify process credentials to allocate a blank cred first, lock the process, perform checks on the old process credential, copy the old process credential into the new blank credential, modify the new credential, update the process credential pointer, unlock the process, and cleanup rather than trying to allocate a new credential after performing the checks on the old credential. - Cleanup _setugid() a little bit. - setlogin() doesn't need Giant thanks to pgrp/session locking and td_ucred. Revision Changes Path 1.152 +137 -83 src/sys/kern/kern_prot.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 16: 9: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 CF35F37B405; Sat, 13 Apr 2002 16:09:41 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DN9fR11203; Sat, 13 Apr 2002 16:09:41 -0700 (PDT) (envelope-from jhb) Message-Id: <200204132309.g3DN9fR11203@freefall.freebsd.org> From: John Baldwin Date: Sat, 13 Apr 2002 16:09:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/procfs procfs_status.c src/sys/compat/linprocfs linprocfs.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/04/13 16:09:41 PDT Modified files: sys/fs/procfs procfs_status.c sys/compat/linprocfs linprocfs.c Log: - p_cansee() needs the target process locked. - We need the proc lock held for more of procfs_doprocstatus(). Revision Changes Path 1.51 +15 -17 src/sys/compat/linprocfs/linprocfs.c 1.43 +17 -18 src/sys/fs/procfs/procfs_status.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 16:10: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 4A6B037B428; Sat, 13 Apr 2002 16:10:31 -0700 (PDT) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DNAVN11373; Sat, 13 Apr 2002 16:10:31 -0700 (PDT) (envelope-from keramida) Message-Id: <200204132310.g3DNAVN11373@freefall.freebsd.org> From: Giorgos Keramidas Date: Sat, 13 Apr 2002 16:10:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/laptop 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/04/13 16:10:31 PDT Modified files: en_US.ISO8859-1/articles/laptop article.sgml Log: Add a few missing and tags. Submitted by: Marc Fonvieille Revision Changes Path 1.6 +6 -4 doc/en_US.ISO8859-1/articles/laptop/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 Apr 13 16:11: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 608FD37B416; Sat, 13 Apr 2002 16:11:23 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DNBNk11546; Sat, 13 Apr 2002 16:11:23 -0700 (PDT) (envelope-from jhb) Message-Id: <200204132311.g3DNBNk11546@freefall.freebsd.org> From: John Baldwin Date: Sat, 13 Apr 2002 16:11:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/osf1 osf1_misc.c src/sys/compat/linux linux_misc.c linux_uid16.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/04/13 16:11:23 PDT Modified files: sys/alpha/osf1 osf1_misc.c sys/compat/linux linux_misc.c linux_uid16.c Log: Rework logic of syscalls that modify process credentials as described in rev 1.152 of sys/kern/kern_prot.c. Revision Changes Path 1.30 +16 -4 src/sys/alpha/osf1/osf1_misc.c 1.119 +19 -13 src/sys/compat/linux/linux_misc.c 1.7 +20 -12 src/sys/compat/linux/linux_uid16.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 16:14: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 4F70137B404; Sat, 13 Apr 2002 16:14:08 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DNE8l11961; Sat, 13 Apr 2002 16:14:08 -0700 (PDT) (envelope-from jhb) Message-Id: <200204132314.g3DNE8l11961@freefall.freebsd.org> From: John Baldwin Date: Sat, 13 Apr 2002 16:14:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/procfs procfs_dbregs.c procfs_fpregs.c procfs_regs.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/04/13 16:14:08 PDT Modified files: sys/fs/procfs procfs_dbregs.c procfs_fpregs.c procfs_regs.c Log: Lock the target process in procfs_doproc*regs() for p_candebug and while reading/writing the registers. Revision Changes Path 1.19 +7 -3 src/sys/fs/procfs/procfs_dbregs.c 1.25 +7 -3 src/sys/fs/procfs/procfs_fpregs.c 1.24 +9 -3 src/sys/fs/procfs/procfs_regs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 16: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 D320637B400; Sat, 13 Apr 2002 16:15:28 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DNFSk12131; Sat, 13 Apr 2002 16:15:28 -0700 (PDT) (envelope-from jhb) Message-Id: <200204132315.g3DNFSk12131@freefall.freebsd.org> From: John Baldwin Date: Sat, 13 Apr 2002 16:15:28 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/procfs procfs_mem.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/04/13 16:15:28 PDT Modified files: sys/fs/procfs procfs_mem.c Log: Lock the target process for p_candebug(). Revision Changes Path 1.56 +4 -3 src/sys/fs/procfs/procfs_mem.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 16:19: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 0A26137B405; Sat, 13 Apr 2002 16:19:14 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DNJEf12636; Sat, 13 Apr 2002 16:19:14 -0700 (PDT) (envelope-from jhb) Message-Id: <200204132319.g3DNJEf12636@freefall.freebsd.org> From: John Baldwin Date: Sat, 13 Apr 2002 16:19:13 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/procfs procfs_ctl.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/04/13 16:19:13 PDT Modified files: sys/fs/procfs procfs_ctl.c Log: - Change procfs_control()'s first argument to be a thread pointer instead of a process pointer. - Move the p_candebug() at the start of procfs_control() a bit to make locking feasible. We still perform the access check before doing anything, we just now perform it after acquiring locks. - Don't lock the sched_lock for TRACE_WAIT_P() and when checking to see if p_stat is SSTOP. We lock the process while setting p_stat to SSTOP so locking the process is sufficient to do a read to see if p_stat is SSTOP or not. Revision Changes Path 1.39 +32 -47 src/sys/fs/procfs/procfs_ctl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 16:21: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 DDD5F37B405; Sat, 13 Apr 2002 16:21:55 -0700 (PDT) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DNLtK13030; Sat, 13 Apr 2002 16:21:55 -0700 (PDT) (envelope-from ade) Message-Id: <200204132321.g3DNLtK13030@freefall.freebsd.org> From: Ade Lovett Date: Sat, 13 Apr 2002 16:21:55 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/gedit Makefile ports/sysutils/gtop 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 ade 2002/04/13 16:21:55 PDT Modified files: editors/gedit Makefile sysutils/gtop Makefile Log: Missed these two in yesterday's uber-patch owing to a botched local tree merge problem. Pointy hat to: ade Revision Changes Path 1.37 +6 -1 ports/editors/gedit/Makefile 1.30 +6 -2 ports/sysutils/gtop/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 16:28: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 AE1F837B405; Sat, 13 Apr 2002 16:28:23 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DNSNk13897; Sat, 13 Apr 2002 16:28:23 -0700 (PDT) (envelope-from jhb) Message-Id: <200204132328.g3DNSNk13897@freefall.freebsd.org> From: John Baldwin Date: Sat, 13 Apr 2002 16:28:23 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_resource.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/04/13 16:28:23 PDT Modified files: sys/kern kern_resource.c Log: - Change donice() to take a thread as the first argument instead of a process so it can use td_ucred. - Require the target process of donice() to be locked when donice() is called. - Use td_ucred. - Lock the target process of p_cansee() and while reading the credentials of a process. - Change the logic of rtprio() slightly so it does it's copyin() if needed prior to locking the target process. - rtprio() no longer needs Giant. In theory with full KSE it would still need Giant to protect p_ucred of curproc for the p_canfoo() functions but p_canfoo() will be changing to using td_ucred of curthread before full KSE hits the tree. Revision Changes Path 1.103 +40 -37 src/sys/kern/kern_resource.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 16:31: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 DC7ED37B405; Sat, 13 Apr 2002 16:31:27 -0700 (PDT) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DNVRc14391; Sat, 13 Apr 2002 16:31:27 -0700 (PDT) (envelope-from des) Message-Id: <200204132331.g3DNVRc14391@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 13 Apr 2002 16:31:27 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/passwd 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/04/13 16:31:27 PDT Modified files: usr.bin/passwd Makefile Log: Remove bogus dependency on rlogin. Revision Changes Path 1.44 +3 -4 src/usr.bin/passwd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 16:33: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 D43EB37B419; Sat, 13 Apr 2002 16:33:37 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DNXbt14699; Sat, 13 Apr 2002 16:33:37 -0700 (PDT) (envelope-from jhb) Message-Id: <200204132333.g3DNXbt14699@freefall.freebsd.org> From: John Baldwin Date: Sat, 13 Apr 2002 16:33:37 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_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 jhb 2002/04/13 16:33:37 PDT Modified files: sys/kern kern_sig.c Log: - Change killpg1()'s first argument to be a thread instead of a process so we can use td_ucred. - In killpg1(), the proc lock is sufficient to check if p_stat is SZOMB or not. We don't need sched_lock. - Close some races in psignal(). In psignal() there is a big switch statement based on p_stat. All the different cases are assuming that the process (or thread) isn't going to change state out from under it. To ensure this is true, just lock sched_lock for the entire switch. We practically held it the entire time already anyways. This also simplifies the locking somewhat and actually results in fewer lock operations. - Allow signotify() to be called with the sched_lock held since psignal() now does that. - Use td_ucred in a couple of places. Revision Changes Path 1.155 +22 -36 src/sys/kern/kern_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 Apr 13 16:37: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 2495037B41E; Sat, 13 Apr 2002 16:37:11 -0700 (PDT) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DNbAd15148; Sat, 13 Apr 2002 16:37:10 -0700 (PDT) (envelope-from alc) Message-Id: <200204132337.g3DNbAd15148@freefall.freebsd.org> From: Alan Cox Date: Sat, 13 Apr 2002 16:37:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha machdep.c src/sys/ia64/ia64 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 alc 2002/04/13 16:37:10 PDT Modified files: sys/alpha/alpha machdep.c sys/ia64/ia64 machdep.c Log: Add comment that sigreturn() is MPSAFE. Revision Changes Path 1.178 +3 -0 src/sys/alpha/alpha/machdep.c 1.94 +2 -0 src/sys/ia64/ia64/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 16: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 6E75037B416; Sat, 13 Apr 2002 16:44:08 -0700 (PDT) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DNi8C15985; Sat, 13 Apr 2002 16:44:08 -0700 (PDT) (envelope-from dwcjr) Message-Id: <200204132344.g3DNi8C15985@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Sat, 13 Apr 2002 16:44:08 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/ifhp pkg-install 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 dwcjr 2002/04/13 16:44:08 PDT Added files: print/ifhp pkg-install pkg-message Log: Add missing files PR: 36857 Submitted by: maintainer Revision Changes Path 1.1 +98 -0 ports/print/ifhp/pkg-install (new) 1.1 +14 -0 ports/print/ifhp/pkg-message (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 16:53: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 63AC037B41B; Sat, 13 Apr 2002 16:53:36 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DNrav17053; Sat, 13 Apr 2002 16:53:36 -0700 (PDT) (envelope-from obrien) Message-Id: <200204132353.g3DNrav17053@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 16:53:36 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dhclient 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 obrien 2002/04/13 16:53:36 PDT Modified files: sbin/dhclient Makefile.inc Log: Do not use perl where sed is more than adequate. Revision Changes Path 1.3 +4 -1 src/sbin/dhclient/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 16:56: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 C2F7437B405; Sat, 13 Apr 2002 16:56:10 -0700 (PDT) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3DNuA117336; Sat, 13 Apr 2002 16:56:10 -0700 (PDT) (envelope-from anders) Message-Id: <200204132356.g3DNuA117336@freefall.freebsd.org> From: Anders Nordby Date: Sat, 13 Apr 2002 16:56:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-fm/endeavour 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 anders 2002/04/13 16:56:10 PDT Modified files: x11-fm/endeavour Makefile Log: Fix bento -current build. PR: 36817 Submitted by: maintainer Revision Changes Path 1.11 +2 -2 ports/x11-fm/endeavour/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 17:27:19 2002 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id 489E437B405; Sat, 13 Apr 2002 17:27:10 -0700 (PDT) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 1E48B81491; Sun, 14 Apr 2002 09:57:08 +0930 (CST) Date: Sun, 14 Apr 2002 09:57:08 +0930 From: Greg 'groggy' Lehey To: Marcel Moolenaar Cc: Mike Barcroft , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c Message-ID: <20020414095708.S47408@wantadilla.lemis.com> References: <200204130820.g3D8KGx17608@freefall.freebsd.org> <20020413114643.A2860@espresso.q9media.com> <20020413180300.GB319@dhcp01.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020413180300.GB319@dhcp01.pn.xcllnt.net> User-Agent: Mutt/1.3.23i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Sender: owner-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 Saturday, 13 April 2002 at 11:03:00 -0700, Marcel Moolenaar wrote: > On Sat, Apr 13, 2002 at 11:46:43AM -0400, Mike Barcroft wrote: >> Marcel Moolenaar writes: >>> marcel 2002/04/13 01:20:15 PDT >>> >>> Modified files: >>> sbin/savecore savecore.c >>> Log: >>> High-level changes (user visible): >>> o Implement -c (clear) to clear previously kept headers (note that >>> dumps not cleared will remain until -c is used), >>> o Implement -f (force) to allow re-saving a previously saved dump, >>> o Implement -k (keep) and make clearing the dump header the default, >>> o Implement -v (verbose) and make most output conditional upon it, >>> o Emit minimal output for the non-verbose case with the assumption >>> that savecore is run mostly from within /etc/rc, >>> o Update usage message to reflect what is and what's not, >>> o mark -d as obsolete. >> [...] >>> >>> Revision Changes Path >>> 1.55 +137 -56 src/sbin/savecore/savecore.c >> >> Is anyone working on a manual for this? > > Unless someone is doing it secretly: no. You should update the man page. Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 17:36: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 6F7A737B404; Sat, 13 Apr 2002 17:36:20 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E0aKO30722; Sat, 13 Apr 2002 17:36:20 -0700 (PDT) (envelope-from jedgar) Message-Id: <200204140036.g3E0aKO30722@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sat, 13 Apr 2002 17:36:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games Makefile ports/games/grubinvaders Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist ports/games/grubinvaders/files 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 jedgar 2002/04/13 17:36:20 PDT Modified files: games Makefile Added files: games/grubinvaders Makefile distinfo pkg-comment pkg-descr pkg-message pkg-plist games/grubinvaders/files Makefile Log: Add grubinvaders, a multi-boot compliant space invaders-type game. Revision Changes Path 1.453 +1 -0 ports/games/Makefile 1.1 +30 -0 ports/games/grubinvaders/Makefile (new) 1.1 +1 -0 ports/games/grubinvaders/distinfo (new) 1.1 +20 -0 ports/games/grubinvaders/files/Makefile (new) 1.1 +1 -0 ports/games/grubinvaders/pkg-comment (new) 1.1 +3 -0 ports/games/grubinvaders/pkg-descr (new) 1.1 +6 -0 ports/games/grubinvaders/pkg-message (new) 1.1 +3 -0 ports/games/grubinvaders/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 Apr 13 17: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 2F5B137B404; Sat, 13 Apr 2002 17:37:02 -0700 (PDT) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E0b2P30825; Sat, 13 Apr 2002 17:37:02 -0700 (PDT) (envelope-from jedgar) Message-Id: <200204140037.g3E0b2P30825@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Sat, 13 Apr 2002 17:37:02 -0700 (PDT) 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 jedgar 2002/04/13 17:37:02 PDT Modified files: . modules Log: grubinvaders -> ports/games/grubinvaders Revision Changes Path 1.4981 +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 Apr 13 17: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 07A2C37B405; Sat, 13 Apr 2002 17:53:58 -0700 (PDT) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E0rwC32634; Sat, 13 Apr 2002 17:53:58 -0700 (PDT) (envelope-from anders) Message-Id: <200204140053.g3E0rwC32634@freefall.freebsd.org> From: Anders Nordby Date: Sat, 13 Apr 2002 17:53:57 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/cdpd 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 anders 2002/04/13 17:53:57 PDT Modified files: net/cdpd Makefile distinfo Log: Update to 1.0.2. PR: 36793 Submitted by: maintainer Revision Changes Path 1.2 +1 -1 ports/net/cdpd/Makefile 1.2 +1 -1 ports/net/cdpd/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 17:58:57 2002 Delivered-To: cvs-all@freebsd.org Received: from kayak.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by hub.freebsd.org (Postfix) with ESMTP id 26A8637B416; Sat, 13 Apr 2002 17:58:53 -0700 (PDT) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by kayak.xcllnt.net (8.11.6/8.11.4) with ESMTP id g3E0wqJ33865; Sat, 13 Apr 2002 17:58:52 -0700 (PDT) (envelope-from marcel@kayak.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp01.pn.xcllnt.net (8.12.2/8.12.2) with ESMTP id g3E0x5jv001315; Sat, 13 Apr 2002 17:59:05 -0700 (PDT) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.2/8.12.2/Submit) id g3E0x5Ja001314; Sat, 13 Apr 2002 17:59:05 -0700 (PDT) Date: Sat, 13 Apr 2002 17:59:05 -0700 From: Marcel Moolenaar To: "Greg 'groggy' Lehey" Cc: Mike Barcroft , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c Message-ID: <20020414005904.GA1287@dhcp01.pn.xcllnt.net> References: <200204130820.g3D8KGx17608@freefall.freebsd.org> <20020413114643.A2860@espresso.q9media.com> <20020413180300.GB319@dhcp01.pn.xcllnt.net> <20020414095708.S47408@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020414095708.S47408@wantadilla.lemis.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, Apr 14, 2002 at 09:57:08AM +0930, Greg 'groggy' Lehey wrote: > >> > >> Is anyone working on a manual for this? > > > > Unless someone is doing it secretly: no. > > You should update the man page. If you feel strongly about updating the manpage, I'll revert the change. I have no intention to get lost in savecore issues while my only intention was to restore some basic functionality I felt was missing. No threat, just consequence. No emotional reaction, just logic. Please advice. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 18: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 1AB7E37B49B; Sat, 13 Apr 2002 18:20:52 -0700 (PDT) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E1KgW39100; Sat, 13 Apr 2002 18:20:42 -0700 (PDT) (envelope-from anders) Message-Id: <200204140120.g3E1KgW39100@freefall.freebsd.org> From: Anders Nordby Date: Sat, 13 Apr 2002 18:20:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/mpage 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 anders 2002/04/13 18:20:42 PDT Modified files: print/mpage Makefile Log: MAINTAINER= missing. Set it to ports@. Pointy hat to: fenner Revision Changes Path 1.6 +3 -1 ports/print/mpage/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 18: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 CB9E337B405; Sat, 13 Apr 2002 18:30:20 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E1UKQ40145; Sat, 13 Apr 2002 18:30:20 -0700 (PDT) (envelope-from obrien) Message-Id: <200204140130.g3E1UKQ40145@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 18:30:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/find Makefile getdate.y X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/13 18:30:20 PDT Modified files: usr.bin/find Makefile Added files: usr.bin/find getdate.y Log: Clean up the 1/2 a** committing from Thu, 3 May 2001 11:05:39 -0700 (PDT). Since then we have living with a GPL'ed find(1) due to grabbing getdate.y from src/contrib/cvs and its user of the GPL'ed xtime.h. I don't even want to think about how this could have affected people using our source base. Would it have been too much trouble to do then what I did now? Copied getdate.y (public domain) to usr.bin/find and change to use standard system headers. find(1) now compiles simply with out having to go to extra effort to do so. Pointed hat to: phk Build fixed on: gcc 3.1 using platforms Revision Changes Path 1.16 +0 -4 src/usr.bin/find/Makefile 1.1 +1010 -0 src/usr.bin/find/getdate.y (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 18:36:23 2002 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id C5AFC37B400; Sat, 13 Apr 2002 18:36:18 -0700 (PDT) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 4E6DE81491; Sun, 14 Apr 2002 11:06:16 +0930 (CST) Date: Sun, 14 Apr 2002 11:06:16 +0930 From: Greg 'groggy' Lehey To: Marcel Moolenaar Cc: Mike Barcroft , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c Message-ID: <20020414110616.C75803@wantadilla.lemis.com> References: <200204130820.g3D8KGx17608@freefall.freebsd.org> <20020413114643.A2860@espresso.q9media.com> <20020413180300.GB319@dhcp01.pn.xcllnt.net> <20020414095708.S47408@wantadilla.lemis.com> <20020414005904.GA1287@dhcp01.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020414005904.GA1287@dhcp01.pn.xcllnt.net> User-Agent: Mutt/1.3.23i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 Sender: owner-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 Saturday, 13 April 2002 at 17:59:05 -0700, Marcel Moolenaar wrote: > On Sun, Apr 14, 2002 at 09:57:08AM +0930, Greg 'groggy' Lehey wrote: >>>> >>>> Is anyone working on a manual for this? >>> >>> Unless someone is doing it secretly: no. >> >> You should update the man page. > > If you feel strongly about updating the manpage, I'll revert the > change. That's rather throwing the baby out with the bath water. > I have no intention to get lost in savecore issues while my only > intention was to restore some basic functionality I felt was > missing. Well, that looks like a savecore issue to me. But if you add functionality, you should describe it. The fixes look good, but if nobody knows about them, who will use them? > No threat, just consequence. No emotional reaction, just logic. I don't see very much logic there, nor consequence. Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 18:50: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 BAD5637B404; Sat, 13 Apr 2002 18:50:51 -0700 (PDT) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E1opH47200; Sat, 13 Apr 2002 18:50:51 -0700 (PDT) (envelope-from keramida) Message-Id: <200204140150.g3E1opH47200@freefall.freebsd.org> From: Giorgos Keramidas Date: Sat, 13 Apr 2002 18:50:51 -0700 (PDT) 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 keramida 2002/04/13 18:50:51 PDT Modified files: en_US.ISO8859-1/articles/hubs article.sgml Log: Round #1 of various updates/fixes to this article. In the bandwidth requirements section: - Properly finish sentences with fullstops. - Remove "probably" and similar words. We shouldn't sound like we don't know if the requirements are true. PR: docs/37037 Submitted by: Dominic Marks Revision Changes Path 1.14 +3 -4 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 Sat Apr 13 18:53: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 1B32D37B4E8; Sat, 13 Apr 2002 18:52:34 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E1qY147447; Sat, 13 Apr 2002 18:52:34 -0700 (PDT) (envelope-from trevor) Message-Id: <200204140152.g3E1qY147447@freefall.freebsd.org> From: Trevor Johnson Date: Sat, 13 Apr 2002 18:52:33 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/french/linux-netscape6 Makefile distinfo ports/german/linux-netscape6 Makefile distinfo ports/japanese/linux-netscape6 Makefile distinfo ports/www/linux-netscape6 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/04/13 18:52:33 PDT Modified files: french/linux-netscape6 Makefile distinfo german/linux-netscape6 Makefile distinfo japanese/linux-netscape6 Makefile distinfo www/linux-netscape6 Makefile Log: Update Japanese, German, and French Netscape ports to version 6.2.2 (the English port was already updated, because Netscape released that binary before releasing the others). Install Netscape in a different directory for each different language. The startup command is now called netscape6english, netscape6french, and so on, rather than just netscape6. Because of this, I set PORTREVISION for the English version. Revision Changes Path 1.4 +1 -2 ports/french/linux-netscape6/Makefile 1.2 +13 -13 ports/french/linux-netscape6/distinfo 1.3 +1 -2 ports/german/linux-netscape6/Makefile 1.2 +14 -14 ports/german/linux-netscape6/distinfo 1.3 +1 -2 ports/japanese/linux-netscape6/Makefile 1.2 +13 -13 ports/japanese/linux-netscape6/distinfo 1.59 +11 -10 ports/www/linux-netscape6/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 18:56: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 D6CE137B405; Sat, 13 Apr 2002 18:56:25 -0700 (PDT) Received: (from jeff@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E1uPZ48087; Sat, 13 Apr 2002 18:56:25 -0700 (PDT) (envelope-from jeff) Message-Id: <200204140156.g3E1uPZ48087@freefall.freebsd.org> From: Jeff Roberson Date: Sat, 13 Apr 2002 18:56:25 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm uma_core.c uma_int.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 jeff 2002/04/13 18:56:25 PDT Modified files: sys/vm uma_core.c uma_int.h Log: Fix the calculation that determines uz_maxpages. It was off for large zones. Fortunately we have no large zones with maximums specified yet, so it wasn't breaking anything. Implement blocking when a zone exceeds the maximum and M_WAITOK is specified. Previously this just failed like the old zone allocator did. The old zone allocator didn't support WAITOK/NOWAIT though so we should do what we advertise. While I was in there I cleaned up some more zalloc logic to further simplify that code path and reduce redundant code. This was needed to make the blocking work properly anyway. Revision Changes Path 1.12 +51 -28 src/sys/vm/uma_core.c 1.7 +2 -0 src/sys/vm/uma_int.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 18:56: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 C18EC37B42C; Sat, 13 Apr 2002 18:56:41 -0700 (PDT) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E1ufV48147; Sat, 13 Apr 2002 18:56:41 -0700 (PDT) (envelope-from anders) Message-Id: <200204140156.g3E1ufV48147@freefall.freebsd.org> From: Anders Nordby Date: Sat, 13 Apr 2002 18:56:41 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/mpage Makefile distinfo pkg-plist ports/print/mpage/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 anders 2002/04/13 18:56:41 PDT Modified files: print/mpage Makefile distinfo pkg-plist print/mpage/files patch-aa Log: Update to 2.5.2. Fix CFLAGS compliance. PR: 36821 Submitted by: Oliver Braun Revision Changes Path 1.7 +1 -1 ports/print/mpage/Makefile 1.2 +1 -1 ports/print/mpage/distinfo 1.2 +22 -16 ports/print/mpage/files/patch-aa 1.3 +1 -0 ports/print/mpage/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 Apr 13 19: 0: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 2BE6B37B400; Sat, 13 Apr 2002 19:00:52 -0700 (PDT) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E20qA48896; Sat, 13 Apr 2002 19:00:52 -0700 (PDT) (envelope-from keramida) Message-Id: <200204140200.g3E20qA48896@freefall.freebsd.org> From: Giorgos Keramidas Date: Sat, 13 Apr 2002 19:00:52 -0700 (PDT) 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 keramida 2002/04/13 19:00:52 PDT Modified files: en_US.ISO8859-1/articles/hubs article.sgml Log: Reword MFS stuff in the system requirements section. Also expand the RAID disk paragraph and add some stuff about SCSI controllers that might help speeding up things. PR: docs/37037 Submitted by: Dominic Marks Revision Changes Path 1.15 +12 -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 Sat Apr 13 19: 4: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 DA4DC37B41B; Sat, 13 Apr 2002 19:04:21 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E24L549323; Sat, 13 Apr 2002 19:04:21 -0700 (PDT) (envelope-from trevor) Message-Id: <200204140204.g3E24L549323@freefall.freebsd.org> From: Trevor Johnson Date: Sat, 13 Apr 2002 19:04:21 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/blwm 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/04/13 19:04:21 PDT Modified files: x11-wm/blwm Makefile Log: This needs libxpm. PR: 36899 Submitted by: KATO Tsuguru Revision Changes Path 1.2 +1 -0 ports/x11-wm/blwm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 19: 6: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 5E0E237B404; Sat, 13 Apr 2002 19:06:20 -0700 (PDT) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E26Kk53441; Sat, 13 Apr 2002 19:06:20 -0700 (PDT) (envelope-from keramida) Message-Id: <200204140206.g3E26Kk53441@freefall.freebsd.org> From: Giorgos Keramidas Date: Sat, 13 Apr 2002 19:06:20 -0700 (PDT) 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 keramida 2002/04/13 19:06:20 PDT Modified files: en_US.ISO8859-1/articles/hubs article.sgml Log: Services section. Make the distinctioin between required services, and optional services. Note that administrators can run other services they find useful, if they want. PR: docs/37037 Submitted by: Dominic Marks Revision Changes Path 1.16 +5 -4 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 Sat Apr 13 19:13: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 EB5AA37B400; Sat, 13 Apr 2002 19:13:42 -0700 (PDT) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E2Dgu54409; Sat, 13 Apr 2002 19:13:42 -0700 (PDT) (envelope-from keramida) Message-Id: <200204140213.g3E2Dgu54409@freefall.freebsd.org> From: Giorgos Keramidas Date: Sat, 13 Apr 2002 19:13:42 -0700 (PDT) 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 keramida 2002/04/13 19:13:42 PDT Modified files: en_US.ISO8859-1/articles/hubs article.sgml Log: FTP section cleanup. - Reword descriptions of FTP servers. - Capitalize list entries. PR: docs/37037 Submitted by: Dominic Marks Revision Changes Path 1.17 +15 -15 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 Sat Apr 13 19: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 7017537B41C; Sat, 13 Apr 2002 19:29:20 -0700 (PDT) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E2TKm55922; Sat, 13 Apr 2002 19:29:20 -0700 (PDT) (envelope-from dd) Message-Id: <200204140229.g3E2TKm55922@freefall.freebsd.org> From: Dima Dorfman Date: Sat, 13 Apr 2002 19:29:20 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys ioctl.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 dd 2002/04/13 19:29:20 PDT Modified files: lib/libc/sys ioctl.2 Log: Correct markup. Revision Changes Path 1.18 +2 -1 src/lib/libc/sys/ioctl.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 19:30:15 2002 Delivered-To: cvs-all@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id 7E27F37B404; Sat, 13 Apr 2002 19:29:56 -0700 (PDT) Received: from hades.hell.gr (patr530-a185.otenet.gr [212.205.215.185]) by mailsrv.otenet.gr (8.12.2/8.12.2) with ESMTP id g3E2TqhX010938; Sun, 14 Apr 2002 05:29:53 +0300 (EEST) Received: from hades.hell.gr (hades [127.0.0.1]) by hades.hell.gr (8.12.2/8.12.2) with ESMTP id g3E2TpUo002337; Sun, 14 Apr 2002 05:29:51 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from charon@localhost) by hades.hell.gr (8.12.2/8.12.2/Submit) id g3E2ToqR002323; Sun, 14 Apr 2002 05:29:50 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sun, 14 Apr 2002 05:28:30 +0300 From: Giorgos Keramidas To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Cc: freebsd-doc@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/articles/hubs article.sgml Message-ID: <20020414022829.GA2297@hades.hell.gr> References: <200204140213.g3E2Dgu54409@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200204140213.g3E2Dgu54409@freefall.freebsd.org> User-Agent: Mutt/1.3.28i Sender: owner-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 2002-04-13 19:13, Giorgos Keramidas wrote: > Modified files: > en_US.ISO8859-1/articles/hubs article.sgml There is a lot more to be extracted from that PR, but since it's getting very late here (or early in the morning), and I want to carefully review the rest of the changes feel free to make any changes you want to this article. I'm not touching it again for a while. Just until I can cleanup and check the rest of the changes in the PR. I'll happilly merge any recent stuff into the working copy I have at home, when I'm less sleepy. - Giorgos To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 19:37: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 0486B37B41B; Sat, 13 Apr 2002 19:37:07 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E2b6m56806; Sat, 13 Apr 2002 19:37:06 -0700 (PDT) (envelope-from trevor) Message-Id: <200204140237.g3E2b6m56806@freefall.freebsd.org> From: Trevor Johnson Date: Sat, 13 Apr 2002 19:37:06 -0700 (PDT) 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 trevor 2002/04/13 19:37:06 PDT Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Update Thomas E. Zander's address. Submitted by: someone claiming to be Thomas E. Zander Approved by: "make lint" Revision Changes Path 1.153 +1 -1 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 Apr 13 20: 4: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 A112937B422; Sat, 13 Apr 2002 20:04:19 -0700 (PDT) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E34JN59434; Sat, 13 Apr 2002 20:04:19 -0700 (PDT) (envelope-from alc) Message-Id: <200204140304.g3E34JN59434@freefall.freebsd.org> From: Alan Cox Date: Sat, 13 Apr 2002 20:04:19 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_aio.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 alc 2002/04/13 20:04:19 PDT Modified files: sys/kern vfs_aio.c Log: o Use aiocblist::fd_file in the AIO threads rather than recomputing the file * from the calling process's descriptor table. o Eliminate sharing of the calling process's descriptor table with the AIO threads. Revision Changes Path 1.125 +3 -45 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 Apr 13 20: 9: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from cs.rice.edu (cs.rice.edu [128.42.1.30]) by hub.freebsd.org (Postfix) with ESMTP id 9176C37B400; Sat, 13 Apr 2002 20:08:58 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by cs.rice.edu (Postfix) with ESMTP id BF306182B; Sat, 13 Apr 2002 22:08:57 -0500 (CDT) Received: by cs.rice.edu (Postfix, from userid 19572) id 68CB6182C; Sat, 13 Apr 2002 22:08:56 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by cs.rice.edu (Postfix) with ESMTP id 52614182B; Sat, 13 Apr 2002 22:08:56 -0500 (CDT) Date: Sat, 13 Apr 2002 22:08:56 -0500 (CDT) From: Alan Cox To: Alan Cox Cc: , Subject: Re: cvs commit: src/sys/kern vfs_aio.c In-Reply-To: <200204140304.g3E34JN59434@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS snapshot-20010714 Sender: owner-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, 13 Apr 2002, Alan Cox wrote: > alc 2002/04/13 20:04:19 PDT > > Modified files: > sys/kern vfs_aio.c > Log: > o Use aiocblist::fd_file in the AIO threads rather than recomputing > the file * from the calling process's descriptor table. > o Eliminate sharing of the calling process's descriptor table > with the AIO threads. > > Revision Changes Path > 1.125 +3 -45 src/sys/kern/vfs_aio.c > I forgot to add: Reviewed and in part submitted by: tegge To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 20: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 8691237B400; Sat, 13 Apr 2002 20:13:14 -0700 (PDT) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E3DEB64182; Sat, 13 Apr 2002 20:13:14 -0700 (PDT) (envelope-from trevor) Message-Id: <200204140313.g3E3DEB64182@freefall.freebsd.org> From: Trevor Johnson Date: Sat, 13 Apr 2002 20:13:14 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/bin86 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/04/13 20:13:14 PDT Modified files: devel/bin86 Makefile Log: Permit installation with a strict umask such as 027. PR: 32922 Submitted by: Gary W. Swearingen Revision Changes Path 1.7 +7 -5 ports/devel/bin86/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 20:24:30 2002 Delivered-To: cvs-all@freebsd.org Received: from kayak.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by hub.freebsd.org (Postfix) with ESMTP id D716337B41A; Sat, 13 Apr 2002 20:24:11 -0700 (PDT) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by kayak.xcllnt.net (8.11.6/8.11.4) with ESMTP id g3E3OBJ34186; Sat, 13 Apr 2002 20:24:11 -0700 (PDT) (envelope-from marcel@kayak.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp01.pn.xcllnt.net (8.12.2/8.12.2) with ESMTP id g3E3ONjv001693; Sat, 13 Apr 2002 20:24:23 -0700 (PDT) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.2/8.12.2/Submit) id g3E3ONxK001692; Sat, 13 Apr 2002 20:24:23 -0700 (PDT) Date: Sat, 13 Apr 2002 20:24:23 -0700 From: Marcel Moolenaar To: "Greg 'groggy' Lehey" Cc: Mike Barcroft , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c Message-ID: <20020414032423.GA1584@dhcp01.pn.xcllnt.net> References: <200204130820.g3D8KGx17608@freefall.freebsd.org> <20020413114643.A2860@espresso.q9media.com> <20020413180300.GB319@dhcp01.pn.xcllnt.net> <20020414095708.S47408@wantadilla.lemis.com> <20020414005904.GA1287@dhcp01.pn.xcllnt.net> <20020414110616.C75803@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020414110616.C75803@wantadilla.lemis.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, Apr 14, 2002 at 11:06:16AM +0930, Greg 'groggy' Lehey wrote: > > I have no intention to get lost in savecore issues while my only > > intention was to restore some basic functionality I felt was > > missing. > > Well, that looks like a savecore issue to me. Yes, definitely. It's the lost part that's key here. I don't think I'm lost yet, but will be if I'm not careful :-) > But if you add > functionality, you should describe it. The fixes look good, but if > nobody knows about them, who will use them? The change is a (partial) restoration of almost equivalent functionality. The -f option may need rewording. I obsoleted -d, which is undocumented anyway. So, the implementation is closer to what the manpage describes. You can say that the manpage is ahead of the implementation for once :-) The point is that the intend was to move ahead with savecore, to fill a gap without actually spending too much time on it. It simply doesn't have my interest beyond how it affects me. The hope was that with all the (small) steps forward, we'd have savecore close enough to what we want that more people would be willing to finish the job, rather than banking on a single person to build it up from where phk left it. Many hands make light work, I believe the phrase is... > > No threat, just consequence. No emotional reaction, just logic. > > I don't see very much logic there, nor consequence. That's perfectly alright; it's not important, really. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 20:26: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 28B4C37B400; Sat, 13 Apr 2002 20:26:13 -0700 (PDT) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E3QDK65704; Sat, 13 Apr 2002 20:26:13 -0700 (PDT) (envelope-from keramida) Message-Id: <200204140326.g3E3QDK65704@freefall.freebsd.org> From: Giorgos Keramidas Date: Sat, 13 Apr 2002 20:26:13 -0700 (PDT) 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 keramida 2002/04/13 20:26:13 PDT Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Credit Marc Fonvieille for his work on our documentation so far. Revision Changes Path 1.154 +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 Apr 13 20:59: 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 83A3537B416; Sat, 13 Apr 2002 20:59:03 -0700 (PDT) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E3x3j68800; Sat, 13 Apr 2002 20:59:03 -0700 (PDT) (envelope-from silby) Message-Id: <200204140359.g3E3x3j68800@freefall.freebsd.org> From: Mike Silbersack Date: Sat, 13 Apr 2002 20:59:03 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet in.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 silby 2002/04/13 20:59:03 PDT Modified files: (Branch: RELENG_4) sys/netinet in.h Log: MFC rev 1.66 Totally nuke IPPORT_USERRESERVED, it is no longer used anywhere, update remaining comments to reflect new ephemeral port range. Revision Changes Path 1.48.2.7 +2 -4 src/sys/netinet/in.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 21: 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 D67D137B41D; Sat, 13 Apr 2002 21:00:18 -0700 (PDT) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E40IC68970; Sat, 13 Apr 2002 21:00:18 -0700 (PDT) (envelope-from silby) Message-Id: <200204140400.g3E40IC68970@freefall.freebsd.org> From: Mike Silbersack Date: Sat, 13 Apr 2002 21:00:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 tcp.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 silby 2002/04/13 21:00:18 PDT Modified files: (Branch: RELENG_4) share/man/man4 tcp.4 Log: MFC rev 1.24 Update documentation relating to sysctls in a post-syncache world. Goodbye tcp.tcp_lq_overflow and tcp.strict_rfc1948, hello tcp.syncookies. Revision Changes Path 1.11.2.9 +4 -13 src/share/man/man4/tcp.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 21: 2: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 20ED337B404; Sat, 13 Apr 2002 21:02:31 -0700 (PDT) Received: (from silby@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E42Vw69143; Sat, 13 Apr 2002 21:02:31 -0700 (PDT) (envelope-from silby) Message-Id: <200204140402.g3E42Vw69143@freefall.freebsd.org> From: Mike Silbersack Date: Sat, 13 Apr 2002 21:02:31 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet tcp_input.c tcp_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 silby 2002/04/13 21:02:31 PDT Modified files: (Branch: RELENG_4) sys/netinet tcp_input.c tcp_subr.c Log: MFC 1.152 +0 -2 src/sys/netinet/tcp_input.c 1.127 +3 -27 src/sys/netinet/tcp_subr.c Remove some ISN generation code which has been unused since the syncache went in. Revision Changes Path 1.107.2.22 +0 -2 src/sys/netinet/tcp_input.c 1.73.2.25 +3 -27 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 Sat Apr 13 21:12: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 B32E437B400; Sat, 13 Apr 2002 21:12:44 -0700 (PDT) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E4Ci573908; Sat, 13 Apr 2002 21:12:44 -0700 (PDT) (envelope-from jhb) Message-Id: <200204140412.g3E4Ci573908@freefall.freebsd.org> From: John Baldwin Date: Sat, 13 Apr 2002 21:12:44 -0700 (PDT) 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 jhb 2002/04/13 21:12:44 PDT Modified files: sys/fs/pseudofs pseudofs_vnops.c Log: Remove stale XXX comment. Revision Changes Path 1.25 +0 -1 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 Sat Apr 13 21:15: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 8EE3437B41C; Sat, 13 Apr 2002 21:15:34 -0700 (PDT) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E4FYC74277; Sat, 13 Apr 2002 21:15:34 -0700 (PDT) (envelope-from obrien) Message-Id: <200204140415.g3E4FYC74277@freefall.freebsd.org> From: "David E. O'Brien" Date: Sat, 13 Apr 2002 21:15:34 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/make str.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/04/13 21:15:34 PDT Modified files: usr.bin/make str.c Log: Back out rev 1.17, it breaks dependencies. With rev 1.7 one cannot build src/bin/sh -- because make fails to create the buildtools before trying to use them. Actually it does compile the buildtools into .o's before trying to use them, but not all the way into binaries. Revision Changes Path 1.20 +11 -15 src/usr.bin/make/str.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 21:32:57 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.acns.ab.ca (mail.acns.ab.ca [142.179.151.95]) by hub.freebsd.org (Postfix) with ESMTP id 3995C37B404; Sat, 13 Apr 2002 21:32:52 -0700 (PDT) Received: from colnta.acns.ab.ca (colnta.acns.ab.ca [192.168.1.2]) by mail.acns.ab.ca (8.11.6/8.11.3) with ESMTP id g3E4Wai81789; Sat, 13 Apr 2002 22:32:36 -0600 (MDT) (envelope-from davidc@colnta.acns.ab.ca) Received: from colnta.acns.ab.ca (localhost [127.0.0.1]) by colnta.acns.ab.ca (8.12.2/8.11.3) with ESMTP id g3E4WOsn016686; Sat, 13 Apr 2002 22:32:24 -0600 (MDT) (envelope-from davidc@colnta.acns.ab.ca) Received: (from davidc@localhost) by colnta.acns.ab.ca (8.12.2/8.12.2/Submit) id g3E4WNN7016685; Sat, 13 Apr 2002 22:32:23 -0600 (MDT) Date: Sat, 13 Apr 2002 22:32:23 -0600 From: Chad David To: Marcel Moolenaar Cc: "Greg 'groggy' Lehey" , Mike Barcroft , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c Message-ID: <20020413223223.B16655@colnta.acns.ab.ca> Mail-Followup-To: Marcel Moolenaar , Greg 'groggy' Lehey , Mike Barcroft , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200204130820.g3D8KGx17608@freefall.freebsd.org> <20020413114643.A2860@espresso.q9media.com> <20020413180300.GB319@dhcp01.pn.xcllnt.net> <20020414095708.S47408@wantadilla.lemis.com> <20020414005904.GA1287@dhcp01.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020414005904.GA1287@dhcp01.pn.xcllnt.net>; from marcel@xcllnt.net on Sat, Apr 13, 2002 at 05:59:05PM -0700 Sender: owner-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, Apr 13, 2002 at 05:59:05PM -0700, Marcel Moolenaar wrote: > On Sun, Apr 14, 2002 at 09:57:08AM +0930, Greg 'groggy' Lehey wrote: > > >> > > >> Is anyone working on a manual for this? > > > > > > Unless someone is doing it secretly: no. > > > > You should update the man page. > > If you feel strongly about updating the manpage, I'll revert the > change. I have no intention to get lost in savecore issues while > my only intention was to restore some basic functionality I felt > was missing. No threat, just consequence. No emotional reaction, > just logic. > > Please advice. When I get a chance (tomorrow or next week hopefully) I'll take a look at the man page. -- Chad David davidc@acns.ab.ca www.FreeBSD.org davidc@freebsd.org ACNS Inc. Calgary, Alberta Canada Fourthly, The constant breeders, beside the gain of eight shillings sterling per annum by the sale of their children, will be rid of the charge of maintaining them after the first year. - Johnathan Swift To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 21:33: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 5390E37B419; Sat, 13 Apr 2002 21:33:30 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E4XUB79751; Sat, 13 Apr 2002 21:33:30 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204140433.g3E4XUB79751@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sat, 13 Apr 2002 21:33:30 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/showimg Makefile distinfo pkg-comment pkg-descr pkg-plist ports/graphics/showimg/files patch-showimg:batchrenamer.h patch-showimg:qtiffio.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 ijliao 2002/04/13 21:33:30 PDT Modified files: graphics Makefile Added files: graphics/showimg Makefile distinfo pkg-comment pkg-descr pkg-plist graphics/showimg/files patch-showimg:batchrenamer.h patch-showimg:qtiffio.cpp Log: add showimg 0.7 A picture viewer designed to run under KDE 2.x Revision Changes Path 1.435 +1 -0 ports/graphics/Makefile 1.1 +27 -0 ports/graphics/showimg/Makefile (new) 1.1 +1 -0 ports/graphics/showimg/distinfo (new) 1.1 +12 -0 ports/graphics/showimg/files/patch-showimg:batchrenamer.h (new) 1.1 +10 -0 ports/graphics/showimg/files/patch-showimg:qtiffio.cpp (new) 1.1 +1 -0 ports/graphics/showimg/pkg-comment (new) 1.1 +6 -0 ports/graphics/showimg/pkg-descr (new) 1.1 +116 -0 ports/graphics/showimg/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 Apr 13 21:33: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 A27ED37B423; Sat, 13 Apr 2002 21:33:34 -0700 (PDT) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E4XYG79785; Sat, 13 Apr 2002 21:33:34 -0700 (PDT) (envelope-from ijliao) Message-Id: <200204140433.g3E4XYG79785@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sat, 13 Apr 2002 21:33:34 -0700 (PDT) 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/04/13 21:33:34 PDT Modified files: . modules Log: showimg --> ports/graphics/showimg Revision Changes Path 1.4982 +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 Apr 13 21:34: 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 18CE937B416; Sat, 13 Apr 2002 21:33:42 -0700 (PDT) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E4Xgr79839; Sat, 13 Apr 2002 21:33:42 -0700 (PDT) (envelope-from peter) Message-Id: <200204140433.g3E4Xgr79839@freefall.freebsd.org> From: Peter Wemm Date: Sat, 13 Apr 2002 21:33:42 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options.ia64 src/sys/ia64/ia64 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/04/13 21:33:42 PDT Modified files: sys/conf options.ia64 sys/ia64/ia64 machdep.c Log: Allow a kernel to be compiled with both SKI and acpica and still work on real hardware. (SKI used to break the sapic probes) Revision Changes Path 1.10 +1 -0 src/sys/conf/options.ia64 1.95 +14 -2 src/sys/ia64/ia64/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 22:14:42 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 2A3A237B404; Sat, 13 Apr 2002 22:14:37 -0700 (PDT) Received: by elvis.mu.org (Postfix, from userid 1192) id F3853AE03F; Sat, 13 Apr 2002 22:14:36 -0700 (PDT) Date: Sat, 13 Apr 2002 22:14:36 -0700 From: Alfred Perlstein To: Alan Cox Cc: Alan Cox , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern vfs_aio.c Message-ID: <20020414051436.GC3826@elvis.mu.org> References: <200204140304.g3E34JN59434@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: 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 * Alan Cox [020413 20:09] wrote: > > On Sat, 13 Apr 2002, Alan Cox wrote: > > > alc 2002/04/13 20:04:19 PDT > > > > Modified files: > > sys/kern vfs_aio.c > > Log: > > o Use aiocblist::fd_file in the AIO threads rather than recomputing > > the file * from the calling process's descriptor table. > > o Eliminate sharing of the calling process's descriptor table > > with the AIO threads. > > > > Revision Changes Path > > 1.125 +3 -45 src/sys/kern/vfs_aio.c > > > > I forgot to add: > > Reviewed and in part submitted by: tegge This code keeps getting better and better. :) Great work and thanks! -- -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 deductible 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 Sat Apr 13 22:31: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 2E09937B416; Sat, 13 Apr 2002 22:31:48 -0700 (PDT) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E5VmG90500; Sat, 13 Apr 2002 22:31:48 -0700 (PDT) (envelope-from alc) Message-Id: <200204140531.g3E5VmG90500@freefall.freebsd.org> From: Alan Cox Date: Sat, 13 Apr 2002 22:31:48 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern syscalls.master X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/04/13 22:31:48 PDT Modified files: sys/kern syscalls.master Log: Remove the requirement that Giant be held around sigreturn(). Revision Changes Path 1.109 +1 -1 src/sys/kern/syscalls.master To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Apr 13 22:34: 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 D5DDD37B405; Sat, 13 Apr 2002 22:33:58 -0700 (PDT) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E5XwH90706; Sat, 13 Apr 2002 22:33:58 -0700 (PDT) (envelope-from alc) Message-Id: <200204140533.g3E5XwH90706@freefall.freebsd.org> From: Alan Cox Date: Sat, 13 Apr 2002 22:33:58 -0700 (PDT) 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 alc 2002/04/13 22:33:58 PDT Modified files: sys/kern init_sysent.c syscalls.c sys/sys syscall.h syscall.mk sysproto.h Log: Regen Revision Changes Path 1.120 +2 -2 src/sys/kern/init_sysent.c 1.107 +1 -1 src/sys/kern/syscalls.c 1.106 +1 -1 src/sys/sys/syscall.h 1.61 +1 -1 src/sys/sys/syscall.mk 1.98 +1 -1 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 Apr 13 22:37: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 7DEB737B405; Sat, 13 Apr 2002 22:37:18 -0700 (PDT) Received: (from marcel@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g3E5bIX91035; Sat, 13 Apr 2002 22:37:18 -0700 (PDT) (envelope-from marcel) Message-Id: <200204140537.g3E5bIX91035@freefall.freebsd.org> From: Marcel Moolenaar Date: Sat, 13 Apr 2002 22:37:18 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 ia64dump.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 marcel 2002/04/13 22:37:18 PDT Modified files: sys/ia64/ia64 ia64dump.c Log: Dotting the i-s: o Use chunk instead of region when we talk about a memory range. Region can be confused with region register and we already call it chunk in machdep.c o Update the twiddle every 16MB Revision Changes Path 1.5 +14 -9 src/sys/ia64/ia64/ia64dump.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message