From owner-cvs-all Sun Mar 10 0:21: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 C857F37B417; Sun, 10 Mar 2002 00:21:14 -0800 (PST) Received: (from ume@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2A8LEx91906; Sun, 10 Mar 2002 00:21:14 -0800 (PST) (envelope-from ume) Message-Id: <200203100821.g2A8LEx91906@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Sun, 10 Mar 2002 00:21:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/prefix prefix.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 ume 2002/03/10 00:21:14 PST Modified files: (Branch: RELENG_4) usr.sbin/prefix prefix.8 Log: MFC 1.11: Sync with latest KAME's manpage of prefix(8). Revision Changes Path 1.2.2.9 +19 -158 src/usr.sbin/prefix/prefix.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 0:30: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ABB6137B416; Sun, 10 Mar 2002 00:29:56 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2A8Tuj92742; Sun, 10 Mar 2002 00:29:56 -0800 (PST) (envelope-from luigi) Message-Id: <200203100829.g2A8Tuj92742@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 10 Mar 2002 00:29:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ufm.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 00:29:56 PST Modified files: sys/dev/usb ufm.c Log: Fix one genuine bug and a potential one: -#if defined(__FreeBSD__) && __FreeBSD_version__ >= 500023 +#if defined(__FreeBSD__) && __FreeBSD_version >= 500023 is a genuine bug -- __FreeBSD_version__ does not exist. The other one: -#if (__FreeBSD__ < 5) +#if (__FreeBSD_version < 500000) pops out when you cross-compile the code: __FreeBSD__ is a compiler predefine, __FreeBSD_version is defined in . Given that in this case (and all others in sys/dev/usb and sys/i4b) the goal is to adapt to a different kernel interface, and not to a compiler feature, I believe the correct form is the second one (in the best case the two are synonyms so the change does not break anything anyways). Revision Changes Path 1.2 +2 -2 src/sys/dev/usb/ufm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 0:38:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6597E37B402; Sun, 10 Mar 2002 00:38:54 -0800 (PST) Received: (from ume@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2A8csd93590; Sun, 10 Mar 2002 00:38:54 -0800 (PST) (envelope-from ume) Message-Id: <200203100838.g2A8csd93590@freefall.freebsd.org> From: Hajimu UMEMOTO Date: Sun, 10 Mar 2002 00:38:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if_gif.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/03/10 00:38:54 PST Modified files: (Branch: RELENG_4) sys/net if_gif.c Log: Do not touch "m" after IF_ENQUEUE. (Since the equivalent change was made by 1.6, this is for RELENG_4 only.) Obtained from: KAME Revision Changes Path 1.4.2.7 +3 -3 src/sys/net/if_gif.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 0:50:56 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E79ED37B402; Sun, 10 Mar 2002 00:50:53 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2A8or994854; Sun, 10 Mar 2002 00:50:53 -0800 (PST) (envelope-from dd) Message-Id: <200203100850.g2A8or994854@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 00:50:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/mknod mknod.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 dd 2002/03/10 00:50:53 PST Modified files: sbin/mknod mknod.8 Log: Minor English fixes. PR: 35730 Submitted by: Gary W. Swearingen Revision Changes Path 1.21 +2 -2 src/sbin/mknod/mknod.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 0:58: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 CFD1E37B416; Sun, 10 Mar 2002 00:58:29 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2A8wT895993; Sun, 10 Mar 2002 00:58:29 -0800 (PST) (envelope-from trevor) Message-Id: <200203100858.g2A8wT895993@freefall.freebsd.org> From: Trevor Johnson Date: Sun, 10 Mar 2002 00:58:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/xclasses 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 trevor 2002/03/10 00:58:29 PST Modified files: x11-toolkits/xclasses Makefile distinfo pkg-descr Log: Update to 1.3.0. Update home page and MASTER_SITES. Revision Changes Path 1.3 +3 -3 ports/x11-toolkits/xclasses/Makefile 1.2 +1 -1 ports/x11-toolkits/xclasses/distinfo 1.2 +1 -1 ports/x11-toolkits/xclasses/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 Mar 10 1: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 ABF0537B404; Sun, 10 Mar 2002 01:10:06 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2A9A6o01433; Sun, 10 Mar 2002 01:10:06 -0800 (PST) (envelope-from dd) Message-Id: <200203100910.g2A9A6o01433@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 01:10:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/disklabel disklabel.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 dd 2002/03/10 01:10:06 PST Modified files: sbin/disklabel disklabel.8 Log: Remove inappropriate .Op calls in examples. PR: 35689 Submitted by: Gary W. Swearingen Revision Changes Path 1.36 +2 -2 src/sbin/disklabel/disklabel.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 1:15:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E202F37B416; Sun, 10 Mar 2002 01:15:22 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2A9FMl02654; Sun, 10 Mar 2002 01:15:22 -0800 (PST) (envelope-from dd) Message-Id: <200203100915.g2A9FMl02654@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 01:15:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man8 crash.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 dd 2002/03/10 01:15:22 PST Modified files: share/man/man8 crash.8 Log: The chapter on kernel debugging is now in the Developers' Handbook. Add a trailing slash to a URL while I'm here. PR: 35637 Submitted by: Gary W. Swearingen , setantae@submonkey.net Revision Changes Path 1.17 +3 -3 src/share/man/man8/crash.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 1:17: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 2C40437B404; Sun, 10 Mar 2002 01:17:54 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2A9HsZ02941; Sun, 10 Mar 2002 01:17:54 -0800 (PST) (envelope-from trevor) Message-Id: <200203100917.g2A9HsZ02941@freefall.freebsd.org> From: Trevor Johnson Date: Sun, 10 Mar 2002 01:17:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/csound 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/03/10 01:17:54 PST Modified files: audio/csound Makefile Log: Update the author's master site to ftp.cs.bath.ac.uk, and add sunsite.univie.ac.at. The latter was found with (URL:http://www.alltheweb.com/search?cat=ftp). I've placed the Austrian site first in the list because of past troubles at the author's site. Remove BROKEN line. Revision Changes Path 1.16 +2 -2 ports/audio/csound/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 1: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 46FC037B404; Sun, 10 Mar 2002 01:20:28 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2A9KSh03262; Sun, 10 Mar 2002 01:20:28 -0800 (PST) (envelope-from dd) Message-Id: <200203100920.g2A9KSh03262@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 01:20:28 -0800 (PST) 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 dd 2002/03/10 01:20:28 PST Modified files: lib/libc/stdio scanf.3 Log: Don't refer the reader to look for a word that doesn't exist anywhere else in the page. PR: 35623 Submitted by: Gary W. Swearingen Revision Changes Path 1.14 +4 -2 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 Sun Mar 10 1:21: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 E36E337B402; Sun, 10 Mar 2002 01:21:50 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2A9LoA03468; Sun, 10 Mar 2002 01:21:50 -0800 (PST) (envelope-from dd) Message-Id: <200203100921.g2A9LoA03468@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 01:21:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 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/03/10 01:21:50 PST Modified files: share/man/man4 Makefile Log: Link scbus(4) to scsi(4). Most of the other CAM devices have their own manual pages, but this is better than nothing until someone writes a real scbus(4). PR: 35641 Submitted by: Gary W. Swearingen Revision Changes Path 1.150 +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 Sun Mar 10 1: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 D3E2937B400; Sun, 10 Mar 2002 01:53:39 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2A9rdI07263; Sun, 10 Mar 2002 01:53:39 -0800 (PST) (envelope-from dd) Message-Id: <200203100953.g2A9rdI07263@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 01:53:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/sysctl sysctl.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 dd 2002/03/10 01:53:39 PST Modified files: sbin/sysctl sysctl.8 Log: Document `sysctl variable=/dev/foo' syntax. PR: 34184 Submitted by: Thomas Quinot Revision Changes Path 1.44 +24 -2 src/sbin/sysctl/sysctl.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 1:59: 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 7562937B416; Sun, 10 Mar 2002 01:59:00 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2A9x0o07911; Sun, 10 Mar 2002 01:59:00 -0800 (PST) (envelope-from dinoex) Message-Id: <200203100959.g2A9x0o07911@freefall.freebsd.org> From: Dirk Meyer Date: Sun, 10 Mar 2002 01:59:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/sendmail Makefile ports/mail/sendmail/files site.config.m4.pre4 ports/mail/sendmail-old Makefile ports/mail/sendmail-old/files site.config.m4.pre4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 01:59:00 PST Modified files: mail/sendmail Makefile mail/sendmail/files site.config.m4.pre4 mail/sendmail-old Makefile mail/sendmail-old/files site.config.m4.pre4 Log: - define PICKY_HELO_CHECK as default Revision Changes Path 1.30 +1 -1 ports/mail/sendmail-old/Makefile 1.4 +1 -0 ports/mail/sendmail-old/files/site.config.m4.pre4 1.39 +1 -1 ports/mail/sendmail/Makefile 1.4 +1 -0 ports/mail/sendmail/files/site.config.m4.pre4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 2:35: 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 9E23837B402; Sun, 10 Mar 2002 02:35:05 -0800 (PST) Received: (from demon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AAZ5K14428; Sun, 10 Mar 2002 02:35:05 -0800 (PST) (envelope-from demon) Message-Id: <200203101035.g2AAZ5K14428@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sun, 10 Mar 2002 02:35:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/p5-DBD-Pg 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 demon 2002/03/10 02:35:05 PST Modified files: databases/p5-DBD-Pg Makefile Log: I am not interested in this port anymore. Revision Changes Path 1.36 +1 -1 ports/databases/p5-DBD-Pg/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 2:35:35 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id AE40637B402; Sun, 10 Mar 2002 02:35:26 -0800 (PST) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.11.6/8.11.6) with ESMTP id g2AAZUw41609; Sun, 10 Mar 2002 11:35:30 +0100 (CET) Date: Sun, 10 Mar 2002 11:36:53 +0100 (CET) From: Martin Blapp To: Mikhail Teterin Cc: , , Subject: Re: cvs commit: ports/editors/openoffice/files patch-solenv::inc::unxfbsdi.mk In-Reply-To: <200203100205.g2A25t3b000875@aldan.algebra.com> Message-ID: <20020310113549.O84384-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, > Why not just ${CFLAGS}/${CXXFLAGS}? Is some stuff proven to miscompile > with -O? Yours, unfortunatly yes. STLport is broken and coredumps with -O. And openoffice depends heavily on it and does the same. Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 2:50: 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 5DA4237B419; Sun, 10 Mar 2002 02:50:06 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AAo6L16043; Sun, 10 Mar 2002 02:50:06 -0800 (PST) (envelope-from phk) Message-Id: <200203101050.g2AAo6L16043@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sun, 10 Mar 2002 02:50:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys conf.h src/sys/kern kern_conf.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 02:50:05 PST Modified files: sys/sys conf.h sys/kern kern_conf.c Log: Make the proposed name arg to dev_stdclone() const. Revision Changes Path 1.107 +1 -1 src/sys/kern/kern_conf.c 1.141 +1 -1 src/sys/sys/conf.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 3: 4: 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 C3A0F37B400; Sun, 10 Mar 2002 03:03:51 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AB3oI17653; Sun, 10 Mar 2002 03:03:50 -0800 (PST) (envelope-from trevor) Message-Id: <200203101103.g2AB3oI17653@freefall.freebsd.org> From: Trevor Johnson Date: Sun, 10 Mar 2002 03:03:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm Makefile ports/x11-wm/yawm Makefile distinfo pkg-comment pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2002/03/10 03:03:50 PST Modified files: x11-wm Makefile Added files: x11-wm/yawm Makefile distinfo pkg-comment pkg-descr Log: Add Yet Another Window Manager. Revision Changes Path 1.76 +1 -0 ports/x11-wm/Makefile 1.1 +40 -0 ports/x11-wm/yawm/Makefile (new) 1.1 +1 -0 ports/x11-wm/yawm/distinfo (new) 1.1 +1 -0 ports/x11-wm/yawm/pkg-comment (new) 1.1 +5 -0 ports/x11-wm/yawm/pkg-descr (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 3: 4: 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 89F0637B405; Sun, 10 Mar 2002 03:03:52 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AB3qN17684; Sun, 10 Mar 2002 03:03:52 -0800 (PST) (envelope-from trevor) Message-Id: <200203101103.g2AB3qN17684@freefall.freebsd.org> From: Trevor Johnson Date: Sun, 10 Mar 2002 03:03:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2002/03/10 03:03:52 PST Modified files: . modules Log: yawm --> ports/x11-wm/yawm Revision Changes Path 1.4821 +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 Mar 10 3: 8: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 AFC7537B402; Sun, 10 Mar 2002 03:08:13 -0800 (PST) Received: (from billf@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AB8DP22457; Sun, 10 Mar 2002 03:08:13 -0800 (PST) (envelope-from billf) Message-Id: <200203101108.g2AB8DP22457@freefall.freebsd.org> From: Bill Fumerola Date: Sun, 10 Mar 2002 03:08:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/mtr Makefile distinfo ports/net/mtr/files patch-06 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 03:08:13 PST Modified files: net/mtr Makefile distinfo Added files: net/mtr/files patch-06 Log: upgrade to 0.49, the author has switched to requiring autoconf. also add a patch to get around missing inet(3) includes. Revision Changes Path 1.33 +3 -3 ports/net/mtr/Makefile 1.16 +1 -2 ports/net/mtr/distinfo 1.1 +13 -0 ports/net/mtr/files/patch-06 (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 3:42: 2 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 6741637B402; Sun, 10 Mar 2002 03:41:59 -0800 (PST) Received: from olgeni.olgeni (ppp-33.dial2.ctonet.it [212.110.177.33]) by volcano.planet.it (Postfix) with ESMTP id 1F4AB11F759; Sun, 10 Mar 2002 12:41:39 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by olgeni.olgeni (8.11.6/8.11.6) with ESMTP id g2ABf3N24553; Sun, 10 Mar 2002 12:41:03 +0100 (CET) (envelope-from olgeni@FreeBSD.org) Date: Sun, 10 Mar 2002 12:41:03 +0100 (CET) From: Jimmy Olgeni X-X-Sender: olgeni@olgeni.olgeni To: Mikhail Teterin Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: ports/www/sitecopy Makefile In-Reply-To: <200203030625.g236PesP024338@aldan.algebra.com> Message-ID: <20020310120106.C518-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 On Sun, 3 Mar 2002, Mikhail Teterin wrote: > Can't it be patched to use the www/neon port? It is worth _some_ > hassle to keep it from using its own version... Or you tried already > and found the hassle to be too much? The problem is that the neon api is changing really quickly, so maybe I could patch it this time but I couldn't tell anything about the next... -- jimmy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 3: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 5332337B404; Sun, 10 Mar 2002 03:45:36 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ABja627409; Sun, 10 Mar 2002 03:45:36 -0800 (PST) (envelope-from trevor) Message-Id: <200203101145.g2ABja627409@freefall.freebsd.org> From: Trevor Johnson Date: Sun, 10 Mar 2002 03:45:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/news press.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 trevor 2002/03/10 03:45:35 PST Modified files: en/news press.xml Log: Add "Building a CD Bootable Firewall" by Etienne Bruin. Correct path in comment. Revision Changes Path 1.38 +19 -3 www/en/news/press.xml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 4: 8: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 C7A0137B405; Sun, 10 Mar 2002 04:08:28 -0800 (PST) Received: (from billf@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AC8SQ40312; Sun, 10 Mar 2002 04:08:28 -0800 (PST) (envelope-from billf) Message-Id: <200203101208.g2AC8SQ40312@freefall.freebsd.org> From: Bill Fumerola Date: Sun, 10 Mar 2002 04:08:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/i386/string strcat.S strcmp.S strcpy.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 billf 2002/03/10 04:08:28 PST Modified files: lib/libc/i386/string strcat.S strcmp.S strcpy.S Log: cosmetic: spell 'cashe' as 'cache' Revision Changes Path 1.8 +1 -1 src/lib/libc/i386/string/strcat.S 1.8 +1 -1 src/lib/libc/i386/string/strcmp.S 1.8 +1 -1 src/lib/libc/i386/string/strcpy.S To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 4:22: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 486F137B404; Sun, 10 Mar 2002 04:22:17 -0800 (PST) Received: (from takawata@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ACMHp41727; Sun, 10 Mar 2002 04:22:17 -0800 (PST) (envelope-from takawata) Message-Id: <200203101222.g2ACMHp41727@freefall.freebsd.org> From: Takanori Watanabe Date: Sun, 10 Mar 2002 04:22:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/isa psm.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 04:22:17 PST Modified files: sys/isa psm.c Log: Add SONY VAIO psm controller ISA-PnP ID. Revision Changes Path 1.44 +1 -0 src/sys/isa/psm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 4: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 48DE137B404; Sun, 10 Mar 2002 04:33:02 -0800 (PST) Received: (from gioria@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ACX2r42871; Sun, 10 Mar 2002 04:33:02 -0800 (PST) (envelope-from gioria) Message-Id: <200203101233.g2ACX2r42871@freefall.freebsd.org> From: Sebastien Gioria Date: Sun, 10 Mar 2002 04:33:02 -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/03/10 04:33:02 PST Modified files: release/doc/fr_FR.ISO8859-1/relnotes/common new.sgml Log: Adding Disk and storage translation Revision Changes Path 1.8 +136 -2 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 Mar 10 5: 4: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 C048C37B402; Sun, 10 Mar 2002 05:04:15 -0800 (PST) Received: (from naddy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AD4FE46347; Sun, 10 Mar 2002 05:04:15 -0800 (PST) (envelope-from naddy) Message-Id: <200203101304.g2AD4FE46347@freefall.freebsd.org> From: Christian Weisgerber Date: Sun, 10 Mar 2002 05:04:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/calcoo Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2002/03/10 05:04:15 PST Modified files: math/calcoo Makefile distinfo Log: Update to 1.3.7. Visible changes in this release: * Now all the buttons except for undo and clear_all become grayed out when an error occurs. Revision Changes Path 1.4 +1 -1 ports/math/calcoo/Makefile 1.4 +1 -1 ports/math/calcoo/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 5: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 E3E9437B402; Sun, 10 Mar 2002 05:19:10 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ADJA751185; Sun, 10 Mar 2002 05:19:10 -0800 (PST) (envelope-from ue) Message-Id: <200203101319.g2ADJA751185@freefall.freebsd.org> From: Udo Erdelhoff Date: Sun, 10 Mar 2002 05:19:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/share/sgml bibliography.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/03/10 05:19:10 PST Added files: de_DE.ISO8859-1/share/sgml bibliography.sgml Log: German version of the bibliography, used by the FAQ (for now) Revision Changes Path 1.1 +302 -0 doc/de_DE.ISO8859-1/share/sgml/bibliography.sgml (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 5:20: 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 392EE37B405; Sun, 10 Mar 2002 05:19:59 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ADJxw51273; Sun, 10 Mar 2002 05:19:59 -0800 (PST) (envelope-from ue) Message-Id: <200203101319.g2ADJxw51273@freefall.freebsd.org> From: Udo Erdelhoff Date: Sun, 10 Mar 2002 05:19:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.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 ue 2002/03/10 05:19:59 PST Modified files: de_DE.ISO8859-1/books/faq book.sgml Log: MFen 1.410 Revision Changes Path 1.13 +2580 -2790 doc/de_DE.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 Sun Mar 10 5:49: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A748637B416; Sun, 10 Mar 2002 05:49:02 -0800 (PST) Received: (from gioria@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ADn2X62189; Sun, 10 Mar 2002 05:49:02 -0800 (PST) (envelope-from gioria) Message-Id: <200203101349.g2ADn2X62189@freefall.freebsd.org> From: Sebastien Gioria Date: Sun, 10 Mar 2002 05:49:02 -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/03/10 05:49:02 PST Modified files: release/doc/fr_FR.ISO8859-1/relnotes/common new.sgml Log: PCCARD support translation Revision Changes Path 1.9 +38 -4 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 Mar 10 5:59: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4D84A37B405; Sun, 10 Mar 2002 05:59:00 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ADx0o64944; Sun, 10 Mar 2002 05:59:00 -0800 (PST) (envelope-from sos) Message-Id: <200203101359.g2ADx0o64944@freefall.freebsd.org> From: Søren Schmidt Date: Sun, 10 Mar 2002 05:59:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/atacontrol atacontrol.8 atacontrol.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2002/03/10 05:59:00 PST Modified files: sbin/atacontrol atacontrol.8 atacontrol.c Log: Check the arg a bit more. Submitted by: David Malone Revision Changes Path 1.12 +5 -3 src/sbin/atacontrol/atacontrol.8 1.11 +7 -2 src/sbin/atacontrol/atacontrol.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 6: 5:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6101A37B400; Sun, 10 Mar 2002 06:05:41 -0800 (PST) Received: (from gioria@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AE5fr69360; Sun, 10 Mar 2002 06:05:41 -0800 (PST) (envelope-from gioria) Message-Id: <200203101405.g2AE5fr69360@freefall.freebsd.org> From: Sebastien Gioria Date: Sun, 10 Mar 2002 06:05:41 -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/03/10 06:05:41 PST Modified files: release/doc/fr_FR.ISO8859-1/relnotes/common new.sgml Log: Adding Multimedia section translation Revision Changes Path 1.10 +44 -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 Mar 10 6: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 F400A37B400; Sun, 10 Mar 2002 06:50:34 -0800 (PST) Received: (from gioria@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AEoY785267; Sun, 10 Mar 2002 06:50:34 -0800 (PST) (envelope-from gioria) Message-Id: <200203101450.g2AEoY785267@freefall.freebsd.org> From: Sebastien Gioria Date: Sun, 10 Mar 2002 06:50:34 -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/03/10 06:50:34 PST Modified files: release/doc/fr_FR.ISO8859-1/relnotes/common new.sgml Log: "Base system/contributed software " section translation Revision Changes Path 1.11 +103 -5 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 Mar 10 6:55: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2C81E37B417; Sun, 10 Mar 2002 06:54:59 -0800 (PST) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AEsxY85799; Sun, 10 Mar 2002 06:54:59 -0800 (PST) (envelope-from ache) Message-Id: <200203101454.g2AEsxY85799@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Sun, 10 Mar 2002 06:54:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/calendar day.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 06:54:59 PST Modified files: usr.bin/calendar day.c Log: Setlocale returns static buffer, don't assume it will be unchanged Pointed by: phantom Revision Changes Path 1.19 +8 -4 src/usr.bin/calendar/day.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 7:11:55 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 DA44D37B419; Sun, 10 Mar 2002 07:11:47 -0800 (PST) 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 16k4zC-000Czn-0Y; Sun, 10 Mar 2002 15:11:46 +0000 Received: from salmon.nlsystems.com (salmon [10.0.0.3]) by herring.nlsystems.com (8.11.2/8.11.2) with ESMTP id g2AFAU991211; Sun, 10 Mar 2002 15:10:30 GMT (envelope-from dfr@nlsystems.com) Date: Sun, 10 Mar 2002 15:07:27 +0000 (GMT) From: Doug Rabson To: Jeff Roberson Cc: Jeff Roberson , , Subject: Re: cvs commit: src/sys/sys smp.h src/sys/kern subr_smp.c src/sys/i386/i386 mp_machdep.c src/sys/alpha/alpha mp_machdep.c In-Reply-To: <20020309165518.W58901-100000@mail.chesapeake.net> Message-ID: <20020310150649.N504-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, 9 Mar 2002, Jeff Roberson wrote: > > > On Sat, 9 Mar 2002, Doug Rabson wrote: > > > > > This screws up the SMP probe for ia64 because the information which > > cpu_mp_probe() uses isn't available until after cpu_startup() is called > > (i.e. SI_SUB_CPU:SI_ORDER_FIRST). The code in the ia64 platform which > > detects SMP can't (currently) run before the VM system is started... > > Is it possible to do it at all before the VM starts up? This really > throws a wrench in my uma plans. Can you even tell how many cpus you have > before then? If you can do this, and force your cpu ids to be virtual and > non sparse, then you can set mp_maxid to the number of cpus. It should be possible, yes. I'll sort out changing the ia64 platform code accordingly if you really need this information that early. -- 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 Sun Mar 10 7:20: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 C079537B402; Sun, 10 Mar 2002 07:20:36 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AFKaG92208; Sun, 10 Mar 2002 07:20:36 -0800 (PST) (envelope-from rwatson) Message-Id: <200203101520.g2AFKaG92208@freefall.freebsd.org> From: Robert Watson Date: Sun, 10 Mar 2002 07:20:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc syslog.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 rwatson 2002/03/10 07:20:36 PST Modified files: etc syslog.conf Log: /var/log/security gets almost no (if not no) activity on many FreeBSD systems due to sshd not using the security log class. Tweak syslog.conf so that /var/log/security also gets a useful set of authentication-related logging. Submitted by: aeonflux@synapse.subneural.net MFC after: 4 weeks Revision Changes Path 1.18 +2 -2 src/etc/syslog.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 7:38: 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 CC6E337B416; Sun, 10 Mar 2002 07:37:57 -0800 (PST) Received: (from gioria@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AFbvs93851; Sun, 10 Mar 2002 07:37:57 -0800 (PST) (envelope-from gioria) Message-Id: <200203101537.g2AFbvs93851@freefall.freebsd.org> From: Sebastien Gioria Date: Sun, 10 Mar 2002 07:37:57 -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/03/10 07:37:57 PST Modified files: release/doc/fr_FR.ISO8859-1/relnotes/common new.sgml Log: Filesystem translation Revision Changes Path 1.12 +121 -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 Mar 10 8: 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 6DC0D37B41A; Sun, 10 Mar 2002 08:00:57 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AG0vh96817; Sun, 10 Mar 2002 08:00:57 -0800 (PST) (envelope-from pat) Message-Id: <200203101600.g2AG0vh96817@freefall.freebsd.org> From: Patrick Li Date: Sun, 10 Mar 2002 08:00:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/keychain 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/03/10 08:00:57 PST Modified files: security/keychain Makefile distinfo Log: Update to 1.9 PR: 35734 Submitted by: Patrik Backlund Revision Changes Path 1.4 +1 -3 ports/security/keychain/Makefile 1.3 +1 -1 ports/security/keychain/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 8: 4: 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 6C74B37B402; Sun, 10 Mar 2002 08:03:59 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AG3xH97347; Sun, 10 Mar 2002 08:03:59 -0800 (PST) (envelope-from pat) Message-Id: <200203101603.g2AG3xH97347@freefall.freebsd.org> From: Patrick Li Date: Sun, 10 Mar 2002 08:03:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/xawtv Makefile ports/graphics/xawtv/files patch-libvbi::os.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 pat 2002/03/10 08:03:59 PST Modified files: graphics/xawtv Makefile Added files: graphics/xawtv/files patch-libvbi::os.h Log: - fix 5-CURRENT build (add a dependency to XFree86-4-clients) - fix a compile warning PR: 35736 Submitted by: maintainer Revision Changes Path 1.10 +8 -1 ports/graphics/xawtv/Makefile 1.1 +8 -0 ports/graphics/xawtv/files/patch-libvbi::os.h (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 8:56:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1BC0B37B402; Sun, 10 Mar 2002 08:56:39 -0800 (PST) Received: (from tanimura@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AGudM07631; Sun, 10 Mar 2002 08:56:39 -0800 (PST) (envelope-from tanimura) Message-Id: <200203101656.g2AGudM07631@freefall.freebsd.org> From: Seigo Tanimura Date: Sun, 10 Mar 2002 08:56:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sound/midi sequencer.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 08:56:38 PST Modified files: sys/dev/sound/midi sequencer.c Log: Do not call a synthesizer with a sequencer lock held. Revision Changes Path 1.11 +12 -2 src/sys/dev/sound/midi/sequencer.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 9: 3: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 F3CC137B404; Sun, 10 Mar 2002 09:03:45 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AH3jp08317; Sun, 10 Mar 2002 09:03:45 -0800 (PST) (envelope-from dfr) Message-Id: <200203101703.g2AH3jp08317@freefall.freebsd.org> From: Doug Rabson Date: Sun, 10 Mar 2002 09:03:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 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 dfr 2002/03/10 09:03:45 PST Modified files: sys/ia64/ia64 unwind.c Log: Use the right value for the region length in parse_spill_mask. Revision Changes Path 1.3 +4 -4 src/sys/ia64/ia64/unwind.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 9: 8: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 25E7737B404; Sun, 10 Mar 2002 09:08:25 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AH8Po12331; Sun, 10 Mar 2002 09:08:25 -0800 (PST) (envelope-from dfr) Message-Id: <200203101708.g2AH8Po12331@freefall.freebsd.org> From: Doug Rabson Date: Sun, 10 Mar 2002 09:08:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ddb db_lex.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 09:08:25 PST Modified files: sys/ddb db_lex.c Log: Allow '.' in identifiers - some ia64 register names contain '.'. Revision Changes Path 1.19 +1 -1 src/sys/ddb/db_lex.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 9:14: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 BF20837B402; Sun, 10 Mar 2002 09:14:48 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AHEmP13255; Sun, 10 Mar 2002 09:14:48 -0800 (PST) (envelope-from mbr) Message-Id: <200203101714.g2AHEmP13255@freefall.freebsd.org> From: Martin Blapp Date: Sun, 10 Mar 2002 09:14:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-svx::source::dialog::graphctl.cxx X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/03/10 09:14:48 PST Added files: editors/openoffice/files patch-svx::source::dialog::graphctl.cxx Log: Define fcvt as extern as NetBSD does. Revision Changes Path 1.1 +18 -0 ports/editors/openoffice/files/patch-svx::source::dialog::graphctl.cxx (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 10:45: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 0C42D37B405; Sun, 10 Mar 2002 10:45:46 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AIjki28109; Sun, 10 Mar 2002 10:45:46 -0800 (PST) (envelope-from obrien) Message-Id: <200203101845.g2AIjki28109@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 10 Mar 2002 10:45:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/vim Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/03/10 10:45:45 PST Modified files: editors/vim Makefile distinfo Log: Update to Vim 6.1 Beta 'B' Revision Changes Path 1.186 +8 -8 ports/editors/vim/Makefile 1.115 +1 -20 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 Sun Mar 10 10:48: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 8FD7237B417; Sun, 10 Mar 2002 10:48:23 -0800 (PST) Received: (from jhay@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AImNa28509; Sun, 10 Mar 2002 10:48:23 -0800 (PST) (envelope-from jhay) Message-Id: <200203101848.g2AImNa28509@freefall.freebsd.org> From: John Hay Date: Sun, 10 Mar 2002 10:48:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: 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 jhay 2002/03/10 10:48:23 PST Modified files: (Branch: RELENG_4) sys/isa sio.c Log: Make this compile on non i386 archs too. Revision Changes Path 1.291.2.29 +2 -0 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 Sun Mar 10 10:57: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 DB7F937B404; Sun, 10 Mar 2002 10:57:44 -0800 (PST) Received: (from wosch@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AIvi329914; Sun, 10 Mar 2002 10:57:44 -0800 (PST) (envelope-from wosch) Message-Id: <200203101857.g2AIvi329914@freefall.freebsd.org> From: Wolfram Schneider Date: Sun, 10 Mar 2002 10:57:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/misc bsd-family-tree X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wosch 2002/03/10 10:57:44 PST Modified files: share/misc bsd-family-tree Log: FreeBSD 4.5 is releaseed "29 Jan 2002" (not 20 Jan) PR: misc/35738 Submitted by: WAKABAYASHI Susumu Revision Changes Path 1.57 +1 -1 src/share/misc/bsd-family-tree To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 11: 0: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 028A637B402; Sun, 10 Mar 2002 11:00:38 -0800 (PST) Received: (from wosch@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AJ0bH30437; Sun, 10 Mar 2002 11:00:37 -0800 (PST) (envelope-from wosch) Message-Id: <200203101900.g2AJ0bH30437@freefall.freebsd.org> From: Wolfram Schneider Date: Sun, 10 Mar 2002 11:00:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/misc bsd-family-tree X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wosch 2002/03/10 11:00:37 PST Modified files: share/misc bsd-family-tree Log: Added upcoming FreeBSD 4.6 Revision Changes Path 1.58 +3 -0 src/share/misc/bsd-family-tree To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 11: 3: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 3A4A537B405; Sun, 10 Mar 2002 11:03:46 -0800 (PST) Received: (from wosch@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AJ3kh30901; Sun, 10 Mar 2002 11:03:46 -0800 (PST) (envelope-from wosch) Message-Id: <200203101903.g2AJ3kh30901@freefall.freebsd.org> From: Wolfram Schneider Date: Sun, 10 Mar 2002 11:03:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/misc bsd-family-tree 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 wosch 2002/03/10 11:03:46 PST Modified files: (Branch: RELENG_4) share/misc bsd-family-tree Log: MFC up to rev 1.58 Revision Changes Path 1.21.2.9 +16 -6 src/share/misc/bsd-family-tree To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 11: 7: 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 A4EC337B405; Sun, 10 Mar 2002 11:07:06 -0800 (PST) Received: (from wosch@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AJ76w36507; Sun, 10 Mar 2002 11:07:06 -0800 (PST) (envelope-from wosch) Message-Id: <200203101907.g2AJ76w36507@freefall.freebsd.org> From: Wolfram Schneider Date: Sun, 10 Mar 2002 11:07:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases 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 wosch 2002/03/10 11:07:06 PST Modified files: en/releases index.sgml Log: Update FreeBSD Release Usage statistic link to year 2002. Revision Changes Path 1.73 +4 -4 www/en/releases/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 11:20: 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 D0C0037B416; Sun, 10 Mar 2002 11:20:01 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AJK1B38135; Sun, 10 Mar 2002 11:20:01 -0800 (PST) (envelope-from sobomax) Message-Id: <200203101920.g2AJK1B38135@freefall.freebsd.org> From: Maxim Sobolev Date: Sun, 10 Mar 2002 11:20:01 -0800 (PST) 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 sobomax 2002/03/10 11:20:01 PST Modified files: sys/kern kern_linker.c Log: Fix a breakage introduced in rev.1.75 (supposedly style cleanup), which results in "missing dependencies" error when loading some kld modules. It is sad to see how often these days style cleanus break doesn't broken things. Perhaps people should recall good old principle: "don't fix it if it isn't broken". Revision Changes Path 1.78 +6 -6 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 Sun Mar 10 11:30: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by hub.freebsd.org (Postfix) with ESMTP id 1926637B402; Sun, 10 Mar 2002 11:29:58 -0800 (PST) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.11.6/8.11.4) id g2AJTqI34979; Sun, 10 Mar 2002 11:29:52 -0800 (PST) (envelope-from sgk) Date: Sun, 10 Mar 2002 11:29:47 -0800 From: Steve Kargl To: Maxim Sobolev Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern kern_linker.c Message-ID: <20020310112947.A34927@troutmask.apl.washington.edu> References: <200203101920.g2AJK1B38135@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: <200203101920.g2AJK1B38135@freefall.freebsd.org>; from sobomax@FreeBSD.ORG on Sun, Mar 10, 2002 at 11:20:01AM -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 On Sun, Mar 10, 2002 at 11:20:01AM -0800, Maxim Sobolev wrote: > sobomax 2002/03/10 11:20:01 PST > > Modified files: > sys/kern kern_linker.c > Log: > Fix a breakage introduced in rev.1.75 (supposedly style cleanup), which results > in "missing dependencies" error when loading some kld modules. It is sad to > see how often these days style cleanus break doesn't broken things. Perhaps > people should recall good old principle: "don't fix it if it isn't broken". > > Revision Changes Path > 1.78 +6 -6 src/sys/kern/kern_linker.c > Thank you! -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 11:42:28 2002 Delivered-To: cvs-all@freebsd.org Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by hub.freebsd.org (Postfix) with ESMTP id 70C0C37B404; Sun, 10 Mar 2002 11:42:24 -0800 (PST) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.11.6/8.11.4) id g2AJgJc35070; Sun, 10 Mar 2002 11:42:19 -0800 (PST) (envelope-from sgk) Date: Sun, 10 Mar 2002 11:42:14 -0800 From: Steve Kargl To: Maxim Sobolev Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern kern_linker.c Message-ID: <20020310114214.A35007@troutmask.apl.washington.edu> References: <200203101920.g2AJK1B38135@freefall.freebsd.org> <20020310112947.A34927@troutmask.apl.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020310112947.A34927@troutmask.apl.washington.edu>; from sgk@troutmask.apl.washington.edu on Sun, Mar 10, 2002 at 11:29:47AM -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 On Sun, Mar 10, 2002 at 11:29:47AM -0800, Steve Kargl wrote: > On Sun, Mar 10, 2002 at 11:20:01AM -0800, Maxim Sobolev wrote: > > sobomax 2002/03/10 11:20:01 PST > > > > Modified files: > > sys/kern kern_linker.c > > Log: > > Fix a breakage introduced in rev.1.75 (supposedly style cleanup), which results > > in "missing dependencies" error when loading some kld modules. It is sad to > > see how often these days style cleanus break doesn't broken things. Perhaps > > people should recall good old principle: "don't fix it if it isn't broken". > > > > Revision Changes Path > > 1.78 +6 -6 src/sys/kern/kern_linker.c > > > > Thank you! > Dang I forgot. Did you see/close kern/35712? kern_linker.c rev. 1.75 and newer break module loading -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 11: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 CA15337B404; Sun, 10 Mar 2002 11:43:39 -0800 (PST) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AJhd944123; Sun, 10 Mar 2002 11:43:39 -0800 (PST) (envelope-from alc) Message-Id: <200203101943.g2AJhd944123@freefall.freebsd.org> From: Alan Cox Date: Sun, 10 Mar 2002 11:43:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_aio.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2002/03/10 11:43:39 PST Modified files: (Branch: RELENG_4) sys/kern vfs_aio.c Log: MFC: [Revision 1.107] o White-space changes to simplify later MFCs. Revision Changes Path 1.70.2.16 +12 -12 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 Mar 10 12: 8: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 590A537B400; Sun, 10 Mar 2002 12:08:44 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AK8ic50180; Sun, 10 Mar 2002 12:08:44 -0800 (PST) (envelope-from luigi) Message-Id: <200203102008.g2AK8ic50180@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 10 Mar 2002 12:08:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 autoconf.c machdep.c src/sbin/sysctl sysctl.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 12:08:44 PST Modified files: sys/i386/i386 autoconf.c machdep.c sbin/sysctl sysctl.c Log: Export a (machine dependent) kernel variable bootdev as machdep.guessed_bootdev, and add code to sysctl to parse its value and give a (not necessarily correct) name to the device we booted from (the main motivation for this code is to use the info in the PicoBSD boot scripts, and the impact on the kernel is minimal). NOTE: the information available in bootdev is not always reliable, so you should not trust it too much. The parsing code is the same as in boot2.c, and cannot cover all cases -- as it is, it seems to work fine with floppies and IDE disks recognised by the BIOS. It _should_ work as well with SCSI disks recognised by the BIOS. Booting from a CDROM in floppy emulation will return /dev/fd0 (because this is what the BIOS tells us). Booting off the network (e.g. with etherboot) leaves bootdev unset so the value will be printed as "invalid (0xffffffff)". Finally, this feature might go away at some point, hopefully when we have a more reliable way to get the same information. MFC-after: 5 days Revision Changes Path 1.42 +51 -0 src/sbin/sysctl/sysctl.c 1.162 +0 -2 src/sys/i386/i386/autoconf.c 1.502 +4 -0 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 Sun Mar 10 12:15: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 62B4437B402; Sun, 10 Mar 2002 12:15:06 -0800 (PST) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AKF6X50907; Sun, 10 Mar 2002 12:15:06 -0800 (PST) (envelope-from olgeni) Message-Id: <200203102015.g2AKF6X50907@freefall.freebsd.org> From: Jimmy Olgeni Date: Sun, 10 Mar 2002 12:15:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/neon 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 olgeni 2002/03/10 12:15:06 PST Modified files: www/neon Makefile Log: Pass maintainership to Garrett Rooney . Revision Changes Path 1.11 +1 -1 ports/www/neon/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 12: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 64B3437B400; Sun, 10 Mar 2002 12:19:32 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AKJWC51441; Sun, 10 Mar 2002 12:19:32 -0800 (PST) (envelope-from dfr) Message-Id: <200203102019.g2AKJWC51441@freefall.freebsd.org> From: Doug Rabson Date: Sun, 10 Mar 2002 12:19:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 db_trace.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 12:19:32 PST Modified files: sys/ia64/ia64 db_trace.c Log: Don't try to print the arguments if the value of bsp is outside the kernel - its asking for trouble. Revision Changes Path 1.9 +9 -7 src/sys/ia64/ia64/db_trace.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 12: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 8963C37B402; Sun, 10 Mar 2002 12:20:31 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AKKVO51639; Sun, 10 Mar 2002 12:20:31 -0800 (PST) (envelope-from dfr) Message-Id: <200203102020.g2AKKVO51639@freefall.freebsd.org> From: Doug Rabson Date: Sun, 10 Mar 2002 12:20:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 swtch.s vm_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/03/10 12:20:31 PST Modified files: sys/ia64/ia64 swtch.s vm_machdep.c Log: Add an implementation of cpu_throw() and make restorectx() simply branch to the tail of cpu_switch. Revision Changes Path 1.17 +23 -68 src/sys/ia64/ia64/swtch.s 1.35 +0 -9 src/sys/ia64/ia64/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 Sun Mar 10 12:22:45 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E065837B402; Sun, 10 Mar 2002 12:22:41 -0800 (PST) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AKMfQ51967; Sun, 10 Mar 2002 12:22:41 -0800 (PST) (envelope-from olgeni) Message-Id: <200203102022.g2AKMfQ51967@freefall.freebsd.org> From: Jimmy Olgeni Date: Sun, 10 Mar 2002 12:22:41 -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/03/10 12:22:41 PST Modified files: sysutils/webmin Makefile distinfo Log: Update module: custom. Revision Changes Path 1.91 +2 -1 ports/sysutils/webmin/Makefile 1.64 +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 Mar 10 12:27: 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 A09E637B405; Sun, 10 Mar 2002 12:26:57 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 612F75346; Sun, 10 Mar 2002 21:26:53 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Robert Watson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc syslog.conf References: <200203101520.g2AFKaG92208@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 10 Mar 2002 21:26:52 +0100 In-Reply-To: <200203101520.g2AFKaG92208@freefall.freebsd.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 Robert Watson writes: > Log: > /var/log/security gets almost no (if not no) activity on many FreeBSD > systems due to sshd not using the security log class. This can be arranged... DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 12:28:44 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7350E37B405; Sun, 10 Mar 2002 12:28:41 -0800 (PST) Received: (from tegge@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AKSf452616; Sun, 10 Mar 2002 12:28:41 -0800 (PST) (envelope-from tegge) Message-Id: <200203102028.g2AKSf452616@freefall.freebsd.org> From: Tor Egge Date: Sun, 10 Mar 2002 12:28:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/stdlib atexit.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 tegge 2002/03/10 12:28:41 PST Modified files: (Branch: RELENG_4) lib/libc/stdlib atexit.c Log: MFC: Make atexit thread safe. Revision Changes Path 1.3.6.1 +26 -2 src/lib/libc/stdlib/atexit.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 12:29:47 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 05D6E37B400; Sun, 10 Mar 2002 12:29:42 -0800 (PST) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 10 Mar 2002 20:29:41 +0000 (GMT) Date: Sun, 10 Mar 2002 20:29:40 +0000 From: David Malone To: Maxim Sobolev Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_linker.c Message-ID: <20020310202940.GA94559@walton.maths.tcd.ie> References: <200203101920.g2AJK1B38135@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203101920.g2AJK1B38135@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, Mar 10, 2002 at 11:20:01AM -0800, Maxim Sobolev wrote: > sobomax 2002/03/10 11:20:01 PST > > Modified files: > sys/kern kern_linker.c > Log: > Fix a breakage introduced in rev.1.75 (supposedly style cleanup), which results > in "missing dependencies" error when loading some kld modules. It is sad to > see how often these days style cleanus break doesn't broken things. Perhaps > people should recall good old principle: "don't fix it if it isn't broken". Maxim, Would you mind if I chaned all the "err = strcmp() if (err == 0)"s in this file into "if (strcmp() == 0)". The fix I proposed in the PR mentioned by Steven did this (it fixed the same bug and made the strcmps a little more sane). David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 12:37: 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 B4FB937B402; Sun, 10 Mar 2002 12:37:04 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AKb4n53450; Sun, 10 Mar 2002 12:37:04 -0800 (PST) (envelope-from luigi) Message-Id: <200203102037.g2AKb4n53450@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 10 Mar 2002 12:37:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/mfs_tree/etc rc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG luigi 2002/03/10 12:37:04 PST Modified files: release/picobsd/mfs_tree/etc rc Log: The probable boot device is "machdep.guessed_bootdev". Revision Changes Path 1.8 +2 -2 src/release/picobsd/mfs_tree/etc/rc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 12: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 98AC437B400; Sun, 10 Mar 2002 12:42:53 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AKgmG54496; Sun, 10 Mar 2002 12:42:48 -0800 (PST) (envelope-from knu) Message-Id: <200203102042.g2AKgmG54496@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 10 Mar 2002 12:42:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Mk bsd.ruby.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 knu 2002/03/10 12:42:48 PST Modified files: Mk bsd.ruby.mk Log: Move some variable definitions outside the .if defined(RUBY) block so they will not be referenced without being defined. Submitted by: gad Revision Changes Path 1.72 +10 -8 ports/Mk/bsd.ruby.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 12:47: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 513BB37B402; Sun, 10 Mar 2002 12:47:26 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AKlQB55062; Sun, 10 Mar 2002 12:47:26 -0800 (PST) (envelope-from luigi) Message-Id: <200203102047.g2AKlQB55062@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 10 Mar 2002 12:47:26 -0800 (PST) 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/03/10 12:47:26 PST Modified files: release/picobsd/floppy.tree/etc rc1 Log: With devfs, we do not need to initialize pty's permissions. Revision Changes Path 1.3 +1 -2 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 Mar 10 12:55:22 2002 Delivered-To: cvs-all@freebsd.org Received: from mass.dis.org (dhcp45-21.dis.org [216.240.45.21]) by hub.freebsd.org (Postfix) with ESMTP id A801037B416; Sun, 10 Mar 2002 12:55:15 -0800 (PST) Received: from mass.dis.org (localhost [127.0.0.1]) by mass.dis.org (8.11.6/8.11.6) with ESMTP id g2AKsem00915; Sun, 10 Mar 2002 12:54:40 -0800 (PST) (envelope-from msmith@mass.dis.org) Message-Id: <200203102054.g2AKsem00915@mass.dis.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Thomas Moestl Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/gem if_gem_pci.c In-reply-to: Your message of "Sat, 09 Mar 2002 13:52:32 PST." <200203092152.g29LqWM67773@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 10 Mar 2002 12:54:39 -0800 From: Michael Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG You should use pci_enable_busmaster() for this. > tmm 2002/03/09 13:52:32 PST > > Modified files: > sys/dev/gem if_gem_pci.c > Log: > Set the busmaster enable bit in the PCI command register, as the firmware > of sparc64 machines will not do this for us if the interface is not used > for booting over the network. > > Revision Changes Path > 1.2 +9 -0 src/sys/dev/gem/if_gem_pci.c > -- To announce that there must be no criticism of the president, or that we are to stand by the president, right or wrong, is not only unpatriotic and servile, but is morally treasonable to the American public. - Theodore Roosevelt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 12:57:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 470BB37B419; Sun, 10 Mar 2002 12:57:43 -0800 (PST) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AKvhx56286; Sun, 10 Mar 2002 12:57:43 -0800 (PST) (envelope-from olgeni) Message-Id: <200203102057.g2AKvhx56286@freefall.freebsd.org> From: Jimmy Olgeni Date: Sun, 10 Mar 2002 12:57:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/neon pkg-plist ports/www/neon/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 olgeni 2002/03/10 12:57:43 PST Modified files: www/neon pkg-plist www/neon/files patch-ltmain.sh Log: Install libneon.la, which is needed by the devel/subversion port. Submitted by: Garrett Rooney Revision Changes Path 1.2 +1 -14 ports/www/neon/files/patch-ltmain.sh 1.9 +1 -0 ports/www/neon/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 Mar 10 12:58:54 2002 Delivered-To: cvs-all@freebsd.org Received: from mass.dis.org (dhcp45-21.dis.org [216.240.45.21]) by hub.freebsd.org (Postfix) with ESMTP id 09A6D37B400; Sun, 10 Mar 2002 12:58:50 -0800 (PST) Received: from mass.dis.org (localhost [127.0.0.1]) by mass.dis.org (8.11.6/8.11.6) with ESMTP id g2AKvum00955; Sun, 10 Mar 2002 12:58:04 -0800 (PST) (envelope-from msmith@mass.dis.org) Message-Id: <200203102058.g2AKvum00955@mass.dis.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Jeff Roberson Cc: Doug Rabson , Jeff Roberson , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys smp.h src/sys/kern subr_smp.c src/sys/i386/i386 mp_machdep.c src/sys/alpha/alpha mp_machdep.c In-reply-to: Your message of "Sat, 09 Mar 2002 16:59:01 EST." <20020309165518.W58901-100000@mail.chesapeake.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 10 Mar 2002 12:57:56 -0800 From: Michael Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > This screws up the SMP probe for ia64 because the information which > > cpu_mp_probe() uses isn't available until after cpu_startup() is called > > (i.e. SI_SUB_CPU:SI_ORDER_FIRST). The code in the ia64 platform which > > detects SMP can't (currently) run before the VM system is started... > > Is it possible to do it at all before the VM starts up? This really > throws a wrench in my uma plans. Can you even tell how many cpus you have > before then? If you can do this, and force your cpu ids to be virtual and > non sparse, then you can set mp_maxid to the number of cpus. The CPU ID array should be "reasonably dense". On systems where the CPU ID space is sparse, a "dense to sparse" translation can be performed relatively cheaply. You're causing massive (bad) upheaval in the system for the sake of supporting a poor design choice. Instead, just shift the CPU ID paradigm back to where it was. In many cases (IA64 is one of them), CPUs other than the boot processor may be detected and started up at any time. You want a constant that allows the maximum number of CPUs supported by the platform, rather than to detect the number of CPUs currently on the platform; just pick a sane upper bound (eg. 8) and work with it for now. -- To announce that there must be no criticism of the president, or that we are to stand by the president, right or wrong, is not only unpatriotic and servile, but is morally treasonable to the American public. - Theodore Roosevelt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 12:59: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 8531E37B404; Sun, 10 Mar 2002 12:59:49 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AKxnY56503; Sun, 10 Mar 2002 12:59:49 -0800 (PST) (envelope-from knu) Message-Id: <200203102059.g2AKxnY56503@freefall.freebsd.org> From: Akinori MUSHA Date: Sun, 10 Mar 2002 12:59:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/wxg 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/03/10 12:59:49 PST Modified files: japanese/wxg Makefile Log: R.I.P. -- this software has been discontinued. I've marked this port as broken as an announcement for the users; after some time I'll remove this port entirely. Revision Changes Path 1.5 +3 -1 ports/japanese/wxg/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 13: 0:53 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id 1724037B400 for ; Sun, 10 Mar 2002 13:00:49 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g2AL0lL15907 for cvs-all@freebsd.org; Sun, 10 Mar 2002 21:00:47 GMT (envelope-from mark@grimreaper.grondar.za) Received: from grimreaper (localhost [127.0.0.1]) by grimreaper.grondar.org (8.12.2/8.12.2) with ESMTP id g2AKwsDN060289 for ; Sun, 10 Mar 2002 20:58:54 GMT (envelope-from mark@grimreaper.grondar.za) Message-Id: <200203102058.g2AKwsDN060289@grimreaper.grondar.org> To: cvs-all@freebsd.org Subject: HEADS UP! Repository surgery in xlint. Date: Sun, 10 Mar 2002 20:58:54 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi A whole bunch of files in src/usr.bin/xlint/ have been adjusted so that they are back on the vendor branch. This will make things look funny if/when you "cvs update" or cvsup. DO NOT PANIC! Things are OK - and in the dreaded case of damage, there is a backup. Actually, there is more than one backup. Problems? Call me. M -- o Mark Murray \_ O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 13: 1:36 2002 Delivered-To: cvs-all@freebsd.org Received: from mass.dis.org (dhcp45-21.dis.org [216.240.45.21]) by hub.freebsd.org (Postfix) with ESMTP id 518F237B405; Sun, 10 Mar 2002 13:01:34 -0800 (PST) Received: from mass.dis.org (localhost [127.0.0.1]) by mass.dis.org (8.11.6/8.11.6) with ESMTP id g2AL0qm01007; Sun, 10 Mar 2002 13:00:52 -0800 (PST) (envelope-from msmith@mass.dis.org) Message-Id: <200203102100.g2AL0qm01007@mass.dis.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Doug Rabson Cc: Jeff Roberson , Jeff Roberson , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys smp.h src/sys/kern subr_smp.c src/sys/i386/i386 mp_machdep.c src/sys/alpha/alpha mp_machdep.c In-reply-to: Your message of "Sun, 10 Mar 2002 15:07:27 GMT." <20020310150649.N504-100000@salmon.nlsystems.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 10 Mar 2002 13:00:51 -0800 From: Michael Smith Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > It should be possible, yes. I'll sort out changing the ia64 platform code > accordingly if you really need this information that early. In the case where the MPtable can't be fetched except via ACPI, no, it's not possible. -- To announce that there must be no criticism of the president, or that we are to stand by the president, right or wrong, is not only unpatriotic and servile, but is morally treasonable to the American public. - Theodore Roosevelt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 13: 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 2C2DB37B419; Sun, 10 Mar 2002 13:03:05 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AL35L56952; Sun, 10 Mar 2002 13:03:05 -0800 (PST) (envelope-from sos) Message-Id: <200203102103.g2AL35L56952@freefall.freebsd.org> From: Søren Schmidt Date: Sun, 10 Mar 2002 13:03:05 -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: HEAD Sender: owner-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/03/10 13:03:05 PST Modified files: sys/dev/ata ata-all.c Log: Silence a warning when compile without atapi devices. Revision Changes Path 1.136 +4 -3 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 Mar 10 13: 4:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D177537B402; Sun, 10 Mar 2002 13:04:44 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AL4iA57262; Sun, 10 Mar 2002 13:04:44 -0800 (PST) (envelope-from obrien) Message-Id: <200203102104.g2AL4iA57262@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 10 Mar 2002 13:04:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/psim-freebsd Makefile distinfo ports/emulators/psim-freebsd/files README.patches patch-ppc-spr-table X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 13:04:44 PST Modified files: emulators/psim-freebsd Makefile distinfo emulators/psim-freebsd/files README.patches Removed files: emulators/psim-freebsd/files patch-ppc-spr-table Log: Update to the 2002-03-10 snapshot of what will be version 5.2. Revision Changes Path 1.5 +14 -3 ports/emulators/psim-freebsd/Makefile 1.5 +1 -1 ports/emulators/psim-freebsd/distinfo 1.3 +1 -5 ports/emulators/psim-freebsd/files/README.patches 1.2 +0 -17 ports/emulators/psim-freebsd/files/patch-ppc-spr-table (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 13: 8: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.demos.su (relay1.demos.su [194.87.0.16]) by hub.freebsd.org (Postfix) with ESMTP id EB12F37B405; Sun, 10 Mar 2002 13:07:54 -0800 (PST) Received: from [194.87.5.172] (HELO mitya.mitya.static.dol.ru) by mail.demos.su (CommuniGate Pro SMTP 3.5.6/D) with ESMTP-TLS id 17059869; Mon, 11 Mar 2002 00:07:51 +0300 Received: (from mitya@localhost) by mitya.mitya.static.dol.ru (8.11.6/8.11.6) id g2AKx9n00631; Sun, 10 Mar 2002 23:59:09 +0300 (MSK) (envelope-from mitya) Date: Sun, 10 Mar 2002 23:59:09 +0300 From: Dmitry Sivachenko To: Kris Kennaway Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports INDEX Message-ID: <20020310205909.GA623@mitya.mitya.static.dol.ru> References: <200203100157.g2A1vFm21964@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <200203100157.g2A1vFm21964@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 Sat, Mar 09, 2002 at 05:57:15PM -0800, Kris Kennaway wrote: > kris 2002/03/09 17:57:15 PST > > Modified files: > . INDEX > Log: > New INDEX file with 6672 ports. > > Revision Changes Path > 1.356 +3846 -3644 ports/INDEX > Previous version of INDEX has registered dependencies on XFree86-3.3.6 port, but current version has registered dependencies on XFree86-4.1.0 port. Why? I always thought we officially support X version 3... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 13: 9:32 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 770BA37B41A; Sun, 10 Mar 2002 13:09:27 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.12.2/8.12.2) with ESMTP id g2AL9G3b007680; Sun, 10 Mar 2002 16:09:20 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200203102109.g2AL9G3b007680@aldan.algebra.com> Date: Sun, 10 Mar 2002 16:09:16 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: ports/www/neon pkg-plist ports/www/neon/files patch-ltmain.sh To: olgeni@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200203102057.g2AKvhx56286@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 10 Mar, Jimmy Olgeni wrote: > olgeni 2002/03/10 12:57:43 PST > > Modified files: > www/neon pkg-plist > www/neon/files patch-ltmain.sh > Log: > Install libneon.la, which is needed by the devel/subversion port. > > Submitted by: Garrett Rooney So, are we shifting to the GNU's new way of pseudo-shared libraries? If so, a number of ports should be allowed to install their .la files. Otherwise (my personal preferance), the devel/subversion should be patched to not need the libneon.la. Or am I missing something totally different? -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 13:10:29 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8CDA337B416; Sun, 10 Mar 2002 13:10:25 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ALAPl61599; Sun, 10 Mar 2002 13:10:25 -0800 (PST) (envelope-from luigi) Message-Id: <200203102110.g2ALAPl61599@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 10 Mar 2002 13:10:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/bridge PICOBSD X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 13:10:25 PST Modified files: release/picobsd/bridge PICOBSD Log: Add back the "sis" driver, we had some room left... Revision Changes Path 1.15 +2 -1 src/release/picobsd/bridge/PICOBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 13:11: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 D2C6937B402; Sun, 10 Mar 2002 13:11:35 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ALBZe61780; Sun, 10 Mar 2002 13:11:35 -0800 (PST) (envelope-from luigi) Message-Id: <200203102111.g2ALBZe61780@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 10 Mar 2002 13:11:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/floppy.tree/etc ttys X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 13:11:35 PST Modified files: release/picobsd/floppy.tree/etc ttys Log: Uncomment the entry for a getty on the serial port. Boxes with a serial console can make use of it. Revision Changes Path 1.4 +1 -1 src/release/picobsd/floppy.tree/etc/ttys To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 13: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 7C39A37B416; Sun, 10 Mar 2002 13:12:24 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ALCOe62033; Sun, 10 Mar 2002 13:12:24 -0800 (PST) (envelope-from luigi) Message-Id: <200203102112.g2ALCOe62033@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 10 Mar 2002 13:12:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/bridge config src/release/picobsd/dial config src/release/picobsd/isp config src/release/picobsd/net config src/release/picobsd/router config X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 13:12:24 PST Modified files: release/picobsd/bridge config release/picobsd/dial config release/picobsd/isp config release/picobsd/net config release/picobsd/router config Log: CURRENT has devfs, so we do not need to specify what devices we want on the MFS image. Update the config files accordingly. Revision Changes Path 1.4 +1 -1 src/release/picobsd/bridge/config 1.4 +1 -14 src/release/picobsd/dial/config 1.3 +1 -3 src/release/picobsd/isp/config 1.3 +1 -1 src/release/picobsd/net/config 1.3 +1 -1 src/release/picobsd/router/config To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 13:14:29 2002 Delivered-To: cvs-all@freebsd.org Received: from isris.pair.com (isris.pair.com [209.68.2.39]) by hub.freebsd.org (Postfix) with SMTP id EF7C537B417 for ; Sun, 10 Mar 2002 13:14:16 -0800 (PST) Received: (qmail 87252 invoked by uid 3130); 10 Mar 2002 21:14:15 -0000 Date: Sun, 10 Mar 2002 16:14:15 -0500 From: Garrett Rooney To: Mikhail Teterin Cc: olgeni@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/neon pkg-plist ports/www/neon/files patch-ltmain.sh Message-ID: <20020310211415.GE77785@electricjellyfish.net> References: <200203102057.g2AKvhx56286@freefall.freebsd.org> <200203102109.g2AL9G3b007680@aldan.algebra.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203102109.g2AL9G3b007680@aldan.algebra.com> 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, Mar 10, 2002 at 04:09:16PM -0500, Mikhail Teterin wrote: > On 10 Mar, Jimmy Olgeni wrote: > > olgeni 2002/03/10 12:57:43 PST > > > > Modified files: > > www/neon pkg-plist > > www/neon/files patch-ltmain.sh > > Log: > > Install libneon.la, which is needed by the devel/subversion port. > > > > Submitted by: Garrett Rooney > > So, are we shifting to the GNU's new way of pseudo-shared libraries? > If so, a number of ports should be allowed to install their .la files. > Otherwise (my personal preferance), the devel/subversion should be > patched to not need the libneon.la. Or am I missing something totally > different? I'm not sure what the official stance is, but in my opinion, since neon defaults to installing the file, and thus other packages that depend on neon (like subversion, and perhaps others) come to expect it, there doesn't seem to be any reason not to install the .la file. I mean it's not like having it there will keep you from linking directly against the .a or .so files if you want to, it just provides another option for other packages, and reduces the number of FreeBSD specific changes we have to introduce in ports. -garrett -- garrett rooney Unix was not designed to stop you from rooneg@electricjellyfish.net doing stupid things, because that would http://electricjellyfish.net/ stop you from doing clever things. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 13:16: 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 2EBB537B400; Sun, 10 Mar 2002 13:15:58 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ALFwD62469; Sun, 10 Mar 2002 13:15:58 -0800 (PST) (envelope-from markm) Message-Id: <200203102115.g2ALFwD62469@freefall.freebsd.org> From: Mark Murray Date: Sun, 10 Mar 2002 13:15:58 -0800 (PST) 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 markm 2002/03/10 13:15:58 PST Modified files: usr.bin Makefile Log: Don't build xlint until surgery is finished. Revision Changes Path 1.182 +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 Sun Mar 10 13:16:10 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 C861F37B405; Sun, 10 Mar 2002 13:15:58 -0800 (PST) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.6/8.11.5) with SMTP id g2ALFiD55567; Sun, 10 Mar 2002 16:15:44 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Sun, 10 Mar 2002 16:15:43 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc syslog.conf In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 10 Mar 2002, Dag-Erling Smorgrav wrote: > Robert Watson writes: > > Log: > > /var/log/security gets almost no (if not no) activity on many FreeBSD > > systems due to sshd not using the security log class. > > This can be arranged... And probably should be. I don't have time to sit down and check to make sure the right facility is used all over the place, but it might be a good idea for someone to do so. There seem to be at least three relevant facilities for this kind of thing (from syslog manpage): LOG_AUTH The authorization system: login(1), su(1), getty(8), etc. LOG_AUTHPRIV The same as LOG_AUTH, but logged to a file readable only by selected individuals. LOG_SECURITY Security subsystems, such as ipfw(4). The current use of AUTH or AUTHPRIV is probably correct for authentication messages coming from sshd, login, su, etc. Which to select is an interesting question: in general, we haven't been using authpriv, I think. SECURITY probably isn't generally appropriate for these mechanisms unless a problem occurs. However, /var/log/security probably has a different mandate than the facility of the same name, and potentially could contain security-relevant messages, which might include authentication messages. This suggests to me that we continue to use AUTH all over the place, and redefine /var/log/security to have a broader mandate, and possibly trim delivery of AUTH/SECURITY/AUTHPRIV from the other logs. I.e., move to: security.*;auth.*;authpriv.* /var/log/security Maybe .info instead of .*. 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 Sun Mar 10 13:23: 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 485BA37B400; Sun, 10 Mar 2002 13:23:05 -0800 (PST) Received: (from demon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ALN5r63281; Sun, 10 Mar 2002 13:23:05 -0800 (PST) (envelope-from demon) Message-Id: <200203102123.g2ALN5r63281@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sun, 10 Mar 2002 13:23:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/p5-Net-Z3950 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/03/10 13:23:05 PST Modified files: net/p5-Net-Z3950 Makefile distinfo Log: Upgrade to version 0.28 Revision Changes Path 1.2 +1 -1 ports/net/p5-Net-Z3950/Makefile 1.2 +1 -1 ports/net/p5-Net-Z3950/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 13: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 A9DF337B402; Sun, 10 Mar 2002 13:25:50 -0800 (PST) Received: (from demon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ALPoT63581; Sun, 10 Mar 2002 13:25:50 -0800 (PST) (envelope-from demon) Message-Id: <200203102125.g2ALPoT63581@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sun, 10 Mar 2002 13:25:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/p5-Net-Z3950 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 demon 2002/03/10 13:25:50 PST Modified files: net/p5-Net-Z3950 Makefile Log: Correct typo. Revision Changes Path 1.3 +1 -1 ports/net/p5-Net-Z3950/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 13:47: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 8942F37B404; Sun, 10 Mar 2002 13:47:41 -0800 (PST) Received: (from demon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ALlf166050; Sun, 10 Mar 2002 13:47:41 -0800 (PST) (envelope-from demon) Message-Id: <200203102147.g2ALlf166050@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sun, 10 Mar 2002 13:47:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/p5-Net-Z3950-SimpleServer Makefile distinfo pkg-comment pkg-descr pkg-plist ports/net/p5-Net-Z3950-SimpleServer/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 demon 2002/03/10 13:47:41 PST Modified files: net Makefile Added files: net/p5-Net-Z3950-SimpleServer Makefile distinfo pkg-comment pkg-descr pkg-plist net/p5-Net-Z3950-SimpleServer/files patch-Makefile.PL Log: New port: A Perl module for developing Z39.50 servers Revision Changes Path 1.725 +1 -0 ports/net/Makefile 1.1 +24 -0 ports/net/p5-Net-Z3950-SimpleServer/Makefile (new) 1.1 +1 -0 ports/net/p5-Net-Z3950-SimpleServer/distinfo (new) 1.1 +9 -0 ports/net/p5-Net-Z3950-SimpleServer/files/patch-Makefile.PL (new) 1.1 +1 -0 ports/net/p5-Net-Z3950-SimpleServer/pkg-comment (new) 1.1 +19 -0 ports/net/p5-Net-Z3950-SimpleServer/pkg-descr (new) 1.1 +12 -0 ports/net/p5-Net-Z3950-SimpleServer/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 Mar 10 13:48: 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 0402537B42A; Sun, 10 Mar 2002 13:47:57 -0800 (PST) Received: (from demon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ALlvB66119; Sun, 10 Mar 2002 13:47:57 -0800 (PST) (envelope-from demon) Message-Id: <200203102147.g2ALlvB66119@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sun, 10 Mar 2002 13:47:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2002/03/10 13:47:57 PST Modified files: . modules Log: p5-Net-Z3950-SimpleServer --> ports/net/p5-Net-Z3950-SimpleServer Revision Changes Path 1.4822 +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 Mar 10 13:51: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 BFF4A37B419; Sun, 10 Mar 2002 13:51:41 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ALpfp66654; Sun, 10 Mar 2002 13:51:41 -0800 (PST) (envelope-from mbr) Message-Id: <200203102151.g2ALpfp66654@freefall.freebsd.org> From: Martin Blapp Date: Sun, 10 Mar 2002 13:51:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-set_soenv.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 mbr 2002/03/10 13:51:41 PST Modified files: editors/openoffice/files patch-set_soenv.1 Log: We do not have GLIBC. Sigh. Revision Changes Path 1.9 +7 -2 ports/editors/openoffice/files/patch-set_soenv.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 13:53: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE4F237B400; Sun, 10 Mar 2002 13:52:52 -0800 (PST) Received: (from eivind@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ALqqC66897; Sun, 10 Mar 2002 13:52:52 -0800 (PST) (envelope-from eivind) Message-Id: <200203102152.g2ALqqC66897@freefall.freebsd.org> From: Eivind Eklund Date: Sun, 10 Mar 2002 13:52:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm default_pager.c pmap.h swap_pager.c swap_pager.h vm.h vm_extern.h vm_fault.c vm_glue.c vm_init.c vm_kern.c vm_map.c vm_map.h vm_mmap.c vm_object.c vm_page.c vm_page.h vm_pageout.c vm_pageout.h vm_pageq.c vm_pager.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 13:52:52 PST Modified files: sys/vm default_pager.c pmap.h swap_pager.c swap_pager.h vm.h vm_extern.h vm_fault.c vm_glue.c vm_init.c vm_kern.c vm_map.c vm_map.h vm_mmap.c vm_object.c vm_page.c vm_page.h vm_pageout.c vm_pageout.h vm_pageq.c vm_pager.c vm_pager.h vm_swap.c vnode_pager.c vnode_pager.h Log: - Remove a number of extra newlines that do not belong here according to style(9) - Minor space adjustment in cases where we have "( ", " )", if(), return(), while(), for(), etc. - Add /* SYMBOL */ after a few #endifs. Reviewed by: alc Revision Changes Path 1.29 +1 -5 src/sys/vm/default_pager.c 1.43 +0 -4 src/sys/vm/pmap.h 1.168 +11 -98 src/sys/vm/swap_pager.c 1.31 +2 -5 src/sys/vm/swap_pager.h 1.21 +1 -1 src/sys/vm/vm.h 1.53 +1 -3 src/sys/vm/vm_extern.h 1.129 +9 -44 src/sys/vm/vm_fault.c 1.127 +0 -2 src/sys/vm/vm_glue.c 1.30 +1 -3 src/sys/vm/vm_init.c 1.76 +0 -6 src/sys/vm/vm_kern.c 1.214 +18 -78 src/sys/vm/vm_map.c 1.70 +2 -6 src/sys/vm/vm_map.h 1.134 +8 -10 src/sys/vm/vm_mmap.c 1.202 +17 -39 src/sys/vm/vm_object.c 1.180 +13 -72 src/sys/vm/vm_page.c 1.97 +2 -4 src/sys/vm/vm_page.h 1.190 +6 -19 src/sys/vm/vm_pageout.c 1.29 +1 -3 src/sys/vm/vm_pageout.h 1.4 +5 -10 src/sys/vm/vm_pageq.c 1.78 +0 -2 src/sys/vm/vm_pager.c 1.34 +3 -8 src/sys/vm/vm_pager.h 1.114 +0 -1 src/sys/vm/vm_swap.c 1.142 +4 -6 src/sys/vm/vnode_pager.c 1.16 +2 -3 src/sys/vm/vnode_pager.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 13:55:52 2002 Delivered-To: cvs-all@freebsd.org Received: from anchor-post-33.mail.demon.net (anchor-post-33.mail.demon.net [194.217.242.91]) by hub.freebsd.org (Postfix) with ESMTP id 532E937B402; Sun, 10 Mar 2002 13:55:48 -0800 (PST) Received: from mailgate.nlsystems.com ([62.49.251.130] helo=herring.nlsystems.com) by anchor-post-33.mail.demon.net with esmtp (Exim 3.35 #1) id 16kBIB-000Hp9-0X; Sun, 10 Mar 2002 21:55:47 +0000 Received: from salmon.nlsystems.com (salmon [10.0.0.3]) by herring.nlsystems.com (8.11.2/8.11.2) with ESMTP id g2ALsU951962; Sun, 10 Mar 2002 21:54:30 GMT (envelope-from dfr@nlsystems.com) Date: Sun, 10 Mar 2002 21:51:27 +0000 (GMT) From: Doug Rabson To: Michael Smith Cc: Jeff Roberson , Jeff Roberson , , Subject: Re: cvs commit: src/sys/sys smp.h src/sys/kern subr_smp.c src/sys/i386/i386 mp_machdep.c src/sys/alpha/alpha mp_machdep.c In-Reply-To: <200203102100.g2AL0qm01007@mass.dis.org> Message-ID: <20020310215012.U504-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 Sun, 10 Mar 2002, Michael Smith wrote: > > It should be possible, yes. I'll sort out changing the ia64 platform code > > accordingly if you really need this information that early. > > In the case where the MPtable can't be fetched except via ACPI, no, it's > not possible. For finding SAPICs and CPUs, we parse the ACPI tables in our own code in sys/ia64/acpi/madt.c. We don't need to initialise ACPI before we can do this so it should be ok. -- 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 Sun Mar 10 14: 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 5957E37B400; Sun, 10 Mar 2002 14:01:55 -0800 (PST) Received: (from eivind@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AM1tX67943; Sun, 10 Mar 2002 14:01:55 -0800 (PST) (envelope-from eivind) Message-Id: <200203102201.g2AM1tX67943@freefall.freebsd.org> From: Eivind Eklund Date: Sun, 10 Mar 2002 14:01:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/cdiff Makefile ports/textproc/cdiff/src cdiff.1 cdiff.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 eivind 2002/03/10 14:01:55 PST Modified files: textproc/cdiff Makefile textproc/cdiff/src cdiff.1 cdiff.sh Log: Update to 1.4. This adds support for "cvs annotate" Revision Changes Path 1.5 +2 -2 ports/textproc/cdiff/Makefile 1.4 +5 -3 ports/textproc/cdiff/src/cdiff.1 1.5 +7 -0 ports/textproc/cdiff/src/cdiff.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 14: 3: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 B93A937B41A; Sun, 10 Mar 2002 14:03:45 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AM3jN68155; Sun, 10 Mar 2002 14:03:45 -0800 (PST) (envelope-from mbr) Message-Id: <200203102203.g2AM3jN68155@freefall.freebsd.org> From: Martin Blapp Date: Sun, 10 Mar 2002 14:03:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-set_soenv.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 mbr 2002/03/10 14:03:45 PST Modified files: editors/openoffice/files patch-set_soenv.1 Log: Add the PTHREAD_CFLAGS correctly to SOLARDEF, even if this is not yet used and the CFLAGS are hardcoded in solenv/inc/unxfbsd.mk Revision Changes Path 1.10 +12 -9 ports/editors/openoffice/files/patch-set_soenv.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 14:14:52 2002 Delivered-To: cvs-all@freebsd.org Received: from mass.dis.org (dhcp45-21.dis.org [216.240.45.21]) by hub.freebsd.org (Postfix) with ESMTP id F06C937B402; Sun, 10 Mar 2002 14:14:44 -0800 (PST) Received: from mass.dis.org (localhost [127.0.0.1]) by mass.dis.org (8.11.6/8.11.6) with ESMTP id g2AME7m01498; Sun, 10 Mar 2002 14:14:07 -0800 (PST) (envelope-from msmith@mass.dis.org) Message-Id: <200203102214.g2AME7m01498@mass.dis.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Doug Rabson Cc: Jeff Roberson , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys smp.h src/sys/kern subr_smp.c src/sys/i386/i386 mp_machdep.c src/sys/alpha/alpha mp_machdep.c In-reply-to: Your message of "Sun, 10 Mar 2002 21:51:27 GMT." <20020310215012.U504-100000@salmon.nlsystems.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 10 Mar 2002 14:14:07 -0800 From: Michael Smith Sender: owner-cvs-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, 10 Mar 2002, Michael Smith wrote: > > > > It should be possible, yes. I'll sort out changing the ia64 platform code > > > accordingly if you really need this information that early. > > > > In the case where the MPtable can't be fetched except via ACPI, no, it's > > not possible. > > For finding SAPICs and CPUs, we parse the ACPI tables in our own code in > sys/ia64/acpi/madt.c. We don't need to initialise ACPI before we can do > this so it should be ok. I'm not thinking of IA64. -- To announce that there must be no criticism of the president, or that we are to stand by the president, right or wrong, is not only unpatriotic and servile, but is morally treasonable to the American public. - Theodore Roosevelt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 14:18:11 2002 Delivered-To: cvs-all@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id B87C137B402; Sun, 10 Mar 2002 14:18:02 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id AAA22543; Mon, 11 Mar 2002 00:18:00 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from h160.228.dialup.iptcom.net (h160.228.dialup.iptcom.net [212.9.228.160]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id AAA24000; Mon, 11 Mar 2002 00:17:57 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Subject: Re: cvs commit: src/sys/kern kern_linker.c From: Maxim Sobolev To: David Malone Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20020310202940.GA94559@walton.maths.tcd.ie> References: <200203101920.g2AJK1B38135@freefall.freebsd.org> <20020310202940.GA94559@walton.maths.tcd.ie> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-BG+9gR96JkQpWFK+Yizt" Message-Id: <1015798536.527.38.camel@notebook> Mime-Version: 1.0 X-Mailer: Evolution/1.0.2 Date: 11 Mar 2002 00:17:27 +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 --=-BG+9gR96JkQpWFK+Yizt Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2002-03-10 at 22:29, David Malone wrote: > On Sun, Mar 10, 2002 at 11:20:01AM -0800, Maxim Sobolev wrote: > > sobomax 2002/03/10 11:20:01 PST > >=20 > > Modified files: > > sys/kern kern_linker.c=20 > > Log: > > Fix a breakage introduced in rev.1.75 (supposedly style cleanup), whi= ch results > > in "missing dependencies" error when loading some kld modules. It is = sad to > > see how often these days style cleanus break doesn't broken things. P= erhaps > > people should recall good old principle: "don't fix it if it isn't br= oken". >=20 > Maxim, >=20 > Would you mind if I chaned all the "err =3D strcmp() if (err =3D=3D 0)"s > in this file into "if (strcmp() =3D=3D 0)". The fix I proposed in the > PR mentioned by Steven did this (it fixed the same bug and made the > strcmps a little more sane). Yeah, please do. -Maxim --=-BG+9gR96JkQpWFK+Yizt 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 iD8DBQA8i9sIoNu5t4iCBa8RApdOAJ0QPeuRt/4qAOUz2ZZsggkyakMu0gCfac9m F69I9lRpnH+yGsThW0ktMe8= =79cW -----END PGP SIGNATURE----- --=-BG+9gR96JkQpWFK+Yizt-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 14:18:37 2002 Delivered-To: cvs-all@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id 8BEE637B419; Sun, 10 Mar 2002 14:18:10 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id AAA22595; Mon, 11 Mar 2002 00:18:08 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from h160.228.dialup.iptcom.net (h160.228.dialup.iptcom.net [212.9.228.160]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id AAA24038; Mon, 11 Mar 2002 00:18:05 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Subject: Re: cvs commit: ports/www/neon pkg-plist ports/www/neon/files patch-ltmain.sh From: Maxim Sobolev To: Jimmy Olgeni Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200203102057.g2AKvhx56286@freefall.freebsd.org> References: <200203102057.g2AKvhx56286@freefall.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-G8A91Tk5u4piVJKaNK7A" Message-Id: <1015798632.527.40.camel@notebook> Mime-Version: 1.0 X-Mailer: Evolution/1.0.2 Date: 11 Mar 2002 00:17:35 +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 --=-G8A91Tk5u4piVJKaNK7A Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2002-03-10 at 22:57, Jimmy Olgeni wrote: > olgeni 2002/03/10 12:57:43 PST >=20 > Modified files: > www/neon pkg-plist=20 > www/neon/files patch-ltmain.sh=20 > Log: > Install libneon.la, which is needed by the devel/subversion port. Just wonder why does it need it? Looks like a bug to me. -Maxim --=-G8A91Tk5u4piVJKaNK7A 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 iD8DBQA8i9tnoNu5t4iCBa8RAgqYAJ4iipqwuZM+cBaeT0Do1n0gTm+hEQCeIOln ibsce0+2KesDXvGZmrhibnE= =xwRH -----END PGP SIGNATURE----- --=-G8A91Tk5u4piVJKaNK7A-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 14:24:45 2002 Delivered-To: cvs-all@freebsd.org Received: from isris.pair.com (isris.pair.com [209.68.2.39]) by hub.freebsd.org (Postfix) with SMTP id D561E37B405 for ; Sun, 10 Mar 2002 14:24:35 -0800 (PST) Received: (qmail 8471 invoked by uid 3130); 10 Mar 2002 22:24:35 -0000 Date: Sun, 10 Mar 2002 17:24:34 -0500 From: Garrett Rooney To: Maxim Sobolev Cc: Jimmy Olgeni , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/neon pkg-plist ports/www/neon/files patch-ltmain.sh Message-ID: <20020310222434.GA4251@electricjellyfish.net> References: <200203102057.g2AKvhx56286@freefall.freebsd.org> <1015798632.527.40.camel@notebook> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1015798632.527.40.camel@notebook> 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, Mar 11, 2002 at 12:17:35AM +0200, Maxim Sobolev wrote: > On Sun, 2002-03-10 at 22:57, Jimmy Olgeni wrote: > > olgeni 2002/03/10 12:57:43 PST > > > > Modified files: > > www/neon pkg-plist > > www/neon/files patch-ltmain.sh > > Log: > > Install libneon.la, which is needed by the devel/subversion port. > > Just wonder why does it need it? Looks like a bug to me. The subversion build system is set up so that you can build with neon either in the subversion tree or out of it. As a result, it tries to use the libneon.la file, since neon normally installs it. I could hack around it, but it doesn't make much sense to me to patch one port (neon), changing what it installs, thus requiring us to patch still more ports (subversion, plus whatever else might depend on neon installing that file). To me anyway, it seems fairly reasonable for someone to assume the file will be there, since neon installs it by default anyway. Why not just avoid the mess entirely and install the file? -garrett -- garrett rooney Unix was not designed to stop you from rooneg@electricjellyfish.net doing stupid things, because that would http://electricjellyfish.net/ stop you from doing clever things. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 14:27: 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 BBB9637B416; Sun, 10 Mar 2002 14:26:50 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AMQo174086; Sun, 10 Mar 2002 14:26:50 -0800 (PST) (envelope-from mbr) Message-Id: <200203102226.g2AMQo174086@freefall.freebsd.org> From: Martin Blapp Date: Sun, 10 Mar 2002 14:26:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-ppsprint::source::printergfx::printerjob.cxx X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/03/10 14:26:50 PST Removed files: editors/openoffice/files patch-ppsprint::source::printergfx::printerjob.cxx Log: A getpwuid_r function is now implemented in patch-sal::osl::unx::system.c Revision Changes Path 1.2 +0 -14 ports/editors/openoffice/files/patch-ppsprint::source::printergfx::printerjob.cxx (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 14:30:43 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 3332E37B416; Sun, 10 Mar 2002 14:30:37 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.12.2/8.12.2) with ESMTP id g2AMUS3b009140; Sun, 10 Mar 2002 17:30:32 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200203102230.g2AMUS3b009140@aldan.algebra.com> Date: Sun, 10 Mar 2002 17:30:28 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: ports/www/sitecopy Makefile To: olgeni@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20020310120106.C518-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 On 10 Mar, Jimmy Olgeni wrote: > > On Sun, 3 Mar 2002, Mikhail Teterin wrote: > >> Can't it be patched to use the www/neon port? It is worth _some_ >> hassle to keep it from using its own version... Or you tried already >> and found the hassle to be too much? > > The problem is that the neon api is changing really quickly, so maybe > I could patch it this time but I couldn't tell anything about the > next... If I were the maintainer, I'd be chasing the API, while pounding the neon author with the requests to stabilize it, and the sitecopy author to stop bundling (outdated) neon with his/her software. But I'm not the maintainer :-) -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 14:33:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 63F0337B404; Sun, 10 Mar 2002 14:33:05 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AMX5676490; Sun, 10 Mar 2002 14:33:05 -0800 (PST) (envelope-from sobomax) Message-Id: <200203102233.g2AMX5676490@freefall.freebsd.org> From: Maxim Sobolev Date: Sun, 10 Mar 2002 14:33:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/common bootstrap.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/10 14:33:05 PST Modified files: sys/boot/common bootstrap.h Log: CG superfluous prototype. Revision Changes Path 1.36 +0 -1 src/sys/boot/common/bootstrap.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 14: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 5B95B37B400; Sun, 10 Mar 2002 14:34:53 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AMYrd76764; Sun, 10 Mar 2002 14:34:53 -0800 (PST) (envelope-from mbr) Message-Id: <200203102234.g2AMYrd76764@freefall.freebsd.org> From: Martin Blapp Date: Sun, 10 Mar 2002 14:34:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-product::util::makefile.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 mbr 2002/03/10 14:34:53 PST Modified files: editors/openoffice/files patch-product::util::makefile.mk Log: Add -f to ln to continue builds Revision Changes Path 1.2 +25 -7 ports/editors/openoffice/files/patch-product::util::makefile.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 14:35: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 6F6C437B41D; Sun, 10 Mar 2002 14:34:56 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AMYuW76777; Sun, 10 Mar 2002 14:34:56 -0800 (PST) (envelope-from cjc) Message-Id: <200203102234.g2AMYuW76777@freefall.freebsd.org> From: "Crist J. Clark" Date: Sun, 10 Mar 2002 14:34:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc MAKEDEV X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjc 2002/03/10 14:34:56 PST Modified files: etc MAKEDEV Log: Remove a mention of the worm(4) device that was missed when it was removed from MAKEDEV in 1.171. PR: misc/35729 MFC after: 1 day Revision Changes Path 1.322 +1 -2 src/etc/MAKEDEV To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 14:37:48 2002 Delivered-To: cvs-all@freebsd.org Received: from isris.pair.com (isris.pair.com [209.68.2.39]) by hub.freebsd.org (Postfix) with SMTP id 0434D37B41A for ; Sun, 10 Mar 2002 14:37:40 -0800 (PST) Received: (qmail 12891 invoked by uid 3130); 10 Mar 2002 22:37:39 -0000 Date: Sun, 10 Mar 2002 17:37:39 -0500 From: Garrett Rooney To: Mikhail Teterin Cc: olgeni@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/sitecopy Makefile Message-ID: <20020310223738.GB4251@electricjellyfish.net> References: <20020310120106.C518-100000@olgeni.olgeni> <200203102230.g2AMUS3b009140@aldan.algebra.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203102230.g2AMUS3b009140@aldan.algebra.com> 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, Mar 10, 2002 at 05:30:28PM -0500, Mikhail Teterin wrote: > On 10 Mar, Jimmy Olgeni wrote: > > > > On Sun, 3 Mar 2002, Mikhail Teterin wrote: > > > >> Can't it be patched to use the www/neon port? It is worth _some_ > >> hassle to keep it from using its own version... Or you tried already > >> and found the hassle to be too much? > > > > The problem is that the neon api is changing really quickly, so maybe > > I could patch it this time but I couldn't tell anything about the > > next... > > If I were the maintainer, I'd be chasing the API, while pounding the > neon author with the requests to stabilize it, and the sitecopy author > to stop bundling (outdated) neon with his/her software. But I'm not the > maintainer :-) for the record, sitecopy author == neon author, and he doesn't feel compelled to maintain backwards compatability in his API since neon is not yet at 1.0. i agree that life would be considerably easier if it did, but that's not the way things are at the moment, so we get to jump through some hoops to make sure the various packages that use neon will work with the latest version. i'm sure that the author would be more than willing to accept patches to sitecopy updating it to the latest version of neon. -garrett -- garrett rooney Unix was not designed to stop you from rooneg@electricjellyfish.net doing stupid things, because that would http://electricjellyfish.net/ stop you from doing clever things. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 14:42: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 24E5437B404; Sun, 10 Mar 2002 14:42:08 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AMg8j78186; Sun, 10 Mar 2002 14:42:08 -0800 (PST) (envelope-from mbr) Message-Id: <200203102242.g2AMg8j78186@freefall.freebsd.org> From: Martin Blapp Date: Sun, 10 Mar 2002 14:42:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-sal::osl::unx::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 mbr 2002/03/10 14:42:08 PST Modified files: editors/openoffice/files patch-sal::osl::unx::socket.c Log: AddrLen is socklen_t, not int Revision Changes Path 1.2 +11 -2 ports/editors/openoffice/files/patch-sal::osl::unx::socket.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 14:48: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 0328A37B405; Sun, 10 Mar 2002 14:48:23 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AMmMP80252; Sun, 10 Mar 2002 14:48:22 -0800 (PST) (envelope-from mbr) Message-Id: <200203102248.g2AMmMP80252@freefall.freebsd.org> From: Martin Blapp Date: Sun, 10 Mar 2002 14:48:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-sal::workben::getlocaleinfotest.cxx X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/03/10 14:48:22 PST Added files: editors/openoffice/files patch-sal::workben::getlocaleinfotest.cxx Log: Remove _cdecl before main() Revision Changes Path 1.1 +11 -0 ports/editors/openoffice/files/patch-sal::workben::getlocaleinfotest.cxx (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 14: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 436BD37B419; Sun, 10 Mar 2002 14:51:58 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AMpwD80782; Sun, 10 Mar 2002 14:51:58 -0800 (PST) (envelope-from mbr) Message-Id: <200203102251.g2AMpwD80782@freefall.freebsd.org> From: Martin Blapp Date: Sun, 10 Mar 2002 14:51:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-sal::workben::makefile.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 mbr 2002/03/10 14:51:58 PST Modified files: editors/openoffice/files patch-sal::workben::makefile.mk Log: Add tgetpwnam test for FreeBSD too Revision Changes Path 1.3 +20 -2 ports/editors/openoffice/files/patch-sal::workben::makefile.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 14:59:46 2002 Delivered-To: cvs-all@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id 6948F37B404; Sun, 10 Mar 2002 14:59:36 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id AAA34207; Mon, 11 Mar 2002 00:59:33 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from h205.229.dialup.iptcom.net (h205.229.dialup.iptcom.net [212.9.229.205]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id AAA34216; Mon, 11 Mar 2002 00:59:28 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Subject: Re: cvs commit: ports/www/neon pkg-plist ports/www/neon/files patch-ltmain.sh From: Maxim Sobolev To: Garrett Rooney Cc: Jimmy Olgeni , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20020310222434.GA4251@electricjellyfish.net> References: <200203102057.g2AKvhx56286@freefall.freebsd.org> <1015798632.527.40.camel@notebook> <20020310222434.GA4251@electricjellyfish.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-164oKm9QUbrxtTkxsHGv" Message-Id: <1015800125.527.61.camel@notebook> Mime-Version: 1.0 X-Mailer: Evolution/1.0.2 Date: 11 Mar 2002 00:58:59 +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 --=-164oKm9QUbrxtTkxsHGv Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2002-03-11 at 00:24, Garrett Rooney wrote: > On Mon, Mar 11, 2002 at 12:17:35AM +0200, Maxim Sobolev wrote: > > On Sun, 2002-03-10 at 22:57, Jimmy Olgeni wrote: > > > olgeni 2002/03/10 12:57:43 PST > > >=20 > > > Modified files: > > > www/neon pkg-plist=20 > > > www/neon/files patch-ltmain.sh=20 > > > Log: > > > Install libneon.la, which is needed by the devel/subversion port. > >=20 > > Just wonder why does it need it? Looks like a bug to me. >=20 > The subversion build system is set up so that you can build with neon > either in the subversion tree or out of it. As a result, it tries to > use the libneon.la file, since neon normally installs it. I could > hack around it, but it doesn't make much sense to me to patch one port > (neon), changing what it installs, thus requiring us to patch still > more ports (subversion, plus whatever else might depend on neon > installing that file). To me anyway, it seems fairly reasonable for > someone to assume the file will be there, since neon installs it by > default anyway. This isn't entirely correct assertion, because .la file installed by libtool, whose behaviour in this area is system-specific. Therefore, in fact broken is subversion autoconfiguration system, because it checks for the presence of neon library using wrong way (just for the moment imagine that there is another fully compatible neon library, which doesn't use libtool and therefore doesn't install .la file). The right way is to test whether it's possible to link test application with -lneon, not check that there is a libneon.la file. Most of the ports in our tree do the right thing about this OOB, all those that don't should be fixed and the problem reported to vendor. > Why not just avoid the mess entirely and install the file? Because that would be a workaround. -Maxim --=-164oKm9QUbrxtTkxsHGv 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 iD8DBQA8i+E9oNu5t4iCBa8RAjDaAJ0dCgJi63HUlXvkpBsc0DDISLUpewCfctmh KpkeYGQvK8822DUYdzWL/f8= =eiJ4 -----END PGP SIGNATURE----- --=-164oKm9QUbrxtTkxsHGv-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 15: 2: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 B579737B417; Sun, 10 Mar 2002 15:02:24 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2AN2O782043; Sun, 10 Mar 2002 15:02:24 -0800 (PST) (envelope-from mbr) Message-Id: <200203102302.g2AN2O782043@freefall.freebsd.org> From: Martin Blapp Date: Sun, 10 Mar 2002 15:02:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-tools::source::string::charset.cxx X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/03/10 15:02:24 PST Added files: editors/openoffice/files patch-tools::source::string::charset.cxx Log: Add langinfo twirks Revision Changes Path 1.1 +18 -0 ports/editors/openoffice/files/patch-tools::source::string::charset.cxx (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 15: 6:19 2002 Delivered-To: cvs-all@freebsd.org Received: from isris.pair.com (isris.pair.com [209.68.2.39]) by hub.freebsd.org (Postfix) with SMTP id DFE1737B41A for ; Sun, 10 Mar 2002 15:06:12 -0800 (PST) Received: (qmail 19731 invoked by uid 3130); 10 Mar 2002 23:04:19 -0000 Date: Sun, 10 Mar 2002 18:04:18 -0500 From: Garrett Rooney To: Maxim Sobolev Cc: Jimmy Olgeni , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/neon pkg-plist ports/www/neon/files patch-ltmain.sh Message-ID: <20020310230418.GC4251@electricjellyfish.net> References: <200203102057.g2AKvhx56286@freefall.freebsd.org> <1015798632.527.40.camel@notebook> <20020310222434.GA4251@electricjellyfish.net> <1015800125.527.61.camel@notebook> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1015800125.527.61.camel@notebook> 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, Mar 11, 2002 at 12:58:59AM +0200, Maxim Sobolev wrote: > This isn't entirely correct assertion, because .la file installed by > libtool, whose behaviour in this area is system-specific. Therefore, in > fact broken is subversion autoconfiguration system, because it checks > for the presence of neon library using wrong way (just for the moment > imagine that there is another fully compatible neon library, which > doesn't use libtool and therefore doesn't install .la file). The right > way is to test whether it's possible to link test application with > -lneon, not check that there is a libneon.la file. Most of the ports in > our tree do the right thing about this OOB, all those that don't should > be fixed and the problem reported to vendor. I see what you mean. I will see what can be done about fixing the subversion build system to search for neon correctly. -garrett -- garrett rooney Unix was not designed to stop you from rooneg@electricjellyfish.net doing stupid things, because that would http://electricjellyfish.net/ stop you from doing clever things. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 15:12:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4D6EC37B400; Sun, 10 Mar 2002 15:12:43 -0800 (PST) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ANChB86971; Sun, 10 Mar 2002 15:12:43 -0800 (PST) (envelope-from dwmalone) Message-Id: <200203102312.g2ANChB86971@freefall.freebsd.org> From: David Malone Date: Sun, 10 Mar 2002 15:12:43 -0800 (PST) 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 dwmalone 2002/03/10 15:12:43 PST Modified files: sys/kern kern_linker.c Log: Don't assign strcmp to a variable called err and then compare it with zero, just compare strcmp with zero. This fixes the same bug which Maxim just fixed and fixes some odd style too. PR: 35712 Reviewed by: arr Revision Changes Path 1.79 +12 -20 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 Sun Mar 10 15:17:18 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id B3C7537B416; Sun, 10 Mar 2002 15:17:13 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.12.2/8.12.2) with ESMTP id g2ANH03b063503; Sun, 10 Mar 2002 18:17:04 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200203102317.g2ANH03b063503@aldan.algebra.com> Date: Sun, 10 Mar 2002 18:17:00 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: ports/www/neon pkg-plist ports/www/neon/files patch-ltmain.sh To: rooneg@electricjellyfish.net Cc: sobomax@FreeBSD.org, olgeni@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20020310222434.GA4251@electricjellyfish.net> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 10 Mar, Garrett Rooney wrote: > On Mon, Mar 11, 2002 at 12:17:35AM +0200, Maxim Sobolev wrote: >> On Sun, 2002-03-10 at 22:57, Jimmy Olgeni wrote: >> > olgeni 2002/03/10 12:57:43 PST >> > >> > Modified files: >> > www/neon pkg-plist >> > www/neon/files patch-ltmain.sh >> > Log: >> > Install libneon.la, which is needed by the devel/subversion port. >> >> Just wonder why does it need it? Looks like a bug to me. > > As a result, it tries to use the libneon.la file, since neon normally > installs it. [...] Why not just avoid the mess entirely and install > the file? Because none of the FreeBSD tools use/support the .la files. They are useless. The sitecopy should look for some other part of neon -- a part, that may have other uses. -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 15:24:18 2002 Delivered-To: cvs-all@freebsd.org Received: from isris.pair.com (isris.pair.com [209.68.2.39]) by hub.freebsd.org (Postfix) with SMTP id C35AA37B404 for ; Sun, 10 Mar 2002 15:24:11 -0800 (PST) Received: (qmail 25554 invoked by uid 3130); 10 Mar 2002 23:24:10 -0000 Date: Sun, 10 Mar 2002 18:24:10 -0500 From: Garrett Rooney To: Mikhail Teterin Cc: sobomax@FreeBSD.org, olgeni@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/neon pkg-plist ports/www/neon/files patch-ltmain.sh Message-ID: <20020310232410.GD4251@electricjellyfish.net> References: <20020310222434.GA4251@electricjellyfish.net> <200203102317.g2ANH03b063503@aldan.algebra.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203102317.g2ANH03b063503@aldan.algebra.com> 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, Mar 10, 2002 at 06:17:00PM -0500, Mikhail Teterin wrote: > Because none of the FreeBSD tools use/support the .la files. They are > useless. The sitecopy should look for some other part of neon -- a part, > that may have other uses. i can see the validity of this argument, and maxim's about just trying to link against -lneon, rather than using the libneon.la file, but just out of curiosity, is this documented anywhere? i've looked through the porters handbook, and was unable to find anything concerning .la files. if we're going to say 'ports should not install them', then it seems like it should be documented somewhere. -garrett -- garrett rooney Unix was not designed to stop you from rooneg@electricjellyfish.net doing stupid things, because that would http://electricjellyfish.net/ stop you from doing clever things. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 15: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 B8ADE37B419; Sun, 10 Mar 2002 15:24:14 -0800 (PST) Received: (from mi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ANOE888587; Sun, 10 Mar 2002 15:24:14 -0800 (PST) (envelope-from mi) Message-Id: <200203102324.g2ANOE888587@freefall.freebsd.org> From: Mikhail Teterin Date: Sun, 10 Mar 2002 15:24:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/stlport Makefile ports/devel/stlport/files patch-cxxflags X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 15:24:14 PST Modified files: devel/stlport Makefile Added files: devel/stlport/files patch-cxxflags Log: Do not tinker with the ALL_TARGET. The existing version makes clean before all, which will restart the whole build every time you interrupt it... Run the bundled tests after in post-build. Obey the CXXFLAGS. Approved by: maintainer Revision Changes Path 1.20 +3 -1 ports/devel/stlport/Makefile 1.1 +9 -0 ports/devel/stlport/files/patch-cxxflags (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 15: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 E8E3837B416; Sun, 10 Mar 2002 15:33:49 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ANXnA89832; Sun, 10 Mar 2002 15:33:49 -0800 (PST) (envelope-from obrien) Message-Id: <200203102333.g2ANXnA89832@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 10 Mar 2002 15:33:49 -0800 (PST) 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/03/10 15:33:49 PST Modified files: lib/csu/sparc64 Makefile Log: Sync with csu/alpha/Makefile: build crt{i,n}.o. Leave crtbegin* to the compiler vendor. Revision Changes Path 1.3 +2 -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 Sun Mar 10 15: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 B718A37B41A; Sun, 10 Mar 2002 15:33:55 -0800 (PST) Received: (from mi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ANXt789862; Sun, 10 Mar 2002 15:33:55 -0800 (PST) (envelope-from mi) Message-Id: <200203102333.g2ANXt789862@freefall.freebsd.org> From: Mikhail Teterin Date: Sun, 10 Mar 2002 15:33:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2002/03/10 15:33:55 PST Modified files: textproc Makefile Log: Remove the tclxml, which is a repo-copy of tclExpat waiting for an upgrade, and should not have been listed. Angrily requested by: kris Revision Changes Path 1.333 +0 -1 ports/textproc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 15:45: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-239.dsl.lsan03.pacbell.net [64.165.226.239]) by hub.freebsd.org (Postfix) with ESMTP id DB13F37B400; Sun, 10 Mar 2002 15:44:56 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 1CE0966C76; Sun, 10 Mar 2002 15:44:56 -0800 (PST) Date: Sun, 10 Mar 2002 15:44:56 -0800 From: Kris Kennaway To: Mikhail Teterin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/textproc Makefile Message-ID: <20020310154455.B99182@xor.obsecurity.org> References: <200203102333.g2ANXt789862@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="7ZAtKRhVyVSsbBD2" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200203102333.g2ANXt789862@freefall.freebsd.org>; from mi@FreeBSD.org on Sun, Mar 10, 2002 at 03:33:55PM -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 --7ZAtKRhVyVSsbBD2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Mar 10, 2002 at 03:33:55PM -0800, Mikhail Teterin wrote: > mi 2002/03/10 15:33:55 PST >=20 > Modified files: > textproc Makefile=20 > Log: > Remove the tclxml, which is a repo-copy of tclExpat waiting for an upgr= ade, > and should not have been listed. > =20 > Angrily requested by: kris *sigh* It was not an angry request..and even if it was it doesn't belong in the commit logs. Kris --7ZAtKRhVyVSsbBD2 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 iD8DBQE8i+/3Wry0BWjoQKURAuUZAKC9qLUwzOq/piLp6Gbd2YYq1aUt/gCfUqbh Oo0dax2ZCq6Amen9oGm7xFk= =VzBi -----END PGP SIGNATURE----- --7ZAtKRhVyVSsbBD2-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 15:56:28 2002 Delivered-To: cvs-all@freebsd.org Received: from panzer.kdm.org (panzer.kdm.org [216.160.178.169]) by hub.freebsd.org (Postfix) with ESMTP id 203E137B404; Sun, 10 Mar 2002 15:56:21 -0800 (PST) Received: (from ken@localhost) by panzer.kdm.org (8.11.6/8.9.1) id g2ANuJ564917; Sun, 10 Mar 2002 16:56:19 -0700 (MST) (envelope-from ken) Date: Sun, 10 Mar 2002 16:56:19 -0700 From: "Kenneth D. Merry" To: Maxim Sobolev Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_linker.c Message-ID: <20020310165619.A64813@panzer.kdm.org> References: <200203101920.g2AJK1B38135@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: <200203101920.g2AJK1B38135@freefall.freebsd.org>; from sobomax@FreeBSD.org on Sun, Mar 10, 2002 at 11:20:01AM -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 On Sun, Mar 10, 2002 at 11:20:01 -0800, Maxim Sobolev wrote: > sobomax 2002/03/10 11:20:01 PST > > Modified files: > sys/kern kern_linker.c > Log: > Fix a breakage introduced in rev.1.75 (supposedly style cleanup), which results > in "missing dependencies" error when loading some kld modules. It is sad to > see how often these days style cleanus break doesn't broken things. Perhaps > people should recall good old principle: "don't fix it if it isn't broken". These sorts of problems can often be avoided (if you're doing a style-only change) by doing a binary compare on the object before and after the style cleanup. Ken -- Kenneth Merry ken@kdm.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 16: 0:53 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 8A21637B416; Sun, 10 Mar 2002 16:00:47 -0800 (PST) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.6/8.11.5) with SMTP id g2B00dD64470; Sun, 10 Mar 2002 19:00:39 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Sun, 10 Mar 2002 19:00:39 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Martin Blapp Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/editors/openoffice/files patch-ppsprint::source::printergfx::printerjob.cxx In-Reply-To: <200203102226.g2AMQo174086@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 it's implemented in a BSD-licensed manner that fit our implementation well, it should move into libc or libc_r :-). Robert N M Watson FreeBSD Core Team, TrustedBSD Project robert@fledge.watson.org NAI Labs, Safeport Network Services On Sun, 10 Mar 2002, Martin Blapp wrote: > mbr 2002/03/10 14:26:50 PST > > Removed files: > editors/openoffice/files > patch-ppsprint::source::printergfx::printerjob.cxx > Log: > A getpwuid_r function is now implemented in patch-sal::osl::unx::system.c > > Revision Changes Path > 1.2 +0 -14 ports/editors/openoffice/files/patch-ppsprint::source::printergfx::printerjob.cxx (dead) > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 16: 2: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 A542737B41A; Sun, 10 Mar 2002 16:02:06 -0800 (PST) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B026K92824; Sun, 10 Mar 2002 16:02:06 -0800 (PST) (envelope-from alc) Message-Id: <200203110002.g2B026K92824@freefall.freebsd.org> From: Alan Cox Date: Sun, 10 Mar 2002 16:02:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_aio.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2002/03/10 16:02:06 PST Modified files: (Branch: RELENG_4) sys/kern vfs_aio.c Log: MFC: A variety of modifications that don't change the object code's md5(1) signature, including new and corrected comments, use of TAILQ_FOREACH(), and elimination of unnecessary casts. Revision Changes Path 1.70.2.17 +27 -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 Mar 10 16: 7: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 BEEA037B402; Sun, 10 Mar 2002 16:07:55 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B07tr97014; Sun, 10 Mar 2002 16:07:55 -0800 (PST) (envelope-from dd) Message-Id: <200203110007.g2B07tr97014@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 16:07:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/mountd mountd.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 dd 2002/03/10 16:07:55 PST Modified files: sbin/mountd mountd.8 Log: Chase sysctl name. Submitted by: Christopher Sharp Revision Changes Path 1.20 +1 -1 src/sbin/mountd/mountd.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 16:29: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 B01EF37B402; Sun, 10 Mar 2002 16:29:14 -0800 (PST) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B0TEn99299; Sun, 10 Mar 2002 16:29:14 -0800 (PST) (envelope-from joe) Message-Id: <200203110029.g2B0TEn99299@freefall.freebsd.org> From: Josef Karthauser Date: Sun, 10 Mar 2002 16:29:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/libusb/files patch-bsd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 16:29:14 PST Added files: devel/libusb/files patch-bsd.c Log: Some structures in usb.h have changed recently. Submitted by: John Reynolds Revision Changes Path 1.1 +66 -0 ports/devel/libusb/files/patch-bsd.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 17: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 6275137B419; Sun, 10 Mar 2002 17:13:11 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B1DBa07241; Sun, 10 Mar 2002 17:13:11 -0800 (PST) (envelope-from dd) Message-Id: <200203110113.g2B1DBa07241@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 17:13:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys module.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 dd 2002/03/10 17:13:11 PST Modified files: (Branch: RELENG_4) sys/sys module.h Log: MFC 1.17: use protected variables names in prototypes visible to the userland. Revision Changes Path 1.14.2.2 +5 -5 src/sys/sys/module.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 17: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 98A6D37B417; Sun, 10 Mar 2002 17:13:53 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B1Drs07356; Sun, 10 Mar 2002 17:13:53 -0800 (PST) (envelope-from dd) Message-Id: <200203110113.g2B1Drs07356@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 17:13:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys linker.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 dd 2002/03/10 17:13:53 PST Modified files: (Branch: RELENG_4) sys/sys linker.h Log: MFC 1.22: use protected variables names in prototypes. Revision Changes Path 1.17.2.1 +31 -29 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 Sun Mar 10 17:15: 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 3DD4F37B402; Sun, 10 Mar 2002 17:14:57 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B1Etb07519; Sun, 10 Mar 2002 17:14:55 -0800 (PST) (envelope-from dd) Message-Id: <200203110114.g2B1Etb07519@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 17:14:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys conf.h src/sys/kern tty_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 dd 2002/03/10 17:14:55 PST Modified files: (Branch: RELENG_4) sys/sys conf.h sys/kern tty_conf.c Log: MFC: unstaticize l_nullioctl. Revision Changes Path 1.16.2.1 +2 -3 src/sys/kern/tty_conf.c 1.103.2.6 +1 -0 src/sys/sys/conf.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 17:23:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 85B2437B402; Sun, 10 Mar 2002 17:23:07 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B1N6S08501; Sun, 10 Mar 2002 17:23:06 -0800 (PST) (envelope-from dd) Message-Id: <200203110123.g2B1N6S08501@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 17:23:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/snp snp.c src/sys/sys snoop.h src/sys/conf files src/sys/kern tty_snoop.c src/sys/i386/conf LINT X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2002/03/10 17:23:06 PST Modified files: (Branch: RELENG_4) sys/sys snoop.h sys/conf files sys/i386/conf LINT Added files: (Branch: RELENG_4) sys/dev/snp snp.c Removed files: (Branch: RELENG_4) sys/kern tty_snoop.c Log: MFC: sync snp(4) device to -current modulo -current-specific stuff. Notable changes include: (a) driver repo-copied from kern/tty_snoop.c to dev/snp/snp.c; (b) snp is no longer a count device; (c) snp can now be compiled as a module; and (d) numerous bugfixes. Revision Changes Path 1.340.2.92 +1 -1 src/sys/conf/files 1.69.2.1 +633 -0 src/sys/dev/snp/snp.c (new) 1.749.2.106 +1 -1 src/sys/i386/conf/LINT 1.45.2.1 +0 -523 src/sys/kern/tty_snoop.c (dead) 1.14.2.1 +0 -42 src/sys/sys/snoop.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 17:24: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 31BCD37B404; Sun, 10 Mar 2002 17:24:45 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B1OjX09287; Sun, 10 Mar 2002 17:24:45 -0800 (PST) (envelope-from dd) Message-Id: <200203110124.g2B1OjX09287@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 17:24:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules Makefile src/sys/modules/snp 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 dd 2002/03/10 17:24:45 PST Modified files: (Branch: RELENG_4) sys/modules Makefile Added files: (Branch: RELENG_4) sys/modules/snp Makefile Log: MFC: snp(4) module. Revision Changes Path 1.110.2.46 +1 -0 src/sys/modules/Makefile 1.3.2.1 +8 -0 src/sys/modules/snp/Makefile (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 17: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 C739C37B402; Sun, 10 Mar 2002 17:26:42 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B1Qgn09473; Sun, 10 Mar 2002 17:26:42 -0800 (PST) (envelope-from dd) Message-Id: <200203110126.g2B1Qgn09473@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 17:26:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/watch Makefile watch.8 watch.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 dd 2002/03/10 17:26:42 PST Modified files: (Branch: RELENG_4) usr.sbin/watch Makefile watch.8 watch.c Log: MFC: sync to -current: misc. cleanups, load the module if not already present, and -f option. Revision Changes Path 1.8.2.2 +7 -3 src/usr.sbin/watch/Makefile 1.18.2.3 +40 -19 src/usr.sbin/watch/watch.8 1.18.2.2 +87 -67 src/usr.sbin/watch/watch.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 17:32:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EEE8737B404; Sun, 10 Mar 2002 17:32:31 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B1WVG10198; Sun, 10 Mar 2002 17:32:31 -0800 (PST) (envelope-from dd) Message-Id: <200203110132.g2B1WVG10198@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 17:32:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern tty.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 dd 2002/03/10 17:32:31 PST Modified files: (Branch: RELENG_4) sys/kern tty.c Log: MFC 1.153: remove custom hacks for snp(4) which the latter no longer needs. Revision Changes Path 1.129.2.5 +1 -28 src/sys/kern/tty.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 17:37: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 9A69D37B400; Sun, 10 Mar 2002 17:37:54 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B1bsZ11814; Sun, 10 Mar 2002 17:37:54 -0800 (PST) (envelope-from dd) Message-Id: <200203110137.g2B1bsZ11814@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 17:37:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2002/03/10 17:37:54 PST Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Belatedly add a release note about destaticizing and modulizing of snp(4), and note MFC of watch(8) -f. Revision Changes Path 1.298 +5 -2 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 17:41: 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 600D737B402; Sun, 10 Mar 2002 17:40:45 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B1eju12493; Sun, 10 Mar 2002 17:40:45 -0800 (PST) (envelope-from dd) Message-Id: <200203110140.g2B1eju12493@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 17:40:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2002/03/10 17:40:45 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: snp(4) destaticized, watch(8) -f. Revision Changes Path 1.22.2.207 +7 -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 Sun Mar 10 17:54:53 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id BA9C637B416; Sun, 10 Mar 2002 17:54:48 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.12.2/8.12.2) with ESMTP id g2B1se3b064107; Sun, 10 Mar 2002 20:54:43 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200203110154.g2B1se3b064107@aldan.algebra.com> Date: Sun, 10 Mar 2002 20:54:40 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: ports/textproc Makefile To: kris@obsecurity.org Cc: mi@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20020310154455.B99182@xor.obsecurity.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 Mar, Kris Kennaway wrote: > On Sun, Mar 10, 2002 at 03:33:55PM -0800, Mikhail Teterin wrote: >> mi 2002/03/10 15:33:55 PST >> >> Modified files: >> textproc Makefile >> Log: >> Remove the tclxml, which is a repo-copy of tclExpat waiting for an upgrade, >> and should not have been listed. >> >> Angrily requested by: kris > > *sigh* It was not an angry request..and even if it was it doesn't > belong in the commit logs. > > Kris Jokes do... -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 18:10:15 2002 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-239.dsl.lsan03.pacbell.net [64.165.226.239]) by hub.freebsd.org (Postfix) with ESMTP id 74DC937B417; Sun, 10 Mar 2002 18:10:08 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id BCE0266C80; Sun, 10 Mar 2002 18:10:07 -0800 (PST) Date: Sun, 10 Mar 2002 18:10:07 -0800 From: Kris Kennaway To: Dmitry Sivachenko Cc: Kris Kennaway , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, re@FreeBSD.org Subject: Re: cvs commit: ports INDEX Message-ID: <20020310181007.A2332@xor.obsecurity.org> References: <200203100157.g2A1vFm21964@freefall.freebsd.org> <20020310205909.GA623@mitya.mitya.static.dol.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="6c2NcOVqGQ03X4Wi" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020310205909.GA623@mitya.mitya.static.dol.ru>; from demon@FreeBSD.org on Sun, Mar 10, 2002 at 11:59:09PM +0300 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --6c2NcOVqGQ03X4Wi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Mar 10, 2002 at 11:59:09PM +0300, Dmitry Sivachenko wrote: > On Sat, Mar 09, 2002 at 05:57:15PM -0800, Kris Kennaway wrote: > > kris 2002/03/09 17:57:15 PST > >=20 > > Modified files: > > . INDEX=20 > > Log: > > New INDEX file with 6672 ports. > > =20 > > Revision Changes Path > > 1.356 +3846 -3644 ports/INDEX > >=20 >=20 > Previous version of INDEX has registered dependencies on XFree86-3.3.6 po= rt, > but current version has registered dependencies on XFree86-4.1.0 port. >=20 > Why? I always thought we officially support X version 3... >=20 Oops..there were also some other problems with this index, because I hadn't realised that it would pick up installed ports on the host such as gtk, and rename packages e.g. freeciv -> freeciv-gtk. On the other hand, I seem to recall that we were going to switch to XFree86-4 prior to 4.6-RELEASE anyway. Now might be a good time to change over. Murray, what were your plans? Should I revert back to X-3? kris --6c2NcOVqGQ03X4Wi 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 iD8DBQE8jBH/Wry0BWjoQKURAhW+AJ9eGAswaJqmYRkQAEqsMeoererwJwCeP94s KjJItOL8qjd0Z97sPwqPrWM= =XYBt -----END PGP SIGNATURE----- --6c2NcOVqGQ03X4Wi-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 18: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 DA1BA37B400; Sun, 10 Mar 2002 18:13:06 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B2D6b23187; Sun, 10 Mar 2002 18:13:06 -0800 (PST) (envelope-from dd) Message-Id: <200203110213.g2B2D6b23187@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 18:13:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 snp.4 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2002/03/10 18:13:06 PST Modified files: (Branch: RELENG_4) share/man/man4 snp.4 Log: MFC 1.20-1.22: a few modernizations and a note that this page is still horribly outdated. Revision Changes Path 1.15.2.5 +11 -5 src/share/man/man4/snp.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 18:22:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0B21A37B416; Sun, 10 Mar 2002 18:22:47 -0800 (PST) Received: (from naddy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B2Mlo26682; Sun, 10 Mar 2002 18:22:47 -0800 (PST) (envelope-from naddy) Message-Id: <200203110222.g2B2Mlo26682@freefall.freebsd.org> From: Christian Weisgerber Date: Sun, 10 Mar 2002 18:22:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/nail Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2002/03/10 18:22:46 PST Modified files: mail/nail Makefile Log: Fix rc file. Submitted by: Jose F. Nieves Revision Changes Path 1.10 +2 -1 ports/mail/nail/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 18: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 8414D37B400; Sun, 10 Mar 2002 18:25:07 -0800 (PST) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B2P7W28199; Sun, 10 Mar 2002 18:25:07 -0800 (PST) (envelope-from jake) Message-Id: <200203110225.g2B2P7W28199@freefall.freebsd.org> From: Jake Burkholder Date: Sun, 10 Mar 2002 18:25:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/platforms sparc.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 jake 2002/03/10 18:25:07 PST Modified files: en/platforms sparc.sgml Log: Add a note about perl working now. Yay. Revision Changes Path 1.8 +5 -1 www/en/platforms/sparc.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 18:37: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 782D237B419; Sun, 10 Mar 2002 18:37:19 -0800 (PST) Received: (from tmm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B2bJ330168; Sun, 10 Mar 2002 18:37:19 -0800 (PST) (envelope-from tmm) Message-Id: <200203110237.g2B2bJ330168@freefall.freebsd.org> From: Thomas Moestl Date: Sun, 10 Mar 2002 18:37:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/gem if_gem_pci.c src/sys/dev/hme if_hme_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 tmm 2002/03/10 18:37:19 PST Modified files: sys/dev/gem if_gem_pci.c sys/dev/hme if_hme_pci.c Log: Use the pci_enable_* functions instead of manually fiddling with the command register. Pointed out by: msmith Revision Changes Path 1.3 +4 -6 src/sys/dev/gem/if_gem_pci.c 1.2 +4 -6 src/sys/dev/hme/if_hme_pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 18:37: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 BA09037B416; Sun, 10 Mar 2002 18:37:34 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B2bYa30214; Sun, 10 Mar 2002 18:37:34 -0800 (PST) (envelope-from dd) Message-Id: <200203110237.g2B2bYa30214@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 18:37:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys user.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 dd 2002/03/10 18:37:34 PST Modified files: sys/sys user.h Log: Don't depend on ucred.h to include sys/queue.h for us. Revision Changes Path 1.46 +2 -1 src/sys/sys/user.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 18:40:27 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 C460437B402; Sun, 10 Mar 2002 18:39:33 -0800 (PST) Received: by mao.stokely.org (Postfix, from userid 2074) id 9E0624B6A6; Sun, 10 Mar 2002 18:39:28 -0800 (PST) Date: Sun, 10 Mar 2002 18:39:28 -0800 From: murray@stokely.org To: Kris Kennaway Cc: Dmitry Sivachenko , Kris Kennaway , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, re@FreeBSD.org Subject: Re: cvs commit: ports INDEX Message-ID: <20020311023928.GC5534@freebsdmall.com> References: <200203100157.g2A1vFm21964@freefall.freebsd.org> <20020310205909.GA623@mitya.mitya.static.dol.ru> <20020310181007.A2332@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020310181007.A2332@xor.obsecurity.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 Sun, Mar 10, 2002 at 06:10:07PM -0800, Kris Kennaway wrote: > Oops..there were also some other problems with this index, because I > hadn't realised that it would pick up installed ports on the host such > as gtk, and rename packages e.g. freeciv -> freeciv-gtk. > > On the other hand, I seem to recall that we were going to switch to > XFree86-4 prior to 4.6-RELEASE anyway. Now might be a good time to > change over. Murray, what were your plans? Should I revert back to > X-3? I would _really_ like to see XFree86 4.2 shipped with 4.6-RELEASE, but that can only happen if we get it into current very soon. David O'Brien is working on this directly and can probably answer your question better. I'm not sure how quickly he plans to make the sysinstall changes. David? - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 18:45:41 2002 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-239.dsl.lsan03.pacbell.net [64.165.226.239]) by hub.freebsd.org (Postfix) with ESMTP id D48A837B417; Sun, 10 Mar 2002 18:45:26 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 878F166C76; Sun, 10 Mar 2002 18:45:22 -0800 (PST) Date: Sun, 10 Mar 2002 18:45:22 -0800 From: Kris Kennaway To: murray@stokely.org Cc: Kris Kennaway , Dmitry Sivachenko , Kris Kennaway , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, re@FreeBSD.org, obrien@FreeBSD.org Subject: Re: cvs commit: ports INDEX Message-ID: <20020310184521.A3276@xor.obsecurity.org> References: <200203100157.g2A1vFm21964@freefall.freebsd.org> <20020310205909.GA623@mitya.mitya.static.dol.ru> <20020310181007.A2332@xor.obsecurity.org> <20020311023928.GC5534@freebsdmall.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="oyUTqETQ0mS9luUI" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020311023928.GC5534@freebsdmall.com>; from murray@stokely.org on Sun, Mar 10, 2002 at 06:39:28PM -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 --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Mar 10, 2002 at 06:39:28PM -0800, murray@stokely.org wrote: > On Sun, Mar 10, 2002 at 06:10:07PM -0800, Kris Kennaway wrote: > > Oops..there were also some other problems with this index, because I > > hadn't realised that it would pick up installed ports on the host such > > as gtk, and rename packages e.g. freeciv -> freeciv-gtk. > >=20 > > On the other hand, I seem to recall that we were going to switch to > > XFree86-4 prior to 4.6-RELEASE anyway. Now might be a good time to > > change over. Murray, what were your plans? Should I revert back to > > X-3? >=20 > I would _really_ like to see XFree86 4.2 shipped with 4.6-RELEASE, > but that can only happen if we get it into current very soon. David > O'Brien is working on this directly and can probably answer your > question better. I'm not sure how quickly he plans to make the > sysinstall changes. David? If it's going to be done in time for the developer release then I'd like to just leave the packages building with X-4 in both branches and make the switch in the ports collection now. Kris --oyUTqETQ0mS9luUI 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 iD8DBQE8jBpBWry0BWjoQKURAop0AKDz5zQLaK8Q1lsycjcpSU5pHeyF8wCg66Or LQCK7No9MQYvPSgxYS8MBBs= =ifPB -----END PGP SIGNATURE----- --oyUTqETQ0mS9luUI-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 18:49:16 2002 Delivered-To: cvs-all@freebsd.org Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by hub.freebsd.org (Postfix) with ESMTP id DBA6D37B400; Sun, 10 Mar 2002 18:49:09 -0800 (PST) Received: from owt.com (owt-207-41-94-232.owt.com [207.41.94.232]) by rutger.owt.com (8.9.3/8.9.3) with ESMTP id SAA11719; Sun, 10 Mar 2002 18:48:49 -0800 Message-ID: <3C8C1B10.3010401@owt.com> Date: Sun, 10 Mar 2002 18:48:48 -0800 From: Kent Stewart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1 X-Accept-Language: en-us, es-mx MIME-Version: 1.0 To: murray@stokely.org Cc: Kris Kennaway , Dmitry Sivachenko , Kris Kennaway , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, re@FreeBSD.ORG Subject: Re: cvs commit: ports INDEX References: <200203100157.g2A1vFm21964@freefall.freebsd.org> <20020310205909.GA623@mitya.mitya.static.dol.ru> <20020310181007.A2332@xor.obsecurity.org> <20020311023928.GC5534@freebsdmall.com> 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 murray@stokely.org wrote: > On Sun, Mar 10, 2002 at 06:10:07PM -0800, Kris Kennaway wrote: > >>Oops..there were also some other problems with this index, because I >>hadn't realised that it would pick up installed ports on the host such >>as gtk, and rename packages e.g. freeciv -> freeciv-gtk. >> >>On the other hand, I seem to recall that we were going to switch to >>XFree86-4 prior to 4.6-RELEASE anyway. Now might be a good time to >>change over. Murray, what were your plans? Should I revert back to >>X-3? >> > > I would _really_ like to see XFree86 4.2 shipped with 4.6-RELEASE, > but that can only happen if we get it into current very soon. David > O'Brien is working on this directly and can probably answer your > question better. I'm not sure how quickly he plans to make the > sysinstall changes. David? I personally don't think you should do it until you have an XFree86 4.2 meta port. The mega port is a monster that hasn't been tamed yet and I don't plan on switching until then. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 18:50: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 89FE937B404; Sun, 10 Mar 2002 18:50:03 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B2o3S34177; Sun, 10 Mar 2002 18:50:03 -0800 (PST) (envelope-from obrien) Message-Id: <200203110250.g2B2o3S34177@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 10 Mar 2002 18:50:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/perl/libperl config.SH-elf.sparc64 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/03/10 18:50:03 PST Modified files: gnu/usr.bin/perl/libperl config.SH-elf.sparc64 Log: Wrong spelling of PIC. Submitted by: jake Revision Changes Path 1.5 +1 -1 src/gnu/usr.bin/perl/libperl/config.SH-elf.sparc64 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 18:53: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5610337B400; Sun, 10 Mar 2002 18:53:03 -0800 (PST) Received: (from tmm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B2r3H35244; Sun, 10 Mar 2002 18:53:03 -0800 (PST) (envelope-from tmm) Message-Id: <200203110253.g2B2r3H35244@freefall.freebsd.org> From: Thomas Moestl Date: Sun, 10 Mar 2002 18:53:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sparc64/sys __sparc_utrap_gen.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 tmm 2002/03/10 18:53:03 PST Modified files: lib/libc/sparc64/sys __sparc_utrap_gen.S Log: Save/restore the %y register around calls to the C user trap handler; gcc emits the deprecated sparc v8 instructions that use this register when optimizing for UltraSparc machines because they are apparetly faster then their v9 counterpars there. Revision Changes Path 1.3 +4 -0 src/lib/libc/sparc64/sys/__sparc_utrap_gen.S To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 19: 3: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 043D137B400; Sun, 10 Mar 2002 19:03:36 -0800 (PST) Received: (from tmm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B33Z539446; Sun, 10 Mar 2002 19:03:35 -0800 (PST) (envelope-from tmm) Message-Id: <200203110303.g2B33Z539446@freefall.freebsd.org> From: Thomas Moestl Date: Sun, 10 Mar 2002 19:03:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include instr.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 tmm 2002/03/10 19:03:35 PST Modified files: sys/sparc64/include instr.h Log: Add convenience macros to extract the cc0 and cc1 from format 2 and 3 instructions. Revision Changes Path 1.3 +6 -0 src/sys/sparc64/include/instr.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 19: 4: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 432FD37B416; Sun, 10 Mar 2002 19:04:28 -0800 (PST) Received: (from tmm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B34Sp39506; Sun, 10 Mar 2002 19:04:28 -0800 (PST) (envelope-from tmm) Message-Id: <200203110304.g2B34Sp39506@freefall.freebsd.org> From: Thomas Moestl Date: Sun, 10 Mar 2002 19:04:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include fsr.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 tmm 2002/03/10 19:04:28 PST Modified files: sys/sparc64/include fsr.h Log: Fix the type of some constants, and make some macros safer by casting the argument. Revision Changes Path 1.2 +18 -18 src/sys/sparc64/include/fsr.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 19: 8: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 49E2537B402; Sun, 10 Mar 2002 19:08:17 -0800 (PST) Received: (from simokawa@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B38He44167; Sun, 10 Mar 2002 19:08:17 -0800 (PST) (envelope-from simokawa) Message-Id: <200203110308.g2B38He44167@freefall.freebsd.org> From: Hidetoshi Shimokawa Date: Sun, 10 Mar 2002 19:08:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/cam/scsi scsi_all.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 19:08:17 PST Modified files: sys/cam/scsi scsi_all.c Log: Add support for Simplified Direct Access Device in scsi_op_desc(). Revision Changes Path 1.30 +4 -0 src/sys/cam/scsi/scsi_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 Mar 10 19: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 A002737B402; Sun, 10 Mar 2002 19:10:55 -0800 (PST) Received: (from tmm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B3Atq45229; Sun, 10 Mar 2002 19:10:55 -0800 (PST) (envelope-from tmm) Message-Id: <200203110310.g2B3Atq45229@freefall.freebsd.org> From: Thomas Moestl Date: Sun, 10 Mar 2002 19:10:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sparc64/gen fixunsdfsi.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 tmm 2002/03/10 19:10:55 PST Modified files: lib/libc/sparc64/gen fixunsdfsi.S Log: Fix __dtoul to work on sparc64 (it used a half-way v8 stack layout), and make it PIC-aware. Revision Changes Path 1.2 +13 -13 src/lib/libc/sparc64/gen/fixunsdfsi.S To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 19:11:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8DFDC37B416; Sun, 10 Mar 2002 19:11:03 -0800 (PST) Received: (from green@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B3B3o45243; Sun, 10 Mar 2002 19:11:03 -0800 (PST) (envelope-from green) Message-Id: <200203110311.g2B3B3o45243@freefall.freebsd.org> From: Brian Feldman Date: Sun, 10 Mar 2002 19:11:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Tools/scripts 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 green 2002/03/10 19:11:03 PST Modified files: Tools/scripts plist Log: Reenable use of the -M option and add a -d option to put @dirrm commands at the end of the plist. Revision Changes Path 1.4 +18 -5 ports/Tools/scripts/plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 19:13: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E5F4537B402; Sun, 10 Mar 2002 19:13:02 -0800 (PST) Received: (from tmm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B3D2j45686; Sun, 10 Mar 2002 19:13:02 -0800 (PST) (envelope-from tmm) Message-Id: <200203110313.g2B3D2j45686@freefall.freebsd.org> From: Thomas Moestl Date: Sun, 10 Mar 2002 19:13:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sparc64/gen assym.s modf.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 tmm 2002/03/10 19:13:02 PST Modified files: lib/libc/sparc64/gen assym.s modf.S Log: Account for no longer being usable for assembler code. Revision Changes Path 1.3 +3 -0 src/lib/libc/sparc64/gen/assym.s 1.2 +3 -2 src/lib/libc/sparc64/gen/modf.S To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 19:18: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 5812437B404; Sun, 10 Mar 2002 19:18:17 -0800 (PST) Received: (from tmm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B3IHK47282; Sun, 10 Mar 2002 19:18:17 -0800 (PST) (envelope-from tmm) Message-Id: <200203110318.g2B3IHK47282@freefall.freebsd.org> From: Thomas Moestl Date: Sun, 10 Mar 2002 19:18:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sparc64/fpu fpu.c fpu_compare.c fpu_emu.h fpu_extern.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG tmm 2002/03/10 19:18:17 PST Modified files: lib/libc/sparc64/fpu fpu.c fpu_compare.c fpu_emu.h fpu_extern.h Log: Fix some bugs that would prevent %fsr to be set correctly, and add support for fcmp and fcmpe instructions with a condition code specification other than %fcc0. This (primarily the first part) seems to fix a lot of problems that people were seeing, e.g. perl and gawk failures. Reported and analyzed by: wollman Revision Changes Path 1.2 +5 -4 src/lib/libc/sparc64/fpu/fpu.c 1.2 +18 -2 src/lib/libc/sparc64/fpu/fpu_compare.c 1.2 +1 -1 src/lib/libc/sparc64/fpu/fpu_emu.h 1.2 +1 -1 src/lib/libc/sparc64/fpu/fpu_extern.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 19:44: 6 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 6D25E37B417; Sun, 10 Mar 2002 19:44:02 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2B3i2lv043571; Sun, 10 Mar 2002 19:44:02 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2B3glEA043553; Sun, 10 Mar 2002 19:42:47 -0800 (PST) Date: Sun, 10 Mar 2002 19:42:47 -0800 From: "David O'Brien" To: Kris Kennaway Cc: Dmitry Sivachenko , Kris Kennaway , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, re@FreeBSD.org Subject: Re: cvs commit: ports INDEX Message-ID: <20020310194247.A43524@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200203100157.g2A1vFm21964@freefall.freebsd.org> <20020310205909.GA623@mitya.mitya.static.dol.ru> <20020310181007.A2332@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020310181007.A2332@xor.obsecurity.org>; from kris@obsecurity.org on Sun, Mar 10, 2002 at 06:10:07PM -0800 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Mar 10, 2002 at 06:10:07PM -0800, Kris Kennaway wrote: > On the other hand, I seem to recall that we were going to switch to > XFree86-4 prior to 4.6-RELEASE anyway. Now might be a good time to > change over. Murray, what were your plans? Should I revert back to > X-3? Please do not do it now for releng4. This change has some serious concenquences for releng4 that I really think we want to try it only in -current first. And when it is changed for releng4 it definately needs some "HEADS UPS". To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 19:48: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 57A0A37B400; Sun, 10 Mar 2002 19:48:32 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B3mWe50987; Sun, 10 Mar 2002 19:48:32 -0800 (PST) (envelope-from dd) Message-Id: <200203110348.g2B3mWe50987@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 19:48:32 -0800 (PST) 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/03/10 19:48:32 PST Modified files: sys/dev/snp snp.c Log: Make the diagnostics printfs less ugly. Revision Changes Path 1.70 +6 -4 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 Sun Mar 10 19:56: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 159AC37B416; Sun, 10 Mar 2002 19:56:21 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B3uLV52043; Sun, 10 Mar 2002 19:56:21 -0800 (PST) (envelope-from kris) Message-Id: <200203110356.g2B3uLV52043@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 10 Mar 2002 19:56:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Tools/portbuild/scripts makeindex X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 19:56:20 PST Modified files: Tools/portbuild/scripts makeindex Log: Zap support for 2.2 and 3.x Revision Changes Path 1.11 +0 -12 ports/Tools/portbuild/scripts/makeindex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 20: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 0E0B937B400; Sun, 10 Mar 2002 20:20:38 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B4Kc658519; Sun, 10 Mar 2002 20:20:38 -0800 (PST) (envelope-from obrien) Message-Id: <200203110420.g2B4Kc658519@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 10 Mar 2002 20:20:38 -0800 (PST) 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 obrien 2002/03/10 20:20:38 PST Modified files: sbin/disklabel disklabel.c Log: * Support the Sparc64. * Do not default to any particular platform. Require that we explicitly support a particular platform. Revision Changes Path 1.42 +5 -7 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 Mar 10 20:27:14 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 5F13C37B404; Sun, 10 Mar 2002 20:26:58 -0800 (PST) Received: (from jhay@localhost) by zibbi.icomtek.csir.co.za (8.11.6/8.11.6) id g2B4QtF46559; Mon, 11 Mar 2002 06:26:55 +0200 (SAT) (envelope-from jhay) From: John Hay Message-Id: <200203110426.g2B4QtF46559@zibbi.icomtek.csir.co.za> Subject: Re: cvs commit: src/usr.bin Makefile In-Reply-To: <200203102115.g2ALFwD62469@freefall.freebsd.org> from Mark Murray at "Mar 10, 2002 01:15:58 pm" To: markm@FreeBSD.org (Mark Murray) Date: Mon, 11 Mar 2002 06:26:55 +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 > markm 2002/03/10 13:15:58 PST > > Modified files: > usr.bin Makefile > Log: > Don't build xlint until surgery is finished. > Uhm, this surgery, does it also involve -stable? My -stable make release died in the cvs checkout phase with: ###################################################################### cvs checkout: Updating src/usr.bin/xlint/arch cvs checkout: Updating src/usr.bin/xlint/arch/alpha cvs checkout: Updating src/usr.bin/xlint/arch/arm cvs checkout: Updating src/usr.bin/xlint/arch/i386 cvs checkout: Updating src/usr.bin/xlint/arch/m68000 cvs checkout: Updating src/usr.bin/xlint/arch/m68k cvs checkout: Updating src/usr.bin/xlint/arch/mips cvs checkout: Updating src/usr.bin/xlint/arch/ns32k cvs checkout: Updating src/usr.bin/xlint/arch/powerpc cvs checkout: Updating src/usr.bin/xlint/arch/sh3 cvs checkout: Updating src/usr.bin/xlint/arch/sparc cvs checkout: Updating src/usr.bin/xlint/arch/sparc64 cvs checkout: Updating src/usr.bin/xlint/arch/vax cvs checkout: Updating src/usr.bin/xlint/arch/x86_64 cvs checkout: Updating src/usr.bin/xlint/common cvs checkout: Updating src/usr.bin/xlint/lint1 U src/usr.bin/xlint/lint1/Makefile cvs [checkout aborted]: could not find desired version 1.2 in /home/ncvs/src/usr.bin/xlint/lint1/cgram.y,v *** Error code 1 Stop in /usr/src/release. End Mon Mar 11 06:23:57 SAST 2002 ###################################################################### -- 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 Sun Mar 10 20:41: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 2A14B37B402; Sun, 10 Mar 2002 20:41:43 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B4fhe61103; Sun, 10 Mar 2002 20:41:43 -0800 (PST) (envelope-from obrien) Message-Id: <200203110441.g2B4fhe61103@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 10 Mar 2002 20:41:43 -0800 (PST) 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 obrien 2002/03/10 20:41:43 PST Modified files: sbin/disklabel disklabel.c Log: Add complete Sparc64 support. Submitted by: tmm Dike out vax support. Revision Changes Path 1.43 +64 -17 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 Mar 10 21:15: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 8AA9337B41A; Sun, 10 Mar 2002 21:15:44 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B5FiA69000; Sun, 10 Mar 2002 21:15:44 -0800 (PST) (envelope-from luigi) Message-Id: <200203110515.g2B5FiA69000@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 10 Mar 2002 21:15:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/mfs_tree/stand update X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 21:15:44 PST Modified files: release/picobsd/mfs_tree/stand update Log: Use machdep.guessed_bootdev to guess the boot device. Revision Changes Path 1.5 +3 -3 src/release/picobsd/mfs_tree/stand/update To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 21:42: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 B594F37B41B; Sun, 10 Mar 2002 21:42:14 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B5gEq72013; Sun, 10 Mar 2002 21:42:14 -0800 (PST) (envelope-from luigi) Message-Id: <200203110542.g2B5gEq72013@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 10 Mar 2002 21:42:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/floppy.tree/etc profile X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 21:42:14 PST Modified files: release/picobsd/floppy.tree/etc profile Log: Default to ee as EDITOR (some apps such as disklabel default to "vi" which is not available). Revision Changes Path 1.3 +1 -0 src/release/picobsd/floppy.tree/etc/profile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 21:42: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 730C137B405; Sun, 10 Mar 2002 21:42:46 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B5gkT72080; Sun, 10 Mar 2002 21:42:46 -0800 (PST) (envelope-from luigi) Message-Id: <200203110542.g2B5gkT72080@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 10 Mar 2002 21:42:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/floppy.tree/etc profile 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/03/10 21:42:46 PST Modified files: (Branch: RELENG_4) release/picobsd/floppy.tree/etc profile Log: MFC: default to "ee" as EDITOR. Revision Changes Path 1.1.4.2 +1 -0 src/release/picobsd/floppy.tree/etc/profile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 21:46: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 E423A37B419; Sun, 10 Mar 2002 21:46:18 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B5kIl72491; Sun, 10 Mar 2002 21:46:18 -0800 (PST) (envelope-from luigi) Message-Id: <200203110546.g2B5kIl72491@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 10 Mar 2002 21:46:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/build config X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 21:46:18 PST Modified files: release/picobsd/build config Log: Make appropriate changes to use devfs. Add a reference to the fd_size variable to set floppy size. Revision Changes Path 1.3 +6 -4 src/release/picobsd/build/config To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 21:54: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 9C0D737B400; Sun, 10 Mar 2002 21:54:22 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B5sMw73501; Sun, 10 Mar 2002 21:54:22 -0800 (PST) (envelope-from luigi) Message-Id: <200203110554.g2B5sMw73501@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 10 Mar 2002 21:54:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/build picobsd X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 21:54:22 PST Modified files: release/picobsd/build picobsd Log: Fix detection of existing ssh host key, generate the new one in floppy.tree instead of mfs_tree. Do not cleanup ${BUILDDIR}/floppy.tree, it might be useful to look at it after an image has been built. Revision Changes Path 1.23 +15 -11 src/release/picobsd/build/picobsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 21:55:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4D98B37B404; Sun, 10 Mar 2002 21:55:15 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B5tFp73596; Sun, 10 Mar 2002 21:55:15 -0800 (PST) (envelope-from luigi) Message-Id: <200203110555.g2B5tFp73596@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 10 Mar 2002 21:55:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/build picobsd 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/03/10 21:55:15 PST Modified files: (Branch: RELENG_4) release/picobsd/build picobsd Log: MFC: sync with -current. Revision Changes Path 1.1.2.23 +11 -10 src/release/picobsd/build/picobsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 22:18:26 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.nsu.ru (mx.nsu.ru [193.124.215.71]) by hub.freebsd.org (Postfix) with ESMTP id 2670237B400; Sun, 10 Mar 2002 22:18:20 -0800 (PST) Received: from regency.nsu.ru ([193.124.210.26] helo=cytherea.weblab.nsu.ru) by mail.nsu.ru with esmtp (Exim 3.20 #1) id 16kJ8S-0006Ah-00; Mon, 11 Mar 2002 12:18:16 +0600 Received: (from danfe@localhost) by cytherea.weblab.nsu.ru (8.11.6/8.11.6) id g2B6IMu55528; Mon, 11 Mar 2002 12:18:22 +0600 (NOVT) (envelope-from danfe) Date: Mon, 11 Mar 2002 12:18:21 +0600 From: Alexey Dokuchaev To: Robert Watson Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/etc syslog.conf Message-ID: <20020311121821.A54340@cytherea.weblab.nsu.ru> References: <200203101520.g2AFKaG92208@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: <200203101520.g2AFKaG92208@freefall.freebsd.org>; from rwatson@freebsd.org on Sun, Mar 10, 2002 at 07:20:36AM -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 On Sun, Mar 10, 2002 at 07:20:36AM -0800, Robert Watson wrote: > rwatson 2002/03/10 07:20:36 PST > > Modified files: > etc syslog.conf > Log: > /var/log/security gets almost no (if not no) activity on many FreeBSD > systems due to sshd not using the security log class. Tweak syslog.conf > so that /var/log/security also gets a useful set of > authentication-related logging. Well, on most systems, it gets IPFW stats, and, on mine at least, it also logs spy(4) module output. It really gets a lot of attention ;-) ./danfe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 22:40: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 540C537B405; Sun, 10 Mar 2002 22:40:07 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B6e7u84832; Sun, 10 Mar 2002 22:40:07 -0800 (PST) (envelope-from ade) Message-Id: <200203110640.g2B6e7u84832@freefall.freebsd.org> From: Ade Lovett Date: Sun, 10 Mar 2002 22:40:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/esound 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 ade 2002/03/10 22:40:07 PST Modified files: audio/esound Makefile distinfo Log: Fix silly typo in last commit. Revision Changes Path 1.30 +1 -1 ports/audio/esound/Makefile 1.13 +1 -1 ports/audio/esound/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 22:45: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 772AD37B400; Sun, 10 Mar 2002 22:45:31 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B6jV085633; Sun, 10 Mar 2002 22:45:31 -0800 (PST) (envelope-from obrien) Message-Id: <200203110645.g2B6jV085633@freefall.freebsd.org> From: "David E. O'Brien" Date: Sun, 10 Mar 2002 22:45:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/aic7xxx/aicasm 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/03/10 22:45:31 PST Modified files: sys/dev/aic7xxx/aicasm Makefile Log: Due to changes in the handling of the #line directive by GCC(cpp) 3.1, we must now explicitly list the source directory with -I. Revision Changes Path 1.10 +2 -2 src/sys/dev/aic7xxx/aicasm/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 22: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 BF66B37B405; Sun, 10 Mar 2002 22:50:28 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B6oSK86366; Sun, 10 Mar 2002 22:50:28 -0800 (PST) (envelope-from luigi) Message-Id: <200203110650.g2B6oSK86366@freefall.freebsd.org> From: Luigi Rizzo Date: Sun, 10 Mar 2002 22:50:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/sysctl sysctl.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/10 22:50:28 PST Modified files: sbin/sysctl sysctl.c Log: Make the handling of machdep.guessed_bootdev compiled on i386 only. Revision Changes Path 1.43 +7 -1 src/sbin/sysctl/sysctl.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 23: 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 5ECCD37B416; Sun, 10 Mar 2002 23:09:43 -0800 (PST) Received: (from benno@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B79h092525; Sun, 10 Mar 2002 23:09:43 -0800 (PST) (envelope-from benno) Message-Id: <200203110709.g2B79h092525@freefall.freebsd.org> From: Benno Rice Date: Sun, 10 Mar 2002 23:09:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/powerpc/powerpc 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 benno 2002/03/10 23:09:43 PST Modified files: sys/powerpc/powerpc pmap.c Log: Correct a typo. (* that should've been &) Revision Changes Path 1.20 +1 -1 src/sys/powerpc/powerpc/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 10 23:32: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 F228137B404; Sun, 10 Mar 2002 23:32:55 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B7Wtp96342; Sun, 10 Mar 2002 23:32:55 -0800 (PST) (envelope-from dd) Message-Id: <200203110732.g2B7Wtp96342@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 10 Mar 2002 23:32:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en docs.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 dd 2002/03/10 23:32:55 PST Modified files: en docs.sgml Log: Update manual page links after 4.5-RELEASE. PR: 35733 Submitted by: Alex Dupre Revision Changes Path 1.140 +3 -2 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 Sun Mar 10 23: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 C019837B405; Sun, 10 Mar 2002 23:51:08 -0800 (PST) Received: (from tanimura@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B7p8J01667; Sun, 10 Mar 2002 23:51:08 -0800 (PST) (envelope-from tanimura) Message-Id: <200203110751.g2B7p8J01667@freefall.freebsd.org> From: Seigo Tanimura Date: Sun, 10 Mar 2002 23:51:08 -0800 (PST) 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 tanimura 2002/03/10 23:51:08 PST Modified files: sys/kern kern_exit.c Log: Do not lock the pgrpsess_lock exclusively across ttywait(). Spotted by: David Wolfskill Investigated by: rwatson Revision Changes Path 1.150 +2 -0 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 Sun Mar 10 23:53: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 19A1937B41E; Sun, 10 Mar 2002 23:53:14 -0800 (PST) Received: (from tanimura@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B7rED01991; Sun, 10 Mar 2002 23:53:14 -0800 (PST) (envelope-from tanimura) Message-Id: <200203110753.g2B7rED01991@freefall.freebsd.org> From: Seigo Tanimura Date: Sun, 10 Mar 2002 23:53:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_prot.c subr_prf.c tty.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 tanimura 2002/03/10 23:53:14 PST Modified files: sys/kern kern_prot.c subr_prf.c tty.c vfs_vnops.c Log: Stop abusing the pgrpsess_lock. Revision Changes Path 1.140 +0 -2 src/sys/kern/kern_prot.c 1.78 +2 -4 src/sys/kern/subr_prf.c 1.166 +3 -3 src/sys/kern/tty.c 1.137 +3 -3 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 Sun Mar 10 23:57:37 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.nsu.ru (mx.nsu.ru [193.124.215.71]) by hub.freebsd.org (Postfix) with ESMTP id 84F6A37B402; Sun, 10 Mar 2002 23:57:31 -0800 (PST) Received: from regency.nsu.ru ([193.124.210.26] helo=cytherea.weblab.nsu.ru) by mail.nsu.ru with esmtp (Exim 3.20 #1) id 16kKgR-0004F7-00; Mon, 11 Mar 2002 13:57:27 +0600 Received: (from danfe@localhost) by cytherea.weblab.nsu.ru (8.11.6/8.11.6) id g2B7vSZ72663; Mon, 11 Mar 2002 13:57:28 +0600 (NOVT) (envelope-from danfe) Date: Mon, 11 Mar 2002 13:57:28 +0600 From: Alexey Dokuchaev To: Kris Kennaway Cc: Dmitry Sivachenko , Kris Kennaway , cvs-committers@freebsd.org, cvs-all@freebsd.org, re@freebsd.org Subject: Re: cvs commit: ports INDEX Message-ID: <20020311135728.B54340@cytherea.weblab.nsu.ru> References: <200203100157.g2A1vFm21964@freefall.freebsd.org> <20020310205909.GA623@mitya.mitya.static.dol.ru> <20020310181007.A2332@xor.obsecurity.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: <20020310181007.A2332@xor.obsecurity.org>; from kris@obsecurity.org on Sun, Mar 10, 2002 at 06:10:07PM -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 On Sun, Mar 10, 2002 at 06:10:07PM -0800, Kris Kennaway wrote: > On Sun, Mar 10, 2002 at 11:59:09PM +0300, Dmitry Sivachenko wrote: > > On Sat, Mar 09, 2002 at 05:57:15PM -0800, Kris Kennaway wrote: > > > kris 2002/03/09 17:57:15 PST > > > > > > Modified files: > > > . INDEX > > > Log: > > > New INDEX file with 6672 ports. > > > > > > Revision Changes Path > > > 1.356 +3846 -3644 ports/INDEX > > > > > > > Previous version of INDEX has registered dependencies on XFree86-3.3.6 port, > > but current version has registered dependencies on XFree86-4.1.0 port. > > > > Why? I always thought we officially support X version 3... > > > > Oops..there were also some other problems with this index, because I > hadn't realised that it would pick up installed ports on the host such > as gtk, and rename packages e.g. freeciv -> freeciv-gtk. > > On the other hand, I seem to recall that we were going to switch to > XFree86-4 prior to 4.6-RELEASE anyway. Now might be a good time to > change over. Murray, what were your plans? Should I revert back to > X-3? I tend to agree, X-3 is actually pretty obsolete right now, and X-4 is feature-rich and stable. Then again, how about bumping 4.1.0 up to 4.2.0 ?? ./danfe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 0: 0:59 2002 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-239.dsl.lsan03.pacbell.net [64.165.226.239]) by hub.freebsd.org (Postfix) with ESMTP id 8A04437B41B; Mon, 11 Mar 2002 00:00:49 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 1AB3466C76; Mon, 11 Mar 2002 00:00:46 -0800 (PST) Date: Mon, 11 Mar 2002 00:00:45 -0800 From: Kris Kennaway To: Alexey Dokuchaev Cc: Kris Kennaway , Dmitry Sivachenko , Kris Kennaway , cvs-committers@freebsd.org, cvs-all@freebsd.org, re@freebsd.org Subject: Re: cvs commit: ports INDEX Message-ID: <20020311000045.A9060@xor.obsecurity.org> References: <200203100157.g2A1vFm21964@freefall.freebsd.org> <20020310205909.GA623@mitya.mitya.static.dol.ru> <20020310181007.A2332@xor.obsecurity.org> <20020311135728.B54340@cytherea.weblab.nsu.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="BXVAT5kNtrzKuDFl" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020311135728.B54340@cytherea.weblab.nsu.ru>; from danfe@cytherea.weblab.nsu.ru on Mon, Mar 11, 2002 at 01:57:28PM +0600 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --BXVAT5kNtrzKuDFl Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Mar 11, 2002 at 01:57:28PM +0600, Alexey Dokuchaev wrote: > I tend to agree, X-3 is actually pretty obsolete right now, and X-4 is > feature-rich and stable. Then again, how about bumping 4.1.0 up to > 4.2.0 ?? How about not repeating the same threads we've had dozens of times before (both of them)? Kris --BXVAT5kNtrzKuDFl 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 iD8DBQE8jGQtWry0BWjoQKURAnuDAKCc9YeMchU3kuUjKq4mmYAYriYslQCbB2hu t1TPuXNznJ8jHEysakcqjAQ= =WrY8 -----END PGP SIGNATURE----- --BXVAT5kNtrzKuDFl-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 0: 3:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE40137B416; Mon, 11 Mar 2002 00:03:07 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B837403371; Mon, 11 Mar 2002 00:03:07 -0800 (PST) (envelope-from luigi) Message-Id: <200203110803.g2B837403371@freefall.freebsd.org> From: Luigi Rizzo Date: Mon, 11 Mar 2002 00:03:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/router PICOBSD X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 00:03:07 PST Modified files: release/picobsd/router PICOBSD Log: Make this compile again (increase MFS size, remove invalid option). Reported-by: Bruce Montague Revision Changes Path 1.15 +6 -6 src/release/picobsd/router/PICOBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 0: 3: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 08CA737B438; Mon, 11 Mar 2002 00:03:51 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B83o503445; Mon, 11 Mar 2002 00:03:50 -0800 (PST) (envelope-from luigi) Message-Id: <200203110803.g2B83o503445@freefall.freebsd.org> From: Luigi Rizzo Date: Mon, 11 Mar 2002 00:03:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/tinyware/sps sps.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 00:03:50 PST Modified files: release/picobsd/tinyware/sps sps.c Log: Make this compile again Reported-by: Bruce Montague Revision Changes Path 1.6 +2 -2 src/release/picobsd/tinyware/sps/sps.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 0: 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 0441537B402; Mon, 11 Mar 2002 00:05:00 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B84x603619; Mon, 11 Mar 2002 00:04:59 -0800 (PST) (envelope-from phk) Message-Id: <200203110804.g2B84x603619@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 11 Mar 2002 00:04:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/cam/scsi scsi_da.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 00:04:59 PST Modified files: sys/cam/scsi scsi_da.c Log: Mark some arguments __unused. Revision Changes Path 1.100 +2 -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 Mar 11 0: 6:26 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2D27037B41B; Mon, 11 Mar 2002 00:06:24 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B86Oi07590; Mon, 11 Mar 2002 00:06:24 -0800 (PST) (envelope-from phk) Message-Id: <200203110806.g2B86Oi07590@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 11 Mar 2002 00:06:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 00:06:24 PST Modified files: sys/conf options Log: Add the GEOM option. Revision Changes Path 1.303 +1 -0 src/sys/conf/options To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 0: 8: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 73A8637B402; Mon, 11 Mar 2002 00:08:02 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B882Z07916; Mon, 11 Mar 2002 00:08:02 -0800 (PST) (envelope-from phk) Message-Id: <200203110808.g2B882Z07916@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 11 Mar 2002 00:08:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_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/03/11 00:08:02 PST Modified files: sys/kern subr_disk.c Log: Make the disk_clone() routine more robust for abuse. Sneak in a trivial bit of the GEOM stuff while we're here anyway. Revision Changes Path 1.52 +26 -33 src/sys/kern/subr_disk.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 0:12:30 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.nsu.ru (mx.nsu.ru [193.124.215.71]) by hub.freebsd.org (Postfix) with ESMTP id E8CB237B402; Mon, 11 Mar 2002 00:12:23 -0800 (PST) Received: from regency.nsu.ru ([193.124.210.26] helo=cytherea.weblab.nsu.ru) by mail.nsu.ru with esmtp (Exim 3.20 #1) id 16kKuZ-0007BE-00; Mon, 11 Mar 2002 14:12:03 +0600 Received: (from danfe@localhost) by cytherea.weblab.nsu.ru (8.11.6/8.11.6) id g2B8C9R80072; Mon, 11 Mar 2002 14:12:09 +0600 (NOVT) (envelope-from danfe) Date: Mon, 11 Mar 2002 14:12:09 +0600 From: Alexey Dokuchaev To: Kris Kennaway Cc: Dmitry Sivachenko , Kris Kennaway , cvs-committers@freebsd.org, cvs-all@freebsd.org, re@freebsd.org Subject: Re: cvs commit: ports INDEX Message-ID: <20020311141209.D54340@cytherea.weblab.nsu.ru> References: <200203100157.g2A1vFm21964@freefall.freebsd.org> <20020310205909.GA623@mitya.mitya.static.dol.ru> <20020310181007.A2332@xor.obsecurity.org> <20020311135728.B54340@cytherea.weblab.nsu.ru> <20020311000045.A9060@xor.obsecurity.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: <20020311000045.A9060@xor.obsecurity.org>; from kris@obsecurity.org on Mon, Mar 11, 2002 at 12:00:45AM -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 On Mon, Mar 11, 2002 at 12:00:45AM -0800, Kris Kennaway wrote: > On Mon, Mar 11, 2002 at 01:57:28PM +0600, Alexey Dokuchaev wrote: > > > I tend to agree, X-3 is actually pretty obsolete right now, and X-4 is > > feature-rich and stable. Then again, how about bumping 4.1.0 up to > > 4.2.0 ?? > > How about not repeating the same threads we've had dozens of times > before (both of them)? Well, *I* have not been "dozens of times" on this (what?) thread, and I had not seen any thread at all. I pretty much think that I've missed it, but I don't see how it distolerates my opinion. As for on-topic discussion, I still don't see why we must have 4.1.0 in ports (at least). ./danfe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 0:17: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 E5D4937B41D; Mon, 11 Mar 2002 00:17:24 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B8HON09291; Mon, 11 Mar 2002 00:17:24 -0800 (PST) (envelope-from ijliao) Message-Id: <200203110817.g2B8HON09291@freefall.freebsd.org> From: Ying-Chieh Liao Date: Mon, 11 Mar 2002 00:17:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/mziq 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/03/11 00:17:24 PST Modified files: audio/mziq Makefile distinfo Log: upgrade to 0.2.49 PR: 35745 Submitted by: maintainer Revision Changes Path 1.2 +2 -3 ports/audio/mziq/Makefile 1.2 +1 -1 ports/audio/mziq/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 0:18: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 2721B37B420; Mon, 11 Mar 2002 00:17:40 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B8Hek09352; Mon, 11 Mar 2002 00:17:40 -0800 (PST) (envelope-from phk) Message-Id: <200203110817.g2B8Hek09352@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 11 Mar 2002 00:17:40 -0800 (PST) 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/03/11 00:17:40 PST Modified files: sys/sys disk.h Log: Add a field to struct disk for GEOM Revision Changes Path 1.18 +2 -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 Mon Mar 11 0:20: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 0F01437B41A; Mon, 11 Mar 2002 00:20:23 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B8KN509786; Mon, 11 Mar 2002 00:20:23 -0800 (PST) (envelope-from phk) Message-Id: <200203110820.g2B8KN509786@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 11 Mar 2002 00:20:23 -0800 (PST) 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/03/11 00:20:23 PST Modified files: sys/sys bio.h Log: Augment struct bio for GEOM. Revision Changes Path 1.109 +14 -4 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 Mon Mar 11 0:24: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 F125737B41B; Mon, 11 Mar 2002 00:24:12 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B8OC510502; Mon, 11 Mar 2002 00:24:12 -0800 (PST) (envelope-from phk) Message-Id: <200203110824.g2B8OC510502@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 11 Mar 2002 00:24:12 -0800 (PST) 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 phk 2002/03/11 00:24:12 PST Modified files: sys/conf files Log: Add GEOM to conf/files. Revision Changes Path 1.609 +11 -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 Mar 11 0:27: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 141F837B405; Mon, 11 Mar 2002 00:27:24 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B8ROo11104; Mon, 11 Mar 2002 00:27:24 -0800 (PST) (envelope-from phk) Message-Id: <200203110827.g2B8ROo11104@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 11 Mar 2002 00:27:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: 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 phk 2002/03/11 00:27:24 PST Modified files: sys/i386/conf NOTES Log: Add commented out GEOM line to NOTES Revision Changes Path 1.1007 +3 -0 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 Mon Mar 11 0:30:17 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 1D74337B416; Mon, 11 Mar 2002 00:30:11 -0800 (PST) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g2B8Tonp002002; Mon, 11 Mar 2002 09:29:50 +0100 (CET) (envelope-from phk@critter.freebsd.dk) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/conf NOTES In-Reply-To: Your message of "Mon, 11 Mar 2002 00:27:24 PST." <200203110827.g2B8ROo11104@freefall.freebsd.org> Date: Mon, 11 Mar 2002 09:29:50 +0100 Message-ID: <2001.1015835390@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 <200203110827.g2B8ROo11104@freefall.freebsd.org>, Poul-Henning Kamp writes: >phk 2002/03/11 00:27:24 PST > > Modified files: > sys/i386/conf NOTES > Log: > Add commented out GEOM line to NOTES These trivial commits eliminates the need for a kernel.patch for GEOM testers, all which is needed now is to pull down the sys/geom/* files from http://phk.freebsd.dk/geom. Those files will be committed when a couple of semi-show-stopper problems have been licked. -- 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 Mar 11 0:34:46 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 AE76137B416; Mon, 11 Mar 2002 00:34:40 -0800 (PST) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 16kLKG-0007qb-00; Mon, 11 Mar 2002 10:38:36 +0200 From: Sheldon Hearn To: Michael Smith Cc: "David E. O'Brien" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/misc pci_vendors In-reply-to: Your message of "Thu, 07 Mar 2002 17:22:40 PST." <200203080122.g281Met01159@mass.dis.org> Date: Mon, 11 Mar 2002 10:38:36 +0200 Message-ID: <30168.1015835916@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, 07 Mar 2002 17:22:40 PST, Michael Smith wrote: > You should (but probably aren't, not your fault) be aware that this file > is automatically generated. I've forgotten whether it was DES or Sheldon > that is currently maintaining it; It's me, but the tool that produces the merged list is in src/tools/tools/pciid/, and I don't have a problem with other people using it to update src/share/misc/pci_vendors as and when they see fit. > in either case you're better off submitting the ID via the > yourvote.com PCI database which is used to produce our list. I just checked, and a regen of the pci_vendors file now would blow away David's addition. I'll wait a week for the next regen to give David time to submit the new entry to Craig Hart, as per: http://members.hyperlink.com.au/~chart/formail.htm Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 0:37: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 43B7B37B405; Mon, 11 Mar 2002 00:37:48 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B8bmp12318; Mon, 11 Mar 2002 00:37:48 -0800 (PST) (envelope-from maxim) Message-Id: <200203110837.g2B8bmp12318@freefall.freebsd.org> From: Maxim Konovalov Date: Mon, 11 Mar 2002 00:37:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys semctl.2 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 maxim 2002/03/11 00:37:47 PST Modified files: (Branch: RELENG_4) lib/libc/sys semctl.2 Log: MFC rev. 1.16: Add GETPID to the list of operations for which semctl(2) returns the value. Revision Changes Path 1.9.2.6 +1 -1 src/lib/libc/sys/semctl.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 0:47: 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 0FEA537B417; Mon, 11 Mar 2002 00:47:04 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B8l4714026; Mon, 11 Mar 2002 00:47:04 -0800 (PST) (envelope-from cjc) Message-Id: <200203110847.g2B8l4714026@freefall.freebsd.org> From: "Crist J. Clark" Date: Mon, 11 Mar 2002 00:47:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc src/share/man/man5 rc.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 cjc 2002/03/11 00:47:03 PST Modified files: etc rc share/man/man5 rc.conf.5 Log: Don't protect savecore(8) from being run with a bad dumpdir argument. Don't fail silently, but let savecore(8) make noise. It won't behave badly, it doesn't need protection. At the same time, allow the administrator to have dumpdev enabled while dumpdir (savecore(8)) is disabled and document how to do it. PR: conf/35725 Revision Changes Path 1.297 +9 -4 src/etc/rc 1.154 +7 -0 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 1: 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 A93BA37B400; Mon, 11 Mar 2002 01:06:34 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B96YB20347; Mon, 11 Mar 2002 01:06:34 -0800 (PST) (envelope-from mbr) Message-Id: <200203110906.g2B96YB20347@freefall.freebsd.org> From: Martin Blapp Date: Mon, 11 Mar 2002 01:06:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-tools::source::string::charset.cxx X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/03/11 01:06:34 PST Modified files: editors/openoffice/files patch-tools::source::string::charset.cxx Log: Fix one #ifdef and add two more checks Revision Changes Path 1.2 +20 -2 ports/editors/openoffice/files/patch-tools::source::string::charset.cxx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 1: 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 709D437B402; Mon, 11 Mar 2002 01:08:44 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B98iL20696; Mon, 11 Mar 2002 01:08:44 -0800 (PST) (envelope-from mbr) Message-Id: <200203110908.g2B98iL20696@freefall.freebsd.org> From: Martin Blapp Date: Mon, 11 Mar 2002 01:08:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-sal::rtl::source::strtmpl.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/03/11 01:08:44 PST Added files: editors/openoffice/files patch-sal::rtl::source::strtmpl.c Log: Fix number calculation. Patch from Tim Tretyak Revision Changes Path 1.1 +19 -0 ports/editors/openoffice/files/patch-sal::rtl::source::strtmpl.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 Mar 11 1:15: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 2BE7337B404; Mon, 11 Mar 2002 01:15:44 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B9FiV21953; Mon, 11 Mar 2002 01:15:44 -0800 (PST) (envelope-from mbr) Message-Id: <200203110915.g2B9FiV21953@freefall.freebsd.org> From: Martin Blapp Date: Mon, 11 Mar 2002 01:15:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-sal::osl::unx::system.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 mbr 2002/03/11 01:15:44 PST Added files: editors/openoffice/files patch-sal::osl::unx::system.h Log: Remove unnecessary #defines Revision Changes Path 1.1 +13 -0 ports/editors/openoffice/files/patch-sal::osl::unx::system.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 Mar 11 1:17: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 F067937B402; Mon, 11 Mar 2002 01:17:12 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B9HCE22232; Mon, 11 Mar 2002 01:17:12 -0800 (PST) (envelope-from mbr) Message-Id: <200203110917.g2B9HCE22232@freefall.freebsd.org> From: Martin Blapp Date: Mon, 11 Mar 2002 01:17:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-registry::source::regkey.cxx X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/03/11 01:17:12 PST Added files: editors/openoffice/files patch-registry::source::regkey.cxx Log: If nSubKeys is not defined, just return. Fix from Tim Tretyak Revision Changes Path 1.1 +12 -0 ports/editors/openoffice/files/patch-registry::source::regkey.cxx (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 1:18: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 5FCAA37B416; Mon, 11 Mar 2002 01:18:13 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B9ID322402; Mon, 11 Mar 2002 01:18:13 -0800 (PST) (envelope-from mbr) Message-Id: <200203110918.g2B9ID322402@freefall.freebsd.org> From: Martin Blapp Date: Mon, 11 Mar 2002 01:18:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-offapi::util::makefile.pmk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/03/11 01:18:13 PST Added files: editors/openoffice/files patch-offapi::util::makefile.pmk Log: Build unoidl too Revision Changes Path 1.1 +11 -0 ports/editors/openoffice/files/patch-offapi::util::makefile.pmk (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 1:25: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 1064937B405; Mon, 11 Mar 2002 01:25:21 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B9PLj23374; Mon, 11 Mar 2002 01:25:21 -0800 (PST) (envelope-from obrien) Message-Id: <200203110925.g2B9PLj23374@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 11 Mar 2002 01:25:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gcc31 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/03/11 01:25:21 PST Modified files: lang/gcc31 Makefile distinfo Log: Upgrade to the 9-March-2002 GCC 3.1 development snapshot. Revision Changes Path 1.113 +3 -3 ports/lang/gcc31/Makefile 1.60 +5 -5 ports/lang/gcc31/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 1:26: 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 3A71337B404; Mon, 11 Mar 2002 01:26:02 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B9Q2c23427; Mon, 11 Mar 2002 01:26:02 -0800 (PST) (envelope-from mbr) Message-Id: <200203110926.g2B9Q2c23427@freefall.freebsd.org> From: Martin Blapp Date: Mon, 11 Mar 2002 01:26:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-extensions::source::plugin::unx::makefile.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 mbr 2002/03/11 01:26:02 PST Added files: editors/openoffice/files patch-extensions::source::plugin::unx::makefile.mk Log: FreeBSD has no -ldl Revision Changes Path 1.1 +14 -0 ports/editors/openoffice/files/patch-extensions::source::plugin::unx::makefile.mk (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 1:26: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 2F0E337B405; Mon, 11 Mar 2002 01:26:08 -0800 (PST) Received: (from mux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B9Q8G23476; Mon, 11 Mar 2002 01:26:08 -0800 (PST) (envelope-from mux) Message-Id: <200203110926.g2B9Q8G23476@freefall.freebsd.org> From: Maxime Henrion Date: Mon, 11 Mar 2002 01:26:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if.c if.h if_faith.c if_gif.c if_gif.h if_loop.c if_stf.c if_vlan.c if_vlan_var.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mux 2002/03/11 01:26:08 PST Modified files: sys/net if.c if.h if_faith.c if_gif.c if_gif.h if_loop.c if_stf.c if_vlan.c if_vlan_var.h Log: Simplify the interface cloning framework by handling unit unit allocation with a bitmap in the generic layer. This allows us to get rid of the duplicated rman code in every clonable interface. Reviewed by: brooks Approved by: phk Revision Changes Path 1.133 +59 -4 src/sys/net/if.c 1.70 +7 -3 src/sys/net/if.h 1.13 +5 -49 src/sys/net/if_faith.c 1.21 +5 -46 src/sys/net/if_gif.c 1.9 +1 -2 src/sys/net/if_gif.h 1.69 +9 -55 src/sys/net/if_loop.c 1.19 +5 -47 src/sys/net/if_stf.c 1.39 +5 -46 src/sys/net/if_vlan.c 1.11 +1 -2 src/sys/net/if_vlan_var.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 1:36: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 CF68137B405; Mon, 11 Mar 2002 01:36:21 -0800 (PST) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B9aLH25962; Mon, 11 Mar 2002 01:36:21 -0800 (PST) (envelope-from sheldonh) Message-Id: <200203110936.g2B9aLH25962@freefall.freebsd.org> From: Sheldon Hearn Date: Mon, 11 Mar 2002 01:36:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/exim-devel 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 sheldonh 2002/03/11 01:36:21 PST Modified files: mail/exim-devel distinfo Log: Chase a rerolled documentation distfile. The changes were all markup specific. Revision Changes Path 1.37 +1 -1 ports/mail/exim-devel/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 1:37:48 2002 Delivered-To: cvs-all@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id D6E4837B400; Mon, 11 Mar 2002 01:37:39 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id LAA02889; Mon, 11 Mar 2002 11:37:36 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h3.228.dialup.iptcom.net [212.9.228.3]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id LAA08287; Mon, 11 Mar 2002 11:37:31 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id g2B9b0B25838; Mon, 11 Mar 2002 11:37:00 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C8C7AF5.B7E24B30@FreeBSD.org> Date: Mon, 11 Mar 2002 11:37:57 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Ade Lovett Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/audio/esound Makefile distinfo References: <200203110640.g2B6e7u84832@freefall.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ade Lovett wrote: > > ade 2002/03/10 22:40:07 PST > > Modified files: > audio/esound Makefile distinfo > Log: > Fix silly typo in last commit. Heh, it was really silly, mea culpa. Thank you for fixing! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 1: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 56A5837B400; Mon, 11 Mar 2002 01:38:32 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2B9cW026485; Mon, 11 Mar 2002 01:38:32 -0800 (PST) (envelope-from murray) Message-Id: <200203110938.g2B9cW026485@freefall.freebsd.org> From: Murray Stokely Date: Mon, 11 Mar 2002 01:38:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/releng article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2002/03/11 01:38:32 PST Modified files: en_US.ISO8859-1/articles/releng article.sgml Log: Add www/en/docs.sgml to the version bump list, so we don't forget to add a link to the online man pages for the new release. Revision Changes Path 1.16 +5 -0 doc/en_US.ISO8859-1/articles/releng/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 2: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 61B1837B404; Mon, 11 Mar 2002 02:11:00 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BAB0I35716; Mon, 11 Mar 2002 02:11:00 -0800 (PST) (envelope-from phk) Message-Id: <200203111011.g2BAB0I35716@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 11 Mar 2002 02:11:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/gnu/ext2fs ext2_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/03/11 02:11:00 PST Modified files: sys/gnu/ext2fs ext2_vfsops.c Log: Remove use of the bogus ioctl DIOCGPART. It was used to initialize an unused variable, because ext2fs was copy&pasted from UFS rather than copy,paste&cleaned from UFS. Suggested by: bde Revision Changes Path 1.86 +1 -11 src/sys/gnu/ext2fs/ext2_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 Mar 11 2: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 5D78037B400; Mon, 11 Mar 2002 02:12:04 -0800 (PST) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BAC4v35964; Mon, 11 Mar 2002 02:12:04 -0800 (PST) (envelope-from jkoshy) Message-Id: <200203111012.g2BAC4v35964@freefall.freebsd.org> From: Joseph Koshy Date: Mon, 11 Mar 2002 02:12:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/yudit 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 jkoshy 2002/03/11 02:12:04 PST Modified files: editors/yudit Makefile distinfo pkg-plist Log: Update to v2.5.4. Take over maintainership. Approved by: Richard (MAINTAINER) Revision Changes Path 1.18 +4 -15 ports/editors/yudit/Makefile 1.7 +1 -1 ports/editors/yudit/distinfo 1.7 +303 -116 ports/editors/yudit/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 Mar 11 2: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 2ED4337B404; Mon, 11 Mar 2002 02:25:30 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BAPUG38140; Mon, 11 Mar 2002 02:25:30 -0800 (PST) (envelope-from luigi) Message-Id: <200203111025.g2BAPUG38140@freefall.freebsd.org> From: Luigi Rizzo Date: Mon, 11 Mar 2002 02:25:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/etherboot/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 luigi 2002/03/11 02:25:30 PST Modified files: net/etherboot/files patch-aa Log: Keep in sync the partition type recognized by this code, and the partition type stored in the fake partition table at the end of this boot sector. Revision Changes Path 1.12 +11 -2 ports/net/etherboot/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 Mar 11 2:27: 4 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 AF0B337B416; Mon, 11 Mar 2002 02:26:56 -0800 (PST) Received: by a96180.upc-a.chello.nl (Postfix, from userid 1001) id 66D50218E; Mon, 11 Mar 2002 11:26:51 +0100 (CET) Date: Mon, 11 Mar 2002 11:26:51 +0100 From: Jeroen Ruigrok/asmodai To: Bernd Walter Cc: David O'Brien , Maxim Sobolev , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/mozilla Makefile pkg-plist Message-ID: <20020311102650.GY19043@daemon.ninth-circle.org> References: <200202182004.g1IK47h44025@freefall.freebsd.org> <20020306171415.A74957@hub.freebsd.org> <3C8734F1.7EFE1385@FreeBSD.org> <20020307020542.A60411@dragon.nuxi.com> <3C873D61.16340759@FreeBSD.org> <20020307021858.C60411@dragon.nuxi.com> <20020308033212.GE706@cicely8.cicely.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020308033212.GE706@cicely8.cicely.de> User-Agent: Mutt/1.3.24i 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 [20020308 04:45], Bernd Walter (ticso@cicely8.cicely.de) wrote: >I was running mozilla+ipv6 0.97 before and crashes happened rarely. >The next I used was mozilla 0.98 (Makefile Rev 1.81) and crashes became >much more often. 0.9.8 has known problems with parsing certain javascript constructs which make it crash. These have been fixed on the trunk and in the daily builds. -- 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/ I succeed him; no one could replace him... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 2:36: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 75F8037B402; Mon, 11 Mar 2002 02:36:27 -0800 (PST) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BAaR040250; Mon, 11 Mar 2002 02:36:27 -0800 (PST) (envelope-from znerd) Message-Id: <200203111036.g2BAaR040250@freefall.freebsd.org> From: Ernst de Haan Date: Mon, 11 Mar 2002 02:36:27 -0800 (PST) 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 znerd 2002/03/11 02:36:27 PST Added files: java/jdk13/files patch-common::Release.gmk Log: Fixes the problem that the source JAR is too small. Submitted by: Greg Lewis PR: ports/35658 Revision Changes Path 1.1 +26 -0 ports/java/jdk13/files/patch-common::Release.gmk (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 2:38: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id 05A1537B405; Mon, 11 Mar 2002 02:37:57 -0800 (PST) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.11.6/8.11.6) with ESMTP id g2BAbpw17107; Mon, 11 Mar 2002 11:37:51 +0100 (CET) Date: Mon, 11 Mar 2002 11:39:27 +0100 (CET) From: Martin Blapp To: Jeroen Ruigrok/asmodai Cc: Bernd Walter , "David O'Brien" , Maxim Sobolev , , Subject: Re: cvs commit: ports/www/mozilla Makefile pkg-plist In-Reply-To: <20020311102650.GY19043@daemon.ninth-circle.org> Message-ID: <20020311113838.W84384-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > 0.9.8 has known problems with parsing certain javascript constructs which > make it crash. > > These have been fixed on the trunk and in the daily builds. Could we commit this to the ports mozilla too ? I could then make a openoffice dependency on the mozilla port, instead of including 0.95 in the openoffice. Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 2:45: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 6841637B417; Mon, 11 Mar 2002 02:45:18 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BAjI742253; Mon, 11 Mar 2002 02:45:18 -0800 (PST) (envelope-from maxim) Message-Id: <200203111045.g2BAjI742253@freefall.freebsd.org> From: Maxim Konovalov Date: Mon, 11 Mar 2002 02:45:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man3 pthread.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 maxim 2002/03/11 02:45:18 PST Modified files: share/man/man3 pthread.3 Log: Add a bunch of functions. PR: docs/32561 Reviewed by: deischen, ru Approved by: ru MFC after: 2 weeks Revision Changes Path 1.21 +77 -8 src/share/man/man3/pthread.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 2: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 2758737B421; Mon, 11 Mar 2002 02:45:48 -0800 (PST) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BAjmZ42379; Mon, 11 Mar 2002 02:45:48 -0800 (PST) (envelope-from brian) Message-Id: <200203111045.g2BAjmZ42379@freefall.freebsd.org> From: Brian Somers Date: Mon, 11 Mar 2002 02:45:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp async.c async.h datalink.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 brian 2002/03/11 02:45:48 PST Modified files: (Branch: RELENG_4) usr.sbin/ppp async.c async.h datalink.c Log: MFC: Don't blow away ``set escape'' settings when we've completed the login phase. Just initialise the correct parts. Revision Changes Path 1.23.2.2 +7 -1 src/usr.sbin/ppp/async.c 1.6.2.1 +1 -0 src/usr.sbin/ppp/async.h 1.57.2.10 +1 -1 src/usr.sbin/ppp/datalink.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 3: 0:56 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id EA39437B400; Mon, 11 Mar 2002 03:00:49 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g2BB0Lx49045; Mon, 11 Mar 2002 11:00:21 GMT (envelope-from mark@grimreaper.grondar.za) Received: from grimreaper (localhost [127.0.0.1]) by grimreaper.grondar.org (8.12.2/8.12.2) with ESMTP id g2BAwGDN012108; Mon, 11 Mar 2002 10:58:16 GMT (envelope-from mark@grimreaper.grondar.za) Message-Id: <200203111058.g2BAwGDN012108@grimreaper.grondar.org> To: John Hay Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin Makefile References: <200203110426.g2B4QtF46559@zibbi.icomtek.csir.co.za> In-Reply-To: <200203110426.g2B4QtF46559@zibbi.icomtek.csir.co.za> ; from John Hay "Sat, 11 Mar 2002 06:26:55 +0200." Date: Mon, 11 Mar 2002 10:58:16 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Uhm, this surgery, does it also involve -stable? My -stable make release > died in the cvs checkout phase with: : > cvs [checkout aborted]: could not find desired version 1.2 in /home/ncvs/src/usr.bin/xlint/lint1/cgram.y,v > *** Error code 1 It did, inadvertently. Fixed. Thanks and sorry! M -- o Mark Murray \_ O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 3: 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 C814737B402; Mon, 11 Mar 2002 03:01:55 -0800 (PST) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BB1tX44992; Mon, 11 Mar 2002 03:01:55 -0800 (PST) (envelope-from yoichi) Message-Id: <200203111101.g2BB1tX44992@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Mon, 11 Mar 2002 03:01:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/preview-latex Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yoichi 2002/03/11 03:01:55 PST Modified files: print/preview-latex Makefile distinfo pkg-plist Log: Update to 0.6.1. Notified by: David.Kastrup@t-online.de (David Kastrup) Revision Changes Path 1.2 +2 -1 ports/print/preview-latex/Makefile 1.2 +1 -1 ports/print/preview-latex/distinfo 1.2 +1 -0 ports/print/preview-latex/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 Mar 11 3:21: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 D29FB37B41C; Mon, 11 Mar 2002 03:20:48 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BBKmK51401; Mon, 11 Mar 2002 03:20:48 -0800 (PST) (envelope-from markm) Message-Id: <200203111120.g2BBKmK51401@freefall.freebsd.org> From: Mark Murray Date: Mon, 11 Mar 2002 03:20:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/xlint/llib Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/03/11 03:20:47 PST Modified files: usr.bin/xlint/llib Makefile Log: Fix silly one line error. (Half a .if statement left behind). Revision Changes Path 1.12 +0 -1 src/usr.bin/xlint/llib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 3:23: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 19DA037B404; Mon, 11 Mar 2002 03:23:50 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BBNo651853; Mon, 11 Mar 2002 03:23:50 -0800 (PST) (envelope-from des) Message-Id: <200203111123.g2BBNo651853@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 11 Mar 2002 03:23:50 -0800 (PST) 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 des 2002/03/11 03:23:50 PST Modified files: sbin/savecore savecore.c Log: Sparc64 support. Revision Changes Path 1.48 +8 -8 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 Mon Mar 11 3:26:23 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8910037B417; Mon, 11 Mar 2002 03:26:19 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BBQJN52197; Mon, 11 Mar 2002 03:26:19 -0800 (PST) (envelope-from markm) Message-Id: <200203111126.g2BBQJN52197@freefall.freebsd.org> From: Mark Murray Date: Mon, 11 Mar 2002 03:26:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/xlint/llib llib-lposix X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 03:26:17 PST Modified files: usr.bin/xlint/llib llib-lposix Log: Fix a prototype to match our headers. I am not convinced that doing this in this file is the correct way round. (Maybe our definition of __assert is wrong?) Anyway, perhaps we should revisit this later. For the time being, building lint libraries here does not blow up. Revision Changes Path 1.2 +3 -1 src/usr.bin/xlint/llib/llib-lposix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 3:28: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 19DE537B405; Mon, 11 Mar 2002 03:28:57 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BBSvs52601; Mon, 11 Mar 2002 03:28:57 -0800 (PST) (envelope-from markm) Message-Id: <200203111128.g2BBSvs52601@freefall.freebsd.org> From: Mark Murray Date: Mon, 11 Mar 2002 03:28:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/xlint/lint1 externs.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/03/11 03:28:57 PST Removed files: usr.bin/xlint/lint1 externs.h Log: Punt to attic file that moved in latest import. Revision Changes Path 1.2 +0 -56 src/usr.bin/xlint/lint1/externs.h (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 3:33: 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 14B1737B405; Mon, 11 Mar 2002 03:32:56 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BBWuq53213; Mon, 11 Mar 2002 03:32:56 -0800 (PST) (envelope-from markm) Message-Id: <200203111132.g2BBWuq53213@freefall.freebsd.org> From: Mark Murray Date: Mon, 11 Mar 2002 03:32:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: 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 markm 2002/03/11 03:32:55 PST Modified files: usr.bin/xlint/xlint xlint.c Log: Try harder to lint without nonstandard stuff. Revision Changes Path 1.17 +1 -0 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 Mon Mar 11 3:36:35 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 B3E3037B400; Mon, 11 Mar 2002 03:36:28 -0800 (PST) Received: by a96180.upc-a.chello.nl (Postfix, from userid 1001) id 24CFE218E; Mon, 11 Mar 2002 12:36:27 +0100 (CET) Date: Mon, 11 Mar 2002 12:36:26 +0100 From: Jeroen Ruigrok/asmodai To: Martin Blapp Cc: Bernd Walter , David O'Brien , Maxim Sobolev , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/mozilla Makefile pkg-plist Message-ID: <20020311113626.GZ19043@daemon.ninth-circle.org> References: <20020311102650.GY19043@daemon.ninth-circle.org> <20020311113838.W84384-100000@levais.imp.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020311113838.W84384-100000@levais.imp.ch> User-Agent: Mutt/1.3.24i 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 [20020311 11:45], Martin Blapp (mb@imp.ch) wrote: >Could we commit this to the ports mozilla too ? I could then make >a openoffice dependency on the mozilla port, instead of including >0.95 in the openoffice. No idea. 0.9.9 will have these fixes too, but the daily builds are binaries. You would have to discuss this with Maxim/gnome@. My comment was merely an indication that these problems are known and fixed. At least the ones which crashed my mozilla 0.9.8 sessions constantly, whereas 0.9.7 didn't. -- 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/ From Nothing comes only Nothing... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 3:46:30 2002 Delivered-To: cvs-all@freebsd.org Received: from mailout05.sul.t-online.com (mailout05.sul.t-online.com [194.25.134.82]) by hub.freebsd.org (Postfix) with ESMTP id B42F037B404; Mon, 11 Mar 2002 03:46:24 -0800 (PST) Received: from fwd09.sul.t-online.de by mailout05.sul.t-online.com with smtp id 16kOFz-0007uj-05; Mon, 11 Mar 2002 12:46:23 +0100 Received: from Magelan.Leidinger.net (520065502893-0001@[80.131.118.64]) by fmrl09.sul.t-online.com with esmtp id 16kOFt-2DHnsWC; Mon, 11 Mar 2002 12:46:17 +0100 Received: from Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.2/8.12.2) with ESMTP id g2BBk65w003192; Mon, 11 Mar 2002 12:46:10 +0100 (CET) (envelope-from netchild@Leidinger.net) Message-Id: <200203111146.g2BBk65w003192@Magelan.Leidinger.net> Date: Mon, 11 Mar 2002 12:46:06 +0100 (CET) From: Alexander Leidinger Subject: Re: cvs commit: ports/www/neon pkg-plist ports/www/neon/files patch-ltmain.sh To: sobomax@FreeBSD.ORG Cc: olgeni@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-Reply-To: <1015798632.527.40.camel@notebook> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8BIT 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 Mär, Maxim Sobolev wrote: >> Modified files: >> www/neon pkg-plist >> www/neon/files patch-ltmain.sh >> Log: >> Install libneon.la, which is needed by the devel/subversion port. > > Just wonder why does it need it? Looks like a bug to me. I don't know about neon, but with modlogan I had a similiar problem: modlogan uses libtools libdl to load plugins. The documentation of libtools seems to require to load X.la instead of X.so. So I just asked the author to try to load X.so if X.la errors out. Bye, Alexander. -- To boldly go where I surely don't belong. 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 Mon Mar 11 3:48: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 1B35E37B402; Mon, 11 Mar 2002 03:48:31 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BBmV255913; Mon, 11 Mar 2002 03:48:31 -0800 (PST) (envelope-from kris) Message-Id: <200203111148.g2BBmV255913@freefall.freebsd.org> From: Kris Kennaway Date: Mon, 11 Mar 2002 03:48:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports INDEX X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 03:48:30 PST Modified files: . INDEX Log: Repair INDEX: the previous revision accidentally switched from XFree86 3.x to 4.x prematurely, and also contained a lot of 'pollution' from packages installed on the build host (mostly gtk), which were being detected by HAVE_* options in ports which caused them to change names. Revision Changes Path 1.357 +2668 -2665 ports/INDEX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 3:49: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E0F1737B41E; Mon, 11 Mar 2002 03:48:55 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BBmtC56002; Mon, 11 Mar 2002 03:48:55 -0800 (PST) (envelope-from maxim) Message-Id: <200203111148.g2BBmtC56002@freefall.freebsd.org> From: Maxim Konovalov Date: Mon, 11 Mar 2002 03:48:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/ftpd ftpcmd.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 maxim 2002/03/11 03:48:55 PST Modified files: libexec/ftpd ftpcmd.y Log: Remove duplicated yacc nonterminals declarations, sort includes. No functional changes from rev. 1.31. Reviewed by: ru Approved by: ru MFC after: 1 week Revision Changes Path 1.32 +3 -4 src/libexec/ftpd/ftpcmd.y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 3:52: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 F12E437B404; Mon, 11 Mar 2002 03:52:15 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BBqFI56759; Mon, 11 Mar 2002 03:52:15 -0800 (PST) (envelope-from kris) Message-Id: <200203111152.g2BBqFI56759@freefall.freebsd.org> From: Kris Kennaway Date: Mon, 11 Mar 2002 03:52:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Tools/portbuild/scripts buildenv X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 03:52:15 PST Added files: Tools/portbuild/scripts buildenv Log: Set all of the control variables to be used in port/package operations in one central place, instead of doing them piecemeal all over the place. This also includes the ability to customize settings per port branch (e.g. XFREE86_VERSION) Also, instead of hardcoding values of OSVERSION and OSREL which are going to get forgotten again, pull them out of the source tree in ${branch}/src so they track the head of the branch. Revision Changes Path 1.1 +44 -0 ports/Tools/portbuild/scripts/buildenv (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 3: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 BD15F37B405; Mon, 11 Mar 2002 03:54:40 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BBse956963; Mon, 11 Mar 2002 03:54:40 -0800 (PST) (envelope-from kris) Message-Id: <200203111154.g2BBse956963@freefall.freebsd.org> From: Kris Kennaway Date: Mon, 11 Mar 2002 03:54:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Tools/portbuild/scripts makeindex X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 03:54:40 PST Modified files: Tools/portbuild/scripts makeindex Log: Clean up index generation: * Don't assume the script will be called from the ports directory * Use buildenv to set environment variables * Set LOCALBASE and X11BASE to dummy variables to prevent the ports tree from picking up packages installed on the host system, and patch up the generated index at the end Revision Changes Path 1.12 +26 -29 ports/Tools/portbuild/scripts/makeindex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 3:57: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 075FE37B405; Mon, 11 Mar 2002 03:57:30 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BBvTQ57235; Mon, 11 Mar 2002 03:57:29 -0800 (PST) (envelope-from murray) Message-Id: <200203111157.g2BBvTQ57235@freefall.freebsd.org> From: Murray Stokely Date: Mon, 11 Mar 2002 03:57:29 -0800 (PST) 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/03/11 03:57:29 PST Modified files: en/releases/4.6R schedule.sgml Log: Correct a date. Add a few more TODO items. Revision Changes Path 1.4 +15 -3 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 Mon Mar 11 4: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 5FEBC37B402; Mon, 11 Mar 2002 04:14:33 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BCEXg69716; Mon, 11 Mar 2002 04:14:33 -0800 (PST) (envelope-from trevor) Message-Id: <200203111214.g2BCEXg69716@freefall.freebsd.org> From: Trevor Johnson Date: Mon, 11 Mar 2002 04:14:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/wrapper 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 trevor 2002/03/11 04:14:33 PST Modified files: x11/wrapper pkg-descr Log: Update my e-mail address. Revision Changes Path 1.2 +1 -1 ports/x11/wrapper/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 Mar 11 4:49: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 596FC37B400; Mon, 11 Mar 2002 04:49:00 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id XAA29832; Mon, 11 Mar 2002 23:48:58 +1100 Date: Mon, 11 Mar 2002 23:50:15 +1100 (EST) From: Bruce Evans X-X-Sender: To: Mark Murray Cc: , Subject: Re: cvs commit: src/usr.bin/xlint/llib llib-lposix In-Reply-To: <200203111126.g2BBQJN52197@freefall.freebsd.org> Message-ID: <20020311234858.I6802-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, 11 Mar 2002, Mark Murray wrote: > markm 2002/03/11 03:26:17 PST > > Modified files: > usr.bin/xlint/llib llib-lposix > Log: > Fix a prototype to match our headers. I am not convinced that doing > this in this file is the correct way round. (Maybe our definition of > __assert is wrong?) __assert is an implementation detail. It can have any prototype that the implementation wants. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 4:50: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 408EF37B402; Mon, 11 Mar 2002 04:50:47 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BColS75838; Mon, 11 Mar 2002 04:50:47 -0800 (PST) (envelope-from trevor) Message-Id: <200203111250.g2BColS75838@freefall.freebsd.org> From: Trevor Johnson Date: Mon, 11 Mar 2002 04:50:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/wrapper 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/03/11 04:50:47 PST Modified files: x11/wrapper Makefile Log: Back out some changes which were made without my review. Revision Changes Path 1.9 +2 -10 ports/x11/wrapper/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 5: 0:52 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id ECA4937B404; Mon, 11 Mar 2002 05:00:42 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g2BD0a051214; Mon, 11 Mar 2002 13:00:36 GMT (envelope-from mark@grimreaper.grondar.za) Received: from grimreaper (localhost [127.0.0.1]) by grimreaper.grondar.org (8.12.2/8.12.2) with ESMTP id g2BCvlDN032080; Mon, 11 Mar 2002 12:57:47 GMT (envelope-from mark@grimreaper.grondar.za) Message-Id: <200203111257.g2BCvlDN032080@grimreaper.grondar.org> To: Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/xlint/llib llib-lposix References: <20020311234858.I6802-100000@gamplex.bde.org> In-Reply-To: <20020311234858.I6802-100000@gamplex.bde.org> ; from Bruce Evans "Mon, 11 Mar 2002 23:50:15 +1100." Date: Mon, 11 Mar 2002 12:57:46 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > Fix a prototype to match our headers. I am not convinced that doing > > this in this file is the correct way round. (Maybe our definition of > > __assert is wrong?) > > __assert is an implementation detail. It can have any prototype that > the implementation wants. Good to know. Thanks! M -- o Mark Murray \_ O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 5: 4: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 5136237B404; Mon, 11 Mar 2002 05:04:28 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BD4Sg77977; Mon, 11 Mar 2002 05:04:28 -0800 (PST) (envelope-from trevor) Message-Id: <200203111304.g2BD4Sg77977@freefall.freebsd.org> From: Trevor Johnson Date: Mon, 11 Mar 2002 05:04:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/wrapper Makefile pkg-deinstall pkg-install X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2002/03/11 05:04:28 PST Modified files: x11/wrapper Makefile pkg-deinstall pkg-install Log: Add precautions so this won't damage an installation of XFree86 3.X. Revision Changes Path 1.10 +4 -2 ports/x11/wrapper/Makefile 1.3 +1 -1 ports/x11/wrapper/pkg-deinstall 1.3 +4 -3 ports/x11/wrapper/pkg-install To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 5: 8:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EA6FE37B42C; Mon, 11 Mar 2002 05:08:22 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BD8Mu82073; Mon, 11 Mar 2002 05:08:22 -0800 (PST) (envelope-from trevor) Message-Id: <200203111308.g2BD8Mu82073@freefall.freebsd.org> From: Trevor Johnson Date: Mon, 11 Mar 2002 05:08:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/wrapper 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 trevor 2002/03/11 05:08:22 PST Modified files: x11/wrapper Makefile Removed files: x11/wrapper pkg-plist Log: Generate the packing list just before installation. Revision Changes Path 1.11 +4 -0 ports/x11/wrapper/Makefile 1.2 +0 -1 ports/x11/wrapper/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 Mon Mar 11 5: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 2358D37B417; Mon, 11 Mar 2002 05:46:10 -0800 (PST) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BDkAB89397; Mon, 11 Mar 2002 05:46:10 -0800 (PST) (envelope-from joe) Message-Id: <200203111346.g2BDkAB89397@freefall.freebsd.org> From: Josef Karthauser Date: Mon, 11 Mar 2002 05:46:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/libusb/files patch-bsd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 05:46:10 PST Modified files: devel/libusb/files patch-bsd.c Log: Only use the new usb structure names if the version of FreeBSD being used to compile libusb has them, otherwise use the old names. Revision Changes Path 1.2 +46 -20 ports/devel/libusb/files/patch-bsd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 5:48: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 6455437B416; Mon, 11 Mar 2002 05:48:13 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BDmDh89991; Mon, 11 Mar 2002 05:48:13 -0800 (PST) (envelope-from murray) Message-Id: <200203111348.g2BDmDh89991@freefall.freebsd.org> From: Murray Stokely Date: Mon, 11 Mar 2002 05:48:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall dist.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 05:48:13 PST Modified files: usr.sbin/sysinstall dist.c Log: Update number of ports available. Revision Changes Path 1.203 +1 -1 src/usr.sbin/sysinstall/dist.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 5:53: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 5F42A37B400; Mon, 11 Mar 2002 05:53:00 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BDr0891090; Mon, 11 Mar 2002 05:53:00 -0800 (PST) (envelope-from phk) Message-Id: <200203111353.g2BDr0891090@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 11 Mar 2002 05:53:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: 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/03/11 05:53:00 PST Modified files: sys/ufs/ffs ffs_vfsops.c Log: As a XXX bandaid open the mounted device READ/WRITE even if we only mount read-only. The trouble here is that we don't reopen the device in read/write mode when we remount in read/write mode resulting in a filesystem sending write requests to a device which was only opened read/only. I'm not quite sure how such a reopen would best be done and defer the problem to more agile hackers. Revision Changes Path 1.169 +14 -0 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 Mar 11 6:45: 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 520FF37B419; Mon, 11 Mar 2002 06:44:59 -0800 (PST) Received: (from mwlucas@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BEixg09664; Mon, 11 Mar 2002 06:44:59 -0800 (PST) (envelope-from mwlucas) Message-Id: <200203111444.g2BEixg09664@freefall.freebsd.org> From: Michael Lucas Date: Mon, 11 Mar 2002 06:44:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributing 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 mwlucas 2002/03/11 06:44:59 PST Modified files: en_US.ISO8859-1/articles/contributing article.sgml Log: Rewrite first three paragraphs of this article to eliminate run-on sentences, poor grammar, excess verbiage, etc., etc. Revision Changes Path 1.475 +21 -21 doc/en_US.ISO8859-1/articles/contributing/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 Mar 11 6: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 5B37737B400; Mon, 11 Mar 2002 06:46:50 -0800 (PST) Received: (from mwlucas@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BEkoZ10030; Mon, 11 Mar 2002 06:46:50 -0800 (PST) (envelope-from mwlucas) Message-Id: <200203111446.g2BEkoZ10030@freefall.freebsd.org> From: Michael Lucas Date: Mon, 11 Mar 2002 06:46:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributing 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 mwlucas 2002/03/11 06:46:50 PST Modified files: en_US.ISO8859-1/articles/contributing article.sgml Log: Whitespace cleanup from previous commit. No content changes. Revision Changes Path 1.476 +21 -20 doc/en_US.ISO8859-1/articles/contributing/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 Mar 11 7: 8: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 AD59B37B416; Mon, 11 Mar 2002 07:08:41 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BF8fo22323; Mon, 11 Mar 2002 07:08:41 -0800 (PST) (envelope-from murray) Message-Id: <200203111508.g2BF8fo22323@freefall.freebsd.org> From: Murray Stokely Date: Mon, 11 Mar 2002 07:08:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/scripts print-cdrom-packages.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 murray 2002/03/11 07:08:41 PST Modified files: release/scripts print-cdrom-packages.sh Log: Add security/sudo to the list of packages for disc #1. sudo is small (< 100k), has no dependencies, and is very popular. Revision Changes Path 1.20 +2 -1 src/release/scripts/print-cdrom-packages.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 7: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 9024837B404; Mon, 11 Mar 2002 07:13:27 -0800 (PST) Received: (from cy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BFDRn22908; Mon, 11 Mar 2002 07:13:27 -0800 (PST) (envelope-from cy) Message-Id: <200203111513.g2BFDRn22908@freefall.freebsd.org> From: Cy Schubert Date: Mon, 11 Mar 2002 07:13:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cy 2002/03/11 07:13:26 PST Modified files: . modules Log: Removing krb5-beta port. Krb5-beta is a "test" port to allow FreeBSD users the opportunity to use/test the upcoming krb5 before it is released. Krb5-1.2.4 was released over a week ago superceeding this port. This port will be resurrected when a new krb5-beta becomes available. Revision Changes Path 1.4823 +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 Mon Mar 11 7:17: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 F416B37B443; Mon, 11 Mar 2002 07:16:51 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BFGn123440; Mon, 11 Mar 2002 07:16:49 -0800 (PST) (envelope-from dinoex) Message-Id: <200203111516.g2BFGn123440@freefall.freebsd.org> From: Dirk Meyer Date: Mon, 11 Mar 2002 07:16:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/openssh Makefile pkg-plist ports/security/openssh/files moduli X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 07:16:48 PST Modified files: security/openssh Makefile pkg-plist Added files: security/openssh/files moduli Log: Add etc/moduli if it does not exist already. sshd complainied about it. Revision Changes Path 1.85 +5 -1 ports/security/openssh/Makefile 1.1 +158 -0 ports/security/openssh/files/moduli (new) 1.15 +1 -0 ports/security/openssh/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 Mar 11 7:44:46 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E8A337B430; Mon, 11 Mar 2002 07:43:57 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BFhvC27646; Mon, 11 Mar 2002 07:43:57 -0800 (PST) (envelope-from mbr) Message-Id: <200203111543.g2BFhvC27646@freefall.freebsd.org> From: Martin Blapp Date: Mon, 11 Mar 2002 07:43:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice 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 mbr 2002/03/11 07:43:56 PST Modified files: editors/openoffice Makefile distinfo Log: Add FreeBSD Version of oo_moz_641.tar.gz, and update it to mozilla 0.9.8 Thanks to Carlos F. A. Paniago Revision Changes Path 1.41 +4 -4 ports/editors/openoffice/Makefile 1.11 +1 -1 ports/editors/openoffice/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 7:51: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 0ABCA37B404; Mon, 11 Mar 2002 07:51:34 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BFpY929544; Mon, 11 Mar 2002 07:51:34 -0800 (PST) (envelope-from mbr) Message-Id: <200203111551.g2BFpY929544@freefall.freebsd.org> From: Martin Blapp Date: Mon, 11 Mar 2002 07:51:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-cppu::prj::build.lst X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/03/11 07:51:33 PST Added files: editors/openoffice/files patch-cppu::prj::build.lst Log: We need to build offuh here, else the build stops Submitted by: Carlos F. A. Paniago Revision Changes Path 1.1 +8 -0 ports/editors/openoffice/files/patch-cppu::prj::build.lst (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 8:22: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 5489137B402; Mon, 11 Mar 2002 08:22:16 -0800 (PST) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BGMG538274; Mon, 11 Mar 2002 08:22:16 -0800 (PST) (envelope-from joe) Message-Id: <200203111622.g2BGMG538274@freefall.freebsd.org> From: Josef Karthauser Date: Mon, 11 Mar 2002 08:22:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ufm.c ugen.c uhid.c ulpt.c umodem.c ums.c urio.c usb.c uscanner.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 08:22:16 PST Modified files: sys/dev/usb ufm.c ugen.c uhid.c ulpt.c umodem.c ums.c urio.c usb.c uscanner.c Log: Be more specific about when block major numbers disappeared from the cdev switch. Revision Changes Path 1.3 +1 -1 src/sys/dev/usb/ufm.c 1.59 +1 -1 src/sys/dev/usb/ugen.c 1.44 +1 -1 src/sys/dev/usb/uhid.c 1.43 +1 -1 src/sys/dev/usb/ulpt.c 1.35 +1 -1 src/sys/dev/usb/umodem.c 1.49 +1 -1 src/sys/dev/usb/ums.c 1.14 +1 -1 src/sys/dev/usb/urio.c 1.58 +1 -1 src/sys/dev/usb/usb.c 1.27 +1 -1 src/sys/dev/usb/uscanner.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 8: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 3AC4837B400; Mon, 11 Mar 2002 08:27:04 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BGR4o39103; Mon, 11 Mar 2002 08:27:04 -0800 (PST) (envelope-from phk) Message-Id: <200203111627.g2BGR4o39103@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 11 Mar 2002 08:27:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: 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/03/11 08:27:04 PST Modified files: sys/ufs/ffs ffs_vfsops.c Log: I missed one VOP_CLOSE in the previous commit. Pointed out by: bde Revision Changes Path 1.170 +5 -0 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 Mar 11 8: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 656C737B41B; Mon, 11 Mar 2002 08:34:00 -0800 (PST) Received: (from nobutaka@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BGY0O40016; Mon, 11 Mar 2002 08:34:00 -0800 (PST) (envelope-from nobutaka) Message-Id: <200203111634.g2BGY0O40016@freefall.freebsd.org> From: MANTANI Nobutaka Date: Mon, 11 Mar 2002 08:34:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/w3m Makefile distinfo ports/www/w3m-m17n 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 nobutaka 2002/03/11 08:34:00 PST Modified files: www/w3m Makefile distinfo www/w3m-m17n Makefile Log: Update w3m-m17n to 0.3+20020311. Revision Changes Path 1.2 +0 -2 ports/www/w3m-m17n/Makefile 1.45 +3 -2 ports/www/w3m/Makefile 1.20 +1 -1 ports/www/w3m/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 8:38: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 EED2437B400; Mon, 11 Mar 2002 08:38:53 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BGcrT41000; Mon, 11 Mar 2002 08:38:53 -0800 (PST) (envelope-from imp) Message-Id: <200203111638.g2BGcrT41000@freefall.freebsd.org> From: Warner Losh Date: Mon, 11 Mar 2002 08:38:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ufm.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 08:38:53 PST Modified files: sys/dev/usb ufm.c Log: On FreeBSD make usb_proc_t the same as d_thred_t always. Revision Changes Path 1.4 +2 -2 src/sys/dev/usb/ufm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 8:56:52 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 4B54937B405; Mon, 11 Mar 2002 08:56:43 -0800 (PST) Received: by tao.org.uk (Postfix, from userid 100) id D2AFA84; Mon, 11 Mar 2002 16:55:58 +0000 (GMT) Date: Mon, 11 Mar 2002 16:55:58 +0000 From: Josef Karthauser To: Warner Losh Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/usb ufm.c Message-ID: <20020311165558.GG31016@genius.tao.org.uk> References: <200203111638.g2BGcrT41000@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vSsTm1kUtxIHoa7M" Content-Disposition: inline In-Reply-To: <200203111638.g2BGcrT41000@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 --vSsTm1kUtxIHoa7M Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 11, 2002 at 08:38:53AM -0800, Warner Losh wrote: > imp 2002/03/11 08:38:53 PST >=20 > Modified files: > sys/dev/usb ufm.c=20 > Log: > On FreeBSD make usb_proc_t the same as d_thred_t always. Can this be made to use usb_proc_ptr? Also, I suppose that this trick can be used to define usb_proc_ptr in the first place (in usb_port.h). Joe --vSsTm1kUtxIHoa7M 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 iEYEARECAAYFAjyM4Z4ACgkQXVIcjOaxUBa3tQCdH2TX5G4aejiLenbNJQU0gHoX oTQAoLm2N9zV325X4562W6z+utljGmd4 =4T6U -----END PGP SIGNATURE----- --vSsTm1kUtxIHoa7M-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 9: 5:12 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 697A537B426; Mon, 11 Mar 2002 09:04:58 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g2BH4vi16328; Mon, 11 Mar 2002 10:04:57 -0700 (MST) (envelope-from imp@village.org) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id g2BH4uL24000; Mon, 11 Mar 2002 10:04:56 -0700 (MST) (envelope-from imp@village.org) Date: Mon, 11 Mar 2002 10:04:46 -0700 (MST) Message-Id: <20020311.100446.12174516.imp@village.org> To: joe@tao.org.uk Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/usb ufm.c From: "M. Warner Losh" In-Reply-To: <20020311165558.GG31016@genius.tao.org.uk> References: <200203111638.g2BGcrT41000@freefall.freebsd.org> <20020311165558.GG31016@genius.tao.org.uk> 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: <20020311165558.GG31016@genius.tao.org.uk> Josef Karthauser writes: : On Mon, Mar 11, 2002 at 08:38:53AM -0800, Warner Losh wrote: : > imp 2002/03/11 08:38:53 PST : > : > Modified files: : > sys/dev/usb ufm.c : > Log: : > On FreeBSD make usb_proc_t the same as d_thred_t always. : : Can this be made to use usb_proc_ptr? : : Also, I suppose that this trick can be used to define usb_proc_ptr in : the first place (in usb_port.h). Go for it. I was just fixing the driver that shouldn't have been committed and will never be merged to NetBSD (since it already has a better driver). Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 9: 5:58 2002 Delivered-To: cvs-all@freebsd.org Received: from mail12.speakeasy.net (mail12.speakeasy.net [216.254.0.212]) by hub.freebsd.org (Postfix) with ESMTP id 0073237B417 for ; Mon, 11 Mar 2002 09:05:47 -0800 (PST) Received: (qmail 22859 invoked from network); 11 Mar 2002 17:05:45 -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 ; 11 Mar 2002 17:05:45 -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 g2BH63v22283; Mon, 11 Mar 2002 12:06:03 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200203102058.g2AKvum00955@mass.dis.org> Date: Mon, 11 Mar 2002 12:05:45 -0500 (EST) From: John Baldwin To: Michael Smith Subject: Re: cvs commit: src/sys/sys smp.h src/sys/kern subr_smp.c src/sy Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Jeff Roberson , Doug Rabson , Jeff Roberson Sender: owner-cvs-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-Mar-02 Michael Smith wrote: >> > This screws up the SMP probe for ia64 because the information which >> > cpu_mp_probe() uses isn't available until after cpu_startup() is called >> > (i.e. SI_SUB_CPU:SI_ORDER_FIRST). The code in the ia64 platform which >> > detects SMP can't (currently) run before the VM system is started... >> >> Is it possible to do it at all before the VM starts up? This really >> throws a wrench in my uma plans. Can you even tell how many cpus you have >> before then? If you can do this, and force your cpu ids to be virtual and >> non sparse, then you can set mp_maxid to the number of cpus. > > The CPU ID array should be "reasonably dense". > > On systems where the CPU ID space is sparse, a "dense to sparse" > translation can be performed relatively cheaply. > > You're causing massive (bad) upheaval in the system for the sake of > supporting a poor design choice. Instead, just shift the CPU ID paradigm > back to where it was. > > In many cases (IA64 is one of them), CPUs other than the boot processor > may be detected and started up at any time. You want a constant that > allows the maximum number of CPUs supported by the platform, rather than > to detect the number of CPUs currently on the platform; just pick a sane > upper bound (eg. 8) and work with it for now. MAXCPU does this. I agree that I would like to depend on this and CPU_ABSENT() rather than on cpu_maxid. Even when using cpu_maxid, you still need to use CPU_ABSENT to account for sparseness. -- 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 Mar 11 9: 7:32 2002 Delivered-To: cvs-all@freebsd.org Received: from mail11.speakeasy.net (mail11.speakeasy.net [216.254.0.211]) by hub.freebsd.org (Postfix) with ESMTP id CCE3837B428 for ; Mon, 11 Mar 2002 09:06:16 -0800 (PST) Received: (qmail 16072 invoked from network); 11 Mar 2002 17:06:16 -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 ; 11 Mar 2002 17:06: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 g2BH6Xv22287; Mon, 11 Mar 2002 12:06:33 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200203102058.g2AKvum00955@mass.dis.org> Date: Mon, 11 Mar 2002 12:06:15 -0500 (EST) From: John Baldwin To: Michael Smith Subject: Re: cvs commit: src/sys/sys smp.h src/sys/kern subr_smp.c src/sy Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, Jeff Roberson , Doug Rabson , Jeff Roberson Sender: owner-cvs-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-Mar-02 Michael Smith wrote: >> > This screws up the SMP probe for ia64 because the information which >> > cpu_mp_probe() uses isn't available until after cpu_startup() is called >> > (i.e. SI_SUB_CPU:SI_ORDER_FIRST). The code in the ia64 platform which >> > detects SMP can't (currently) run before the VM system is started... >> >> Is it possible to do it at all before the VM starts up? This really >> throws a wrench in my uma plans. Can you even tell how many cpus you have >> before then? If you can do this, and force your cpu ids to be virtual and >> non sparse, then you can set mp_maxid to the number of cpus. > > The CPU ID array should be "reasonably dense". > > On systems where the CPU ID space is sparse, a "dense to sparse" > translation can be performed relatively cheaply. > > You're causing massive (bad) upheaval in the system for the sake of > supporting a poor design choice. Instead, just shift the CPU ID paradigm > back to where it was. > > In many cases (IA64 is one of them), CPUs other than the boot processor > may be detected and started up at any time. You want a constant that > allows the maximum number of CPUs supported by the platform, rather than > to detect the number of CPUs currently on the platform; just pick a sane > upper bound (eg. 8) and work with it for now. MAXCPU does this. I agree that I would like to depend on this and CPU_ABSENT() rather than on cpu_maxid. Even when using cpu_maxid, you still need to use CPU_ABSENT to account for sparseness. -- 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 Mar 11 9: 8:45 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 7D56837B4B8; Mon, 11 Mar 2002 09:08:05 -0800 (PST) Received: by tao.org.uk (Postfix, from userid 100) id 148275C; Mon, 11 Mar 2002 17:07:21 +0000 (GMT) Date: Mon, 11 Mar 2002 17:07:21 +0000 From: Josef Karthauser To: "M. Warner Losh" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/usb ufm.c Message-ID: <20020311170721.GA36320@genius.tao.org.uk> References: <200203111638.g2BGcrT41000@freefall.freebsd.org> <20020311165558.GG31016@genius.tao.org.uk> <20020311.100446.12174516.imp@village.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="82I3+IH0IqGh5yIs" Content-Disposition: inline In-Reply-To: <20020311.100446.12174516.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 --82I3+IH0IqGh5yIs Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Mar 11, 2002 at 10:04:46AM -0700, M. Warner Losh wrote: > Go for it. I was just fixing the driver that shouldn't have been > committed and will never be merged to NetBSD (since it already has a > better driver). If it's got a better driver then let's delete this one. I'll port their in due course. I don't see the point in maintaining a worse driver. Joe --82I3+IH0IqGh5yIs 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 iEYEARECAAYFAjyM5EgACgkQXVIcjOaxUBaWJwCcC8IKhnbiy9C9F24V+YqTI979 ka8AoJ38PDlB7rdnhLP/0kzycAvuqTwC =Bgnm -----END PGP SIGNATURE----- --82I3+IH0IqGh5yIs-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 9:14:34 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5FFFC37B405; Mon, 11 Mar 2002 09:14:30 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BHEUU50251; Mon, 11 Mar 2002 09:14:30 -0800 (PST) (envelope-from ijliao) Message-Id: <200203111714.g2BHEUU50251@freefall.freebsd.org> From: Ying-Chieh Liao Date: Mon, 11 Mar 2002 09:14:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/cad/gschem/files patch-aa ports/cad/libgeda/files patch-aa patch-ab patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/11 09:14:30 PST Removed files: cad/gschem/files patch-aa cad/libgeda/files patch-aa patch-ab patch-ac Log: make it buildable fix last submit/commit Submitted by: bsd, maintainer Revision Changes Path 1.2 +0 -79 ports/cad/gschem/files/patch-aa (dead) 1.2 +0 -77 ports/cad/libgeda/files/patch-aa (dead) 1.2 +0 -85 ports/cad/libgeda/files/patch-ab (dead) 1.2 +0 -21 ports/cad/libgeda/files/patch-ac (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 9:16: 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 B65E437B402; Mon, 11 Mar 2002 09:16:02 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BHG2j50703; Mon, 11 Mar 2002 09:16:02 -0800 (PST) (envelope-from sobomax) Message-Id: <200203111716.g2BHG2j50703@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 11 Mar 2002 09:16:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/freetype2 Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/11 09:16:02 PST Modified files: print/freetype2 Makefile distinfo pkg-plist Log: Update to 2.0.9. Revision Changes Path 1.36 +1 -1 ports/print/freetype2/Makefile 1.17 +1 -1 ports/print/freetype2/distinfo 1.21 +1 -1 ports/print/freetype2/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 Mar 11 9:21: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 814E737B405; Mon, 11 Mar 2002 09:21:05 -0800 (PST) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BHL5N51347; Mon, 11 Mar 2002 09:21:05 -0800 (PST) (envelope-from znerd) Message-Id: <200203111721.g2BHL5N51347@freefall.freebsd.org> From: Ernst de Haan Date: Mon, 11 Mar 2002 09:21:05 -0800 (PST) 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 znerd 2002/03/11 09:21:05 PST Modified files: java/jdk13 Makefile Log: Bumped PORTREVISION. Added a patch earlier today, and the port should be rebuilt for the patch to be applied. Now portupgrade should work as expected. PR: ports/35658 Revision Changes Path 1.17 +1 -0 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 Mon Mar 11 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 951A437B404; Mon, 11 Mar 2002 09:25:31 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BHPVF52248; Mon, 11 Mar 2002 09:25:31 -0800 (PST) (envelope-from sobomax) Message-Id: <200203111725.g2BHPVF52248@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 11 Mar 2002 09:25:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos 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/03/11 09:25:31 PST Modified files: graphics/autotrace Makefile graphics/graphviz Makefile graphics/libafterimage Makefile graphics/librsvg Makefile graphics/libwmf Makefile graphics/sdl_ttf Makefile print/ft2demos Makefile print/gnomeprint Makefile textproc/p5-XML-LibRSVG Makefile x11/XFree86-4-libraries Makefile x11-fm/nautilus Makefile Log: Chase increase of freetype2 shlib version. Revision Changes Path 1.9 +1 -1 ports/graphics/autotrace/Makefile 1.32 +1 -1 ports/graphics/graphviz/Makefile 1.5 +1 -1 ports/graphics/libafterimage/Makefile 1.9 +1 -1 ports/graphics/librsvg/Makefile 1.25 +1 -1 ports/graphics/libwmf/Makefile 1.11 +1 -1 ports/graphics/sdl_ttf/Makefile 1.10 +1 -1 ports/print/ft2demos/Makefile 1.43 +1 -1 ports/print/gnomeprint/Makefile 1.3 +1 -1 ports/textproc/p5-XML-LibRSVG/Makefile 1.43 +1 -1 ports/x11-fm/nautilus/Makefile 1.101 +1 -1 ports/x11/XFree86-4-libraries/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 9:40: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 990D037B41A; Mon, 11 Mar 2002 09:40:31 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g2BHeUi16540; Mon, 11 Mar 2002 10:40:30 -0700 (MST) (envelope-from imp@village.org) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id g2BHeSL24270; Mon, 11 Mar 2002 10:40:28 -0700 (MST) (envelope-from imp@village.org) Date: Mon, 11 Mar 2002 10:40:20 -0700 (MST) Message-Id: <20020311.104020.83994339.imp@village.org> To: joe@tao.org.uk Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/usb ufm.c From: "M. Warner Losh" In-Reply-To: <20020311170721.GA36320@genius.tao.org.uk> References: <20020311165558.GG31016@genius.tao.org.uk> <20020311.100446.12174516.imp@village.org> <20020311170721.GA36320@genius.tao.org.uk> 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: <20020311170721.GA36320@genius.tao.org.uk> Josef Karthauser writes: : On Mon, Mar 11, 2002 at 10:04:46AM -0700, M. Warner Losh wrote: : : > Go for it. I was just fixing the driver that shouldn't have been : > committed and will never be merged to NetBSD (since it already has a : > better driver). : : If it's got a better driver then let's delete this one. I'll port their : in due course. I don't see the point in maintaining a worse driver. I didn't want it committed in the first place, and have said so. I wrote it and alfred committed it. I'm leaving well enough alone until someone gets the time to port the NetBSD driver and the radio infrastructure it depends on. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 9:53: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 7C82C37B43D; Mon, 11 Mar 2002 09:53:25 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BHrPt57538; Mon, 11 Mar 2002 09:53:25 -0800 (PST) (envelope-from sobomax) Message-Id: <200203111753.g2BHrPt57538@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 11 Mar 2002 09:53:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/x11-toolkits Makefile ports/devel/atk Makefile distinfo pkg-plist ports/x11-toolkits/pango Makefile distinfo pkg-plist ports/x11-toolkits/pango/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 sobomax 2002/03/11 09:53:25 PST Modified files: devel Makefile x11-toolkits Makefile devel/atk Makefile distinfo pkg-plist x11-toolkits/pango Makefile distinfo pkg-plist x11-toolkits/pango/files patch-ac x11-toolkits/gtk20 Makefile distinfo pkg-plist x11-toolkits/gtk20/files patch-ae devel/pkgconfig Makefile distinfo Removed files: x11-toolkits/pango/files patch-ab Log: Update gtk/glib to the version 2.0 and other related ports to the latest versions. PR: 35541, 35744, 35757 Submitted by: Joe Marcus Clarke Revision Changes Path 1.774 +1 -0 ports/devel/Makefile 1.7 +4 -3 ports/devel/atk/Makefile 1.7 +1 -1 ports/devel/atk/distinfo 1.7 +3 -2 ports/devel/atk/pkg-plist 1.10 +5 -5 ports/devel/pkgconfig/Makefile 1.7 +1 -1 ports/devel/pkgconfig/distinfo 1.162 +1 -0 ports/x11-toolkits/Makefile 1.87 +7 -5 ports/x11-toolkits/gtk20/Makefile 1.46 +1 -1 ports/x11-toolkits/gtk20/distinfo 1.9 +3 -3 ports/x11-toolkits/gtk20/files/patch-ae 1.60 +24 -24 ports/x11-toolkits/gtk20/pkg-plist 1.19 +9 -6 ports/x11-toolkits/pango/Makefile 1.10 +1 -1 ports/x11-toolkits/pango/distinfo 1.6 +0 -45 ports/x11-toolkits/pango/files/patch-ab (dead) 1.4 +8 -8 ports/x11-toolkits/pango/files/patch-ac 1.9 +56 -31 ports/x11-toolkits/pango/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 Mar 11 9:54:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C8AA137B404; Mon, 11 Mar 2002 09:54:27 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BHsRT57999; Mon, 11 Mar 2002 09:54:27 -0800 (PST) (envelope-from ijliao) Message-Id: <200203111754.g2BHsRT57999@freefall.freebsd.org> From: Ying-Chieh Liao Date: Mon, 11 Mar 2002 09:54:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/gsubedit Makefile distinfo pkg-comment pkg-descr 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/03/11 09:54:27 PST Modified files: graphics Makefile Added files: graphics/gsubedit Makefile distinfo pkg-comment pkg-descr pkg-plist graphics/gsubedit/files patch-pixmaps::Makefile.in Log: add gsubedit 0.3 GNOME Subtitle Editor Revision Changes Path 1.417 +1 -0 ports/graphics/Makefile 1.1 +28 -0 ports/graphics/gsubedit/Makefile (new) 1.1 +1 -0 ports/graphics/gsubedit/distinfo (new) 1.1 +11 -0 ports/graphics/gsubedit/files/patch-pixmaps::Makefile.in (new) 1.1 +1 -0 ports/graphics/gsubedit/pkg-comment (new) 1.1 +6 -0 ports/graphics/gsubedit/pkg-descr (new) 1.1 +13 -0 ports/graphics/gsubedit/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 Mar 11 9:54: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 B336237B402; Mon, 11 Mar 2002 09:54:32 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BHsWS58043; Mon, 11 Mar 2002 09:54:32 -0800 (PST) (envelope-from ijliao) Message-Id: <200203111754.g2BHsWS58043@freefall.freebsd.org> From: Ying-Chieh Liao Date: Mon, 11 Mar 2002 09:54:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/11 09:54:32 PST Modified files: . modules Log: gsubedit --> ports/graphics/gsubedit Revision Changes Path 1.4824 +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 Mar 11 10:28: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 883B437B404; Mon, 11 Mar 2002 10:28:10 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BISAB66254; Mon, 11 Mar 2002 10:28:10 -0800 (PST) (envelope-from rwatson) Message-Id: <200203111828.g2BISAB66254@freefall.freebsd.org> From: Robert Watson Date: Mon, 11 Mar 2002 10:28:10 -0800 (PST) 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 rwatson 2002/03/11 10:28:10 PST Modified files: en/smp index.sgml Log: jhb pointed out that tanimura is working on patches to protect p_fd, which is currently not protected yet used outside of Giant due to the struct filedesc pushdown. While a sub-set of the overall proc locking task, this appears to be seperable, and in progress, so break it out into its own task with responsible of 'tanimura'. Currently, there can be panics under high load with a corrupted p_fd as a result of this lack of locking. Bugs reported by: fenner Revision Changes Path 1.40 +10 -1 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 Mar 11 10:57: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 8965E37B419; Mon, 11 Mar 2002 10:57:44 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BIviK70793; Mon, 11 Mar 2002 10:57:44 -0800 (PST) (envelope-from cjc) Message-Id: <200203111857.g2BIviK70793@freefall.freebsd.org> From: "Crist J. Clark" Date: Mon, 11 Mar 2002 10:57:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc MAKEDEV X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjc 2002/03/11 10:57:44 PST Modified files: (Branch: RELENG_4) etc MAKEDEV Log: MFC 1.322: Remove a mention of the worm(4) device that was missed when it was removed from MAKEDEV in 1.171. PR: misc/35729 Revision Changes Path 1.243.2.44 +1 -2 src/etc/MAKEDEV To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 11: 3: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 5B20437B419; Mon, 11 Mar 2002 11:03:53 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BJ3ru72699; Mon, 11 Mar 2002 11:03:53 -0800 (PST) (envelope-from sobomax) Message-Id: <200203111903.g2BJ3ru72699@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 11 Mar 2002 11:03:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/libxml2 Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/11 11:03:53 PST Modified files: textproc/libxml2 Makefile distinfo pkg-plist Log: Update to 2.4.17. Revision Changes Path 1.62 +4 -2 ports/textproc/libxml2/Makefile 1.46 +1 -1 ports/textproc/libxml2/distinfo 1.30 +10 -0 ports/textproc/libxml2/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 Mar 11 11: 4: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 0607D37B423; Mon, 11 Mar 2002 11:04:18 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BJ4H672938; Mon, 11 Mar 2002 11:04:17 -0800 (PST) (envelope-from sobomax) Message-Id: <200203111904.g2BJ4H672938@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 11 Mar 2002 11:04:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/libxslt Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/11 11:04:17 PST Modified files: textproc/libxslt Makefile distinfo pkg-plist Log: Update to 1.0.13. Revision Changes Path 1.23 +3 -1 ports/textproc/libxslt/Makefile 1.19 +1 -1 ports/textproc/libxslt/distinfo 1.14 +36 -0 ports/textproc/libxslt/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 Mar 11 11: 8: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4ACFE37B400; Mon, 11 Mar 2002 11:08:05 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BJ85277038; Mon, 11 Mar 2002 11:08:05 -0800 (PST) (envelope-from sobomax) Message-Id: <200203111908.g2BJ85277038@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 11 Mar 2002 11:08:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/glib20 Makefile distinfo pkg-plist ports/devel/glib20/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/03/11 11:08:04 PST Modified files: devel/glib20 Makefile distinfo pkg-plist devel/glib20/files patch-ae Log: Update to 2.0.0. PR: 35541 Submitted by: Joe Marcus Clarke Revision Changes Path 1.51 +3 -2 ports/devel/glib20/Makefile 1.30 +1 -1 ports/devel/glib20/distinfo 1.22 +85 -31 ports/devel/glib20/files/patch-ae 1.31 +13 -12 ports/devel/glib20/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 Mar 11 11:13: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 31F1F37B404; Mon, 11 Mar 2002 11:13:22 -0800 (PST) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BJDMs78114; Mon, 11 Mar 2002 11:13:22 -0800 (PST) (envelope-from iedowse) Message-Id: <200203111913.g2BJDMs78114@freefall.freebsd.org> From: Ian Dowse Date: Mon, 11 Mar 2002 11:13:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ufs ufs_dirhash.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG iedowse 2002/03/11 11:13:22 PST Modified files: sys/ufs/ufs ufs_dirhash.c Log: Fix a bug in ufsdirhash_adjfree() that caused it to incorrectly update the free-space statistics in some cases. The problem affected directory blocks when the free space dropped below the size of the maximum allowed entry size. When this happened, the free-space summary information could claim that there are no further blocks that can fit a maximum-size entry, even if there are. The effect of this bug is that the directory may be enlarged even though there is space within the directory for the new entry. This wastes disk space and has a negative impact on performance. Fix it by correctly computing the dh_firstfree array index, adding a helper macro for clarity. Put an extra sanity check into ufsdirhash_checkblock() to detect the situation in future. Found by: dwmalone Reviewed by: dwmalone MFC after: 1 week Revision Changes Path 1.8 +7 -10 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 Mon Mar 11 11:17: 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 25F4D37B400; Mon, 11 Mar 2002 11:17:02 -0800 (PST) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BJH2678886; Mon, 11 Mar 2002 11:17:02 -0800 (PST) (envelope-from yoichi) Message-Id: <200203111917.g2BJH2678886@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Mon, 11 Mar 2002 11:17:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/cannadic 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/03/11 11:17:02 PST Modified files: japanese/cannadic Makefile distinfo Log: Update to 0.94b. PR: ports/35772 Submitted by: maintainer Revision Changes Path 1.8 +1 -1 ports/japanese/cannadic/Makefile 1.5 +1 -1 ports/japanese/cannadic/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 11:26: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 4DFF337B421; Mon, 11 Mar 2002 11:26:30 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BJQUq80562; Mon, 11 Mar 2002 11:26:30 -0800 (PST) (envelope-from rwatson) Message-Id: <200203111926.g2BJQUq80562@freefall.freebsd.org> From: Robert Watson Date: Mon, 11 Mar 2002 11:26:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc Makefile newsyslog.conf syslog.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 rwatson 2002/03/11 11:26:29 PST Modified files: etc Makefile newsyslog.conf syslog.conf Log: Clean up logging of security information a bit: o Introduce /var/log/authentication.log, which will be the target for auth.info and authpriv.info by default. Rotate on the same schedule as most other logs. Create at installation. o Remove logging of auth.info from /var/log/security.log, which will return to being only for security feature subsystems (such as ipfw, and so on). This creates a special authentication log, which can now be searched by scripts for authentication events. Revision Changes Path 1.275 +3 -1 src/etc/Makefile 1.37 +2 -1 src/etc/newsyslog.conf 1.19 +3 -2 src/etc/syslog.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 11:35: 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 8210A37B402; Mon, 11 Mar 2002 11:34:57 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BJYva83422; Mon, 11 Mar 2002 11:34:57 -0800 (PST) (envelope-from rwatson) Message-Id: <200203111934.g2BJYva83422@freefall.freebsd.org> From: Robert Watson Date: Mon, 11 Mar 2002 11:34:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc Makefile newsyslog.conf syslog.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 rwatson 2002/03/11 11:34:57 PST Modified files: etc Makefile newsyslog.conf syslog.conf Log: Turns out everyone is a lot lazier than I thought. Spell 'authentication.log' as 'auth.log'. This is also more consistent with syslog facility names. Sigh. :-) Submitted by: asmodai, aeonflux, green, .... Revision Changes Path 1.276 +2 -2 src/etc/Makefile 1.38 +2 -2 src/etc/newsyslog.conf 1.20 +2 -2 src/etc/syslog.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 11: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 D8D1737B423; Mon, 11 Mar 2002 11:35:10 -0800 (PST) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BJZAp83523; Mon, 11 Mar 2002 11:35:10 -0800 (PST) (envelope-from jhb) Message-Id: <200203111935.g2BJZAp83523@freefall.freebsd.org> From: John Baldwin Date: Mon, 11 Mar 2002 11:35:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha interrupt.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2002/03/11 11:35:10 PST Modified files: sys/alpha/alpha interrupt.c Log: Grrr, turn preemption back off on the alpha again. It is still not stable. Noticed by: wilko, mjacob, jhb, peter, and others Revision Changes Path 1.63 +1 -1 src/sys/alpha/alpha/interrupt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 11:39: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 62A5537B402; Mon, 11 Mar 2002 11:39:08 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BJd8184164; Mon, 11 Mar 2002 11:39:08 -0800 (PST) (envelope-from rwatson) Message-Id: <200203111939.g2BJd8184164@freefall.freebsd.org> From: Robert Watson Date: Mon, 11 Mar 2002 11:39:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/periodic/security 800.loginfail X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 11:39:08 PST Modified files: etc/periodic/security 800.loginfail Log: Update login failure checking to check auth.log instead of messages, and teach it to look for more general classes of failures, including SSH login failures. This is similar but not identical to a patch submitted by aeonflux@synapse.subneural.net. Revision Changes Path 1.2 +4 -4 src/etc/periodic/security/800.loginfail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 11:42: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from aerotus.media-w.com (aerotus.media-w.com [210.249.47.138]) by hub.freebsd.org (Postfix) with ESMTP id C59DA37B41C; Mon, 11 Mar 2002 11:41:53 -0800 (PST) Received: from excalibur.nobutaka.com (pl176.nas921.m-hiroshima.nttpc.ne.jp [210.153.226.176]) by aerotus.media-w.com (8.11.6/8.11.5) with ESMTP id g2BJfpo57380; Tue, 12 Mar 2002 04:41:51 +0900 (JST) (envelope-from nobutaka@nobutaka.com) Date: Tue, 12 Mar 2002 04:40:39 +0900 Message-ID: <86adte28qw.wl@excalibur.nobutaka.com> From: MANTANI Nobutaka To: Maxim Sobolev Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... In-Reply-To: <200203111725.g2BHPVF52248@freefall.freebsd.org> References: <200203111725.g2BHPVF52248@freefall.freebsd.org> User-Agent: 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.1 (i386--freebsd) MULE/5.0 (SAKAKI) X-Face: gs6YudON~<[_FToV!@PVKIoi(nBO%CK'Z0\!]6|qp:+#7._IQV7s~i`:h@lqY0$YD7X}uZ6~0Zxuy$e`0 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 Mon, 11 Mar 2002 09:25:31 -0800 (PST), Maxim Sobolev wrote: > > sobomax 2002/03/11 09:25:31 PST > > Modified files: > graphics/autotrace Makefile > graphics/graphviz Makefile > graphics/libafterimage Makefile > graphics/librsvg Makefile > graphics/libwmf Makefile > graphics/sdl_ttf Makefile > print/ft2demos Makefile > print/gnomeprint Makefile > textproc/p5-XML-LibRSVG Makefile > x11/XFree86-4-libraries Makefile > x11-fm/nautilus Makefile > Log: > Chase increase of freetype2 shlib version. Don't you bump PORTREVISION? -- MANTANI Nobutaka nobutaka@FreeBSD.org, nobutaka@nobutaka.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 11:55:12 2002 Delivered-To: cvs-all@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id 3BF3237B400; Mon, 11 Mar 2002 11:55:01 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id VAA57065; Mon, 11 Mar 2002 21:54:40 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h41.227.dialup.iptcom.net [212.9.227.41]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id VAA90930; Mon, 11 Mar 2002 21:54:39 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id g2BJrCB69285; Mon, 11 Mar 2002 21:53:12 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C8D0B5D.3186A73D@FreeBSD.org> Date: Mon, 11 Mar 2002 21:54:05 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: MANTANI Nobutaka Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... References: <200203111725.g2BHPVF52248@freefall.freebsd.org> <86adte28qw.wl@excalibur.nobutaka.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG MANTANI Nobutaka wrote: > > At Mon, 11 Mar 2002 09:25:31 -0800 (PST), > Maxim Sobolev wrote: > > > > sobomax 2002/03/11 09:25:31 PST > > > > Modified files: > > graphics/autotrace Makefile > > graphics/graphviz Makefile > > graphics/libafterimage Makefile > > graphics/librsvg Makefile > > graphics/libwmf Makefile > > graphics/sdl_ttf Makefile > > print/ft2demos Makefile > > print/gnomeprint Makefile > > textproc/p5-XML-LibRSVG Makefile > > x11/XFree86-4-libraries Makefile > > x11-fm/nautilus Makefile > > Log: > > Chase increase of freetype2 shlib version. > > Don't you bump PORTREVISION? No, I didn't due to the reasons already discussed here several times. In short, this would require from me to bump PORTREVISION in some 2,600 ports (`cd /usr/ports ; make search key=freetype2 | grep ^Path | wc -l') and I am not paranoidal enough. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 11:56: 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 476E837B402; Mon, 11 Mar 2002 11:56:03 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BJu3986915; Mon, 11 Mar 2002 11:56:03 -0800 (PST) (envelope-from cjc) Message-Id: <200203111956.g2BJu3986915@freefall.freebsd.org> From: "Crist J. Clark" Date: Mon, 11 Mar 2002 11:56:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/periodic/weekly 330.catman X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjc 2002/03/11 11:56:03 PST Modified files: (Branch: RELENG_4) etc/periodic/weekly 330.catman Log: MFC 1.9: Environmental variable was not being passed to a subshell as intended. PR: bin/35558 Submitted by: Nicolas Rachinsky Revision Changes Path 1.5.2.4 +3 -3 src/etc/periodic/weekly/330.catman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 11: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 9089D37B416; Mon, 11 Mar 2002 11:56:46 -0800 (PST) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BJuk287090; Mon, 11 Mar 2002 11:56:46 -0800 (PST) (envelope-from iedowse) Message-Id: <200203111956.g2BJuk287090@freefall.freebsd.org> From: Ian Dowse Date: Mon, 11 Mar 2002 11:56:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/last last.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG iedowse 2002/03/11 11:56:46 PST Modified files: (Branch: RELENG_4) usr.bin/last last.c Log: MFC: 1.23, 1.24; split up the big wtmp() function. Revision Changes Path 1.10.6.8 +145 -142 src/usr.bin/last/last.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 11: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 4833937B417; Mon, 11 Mar 2002 11:58:54 -0800 (PST) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BJwsl87579; Mon, 11 Mar 2002 11:58:54 -0800 (PST) (envelope-from jhb) Message-Id: <200203111958.g2BJwsl87579@freefall.freebsd.org> From: John Baldwin Date: Mon, 11 Mar 2002 11:58:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha interrupt.c src/sys/ia64/ia64 interrupt.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2002/03/11 11:58:54 PST Modified files: sys/alpha/alpha interrupt.c sys/ia64/ia64 interrupt.c Log: Fix a misspelling of mine: s/optomization/optimization/. Noticed by: bmilekic Revision Changes Path 1.64 +1 -1 src/sys/alpha/alpha/interrupt.c 1.21 +1 -1 src/sys/ia64/ia64/interrupt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 12: 6: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 9575F37B404; Mon, 11 Mar 2002 12:06:36 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BK6aj92329; Mon, 11 Mar 2002 12:06:36 -0800 (PST) (envelope-from lioux) Message-Id: <200203112006.g2BK6aj92329@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Mon, 11 Mar 2002 12:06:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ipcheck 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/03/11 12:06:36 PST Modified files: net/ipcheck Makefile distinfo Log: Update to 0.153 PR: 35746 Submitted by: The Anarcat Revision Changes Path 1.12 +1 -1 ports/net/ipcheck/Makefile 1.9 +1 -1 ports/net/ipcheck/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 12: 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 ECB0237B405; Mon, 11 Mar 2002 12:08:08 -0800 (PST) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BK88M92648; Mon, 11 Mar 2002 12:08:08 -0800 (PST) (envelope-from iedowse) Message-Id: <200203112008.g2BK88M92648@freefall.freebsd.org> From: Ian Dowse Date: Mon, 11 Mar 2002 12:08:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/last last.1 last.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG iedowse 2002/03/11 12:08:08 PST Modified files: (Branch: RELENG_4) usr.bin/last last.1 last.c Log: MFC: add a new "-y" flag to display the year in the session start time. Revision Changes Path 1.6.2.5 +5 -2 src/usr.bin/last/last.1 1.10.6.9 +8 -3 src/usr.bin/last/last.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 12:33:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C948137B416; Mon, 11 Mar 2002 12:33:30 -0800 (PST) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BKXUC96293; Mon, 11 Mar 2002 12:33:30 -0800 (PST) (envelope-from znerd) Message-Id: <200203112033.g2BKXUC96293@freefall.freebsd.org> From: Ernst de Haan Date: Mon, 11 Mar 2002 12:33:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/orion 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 znerd 2002/03/11 12:33:30 PST Modified files: www/orion pkg-descr Log: Changed to reflect the current version of the installed application and the current behaviour of the port. Revision Changes Path 1.5 +15 -15 ports/www/orion/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 12:35: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 9C25937B417; Mon, 11 Mar 2002 12:35:07 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BKZ7W96728; Mon, 11 Mar 2002 12:35:07 -0800 (PST) (envelope-from sobomax) Message-Id: <200203112035.g2BKZ7W96728@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 11 Mar 2002 12:35:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ORBit2 Makefile distinfo ports/devel/bonobo-activation Makefile distinfo pkg-plist ports/x11-toolkits/gail Makefile distinfo pkg-plist ports/devel/gnomevfs2 Makefile distinfo pkg-plist ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/11 12:35:07 PST Modified files: devel/ORBit2 Makefile distinfo devel/bonobo-activation Makefile distinfo pkg-plist x11-toolkits/gail Makefile distinfo pkg-plist devel/gnomevfs2 Makefile distinfo pkg-plist devel/gnomevfs2/files patch-aa patch-intltool-merge.in devel/libIDL Makefile graphics/libart_lgpl2 Makefile devel/libbonobo Makefile devel/libglade2 Makefile distinfo pkg-plist graphics/libgnomecanvas Makefile distinfo pkg-plist net/linc Makefile distinfo Log: Bring up already ported portion on GNOME2 development platform on par with GNOME2 beta2 release. Revision Changes Path 1.65 +2 -2 ports/devel/ORBit2/Makefile 1.25 +1 -1 ports/devel/ORBit2/distinfo 1.6 +2 -2 ports/devel/bonobo-activation/Makefile 1.3 +1 -1 ports/devel/bonobo-activation/distinfo 1.3 +32 -0 ports/devel/bonobo-activation/pkg-plist 1.30 +2 -2 ports/devel/gnomevfs2/Makefile 1.15 +1 -1 ports/devel/gnomevfs2/distinfo 1.14 +10 -10 ports/devel/gnomevfs2/files/patch-aa 1.3 +6 -6 ports/devel/gnomevfs2/files/patch-intltool-merge.in 1.17 +2 -43 ports/devel/gnomevfs2/pkg-plist 1.4 +2 -2 ports/devel/libIDL/Makefile 1.3 +1 -1 ports/devel/libbonobo/Makefile 1.31 +3 -3 ports/devel/libglade2/Makefile 1.14 +1 -1 ports/devel/libglade2/distinfo 1.16 +2 -0 ports/devel/libglade2/pkg-plist 1.4 +1 -1 ports/graphics/libart_lgpl2/Makefile 1.6 +2 -2 ports/graphics/libgnomecanvas/Makefile 1.3 +1 -1 ports/graphics/libgnomecanvas/distinfo 1.4 +4 -0 ports/graphics/libgnomecanvas/pkg-plist 1.5 +3 -3 ports/net/linc/Makefile 1.3 +1 -1 ports/net/linc/distinfo 1.4 +2 -2 ports/x11-toolkits/gail/Makefile 1.3 +1 -1 ports/x11-toolkits/gail/distinfo 1.3 +20 -20 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 Mar 11 12:37:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 89F1937B404; Mon, 11 Mar 2002 12:37:27 -0800 (PST) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BKbRA97230; Mon, 11 Mar 2002 12:37:27 -0800 (PST) (envelope-from znerd) Message-Id: <200203112037.g2BKbRA97230@freefall.freebsd.org> From: Ernst de Haan Date: Mon, 11 Mar 2002 12:37:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: 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/03/11 12:37:27 PST Modified files: www/orion Makefile Log: Using ECHO_CMD instead of ECHO. Revision Changes Path 1.27 +17 -17 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 Mar 11 12: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 6173337B404; Mon, 11 Mar 2002 12:44:36 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BKiav99274; Mon, 11 Mar 2002 12:44:36 -0800 (PST) (envelope-from sobomax) Message-Id: <200203112044.g2BKiav99274@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 11 Mar 2002 12:44:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/x11-toolkits Makefile CVSROOT modules ports/devel/glib13 Makefile distinfo pkg-comment pkg-descr pkg-plist ports/devel/glib13/files patch-ae patch-ag patch-ah patch-glib::libcharset::Makefile.in patch-gmodule::gmodule-dl.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 12:44:36 PST Modified files: devel Makefile x11-toolkits Makefile . modules Removed files: devel/glib13 Makefile distinfo pkg-comment pkg-descr pkg-plist devel/glib13/files patch-ae patch-ag patch-ah patch-glib::libcharset::Makefile.in patch-gmodule::gmodule-dl.c patch-ltmain.sh x11-toolkits/gtk13 Makefile distinfo pkg-comment pkg-descr pkg-plist x11-toolkits/gtk13/files patch-Makefile.in patch-ad patch-ae patch-ag patch-ah patch-ai patch-ak patch-ltmain.sh Log: Say goodbuy to gtk13/glib13 - it was replaced with gtk20 (after a repo-copy of course). Special thanks to: cvs (for extremely fast repo-copying) Revision Changes Path 1.4825 +2 -2 CVSROOT/modules 1.775 +0 -1 ports/devel/Makefile 1.51 +0 -46 ports/devel/glib13/Makefile (dead) 1.30 +0 -1 ports/devel/glib13/distinfo (dead) 1.22 +0 -59 ports/devel/glib13/files/patch-ae (dead) 1.8 +0 -14 ports/devel/glib13/files/patch-ag (dead) 1.2 +0 -11 ports/devel/glib13/files/patch-ah (dead) 1.2 +0 -25 ports/devel/glib13/files/patch-glib::libcharset::Makefile.in (dead) 1.2 +0 -23 ports/devel/glib13/files/patch-gmodule::gmodule-dl.c (dead) 1.6 +0 -45 ports/devel/glib13/files/patch-ltmain.sh (dead) 1.4 +0 -1 ports/devel/glib13/pkg-comment (dead) 1.6 +0 -14 ports/devel/glib13/pkg-descr (dead) 1.31 +0 -117 ports/devel/glib13/pkg-plist (dead) 1.163 +0 -1 ports/x11-toolkits/Makefile 1.87 +0 -52 ports/x11-toolkits/gtk13/Makefile (dead) 1.46 +0 -1 ports/x11-toolkits/gtk13/distinfo (dead) 1.2 +0 -14 ports/x11-toolkits/gtk13/files/patch-Makefile.in (dead) 1.12 +0 -23 ports/x11-toolkits/gtk13/files/patch-ad (dead) 1.9 +0 -14 ports/x11-toolkits/gtk13/files/patch-ae (dead) 1.8 +0 -14 ports/x11-toolkits/gtk13/files/patch-ag (dead) 1.7 +0 -14 ports/x11-toolkits/gtk13/files/patch-ah (dead) 1.3 +0 -11 ports/x11-toolkits/gtk13/files/patch-ai (dead) 1.4 +0 -14 ports/x11-toolkits/gtk13/files/patch-ak (dead) 1.6 +0 -45 ports/x11-toolkits/gtk13/files/patch-ltmain.sh (dead) 1.4 +0 -1 ports/x11-toolkits/gtk13/pkg-comment (dead) 1.6 +0 -19 ports/x11-toolkits/gtk13/pkg-descr (dead) 1.60 +0 -287 ports/x11-toolkits/gtk13/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 Mon Mar 11 12:54:31 2002 Delivered-To: cvs-all@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id DE3C537B417; Mon, 11 Mar 2002 12:54:13 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id WAA81395; Mon, 11 Mar 2002 22:54:11 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h83.229.dialup.iptcom.net [212.9.229.83]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id WAA09220; Mon, 11 Mar 2002 22:54:10 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id g2BKrcB69528; Mon, 11 Mar 2002 22:53:38 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C8D1986.41060F61@FreeBSD.org> Date: Mon, 11 Mar 2002 22:54:30 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/devel Makefile ports/x11-toolkits MakefileCVSROOT modules ports/devel/glib13 Makefile distinfo pkg-commentpkg-descr pkg-plist ports/devel/glib13/files patch-ae patch-agpatch-ah patch-glib::libcharset::Makefile.in patch-gmodule::gmodule-dl.c ... References: <200203112044.g2BKiav99274@freefall.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Maxim Sobolev wrote: > > sobomax 2002/03/11 12:44:36 PST > > Modified files: > devel Makefile > x11-toolkits Makefile > . modules > Removed files: > devel/glib13 Makefile distinfo pkg-comment pkg-descr > pkg-plist > devel/glib13/files patch-ae patch-ag patch-ah > patch-glib::libcharset::Makefile.in > patch-gmodule::gmodule-dl.c > patch-ltmain.sh > x11-toolkits/gtk13 Makefile distinfo pkg-comment pkg-descr > pkg-plist > x11-toolkits/gtk13/files patch-Makefile.in patch-ad patch-ae > patch-ag patch-ah patch-ai patch-ak > patch-ltmain.sh > Log: > Say goodbuy to gtk13/glib13 - it was replaced with gtk20 (after a repo-copy of ^^^^^^^ good-bye actually. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 13: 4: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 0A4B237B416; Mon, 11 Mar 2002 13:04:33 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BL4Xm01754; Mon, 11 Mar 2002 13:04:33 -0800 (PST) (envelope-from sos) Message-Id: <200203112104.g2BL4Xm01754@freefall.freebsd.org> From: Søren Schmidt Date: Mon, 11 Mar 2002 13:04:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-disk.c ata-raid.c atapi-all.c atapi-cd.c atapi-fd.c atapi-tape.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 13:04:32 PST Modified files: sys/dev/ata ata-all.c ata-all.h ata-disk.c ata-raid.c atapi-all.c atapi-cd.c atapi-fd.c atapi-tape.c Log: Add new support for locking an ATA channel and use that throughout the ATA/ATAPI driver. This solves the concurrency problem with the new GEOM code, and also cuts a good deal of the patch size in the upcoming MFC. Revision Changes Path 1.137 +22 -24 src/sys/dev/ata/ata-all.c 1.51 +14 -0 src/sys/dev/ata/ata-all.h 1.127 +10 -8 src/sys/dev/ata/ata-disk.c 1.36 +10 -4 src/sys/dev/ata/ata-raid.c 1.86 +11 -10 src/sys/dev/ata/atapi-all.c 1.111 +1 -1 src/sys/dev/ata/atapi-cd.c 1.69 +1 -1 src/sys/dev/ata/atapi-fd.c 1.65 +1 -1 src/sys/dev/ata/atapi-tape.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 13:22:59 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 B3A7437B43C; Mon, 11 Mar 2002 13:22:20 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 21B8A5347; Mon, 11 Mar 2002 22:22:18 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: "Crist J. Clark" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc src/share/man/man5 rc.conf.5 References: <200203110847.g2B8l4714026@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 11 Mar 2002 22:22:17 +0100 In-Reply-To: <200203110847.g2B8l4714026@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 "Crist J. Clark" writes: > At the same time, allow the administrator to have dumpdev enabled > while dumpdir (savecore(8)) is disabled and document how to do it. Speaking of dumpdev, 'dumpon ${dumpdev}' should be one of the very very first things we do in /etc/rc, before even fsck - it's not uncommon for kernel bugs to cause panics during the boot process, and it's a PITA not to have a dump device configured in time. 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 Mar 11 13:24:12 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 4D98037B490; Mon, 11 Mar 2002 13:22:47 -0800 (PST) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 97CFA4D8A2; Tue, 12 Mar 2002 06:22:45 +0900 (JST) Date: Tue, 12 Mar 2002 06:22:45 +0900 Message-ID: <86r8mqajfe.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Maxim Sobolev Cc: MANTANI Nobutaka , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, ports@FreeBSD.org Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... In-Reply-To: <3C8D0B5D.3186A73D@FreeBSD.org> References: <200203111725.g2BHPVF52248@freefall.freebsd.org> <86adte28qw.wl@excalibur.nobutaka.com> <3C8D0B5D.3186A73D@FreeBSD.org> User-Agent: Wanderlust/2.9.7 (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 Mon, 11 Mar 2002 21:54:05 +0200, sobomax wrote: > > > Chase increase of freetype2 shlib version. > > > > Don't you bump PORTREVISION? > > No, I didn't due to the reasons already discussed here several times. > In short, this would require from me to bump PORTREVISION in some > 2,600 ports (`cd /usr/ports ; make search key=freetype2 | grep ^Path | > wc -l') and I am not paranoidal enough. I can understand your sentiment here that it is too paranoiac and unrealistic to touch 2,600 Makefile's, but I believe you should at least bump the PORTREVISIONs of the ports that directly lib-depend on libfreetype2. That's the way we've done things since we introduced PORTREVISION. Most of us still remember what happened when libpng's major was bumped without bumping the dependent ports' PORTREVISIONs. Innocent users who used `pkg_version -c' scripts to upgrade packages all got stuck and forced to reinstall almost everything by hand. Now I can say it is likely that the total cost would have been lower if we had bumped the PORTREVISIONs of (literally) thousands of ports that depended on libpng. I'm sure you are not going to repeat the mistake.. * * * Notes for portupgrade users: Possibly you won't see a big problem even if you blindly portupgrade freetype2 since portupgrade keeps the old version of libfreetype2. However, you'd better rebuild and reinstall all the dependant packages to stop the libraries and the apps from linking different versions of a library simultaneously. Run the following command to do that automatically (Will take a long time, as you can imagine): portupgrade -fr freetype2 -x '>=freetype2' Which reads: rebuild and reinstall freetype2 and all that depend on it except for the packages that had been installed prior to freetype2. -- / /__ __ 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 Mon Mar 11 13:24: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 50C2737B42C; Mon, 11 Mar 2002 13:24:17 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BLOHH07900; Mon, 11 Mar 2002 13:24:17 -0800 (PST) (envelope-from pat) Message-Id: <200203112124.g2BLOHH07900@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 13:24:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/tvision Makefile distinfo pkg-plist ports/devel/tvision/files patch-lib::dialogs.h patch-ltmain.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/11 13:24:17 PST Modified files: devel/tvision Makefile distinfo pkg-plist Added files: devel/tvision/files patch-ltmain.sh Removed files: devel/tvision/files patch-lib::dialogs.h Log: Update to 0.8 PR: 35789 Submitted by: KATO Tsuguru Revision Changes Path 1.21 +3 -3 ports/devel/tvision/Makefile 1.6 +1 -1 ports/devel/tvision/distinfo 1.2 +0 -11 ports/devel/tvision/files/patch-lib::dialogs.h (dead) 1.1 +41 -0 ports/devel/tvision/files/patch-ltmain.sh (new) 1.8 +1 -1 ports/devel/tvision/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 Mar 11 13:26: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 EBBB937B405; Mon, 11 Mar 2002 13:26:16 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BLQGi08402; Mon, 11 Mar 2002 13:26:16 -0800 (PST) (envelope-from pat) Message-Id: <200203112126.g2BLQGi08402@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 13:26:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gimageview 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/03/11 13:26:16 PST Modified files: graphics/gimageview Makefile distinfo Log: Update to 0.1.100 PR: 35783 Submitted by: maintainer Revision Changes Path 1.3 +1 -1 ports/graphics/gimageview/Makefile 1.3 +1 -1 ports/graphics/gimageview/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 13:27: 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 27FB537B402; Mon, 11 Mar 2002 13:26:56 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 9AE3C5347; Mon, 11 Mar 2002 22:26:54 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Robert Watson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile newsyslog.conf syslog.conf References: <200203111926.g2BJQUq80562@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 11 Mar 2002 22:26:54 +0100 In-Reply-To: <200203111926.g2BJQUq80562@freefall.freebsd.org> Message-ID: Lines: 8 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 Robert Watson writes: > o Introduce /var/log/authentication.log, Augh! auth.log please? 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 Mar 11 13:28:30 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 BD0A137B404; Mon, 11 Mar 2002 13:28:12 -0800 (PST) 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 g2BLS8i48045; Mon, 11 Mar 2002 16:28:08 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Mon, 11 Mar 2002 16:28:08 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile newsyslog.conf syslog.conf In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 11 Mar 2002, Dag-Erling Smorgrav wrote: > Robert Watson writes: > > o Introduce /var/log/authentication.log, > > Augh! auth.log please? See two commits later. Your cries of pain merely echo the pain of others. 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 Mon Mar 11 13:29: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 F19FC37B416; Mon, 11 Mar 2002 13:29:24 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 85F305347; Mon, 11 Mar 2002 22:29:23 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Robert Watson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile newsyslog.conf syslog.conf References: From: Dag-Erling Smorgrav Date: 11 Mar 2002 22:29:23 +0100 In-Reply-To: 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 Robert Watson writes: > On 11 Mar 2002, Dag-Erling Smorgrav wrote: > > Robert Watson writes: > > > o Introduce /var/log/authentication.log, > > Augh! auth.log please? > See two commits later. Your cries of pain merely echo the pain of others. "I feel a great disturbance in the force..." 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 Mar 11 13:31: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 003F637B417; Mon, 11 Mar 2002 13:31:22 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BLVMH09473; Mon, 11 Mar 2002 13:31:22 -0800 (PST) (envelope-from pat) Message-Id: <200203112131.g2BLVMH09473@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 13:31:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/baudline 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/03/11 13:31:22 PST Modified files: audio/baudline Makefile distinfo Log: Update to 0.90 and add new site PR: 35751 Submitted by: maintainer Revision Changes Path 1.3 +3 -2 ports/audio/baudline/Makefile 1.3 +1 -1 ports/audio/baudline/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 13:35:30 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 B471737B404; Mon, 11 Mar 2002 13:35:25 -0800 (PST) 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 g2BLZNi48169; Mon, 11 Mar 2002 16:35:23 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Mon, 11 Mar 2002 16:35:22 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile newsyslog.conf syslog.conf In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 11 Mar 2002, Dag-Erling Smorgrav wrote: > Robert Watson writes: > > On 11 Mar 2002, Dag-Erling Smorgrav wrote: > > > Robert Watson writes: > > > > o Introduce /var/log/authentication.log, > > > Augh! auth.log please? > > See two commits later. Your cries of pain merely echo the pain of others. > > "I feel a great disturbance in the force..." Now if only we can figure out how to implement the "were suddenly silenced" bit. 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 Mon Mar 11 13:37:11 2002 Delivered-To: cvs-all@freebsd.org Received: from mail6.speakeasy.net (mail6.speakeasy.net [216.254.0.206]) by hub.freebsd.org (Postfix) with ESMTP id 4CA7F37B41A for ; Mon, 11 Mar 2002 13:37:00 -0800 (PST) Received: (qmail 19080 invoked from network); 11 Mar 2002 21:36:58 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail6.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 11 Mar 2002 21:36:58 -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 g2BLb1v23465; Mon, 11 Mar 2002 16:37:03 -0500 (EST) (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: <200203112104.g2BL4Xm01754@freefall.freebsd.org> Date: Mon, 11 Mar 2002 16:36:41 -0500 (EST) From: John Baldwin To: SXren Schmidt Subject: RE: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-disk.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 11-Mar-2002 SXren Schmidt wrote: > sos 2002/03/11 13:04:32 PST > > Modified files: > sys/dev/ata ata-all.c ata-all.h ata-disk.c ata-raid.c > atapi-all.c atapi-cd.c atapi-fd.c > atapi-tape.c > Log: > Add new support for locking an ATA channel and use that throughout > the ATA/ATAPI driver. This solves the concurrency problem with > the new GEOM code, and also cuts a good deal of the patch size > in the upcoming MFC. Hmm, could you try using a mutex or sx lock instead of using atomic operations? You aren't using any memory barriers, thus this won't work on SMP sparc64, ia64, Pentium III+, or Alpha EV6+ machines. Also, the use of ATA_FORCELOCK_CH()in ata_reinit() looks very evil as you are just assuming that no threads on any other CPU's are messing with the channel at that point in time. -- 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 Mar 11 13:42:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F2D1137B405; Mon, 11 Mar 2002 13:42:35 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BLgZB11722; Mon, 11 Mar 2002 13:42:35 -0800 (PST) (envelope-from phk) Message-Id: <200203112142.g2BLgZB11722@freefall.freebsd.org> From: Poul-Henning Kamp Date: Mon, 11 Mar 2002 13:42:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom.h geom_bsd.c geom_dev.c geom_disk.c geom_dump.c geom_event.c geom_io.c geom_kern.c geom_mbr.c geom_mbrext.c geom_slice.c geom_slice.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/03/11 13:42:35 PST Added files: sys/geom geom.h geom_bsd.c geom_dev.c geom_disk.c geom_dump.c geom_event.c geom_io.c geom_kern.c geom_mbr.c geom_mbrext.c geom_slice.c geom_slice.h geom_subr.c Log: First commit of the GEOM subsystem to make it easier for people to test and play with this. This is not yet production quality and should be run only on dedicated test boxes. For people who want to develop transformations for GEOM there exist a set of shims to run geom in userland (ask phk@freebsd.org). Reports of all kinds to: phk@freebsd.org Please include in report: dmesg sysctl debug.geomdot sysctl debug.geomconf Known significant limitations: no kernel dump facility. ioctls severely restricted. Sponsored by: DARPA, NAI Labs Revision Changes Path 1.1 +290 -0 src/sys/geom/geom.h (new) 1.1 +257 -0 src/sys/geom/geom_bsd.c (new) 1.1 +382 -0 src/sys/geom/geom_dev.c (new) 1.1 +232 -0 src/sys/geom/geom_disk.c (new) 1.1 +275 -0 src/sys/geom/geom_dump.c (new) 1.1 +299 -0 src/sys/geom/geom_event.c (new) 1.1 +375 -0 src/sys/geom/geom_io.c (new) 1.1 +192 -0 src/sys/geom/geom_kern.c (new) 1.1 +211 -0 src/sys/geom/geom_mbr.c (new) 1.1 +200 -0 src/sys/geom/geom_mbrext.c (new) 1.1 +278 -0 src/sys/geom/geom_slice.c (new) 1.1 +60 -0 src/sys/geom/geom_slice.h (new) 1.1 +639 -0 src/sys/geom/geom_subr.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 Mar 11 13:51: 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 13F8937B400; Mon, 11 Mar 2002 13:50:58 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g2BLoui17807; Mon, 11 Mar 2002 14:50:57 -0700 (MST) (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 g2BLouL26089; Mon, 11 Mar 2002 14:50:56 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200203112150.g2BLouL26089@harmony.village.org> To: Robert Watson Subject: Re: cvs commit: src/etc Makefile newsyslog.conf syslog.conf Cc: Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Mon, 11 Mar 2002 16:35:22 EST." References: Date: Mon, 11 Mar 2002 14:50:56 -0700 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 Robert Watson writes: : Now if only we can figure out how to implement the "were suddenly : silenced" bit. Too bad 'killall -9 syslogd' doesn't do that :-) Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 14: 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 4C7DA37B416; Mon, 11 Mar 2002 14:01:53 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BM1rk14265; Mon, 11 Mar 2002 14:01:53 -0800 (PST) (envelope-from pat) Message-Id: <200203112201.g2BM1rk14265@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 14:01:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/xzx/files patch-doc::Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/11 14:01:53 PST Added files: emulators/xzx/files patch-doc::Makefile.in Log: Add patch to fix package build PR: 35782 Submitted by: maintainer Revision Changes Path 1.1 +13 -0 ports/emulators/xzx/files/patch-doc::Makefile.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 Mar 11 14: 6: 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 9BD9937B417; Mon, 11 Mar 2002 14:05:59 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BM5xJ18814; Mon, 11 Mar 2002 14:05:59 -0800 (PST) (envelope-from pat) Message-Id: <200203112205.g2BM5xJ18814@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 14:05:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/p5-IMAP-Admin Makefile distinfo ports/mail/p5-IMAP-Admin/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 pat 2002/03/11 14:05:59 PST Modified files: mail/p5-IMAP-Admin Makefile distinfo Removed files: mail/p5-IMAP-Admin/files patch-aa Log: Update to 1.6.1 PR: 35771 Submitted by: maintainer Revision Changes Path 1.14 +1 -1 ports/mail/p5-IMAP-Admin/Makefile 1.9 +1 -1 ports/mail/p5-IMAP-Admin/distinfo 1.2 +0 -22 ports/mail/p5-IMAP-Admin/files/patch-aa (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 14:24: 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 2948E37B405; Mon, 11 Mar 2002 14:24:03 -0800 (PST) Received: (from jim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BMO3X21576; Mon, 11 Mar 2002 14:24:03 -0800 (PST) (envelope-from jim) Message-Id: <200203112224.g2BMO3X21576@freefall.freebsd.org> From: Jim Mock Date: Mon, 11 Mar 2002 14:24:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/easytag Makefile distinfo pkg-plist ports/audio/easytag/files patch-Makefile patch-ltmain.sh patch-src::Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jim 2002/03/11 14:24:02 PST Modified files: audio/easytag Makefile distinfo pkg-plist Added files: audio/easytag/files patch-ltmain.sh Removed files: audio/easytag/files patch-Makefile patch-src::Makefile Log: Update to version 0.17. PR: 35786 Submitted by: KATO Tsuguru Revision Changes Path 1.3 +12 -7 ports/audio/easytag/Makefile 1.4 +1 -1 ports/audio/easytag/distinfo 1.2 +0 -39 ports/audio/easytag/files/patch-Makefile (dead) 1.1 +12 -0 ports/audio/easytag/files/patch-ltmain.sh (new) 1.2 +0 -11 ports/audio/easytag/files/patch-src::Makefile (dead) 1.2 +1 -0 ports/audio/easytag/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 Mar 11 14:30: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 2549537B417; Mon, 11 Mar 2002 14:30:00 -0800 (PST) Received: (from green@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BMU0I22657; Mon, 11 Mar 2002 14:30:00 -0800 (PST) (envelope-from green) Message-Id: <200203112230.g2BMU0I22657@freefall.freebsd.org> From: Brian Feldman Date: Mon, 11 Mar 2002 14:30:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libz - Imported sources X-FreeBSD-CVS-Branch: ZLIB Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG green 2002/03/11 14:30:00 PST src/lib/libz - Imported sources Update of /home/ncvs/src/lib/libz In directory freefall.freebsd.org:/d/home/green/HEAD/src/lib/zlib-1.1.4 Log Message: Import zlib 1.1.4 onto the vendor branch. Status: Vendor Tag: ZLIB Release Tags: v1_1_4 U src/lib/libz/README U src/lib/libz/FAQ N src/lib/libz/INDEX U src/lib/libz/ChangeLog C src/lib/libz/adler32.c C src/lib/libz/compress.c C src/lib/libz/crc32.c C src/lib/libz/deflate.c C src/lib/libz/deflate.h C src/lib/libz/example.c C src/lib/libz/gzio.c C src/lib/libz/infblock.c U src/lib/libz/infblock.h C src/lib/libz/infcodes.c U src/lib/libz/infcodes.h C src/lib/libz/inffast.c U src/lib/libz/inffast.h U src/lib/libz/inffixed.h C src/lib/libz/inflate.c C src/lib/libz/inftrees.c U src/lib/libz/inftrees.h C src/lib/libz/infutil.c U src/lib/libz/infutil.h C src/lib/libz/maketree.c C src/lib/libz/minigzip.c C src/lib/libz/trees.c U src/lib/libz/trees.h C src/lib/libz/uncompr.c C src/lib/libz/zconf.h U src/lib/libz/zlib.h C src/lib/libz/zutil.c C src/lib/libz/zutil.h N src/lib/libz/descrip.mms U src/lib/libz/algorithm.txt C src/lib/libz/zlib.3 21 conflicts created by this import. Use the following command to help the merge: cvs checkout -jZLIB:yesterday -jZLIB src/lib/libz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 14:34: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 5C03E37B416; Mon, 11 Mar 2002 14:34:13 -0800 (PST) Received: (from jim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BMYDS23300; Mon, 11 Mar 2002 14:34:13 -0800 (PST) (envelope-from jim) Message-Id: <200203112234.g2BMYDS23300@freefall.freebsd.org> From: Jim Mock Date: Mon, 11 Mar 2002 14:34:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/mutt-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 jim 2002/03/11 14:34:12 PST Modified files: mail/mutt-devel Makefile Log: Add a MUTT_CONFIGURE_ARGS variable for adding additional config options, and adjust the documentation to suggest /etc/make.conf as a good place to store the Makefile knobs. PR: 35731 Submitted by: maintainer Revision Changes Path 1.158 +15 -2 ports/mail/mutt-devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 14:35:19 2002 Delivered-To: cvs-all@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id E346537B427; Mon, 11 Mar 2002 14:34:33 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id AAA23488; Tue, 12 Mar 2002 00:34:31 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from h193.228.dialup.iptcom.net (h193.228.dialup.iptcom.net [212.9.228.193]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id AAA50404; Tue, 12 Mar 2002 00:34:25 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... From: Maxim Sobolev To: Akinori MUSHA Cc: MANTANI Nobutaka , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, ports@FreeBSD.org In-Reply-To: <86r8mqajfe.wl@archon.local.idaemons.org> References: <200203111725.g2BHPVF52248@freefall.freebsd.org> <86adte28qw.wl@excalibur.nobutaka.com> <3C8D0B5D.3186A73D@FreeBSD.org> <86r8mqajfe.wl@archon.local.idaemons.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-T2pVhAankBhFsyFc8hH0" Message-Id: <1015886047.1763.26.camel@notebook> Mime-Version: 1.0 X-Mailer: Evolution/1.0.2 Date: 12 Mar 2002 00:34:19 +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 --=-T2pVhAankBhFsyFc8hH0 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2002-03-11 at 23:22, Akinori MUSHA wrote: > At Mon, 11 Mar 2002 21:54:05 +0200, > sobomax wrote: > > > > Chase increase of freetype2 shlib version. > > >=20 > > > Don't you bump PORTREVISION? > >=20 > > No, I didn't due to the reasons already discussed here several times. > > In short, this would require from me to bump PORTREVISION in some > > 2,600 ports (`cd /usr/ports ; make search key=3Dfreetype2 | grep ^Path = | > > wc -l') and I am not paranoidal enough. >=20 > I can understand your sentiment here that it is too paranoiac and > unrealistic to touch 2,600 Makefile's, but I believe you should at > least bump the PORTREVISIONs of the ports that directly lib-depend on > libfreetype2. That's the way we've done things since we introduced > PORTREVISION. >=20 > Most of us still remember what happened when libpng's major was bumped > without bumping the dependent ports' PORTREVISIONs. Innocent users > who used `pkg_version -c' scripts to upgrade packages all got stuck > and forced to reinstall almost everything by hand. >=20 > Now I can say it is likely that the total cost would have been lower > if we had bumped the PORTREVISIONs of (literally) thousands of ports > that depended on libpng. >=20 > I'm sure you are not going to repeat the mistake.. As I said earlier, what we really need is the feature that will track ABI-incompatible upgrades and when such upgrade is performed bump PORTREVISION of all dependent ports automagically. Actually I've already described prototype of such feature and instead of spending out time arguing whether or not we need to bump PORTREVISION on 10 out of tens or even hundreds ports that use freetype (waste of time IMO) in the long run we are better off to implement such feature and forget about it. In a nutshell idea is to assign each port with something called PKGABIVERSION (>=3D0, non-decreasing), which will need to be increased each time when some ABI-incompatible change is committed (e.g. shlib version bump) and make PKGREVISION of each port be an arithmetical sum of PKGABIVERSION's of all its dependencies and its own PORTREVISION. Actual implementation I'm leaving as an exercise for the reader, because I do not use portupgrade by myself and therefore have no interest in doing it on my own. For me `pkg_delete -r freetype2\* ; cd /usr/ports/x11/gnome ; make reinstall' is absolutely sufficient. -Maxim >=20 >=20 > * * * >=20 > Notes for portupgrade users: >=20 > Possibly you won't see a big problem even if you blindly portupgrade > freetype2 since portupgrade keeps the old version of libfreetype2. > However, you'd better rebuild and reinstall all the dependant packages > to stop the libraries and the apps from linking different versions of > a library simultaneously. Run the following command to do that > automatically (Will take a long time, as you can imagine): >=20 > portupgrade -fr freetype2 -x '>=3Dfreetype2' >=20 > Which reads: rebuild and reinstall freetype2 and all that depend on it > except for the packages that had been installed prior to freetype2. >=20 > --=20 > / > /__ __ Akinori.org / MUSHA.org > / ) ) ) ) / FreeBSD.org / Ruby-lang.org > Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp >=20 > "Somewhere out of a memory.. of lighted streets on quiet nights.." >=20 >=20 --=-T2pVhAankBhFsyFc8hH0 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 iD8DBQA8jTDfoNu5t4iCBa8RAoHaAJ9AoQufPLqwO/WZPqHa815TC34qmgCggCoO qOetucShLKEb2JLCoTpqnPI= =FNYN -----END PGP SIGNATURE----- --=-T2pVhAankBhFsyFc8hH0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 14:36: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 0BF1337B41B; Mon, 11 Mar 2002 14:36:27 -0800 (PST) Received: (from green@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BMaRm24042; Mon, 11 Mar 2002 14:36:27 -0800 (PST) (envelope-from green) Message-Id: <200203112236.g2BMaRm24042@freefall.freebsd.org> From: Brian Feldman Date: Mon, 11 Mar 2002 14:36:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libz adler32.c compress.c crc32.c deflate.c deflate.h example.c gzio.c infblock.c infcodes.c inffast.c inflate.c inftrees.c infutil.c maketree.c minigzip.c trees.c uncompr.c zconf.h zlib.3 zutil.c zutil.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 green 2002/03/11 14:36:26 PST Modified files: lib/libz adler32.c compress.c crc32.c deflate.c deflate.h example.c gzio.c infblock.c infcodes.c inffast.c inflate.c inftrees.c infutil.c maketree.c minigzip.c trees.c uncompr.c zconf.h zlib.3 zutil.c zutil.h Log: Fix conflicts. Revision Changes Path 1.7 +1 -1 src/lib/libz/adler32.c 1.7 +1 -1 src/lib/libz/compress.c 1.7 +1 -1 src/lib/libz/crc32.c 1.7 +4 -4 src/lib/libz/deflate.c 1.6 +1 -1 src/lib/libz/deflate.h 1.7 +1 -1 src/lib/libz/example.c 1.8 +1 -1 src/lib/libz/gzio.c 1.4 +7 -5 src/lib/libz/infblock.c 1.3 +3 -9 src/lib/libz/infcodes.c 1.3 +30 -17 src/lib/libz/inffast.c 1.3 +1 -1 src/lib/libz/inflate.c 1.3 +4 -5 src/lib/libz/inftrees.c 1.3 +1 -1 src/lib/libz/infutil.c 1.3 +1 -1 src/lib/libz/maketree.c 1.10 +1 -1 src/lib/libz/minigzip.c 1.7 +1 -1 src/lib/libz/trees.c 1.7 +1 -1 src/lib/libz/uncompr.c 1.7 +2 -2 src/lib/libz/zconf.h 1.5 +4 -4 src/lib/libz/zlib.3 1.7 +1 -1 src/lib/libz/zutil.c 1.6 +1 -1 src/lib/libz/zutil.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 14:37: 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 87A3237B41F; Mon, 11 Mar 2002 14:36:45 -0800 (PST) Received: (from green@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BMajq24120; Mon, 11 Mar 2002 14:36:45 -0800 (PST) (envelope-from green) Message-Id: <200203112236.g2BMajq24120@freefall.freebsd.org> From: Brian Feldman Date: Mon, 11 Mar 2002 14:36:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libz minigzip.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG green 2002/03/11 14:36:45 PST Modified files: lib/libz minigzip.c Log: s/nilename/filename/ Revision Changes Path 1.11 +1 -1 src/lib/libz/minigzip.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 14:37: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 081BB37B402; Mon, 11 Mar 2002 14:37:36 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BMbaP24193; Mon, 11 Mar 2002 14:37:36 -0800 (PST) (envelope-from ade) Message-Id: <200203112237.g2BMbaP24193@freefall.freebsd.org> From: Ade Lovett Date: Mon, 11 Mar 2002 14:37:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/imlib Makefile ports/graphics/imlib/files patch-imlib-config.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 ade 2002/03/11 14:37:35 PST Modified files: graphics/imlib Makefile graphics/imlib/files patch-imlib-config.in Log: Make generated imlib-config LOCALBASE-safe. PR: 34904 Submitted by: Kazutoshi Kubota Revision Changes Path 1.79 +1 -0 ports/graphics/imlib/Makefile 1.2 +1 -1 ports/graphics/imlib/files/patch-imlib-config.in To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 14:43: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 D75FF37B400; Mon, 11 Mar 2002 14:43:31 -0800 (PST) Received: (from jim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BMhVo25823; Mon, 11 Mar 2002 14:43:31 -0800 (PST) (envelope-from jim) Message-Id: <200203112243.g2BMhVo25823@freefall.freebsd.org> From: Jim Mock Date: Mon, 11 Mar 2002 14:43:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gtk-gnutella Makefile distinfo ports/net/gtk-gnutella/files patch-download.c patch-search.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 14:43:31 PST Modified files: net/gtk-gnutella Makefile distinfo Removed files: net/gtk-gnutella/files patch-download.c patch-search.c Log: Update to version 0.80. PR: 35692 Submitted by: Dominic Marks Approved by: maintainer Revision Changes Path 1.6 +3 -2 ports/net/gtk-gnutella/Makefile 1.4 +1 -1 ports/net/gtk-gnutella/distinfo 1.2 +0 -28 ports/net/gtk-gnutella/files/patch-download.c (dead) 1.2 +0 -20 ports/net/gtk-gnutella/files/patch-search.c (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 14:46: 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 2439B37B42B; Mon, 11 Mar 2002 14:45:30 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BMjUS26270; Mon, 11 Mar 2002 14:45:30 -0800 (PST) (envelope-from pat) Message-Id: <200203112245.g2BMjUS26270@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 14:45:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/wine Makefile distinfo pkg-plist ports/emulators/wine/files patch-gb X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 14:45:30 PST Modified files: emulators/wine Makefile distinfo pkg-plist emulators/wine/files patch-gb Log: Update to 2002.03.10 PR: 35781 Submitted by: maintainer Revision Changes Path 1.118 +2 -2 ports/emulators/wine/Makefile 1.69 +1 -1 ports/emulators/wine/distinfo 1.4 +5 -5 ports/emulators/wine/files/patch-gb 1.31 +3 -1 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 Mon Mar 11 14:51: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 7160437B402; Mon, 11 Mar 2002 14:51:18 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BMpID27207; Mon, 11 Mar 2002 14:51:18 -0800 (PST) (envelope-from ade) Message-Id: <200203112251.g2BMpID27207@freefall.freebsd.org> From: Ade Lovett Date: Mon, 11 Mar 2002 14:51:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/teTeX 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 ade 2002/03/11 14:51:18 PST Modified files: print/teTeX Makefile pkg-plist Log: Allow teTeX to be buildable without bringing in X11 (the only casualty being xdvi, for obvious reasons). Only difference from the original patch is the use of PLIST_SUB instead of duplicating (most of) the pkg-plist. Switch maintainer to ports@ - current maintainer has been unresponsive to both the submitter and to myself. doc@ might want to pick up on this one since it's a critical port for make release. PR: 34864 Submitted by: Steve Wills Revision Changes Path 1.47 +16 -3 ports/print/teTeX/Makefile 1.20 +10 -10 ports/print/teTeX/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 Mar 11 14:52:51 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 9A98937B417; Mon, 11 Mar 2002 14:52:46 -0800 (PST) Received: (from jake@localhost) by k6.locore.ca (8.11.6/8.11.6) id g2BMwNC38262; Mon, 11 Mar 2002 17:58:23 -0500 (EST) (envelope-from jake) Date: Mon, 11 Mar 2002 17:58:17 -0500 From: Jake Burkholder To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c Message-ID: <20020311175817.I20687@locore.ca> References: <200203111123.g2BBNo651853@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: <200203111123.g2BBNo651853@freefall.freebsd.org>; from des@FreeBSD.org on Mon, Mar 11, 2002 at 03:23:50AM -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 Apparently, On Mon, Mar 11, 2002 at 03:23:50AM -0800, Dag-Erling Smorgrav said words to the effect of; > des 2002/03/11 03:23:50 PST > > Modified files: > sbin/savecore savecore.c > Log: > Sparc64 support. This will build but its actually wrong. We can't make the same assumptions about the physical address of where the kernel is loaded as i386 does. > > Revision Changes Path > 1.48 +8 -8 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 Mon Mar 11 14:53: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 0F20A37B417; Mon, 11 Mar 2002 14:53:28 -0800 (PST) Received: (from green@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BMrSo27755; Mon, 11 Mar 2002 14:53:28 -0800 (PST) (envelope-from green) Message-Id: <200203112253.g2BMrSo27755@freefall.freebsd.org> From: Brian Feldman Date: Mon, 11 Mar 2002 14:53:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libz INDEX descrip.mms X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG green 2002/03/11 14:53:28 PST Removed files: lib/libz INDEX descrip.mms Log: Remove some files we don't want. Revision Changes Path 1.2 +0 -86 src/lib/libz/INDEX (dead) 1.2 +0 -48 src/lib/libz/descrip.mms (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 15:21: 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 8E3DA37B400; Mon, 11 Mar 2002 15:21:06 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BNL6U34625; Mon, 11 Mar 2002 15:21:06 -0800 (PST) (envelope-from sobomax) Message-Id: <200203112321.g2BNL6U34625@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 11 Mar 2002 15:21:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/bochs/files patch-iodev::cdrom.cc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/11 15:21:06 PST Added files: emulators/bochs/files patch-iodev::cdrom.cc Log: Unbroke on recent -current: we now need to get proto for ntohl(3). Revision Changes Path 1.1 +13 -0 ports/emulators/bochs/files/patch-iodev::cdrom.cc (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 15:24: 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 3C1A937B417; Mon, 11 Mar 2002 15:23:55 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BNNtP34957; Mon, 11 Mar 2002 15:23:55 -0800 (PST) (envelope-from pat) Message-Id: <200203112323.g2BNNtP34957@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 15:23:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/py-pcap 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/03/11 15:23:55 PST Modified files: net/py-pcap Makefile Log: Fix wrong PLIST problem around py22- and py-. PR: 35798 Submitted by: maintainer Noticed by: bento Revision Changes Path 1.2 +1 -1 ports/net/py-pcap/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 15: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 EF1E137B419; Mon, 11 Mar 2002 15:29:59 -0800 (PST) Received: (from brooks@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BNTxg35660; Mon, 11 Mar 2002 15:29:59 -0800 (PST) (envelope-from brooks) Message-Id: <200203112329.g2BNTxg35660@freefall.freebsd.org> From: Brooks Davis Date: Mon, 11 Mar 2002 15:29:59 -0800 (PST) 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 brooks 2002/03/11 15:29:59 PST Modified files: sys/dev/wi if_wi.c Log: Add support for 3Com Airconnect PCI cards. MFC after: 3 days Revision Changes Path 1.80 +1 -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 Mon Mar 11 15:40:35 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id 59B1137B438; Mon, 11 Mar 2002 15:40:01 -0800 (PST) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.11.6/8.11.6) with ESMTP id g2BNe0b33441; Tue, 12 Mar 2002 00:40:00 +0100 (CET) Date: Tue, 12 Mar 2002 00:42:15 +0100 (CET) From: Martin Blapp To: Maxim Sobolev Cc: , Subject: Re: cvs commit: ports/emulators/bochs/files patch-iodev::cdrom.cc In-Reply-To: <200203112321.g2BNL6U34625@freefall.freebsd.org> Message-ID: <20020312004133.I441-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thanks ! > Unbroke on recent -current: we now need to get proto for > ntohl(3). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 15:46: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 4B8F437B405; Mon, 11 Mar 2002 15:46:50 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BNkoS38053; Mon, 11 Mar 2002 15:46:50 -0800 (PST) (envelope-from pat) Message-Id: <200203112346.g2BNkoS38053@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 15:46:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/py-reportlab 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/03/11 15:46:50 PST Modified files: print/py-reportlab Makefile Log: Fix build on current. PR: 35799 Submitted by: maintainer Noticed by: bento Revision Changes Path 1.8 +1 -0 ports/print/py-reportlab/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 15:50: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 6D53B37B400; Mon, 11 Mar 2002 15:50:29 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BNoTR38651; Mon, 11 Mar 2002 15:50:29 -0800 (PST) (envelope-from pat) Message-Id: <200203112350.g2BNoTR38651@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 15:50:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/slashem-tty 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 pat 2002/03/11 15:50:29 PST Modified files: games/slashem-tty Makefile distinfo pkg-descr Log: - Update to 0.0.6E.4F.7 - Change email address PR: 35801 Submitted by: maintainer Revision Changes Path 1.5 +2 -2 ports/games/slashem-tty/Makefile 1.5 +1 -1 ports/games/slashem-tty/distinfo 1.4 +1 -1 ports/games/slashem-tty/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 Mar 11 15:53: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C9FCC37B41D; Mon, 11 Mar 2002 15:52:48 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2BNqmo39128; Mon, 11 Mar 2002 15:52:48 -0800 (PST) (envelope-from pat) Message-Id: <200203112352.g2BNqmo39128@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 15:52:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/frotz 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 pat 2002/03/11 15:52:48 PST Modified files: games/frotz Makefile distinfo pkg-descr Log: - Update to 2.42 - Change email address PR: 35802 Submitted by: maintainer Revision Changes Path 1.11 +2 -2 ports/games/frotz/Makefile 1.4 +1 -1 ports/games/frotz/distinfo 1.6 +1 -1 ports/games/frotz/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 Mar 11 16: 5:38 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 CE4EC37B402; Mon, 11 Mar 2002 16:05:29 -0800 (PST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 9D9117831E; Tue, 12 Mar 2002 10:35:27 +1030 (CST) Date: Tue, 12 Mar 2002 10:35:27 +1030 From: Greg Lehey To: Robert Watson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile newsyslog.conf syslog.conf Message-ID: <20020312103527.W36158@wantadilla.lemis.com> References: <200203111934.g2BJYva83422@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203111934.g2BJYva83422@freefall.freebsd.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: 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 Monday, 11 March 2002 at 11:34:57 -0800, Robert Watson wrote: > rwatson 2002/03/11 11:34:57 PST > > Modified files: > etc Makefile newsyslog.conf syslog.conf > Log: > Turns out everyone is a lot lazier than I thought. Spell > 'authentication.log' as 'auth.log'. OpenBSD calls this file authlog. Is there really sufficient reason for being gratuitously different? > Sigh. :-) Indeed. 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 Mon Mar 11 16:10: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 04C9337B419; Mon, 11 Mar 2002 16:10:42 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C0AfM45005; Mon, 11 Mar 2002 16:10:41 -0800 (PST) (envelope-from peter) Message-Id: <200203120010.g2C0AfM45005@freefall.freebsd.org> From: Peter Wemm Date: Mon, 11 Mar 2002 16:10:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/acpica/Osd OsdMemory.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 16:10:40 PST Modified files: sys/dev/acpica/Osd OsdMemory.c Log: Recent acpica imports have changed the lengths from UINT32 to ACPI_SIZE, which is 64 bit on ia64. Fix it. Revision Changes Path 1.7 +3 -3 src/sys/dev/acpica/Osd/OsdMemory.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 16: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 AF28637B404; Mon, 11 Mar 2002 16:12:59 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C0Cxf45282; Mon, 11 Mar 2002 16:12:59 -0800 (PST) (envelope-from peter) Message-Id: <200203120012.g2C0Cxf45282@freefall.freebsd.org> From: Peter Wemm Date: Mon, 11 Mar 2002 16:12:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/acpica/Osd OsdSchedule.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 16:12:59 PST Modified files: sys/dev/acpica/Osd OsdSchedule.c Log: Do not do string concatenation with __func__ (which is not a string) Revision Changes Path 1.18 +1 -1 src/sys/dev/acpica/Osd/OsdSchedule.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 16:15: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 7756F37B41A; Mon, 11 Mar 2002 16:15:06 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C0F6P45602; Mon, 11 Mar 2002 16:15:06 -0800 (PST) (envelope-from peter) Message-Id: <200203120015.g2C0F6P45602@freefall.freebsd.org> From: Peter Wemm Date: Mon, 11 Mar 2002 16:15:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/acpica acpi_cmbat.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 16:15:06 PST Modified files: sys/dev/acpica acpi_cmbat.c Log: Do not concatenate __func__ with strings, because it is not a string. Later gcc's blow up on this. Revision Changes Path 1.16 +2 -2 src/sys/dev/acpica/acpi_cmbat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 16:16: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 D9FA037B427; Mon, 11 Mar 2002 16:15:57 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C0FvE45771; Mon, 11 Mar 2002 16:15:57 -0800 (PST) (envelope-from peter) Message-Id: <200203120015.g2C0FvE45771@freefall.freebsd.org> From: Peter Wemm Date: Mon, 11 Mar 2002 16:15:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/acpica madt.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 16:15:57 PST Modified files: sys/ia64/acpica madt.c Log: Deal with a structure member rename in a recent acpica import Revision Changes Path 1.6 +1 -1 src/sys/ia64/acpica/madt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 16:17:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C209037B404; Mon, 11 Mar 2002 16:17:45 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C0HjF45947; Mon, 11 Mar 2002 16:17:45 -0800 (PST) (envelope-from peter) Message-Id: <200203120017.g2C0HjF45947@freefall.freebsd.org> From: Peter Wemm Date: Mon, 11 Mar 2002 16:17:45 -0800 (PST) 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/03/11 16:17:45 PST Modified files: sys/ia64/ia64 machdep.c Log: Stop concatenating __func__ with strings Revision Changes Path 1.77 +2 -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 Mon Mar 11 16: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 1B3D037B402; Mon, 11 Mar 2002 16:18:21 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C0ILB46191; Mon, 11 Mar 2002 16:18:21 -0800 (PST) (envelope-from peter) Message-Id: <200203120018.g2C0ILB46191@freefall.freebsd.org> From: Peter Wemm Date: Mon, 11 Mar 2002 16:18:21 -0800 (PST) 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/03/11 16:18:21 PST Modified files: sys/ia64/ia64 machdep.c Log: Fix a warning (make ucontext_t *ucp a const) Revision Changes Path 1.78 +2 -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 Mon Mar 11 16: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 0900A37B404; Mon, 11 Mar 2002 16:19:15 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C0JFp46267; Mon, 11 Mar 2002 16:19:15 -0800 (PST) (envelope-from peter) Message-Id: <200203120019.g2C0JFp46267@freefall.freebsd.org> From: Peter Wemm Date: Mon, 11 Mar 2002 16:19:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/include db_machdep.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/03/11 16:19:14 PST Modified files: sys/ia64/include db_machdep.h Log: Fix some -Wunused warnings by "using" a macro argument Revision Changes Path 1.7 +7 -7 src/sys/ia64/include/db_machdep.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 16:21: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 DE8C337B402; Mon, 11 Mar 2002 16:21:12 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C0LCX46603; Mon, 11 Mar 2002 16:21:12 -0800 (PST) (envelope-from pat) Message-Id: <200203120021.g2C0LCX46603@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 16:21:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/cgicc Makefile pkg-plist ports/www/cgicc/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 pat 2002/03/11 16:21:12 PST Modified files: www/cgicc Makefile pkg-plist Added files: www/cgicc/files patch-ltmain.sh Log: - Do not install useless .la file - Utilize NOPORTDOCS PR: 35796 Submitted by: KATO Tsuguru Revision Changes Path 1.4 +10 -4 ports/www/cgicc/Makefile 1.1 +41 -0 ports/www/cgicc/files/patch-ltmain.sh (new) 1.3 +151 -152 ports/www/cgicc/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 16:23: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DD0BD37B405; Mon, 11 Mar 2002 16:23:04 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C0N4g47269; Mon, 11 Mar 2002 16:23:04 -0800 (PST) (envelope-from pat) Message-Id: <200203120023.g2C0N4g47269@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 16:23:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/ubh 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/03/11 16:23:04 PST Modified files: news/ubh Makefile distinfo Log: Update to 2.5 PR: 35795 Submitted by: maintainer Revision Changes Path 1.8 +3 -2 ports/news/ubh/Makefile 1.6 +1 -1 ports/news/ubh/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 16:23:40 2002 Delivered-To: cvs-all@freebsd.org Received: from green.bikeshed.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D7EF737B416; Mon, 11 Mar 2002 16:23:18 -0800 (PST) Received: from localhost (green@localhost) by green.bikeshed.org (8.11.6/8.11.6) with ESMTP id g2C0NIm76779; Mon, 11 Mar 2002 19:23:18 -0500 (EST) (envelope-from green@green.bikeshed.org) Message-Id: <200203120023.g2C0NIm76779@green.bikeshed.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Greg Lehey Cc: Robert Watson , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile newsyslog.conf syslog.conf In-Reply-To: Your message of "Tue, 12 Mar 2002 10:35:27 +1030." <20020312103527.W36158@wantadilla.lemis.com> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 11 Mar 2002 19:23:18 -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 Greg Lehey wrote: > On Monday, 11 March 2002 at 11:34:57 -0800, Robert Watson wrote: > > rwatson 2002/03/11 11:34:57 PST > > > > Modified files: > > etc Makefile newsyslog.conf syslog.conf > > Log: > > Turns out everyone is a lot lazier than I thought. Spell > > 'authentication.log' as 'auth.log'. > > OpenBSD calls this file authlog. Is there really sufficient reason > for being gratuitously different? Well, the only common thing it would be named similarly to here would be "maillog". Almost every other file is named ".log" :-/ -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org <> bfeldman@tislabs.com \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 16:25:34 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 E350437B400; Mon, 11 Mar 2002 16:25:27 -0800 (PST) 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 g2C0PRi50787; Mon, 11 Mar 2002 19:25:27 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Mon, 11 Mar 2002 19:25:26 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Greg Lehey Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile newsyslog.conf syslog.conf In-Reply-To: <20020312103527.W36158@wantadilla.lemis.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 Tue, 12 Mar 2002, Greg Lehey wrote: > On Monday, 11 March 2002 at 11:34:57 -0800, Robert Watson wrote: > > rwatson 2002/03/11 11:34:57 PST > > > > Modified files: > > etc Makefile newsyslog.conf syslog.conf > > Log: > > Turns out everyone is a lot lazier than I thought. Spell > > 'authentication.log' as 'auth.log'. > > OpenBSD calls this file authlog. Is there really sufficient reason for > being gratuitously different? I was unaware they had such a file. The primary choices seemed to be, based on existing filenames in /var/log: auth.log auth authentication.log authentication The recent trend has been to append '.log' to the end of the files, so I went to authentication.log. It was later pointed out that people writing scripts couldn't use tab completion, and I also observed that the name of the facility in syslog was AUTH, and went to auth.log. There's no precedent for log files without a '.' between the category and the "log" string in FreeBSD. FWIW, here's a survey of other OS's I had on hand: BSD/OS /var/log/secure RedHat /var/log/secure NetBSD /var/log/authlog Debian /var/log/auth.log Solaris /var/log/authlog TCP Wrappers installation /var/log/auth.log Various other Solaris /var/log/auth.log 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 Mon Mar 11 16:33: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 869BF37B405; Mon, 11 Mar 2002 16:33:30 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C0XUA48659; Mon, 11 Mar 2002 16:33:30 -0800 (PST) (envelope-from pat) Message-Id: <200203120033.g2C0XUA48659@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 16:33:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/pspell-ispell Makefile ports/textproc/pspell-ispell/files patch-aa patch-ltmain.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/11 16:33:30 PST Modified files: textproc/pspell-ispell Makefile textproc/pspell-ispell/files patch-aa Added files: textproc/pspell-ispell/files patch-ltmain.sh Log: - Do not install useless .la files - Dont depend on libtools. PR: 35794 Submitted by: KATO Tsuguru Revision Changes Path 1.7 +5 -4 ports/textproc/pspell-ispell/Makefile 1.4 +0 -29 ports/textproc/pspell-ispell/files/patch-aa 1.1 +25 -0 ports/textproc/pspell-ispell/files/patch-ltmain.sh (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 16: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 B1D8F37B400; Mon, 11 Mar 2002 16:35:11 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C0ZB048931; Mon, 11 Mar 2002 16:35:11 -0800 (PST) (envelope-from pat) Message-Id: <200203120035.g2C0ZB048931@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 16:35:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/pspell-ispell/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 pat 2002/03/11 16:35:11 PST Removed files: textproc/pspell-ispell/files patch-aa Log: Remove empty files/patch-aa forgotten in last commit Revision Changes Path 1.5 +0 -0 ports/textproc/pspell-ispell/files/patch-aa (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 16:38: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 A5B7C37B417; Mon, 11 Mar 2002 16:38:51 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C0cp549422; Mon, 11 Mar 2002 16:38:51 -0800 (PST) (envelope-from pat) Message-Id: <200203120038.g2C0cp549422@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 16:38:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/maradns 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/03/11 16:38:51 PST Modified files: net/maradns Makefile distinfo Log: Update to 0.9.14 PR: 35793 Submitted by: KATO Tsuguru Revision Changes Path 1.13 +3 -3 ports/net/maradns/Makefile 1.12 +1 -1 ports/net/maradns/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 16:47:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5CF8137B402; Mon, 11 Mar 2002 16:47:02 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C0l2u51019; Mon, 11 Mar 2002 16:47:02 -0800 (PST) (envelope-from pat) Message-Id: <200203120047.g2C0l2u51019@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 16:47:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/scm 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 pat 2002/03/11 16:47:02 PST Modified files: lang/scm Makefile distinfo pkg-descr pkg-plist Log: Update to 5d5 PR: 35792 Submitted by: KATO Tsuguru Revision Changes Path 1.23 +11 -10 ports/lang/scm/Makefile 1.12 +2 -2 ports/lang/scm/distinfo 1.4 +2 -0 ports/lang/scm/pkg-descr 1.13 +11 -2 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 Mon Mar 11 16:55: 9 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 AB9EE37B402; Mon, 11 Mar 2002 16:55:01 -0800 (PST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id 66BB978323; Tue, 12 Mar 2002 11:24:58 +1030 (CST) Date: Tue, 12 Mar 2002 11:24:58 +1030 From: Greg Lehey To: Robert Watson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile newsyslog.conf syslog.conf Message-ID: <20020312112458.F56793@wantadilla.lemis.com> References: <20020312103527.W36158@wantadilla.lemis.com> 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 Monday, 11 March 2002 at 19:25:26 -0500, Robert Watson wrote: > > On Tue, 12 Mar 2002, Greg Lehey wrote: > >> On Monday, 11 March 2002 at 11:34:57 -0800, Robert Watson wrote: >>> rwatson 2002/03/11 11:34:57 PST >>> >>> Modified files: >>> etc Makefile newsyslog.conf syslog.conf >>> Log: >>> Turns out everyone is a lot lazier than I thought. Spell >>> 'authentication.log' as 'auth.log'. >> >> OpenBSD calls this file authlog. Is there really sufficient reason for >> being gratuitously different? > > I was unaware they had such a file. So was I until I tripped over it by chance yesterday. > The primary choices seemed to be, based on existing filenames in > /var/log: > > auth.log > auth > authentication.log > authentication > > The recent trend has been to append '.log' to the end of the files, > so I went to authentication.log. It was later pointed out that > people writing scripts couldn't use tab completion, and I also > observed that the name of the facility in syslog was AUTH, and went > to auth.log. There's no precedent for log files without a '.' > between the category and the "log" string in FreeBSD. Your logic is flawless. But for whatever reason, both NetBSD and OpenBSD use "authlog", and so introducing this name would be a gratuitous difference. > FWIW, here's a survey of other OS's I had on hand: > > BSD/OS /var/log/secure > RedHat /var/log/secure > NetBSD /var/log/authlog > Debian /var/log/auth.log > Solaris /var/log/authlog > TCP Wrappers installation /var/log/auth.log > Various other Solaris /var/log/auth.log So Linux and Solaris can't make up their minds, but so far the free BSDs are consistent. I don't really have a good answer for this. It makes sense to have auth.log to stay compatible with other names, and it makes sense to have authlog to stay compatible with other BSDs. Which wins? 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 Mon Mar 11 16:56: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 9B27F37B404; Mon, 11 Mar 2002 16:56:14 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C0uEq53358; Mon, 11 Mar 2002 16:56:14 -0800 (PST) (envelope-from pat) Message-Id: <200203120056.g2C0uEq53358@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 16:56:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/pstoedit Makefile distinfo pkg-plist ports/graphics/pstoedit/files patch-Makefile.in patch-drvswf.cpp patch-dynload.cpp X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/11 16:56:14 PST Modified files: graphics/pstoedit Makefile distinfo pkg-plist graphics/pstoedit/files patch-Makefile.in Added files: graphics/pstoedit/files patch-drvswf.cpp Removed files: graphics/pstoedit/files patch-dynload.cpp Log: Update to 3.31 PR: 35791 Submitted by: KATO Tsuguru Revision Changes Path 1.19 +17 -8 ports/graphics/pstoedit/Makefile 1.6 +1 -1 ports/graphics/pstoedit/distinfo 1.2 +19 -9 ports/graphics/pstoedit/files/patch-Makefile.in 1.1 +11 -0 ports/graphics/pstoedit/files/patch-drvswf.cpp (new) 1.2 +0 -57 ports/graphics/pstoedit/files/patch-dynload.cpp (dead) 1.6 +1 -0 ports/graphics/pstoedit/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 Mar 11 16: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 D413A37B419; Mon, 11 Mar 2002 16:59:55 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C0xto53963; Mon, 11 Mar 2002 16:59:55 -0800 (PST) (envelope-from pat) Message-Id: <200203120059.g2C0xto53963@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 16:59:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/mahjong Makefile distinfo ports/games/mahjong/files patch-Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/11 16:59:55 PST Modified files: games/mahjong Makefile distinfo Removed files: games/mahjong/files patch-Makefile Log: Update to 1.3.2 PR: 35790 Submitted by: KATO Tsuguru Revision Changes Path 1.11 +14 -7 ports/games/mahjong/Makefile 1.11 +1 -1 ports/games/mahjong/distinfo 1.6 +0 -29 ports/games/mahjong/files/patch-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 Mar 11 17: 0: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 BD35F37B400; Mon, 11 Mar 2002 17:00:28 -0800 (PST) Received: (from archie@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C10Si54262; Mon, 11 Mar 2002 17:00:28 -0800 (PST) (envelope-from archie) Message-Id: <200203120100.g2C10Si54262@freefall.freebsd.org> From: Archie Cobbs Date: Mon, 11 Mar 2002 17:00:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys sbuf.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 archie 2002/03/11 17:00:28 PST Modified files: (Branch: RELENG_4) sys/sys sbuf.h Log: MFC all bug fixes to the sbuf code. This makes sbuf in -stable equal to that in -current except for whitespace changes and __FUNCTION__/__func__. Not-objected-to-by: phk, des Revision Changes Path 1.7.2.2 +26 -18 src/sys/sys/sbuf.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 17: 1: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 6517937B405; Mon, 11 Mar 2002 17:01:07 -0800 (PST) Received: (from archie@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C117754388; Mon, 11 Mar 2002 17:01:07 -0800 (PST) (envelope-from archie) Message-Id: <200203120101.g2C117754388@freefall.freebsd.org> From: Archie Cobbs Date: Mon, 11 Mar 2002 17:01:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_sbuf.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG archie 2002/03/11 17:01:07 PST Modified files: (Branch: RELENG_4) sys/kern subr_sbuf.c Log: MFC all bug fixes to the sbuf code. This makes sbuf in -stable equal to that in -current except for whitespace changes and __FUNCTION__/__func__. Not-objected-to-by: phk, des Revision Changes Path 1.11.2.2 +165 -27 src/sys/kern/subr_sbuf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 17: 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 3021237B402; Mon, 11 Mar 2002 17:01:54 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C11sC54554; Mon, 11 Mar 2002 17:01:54 -0800 (PST) (envelope-from obrien) Message-Id: <200203120101.g2C11sC54554@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 11 Mar 2002 17:01:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc.network X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/03/11 17:01:54 PST Modified files: etc rc.network Log: Why shouldn't amd always write its PID to a file? Since I cannot answer that question, make it. Revision Changes Path 1.126 +3 -7 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 Mon Mar 11 17: 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 4AA5537B405; Mon, 11 Mar 2002 17:04:35 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C14Z354946; Mon, 11 Mar 2002 17:04:35 -0800 (PST) (envelope-from obrien) Message-Id: <200203120104.g2C14Z354946@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 11 Mar 2002 17:04:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc.network X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/03/11 17:04:35 PST Modified files: etc rc.network Log: Background the startup of `Amd', it often blocks on startup. Revision Changes Path 1.127 +3 -3 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 Mon Mar 11 17: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 1154437B405; Mon, 11 Mar 2002 17:13:36 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C1DaA59528; Mon, 11 Mar 2002 17:13:36 -0800 (PST) (envelope-from ade) Message-Id: <200203120113.g2C1DaA59528@freefall.freebsd.org> From: Ade Lovett Date: Mon, 11 Mar 2002 17:13:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/otcl 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 ade 2002/03/11 17:13:36 PST Modified files: lang/otcl Makefile distinfo Log: Update to 1.0a7, depend on Tcl/Tk 8.3. MAINTAINER email bounces - reset to ports@FreeBSD.org PR: 35803 Submitted by: Bruce A. Mah Revision Changes Path 1.15 +8 -8 ports/lang/otcl/Makefile 1.4 +1 -1 ports/lang/otcl/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 17:14: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 A46EC37B405; Mon, 11 Mar 2002 17:14:19 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C1EJ159698; Mon, 11 Mar 2002 17:14:19 -0800 (PST) (envelope-from obrien) Message-Id: <200203120114.g2C1EJ159698@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 11 Mar 2002 17:14:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.lib.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/03/11 17:14:19 PST Modified files: share/mk bsd.lib.mk Log: Spell pic "PIC" for sparc64. Revision Changes Path 1.102 +4 -0 src/share/mk/bsd.lib.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 17:16: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 C717C37B416; Mon, 11 Mar 2002 17:16:07 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C1G7959936; Mon, 11 Mar 2002 17:16:07 -0800 (PST) (envelope-from ade) Message-Id: <200203120116.g2C1G7959936@freefall.freebsd.org> From: Ade Lovett Date: Mon, 11 Mar 2002 17:16:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/tclcl Makefile distinfo ports/devel/tclcl/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 ade 2002/03/11 17:16:07 PST Modified files: devel/tclcl Makefile distinfo devel/tclcl/files patch-aa Added files: devel/tclcl/files patch-ab Log: Update to 1.0b11, depend on Tcl/Tk 8.3 MAINTAINER email bounces - reset to ports@FreeBSD.org PR: 35804 Submitted by: Bruce A. Mah Revision Changes Path 1.10 +5 -5 ports/devel/tclcl/Makefile 1.4 +1 -1 ports/devel/tclcl/distinfo 1.3 +1 -1 ports/devel/tclcl/files/patch-aa 1.1 +11 -0 ports/devel/tclcl/files/patch-ab (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 17:18: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 91BDA37B400; Mon, 11 Mar 2002 17:18:07 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C1I7Y60223; Mon, 11 Mar 2002 17:18:07 -0800 (PST) (envelope-from obrien) Message-Id: <200203120118.g2C1I7Y60223@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 11 Mar 2002 17:18:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.lib.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/03/11 17:18:07 PST Modified files: share/mk bsd.lib.mk Log: Consistently use $PICFLAG. Revision Changes Path 1.103 +2 -2 src/share/mk/bsd.lib.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 17: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 29ED037B404; Mon, 11 Mar 2002 17:18:38 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C1Icn60322; Mon, 11 Mar 2002 17:18:38 -0800 (PST) (envelope-from ade) Message-Id: <200203120118.g2C1Icn60322@freefall.freebsd.org> From: Ade Lovett Date: Mon, 11 Mar 2002 17:18:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/orbitcpp Makefile distinfo pkg-plist ports/devel/orbitcpp/files patch-Makefile.am patch-Makefile.buildvars X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 17:18:38 PST Modified files: devel/orbitcpp Makefile distinfo pkg-plist Removed files: devel/orbitcpp/files patch-Makefile.am patch-Makefile.buildvars Log: Update to 0.30.4 PR: 35787 Submitted by: Ports Fury Revision Changes Path 1.4 +10 -5 ports/devel/orbitcpp/Makefile 1.2 +1 -1 ports/devel/orbitcpp/distinfo 1.2 +0 -11 ports/devel/orbitcpp/files/patch-Makefile.am (dead) 1.2 +0 -8 ports/devel/orbitcpp/files/patch-Makefile.buildvars (dead) 1.3 +1 -5 ports/devel/orbitcpp/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 Mar 11 17: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 CD8E837B404; Mon, 11 Mar 2002 17:21:40 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C1Led60829; Mon, 11 Mar 2002 17:21:40 -0800 (PST) (envelope-from ade) Message-Id: <200203120121.g2C1Led60829@freefall.freebsd.org> From: Ade Lovett Date: Mon, 11 Mar 2002 17:21:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/crystal 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/03/11 17:21:40 PST Modified files: devel/crystal Makefile Log: Fix dependencies. PR: 35760 Submitted by: MAINTAINER Revision Changes Path 1.2 +3 -2 ports/devel/crystal/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 17:22: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 7E50E37B404; Mon, 11 Mar 2002 17:22:30 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C1MU061068; Mon, 11 Mar 2002 17:22:30 -0800 (PST) (envelope-from mbr) Message-Id: <200203120122.g2C1MU061068@freefall.freebsd.org> From: Martin Blapp Date: Mon, 11 Mar 2002 17:22:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice-devel Makefile distinfo ports/editors/openoffice-devel/files patch-config_office::configure.in patch-cppu::util::makefile.mk patch-product::util::makefile.mk patch-set_soenv.1 patch-solenv::inc::startup::FREEBSD::macros.mk patch-soltools::mkdepend::main.c patch-stoc::source::implementationregistration::implreg.cxx X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/03/11 17:22:30 PST Modified files: editors/openoffice-devel Makefile distinfo editors/openoffice-devel/files patch-config_office::configure.in patch-cppu::util::makefile.mk patch-product::util::makefile.mk patch-set_soenv.1 Added files: editors/openoffice-devel/files patch-solenv::inc::startup::FREEBSD::macros.mk patch-soltools::mkdepend::main.c patch-stoc::source::implementationregistration::implreg.cxx Log: Upgrade the development snapshot to the latest build: 642 Revision Changes Path 1.42 +3 -2 ports/editors/openoffice-devel/Makefile 1.12 +1 -1 ports/editors/openoffice-devel/distinfo 1.3 +35 -42 ports/editors/openoffice-devel/files/patch-config_office::configure.in 1.2 +8 -8 ports/editors/openoffice-devel/files/patch-cppu::util::makefile.mk 1.3 +11 -11 ports/editors/openoffice-devel/files/patch-product::util::makefile.mk 1.11 +19 -24 ports/editors/openoffice-devel/files/patch-set_soenv.1 1.1 +5 -0 ports/editors/openoffice-devel/files/patch-solenv::inc::startup::FREEBSD::macros.mk (new) 1.1 +14 -0 ports/editors/openoffice-devel/files/patch-soltools::mkdepend::main.c (new) 1.1 +11 -0 ports/editors/openoffice-devel/files/patch-stoc::source::implementationregistration::implreg.cxx (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 17:24: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 DD6D837B405; Mon, 11 Mar 2002 17:24:13 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C1OD861451; Mon, 11 Mar 2002 17:24:13 -0800 (PST) (envelope-from ade) Message-Id: <200203120124.g2C1OD861451@freefall.freebsd.org> From: Ade Lovett Date: Mon, 11 Mar 2002 17:24:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/pfaedit 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 ade 2002/03/11 17:24:13 PST Modified files: print/pfaedit Makefile distinfo pkg-descr pkg-plist Log: Update to current version, remove install foo from port Makefile, use more port variables. PR: 35759 Submitted by: MAINTAINER Revision Changes Path 1.9 +18 -13 ports/print/pfaedit/Makefile 1.8 +1 -1 ports/print/pfaedit/distinfo 1.4 +2 -2 ports/print/pfaedit/pkg-descr 1.6 +5 -0 ports/print/pfaedit/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 Mar 11 17:29:43 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id 8746837B400; Mon, 11 Mar 2002 17:29:38 -0800 (PST) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.11.6/8.11.6) with ESMTP id g2C1Tbb44627; Tue, 12 Mar 2002 02:29:37 +0100 (CET) Date: Tue, 12 Mar 2002 02:31:52 +0100 (CET) From: Martin Blapp To: Martin Blapp Cc: , Subject: Openoffice workaround to build In-Reply-To: <200203120122.g2C1MU061068@freefall.freebsd.org> Message-ID: <20020312022536.J441-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Unfortunatly ports/editors/openoffice-devel and ports/editors/openoffice are still broken. I managed to get around the buggy c++ compiler we have in STABLE and CURRENT. There is definitly a bug in 295.3 c++. Workaround: ----------- cd /usr/ports/lang/gcc295 make install cd /usr/local/bin ln -s /usr/local/bin/g++295 /usr/local/bin/g++ ln -s /usr/local/bin/gcc295 /usr/local/bin/cc ln -s /usr/local/bin/gcc295 /usr/local/bin/gcc The included berkleydb in openoffice has still to be builded with the old c compiler. My build is now compiling since 4 hours, and I have a report from one user that he managed to get it compiled and running within STABLE. Martin Martin Blapp, ------------------------------------------------------------------ ImproWare AG, UNIXSP & ISP, Zurlindenstrasse 29, 4133 Pratteln, CH Phone: +41 061 826 93 00: +41 61 826 93 01 PGP Fingerprint: B434 53FC C87C FE7B 0A18 B84C 8686 EF22 D300 551E ------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 17:53:25 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 0366A37B402; Mon, 11 Mar 2002 17:53:22 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2C1rMlv090547; Mon, 11 Mar 2002 17:53:22 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2C1q74q090538; Mon, 11 Mar 2002 17:52:07 -0800 (PST) Date: Mon, 11 Mar 2002 17:52:07 -0800 From: "David O'Brien" To: Martin Blapp Cc: Martin Blapp , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Openoffice workaround to build Message-ID: <20020311175207.A90501@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200203120122.g2C1MU061068@freefall.freebsd.org> <20020312022536.J441-100000@levais.imp.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020312022536.J441-100000@levais.imp.ch>; from mb@imp.ch on Tue, Mar 12, 2002 at 02:31:52AM +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 Tue, Mar 12, 2002 at 02:31:52AM +0100, Martin Blapp wrote: > Workaround: > ----------- > > cd /usr/ports/lang/gcc295 > make install > cd /usr/local/bin > ln -s /usr/local/bin/g++295 /usr/local/bin/g++ > ln -s /usr/local/bin/gcc295 /usr/local/bin/cc > ln -s /usr/local/bin/gcc295 /usr/local/bin/gcc I mentioned the correct way to do this: cd /usr/ports/lang/gcc295 make install cd /usr/ports/editors/openoffice make CC=gcc295 CXX=g++295 PLEASE NO ONE FOLLOW THE DIRECTIONS FOR MAKING THESE SYMLINKS !! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 17:59:12 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by hub.freebsd.org (Postfix) with ESMTP id 8872737B41B; Mon, 11 Mar 2002 17:59:07 -0800 (PST) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020312015907.CJZF2626.rwcrmhc51.attbi.com@bmah.dyndns.org>; Tue, 12 Mar 2002 01:59:07 +0000 Received: (from bmah@localhost) by bmah.dyndns.org (8.11.6/8.11.6) id g2C1x6j18149; Mon, 11 Mar 2002 17:59:06 -0800 (PST) (envelope-from bmah) Message-Id: <200203120159.g2C1x6j18149@bmah.dyndns.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Greg Lehey Cc: Robert Watson , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc Makefile newsyslog.conf syslog.conf In-reply-to: <20020312112458.F56793@wantadilla.lemis.com> References: <20020312103527.W36158@wantadilla.lemis.com> <20020312112458.F56793@wantadilla.lemis.com> Comments: In-reply-to Greg Lehey message dated "Tue, 12 Mar 2002 11:24:58 +1030." 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: Mon, 11 Mar 2002 17:59:06 -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG If memory serves me right, Greg Lehey wrote: > I don't really have a good answer for this. It makes sense to have > auth.log to stay compatible with other names, and it makes sense to > have authlog to stay compatible with other BSDs. Which wins? Symlink? :-) /me ducks... Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 18: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 8D5E137B402; Mon, 11 Mar 2002 18:13:43 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C2Dhp78105; Mon, 11 Mar 2002 18:13:43 -0800 (PST) (envelope-from pat) Message-Id: <200203120213.g2C2Dhp78105@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 18:13:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/ft2demos 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/03/11 18:13:43 PST Modified files: print/ft2demos Makefile distinfo Log: Update to 2.0.9 PR: 35805 Submitted by: maintainer Revision Changes Path 1.11 +1 -1 ports/print/ft2demos/Makefile 1.6 +1 -1 ports/print/ft2demos/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 18:20: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 6CC5337B404; Mon, 11 Mar 2002 18:20:50 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C2Kov79346; Mon, 11 Mar 2002 18:20:50 -0800 (PST) (envelope-from rwatson) Message-Id: <200203120220.g2C2Kov79346@freefall.freebsd.org> From: Robert Watson Date: Mon, 11 Mar 2002 18:20:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en developers.sgml 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 rwatson 2002/03/11 18:20:50 PST Modified files: en developers.sgml en/smp index.sgml Log: Add an entry for on-going selinfo locking work by Alfred and Chad. This work pushes the selinfo structure under a seperate lock and allows select-related behavior to be pushed out from under Giant. Patches were recently posted to freebsd-smp, so make it a WIP. Add an entity for Chad since he didn't have one already. Revision Changes Path 1.5 +2 -1 www/en/developers.sgml 1.41 +9 -1 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 Mar 11 18:22:19 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id 0357537B402; Mon, 11 Mar 2002 18:22:13 -0800 (PST) Received: from blossom.cjclark.org ([12.234.91.48]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020312022207.UDVS2951.rwcrmhc53.attbi.com@blossom.cjclark.org>; Tue, 12 Mar 2002 02:22:07 +0000 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.6) id g2C2M0J31142; Mon, 11 Mar 2002 18:22:00 -0800 (PST) (envelope-from cjc) Date: Mon, 11 Mar 2002 18:22:00 -0800 From: "Crist J. Clark" To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc src/share/man/man5 rc.conf.5 Message-ID: <20020311182200.D29705@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <200203110847.g2B8l4714026@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 Mon, Mar 11, 2002 at 10:22:17PM +0100 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Mar 11, 2002 at 10:22:17PM +0100, Dag-Erling Smorgrav wrote: > "Crist J. Clark" writes: > > At the same time, allow the administrator to have dumpdev enabled > > while dumpdir (savecore(8)) is disabled and document how to do it. > > Speaking of dumpdev, 'dumpon ${dumpdev}' should be one of the very > very first things we do in /etc/rc, before even fsck - it's not > uncommon for kernel bugs to cause panics during the boot process, and > it's a PITA not to have a dump device configured in time. Makes sense. How about doing it first thing after we load the rc.conf files? In addition, take out the checks on the $dumpdev. dumpon(8) behaves well if given a non-existent filename. It gives a nice error message which is better rather than the current silent failure. Likewise, we can take out the remaining safety net for the savecore(8) run; it doesn't need hand-holding. Let misconfigured setups produce error messages. Index: etc/rc =================================================================== RCS file: /export/freebsd/ncvs/src/etc/rc,v retrieving revision 1.296 diff -u -r1.296 rc --- etc/rc 17 Feb 2002 22:19:14 -0000 1.296 +++ etc/rc 12 Mar 2002 02:12:02 -0000 @@ -108,6 +108,15 @@ chkdepend NIS nis_server_enable portmap portmap_enable chkdepend NIS nis_client_enable portmap portmap_enable +# Enable dumpdev early so that a crash during the boot process can be caught. +# +case ${dumpdev} in +[Nn][Oo] | '') + ;; +*) + /sbin/dumpon -v ${dumpdev} +esac + # Enable harvesting of entropy via devices. The sooner this happens the # better so that we can take advantage of the boot process. # @@ -540,27 +549,23 @@ dev_mkdb fi -# Enable dumpdev so that savecore can see it. -# /var/crash should be a directory or a symbolic link +# $dumpdir should be a directory or a symbolic link # to the crash directory if core dumps are to be saved. # -case ${dumpdev} in -[Nn][Oo] | '') +case ${dumpdir} in +'') + dumpdir='/var/crash' ;; -*) - case ${dumpdir} in - '') - dumpdir='/var/crash' - ;; - esac - - if [ -e "${dumpdev}" -a -d "${dumpdir}" ]; then - /sbin/dumpon -v ${dumpdev} - echo -n 'Checking for core dump: ' - /sbin/savecore ${savecore_flags} "${dumpdir}" - fi +[Nn][Oo]) + dumpdir='NO' ;; esac + +if [ "$dumpdir" != 'NO' ]; then + echo -n 'Checking for core dump: ' + /sbin/savecore ${savecore_flags} "${dumpdir}" +fi + if [ -n "${network_pass1_done}" ]; then network_pass2 -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 18:30: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 9050F37B402; Mon, 11 Mar 2002 18:30:35 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C2UZo80624; Mon, 11 Mar 2002 18:30:35 -0800 (PST) (envelope-from pat) Message-Id: <200203120230.g2C2UZo80624@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 18:30:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/unison 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/03/11 18:30:35 PST Modified files: net/unison Makefile distinfo Log: Update to 2.8.1 PR: 35806 Submitted by: maintainer Revision Changes Path 1.6 +2 -2 ports/net/unison/Makefile 1.4 +1 -1 ports/net/unison/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 18:39:57 2002 Delivered-To: cvs-all@freebsd.org Received: from gate.soum.co.jp (gate.soum.co.jp [202.221.40.2]) by hub.freebsd.org (Postfix) with ESMTP id 04A6737B402; Mon, 11 Mar 2002 18:39:48 -0800 (PST) Received: from force.soum.co.jp (force.soum.co.jp [IPv6:3ffe:501:80a:1:a00:20ff:fef0:4c9c]) by gate.soum.co.jp (8.12.2/8.11.6) with ESMTP id g2C2dfv9041413; Tue, 12 Mar 2002 11:39:41 +0900 (JST) (envelope-from uebayasi@soum.co.jp) Received: from localhost (localhost [127.0.0.1]) by force.soum.co.jp (8.11.6/3.7W-2001122804) with ESMTP id g2C2dfS15609; Tue, 12 Mar 2002 11:39:41 +0900 (JST) Date: Tue, 12 Mar 2002 11:39:40 +0900 (JST) Message-Id: <20020312.113940.125120884.uebayasi@soum.co.jp> To: sobomax@FreeBSD.ORG Cc: knu@iDaemons.org, nobutaka@nobutaka.com, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... From: Masao Uebayashi In-Reply-To: <1015886047.1763.26.camel@notebook> References: <3C8D0B5D.3186A73D@FreeBSD.org> <86r8mqajfe.wl@archon.local.idaemons.org> <1015886047.1763.26.camel@notebook> Organisation: SOUM Corporation, Tokyo, Japan X-Mailer: Mew version 2.2 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 > As I said earlier, what we really need is the feature that will track > ABI-incompatible upgrades and when such upgrade is performed bump > PORTREVISION of all dependent ports automagically. Actually I've already > described prototype of such feature and instead of spending out time > arguing whether or not we need to bump PORTREVISION on 10 out of tens or > even hundreds ports that use freetype (waste of time IMO) in the long > run we are better off to implement such feature and forget about it. Good point. If you seriously consider that making binary packages first-class in your packaging system, (run-time) compatibility really matters. (Libh documentation doesn't refer to this at all, though.) > In a nutshell idea is to assign each port with something called > PKGABIVERSION (>=0, non-decreasing), which will need to be increased > each time when some ABI-incompatible change is committed (e.g. shlib > version bump) and make PKGREVISION of each port be an arithmetical sum > of PKGABIVERSION's of all its dependencies and its own PORTREVISION. > Actual implementation I'm leaving as an exercise for the reader, because > I do not use portupgrade by myself and therefore have no interest in > doing it on my own. For me `pkg_delete -r freetype2\* ; cd > /usr/ports/x11/gnome ; make reinstall' is absolutely sufficient. I think that versioning scheme need not be reinvented; SONAME versioning scheme may already do this in a better way. About SONAME, please refer to ABIcheck documents http://abicheck.sourceforge.net/ which impressed me much about a week ago. I wonder that it's not so hard to maintain a few *VERSION variables manually if you don't feel hard to maintain PORTREVISION manually. So what you need else is a policy and a good testing framework. Just an idea... Masao To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 18: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 503A837B404; Mon, 11 Mar 2002 18:44:40 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C2ieW82795; Mon, 11 Mar 2002 18:44:40 -0800 (PST) (envelope-from pat) Message-Id: <200203120244.g2C2ieW82795@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 18:44:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/py2html Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/11 18:44:40 PST Modified files: textproc/py2html Makefile distinfo pkg-plist Log: Update to 0.7 PR: 35743 Submitted by: maintainer Revision Changes Path 1.3 +6 -13 ports/textproc/py2html/Makefile 1.2 +1 -1 ports/textproc/py2html/distinfo 1.2 +2 -1 ports/textproc/py2html/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 Mar 11 18:51: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 15EB937B400; Mon, 11 Mar 2002 18:51:42 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C2pg283850; Mon, 11 Mar 2002 18:51:42 -0800 (PST) (envelope-from pat) Message-Id: <200203120251.g2C2pg283850@freefall.freebsd.org> From: Patrick Li Date: Mon, 11 Mar 2002 18:51:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/xmbmon 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/03/11 18:51:41 PST Modified files: sysutils/xmbmon Makefile distinfo Log: Update to 1.07p1 PR: 35705 Submitted by: maintainer Revision Changes Path 1.4 +2 -2 ports/sysutils/xmbmon/Makefile 1.3 +1 -1 ports/sysutils/xmbmon/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 19:21: 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 59D1237B41A; Mon, 11 Mar 2002 19:20:55 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C3Ktm91675; Mon, 11 Mar 2002 19:20:55 -0800 (PST) (envelope-from ijliao) Message-Id: <200203120320.g2C3Ktm91675@freefall.freebsd.org> From: Ying-Chieh Liao Date: Mon, 11 Mar 2002 19:20:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/ftpcube Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/11 19:20:55 PST Modified files: ftp/ftpcube Makefile distinfo pkg-plist Log: upgrade to 0.2.2 Revision Changes Path 1.3 +1 -1 ports/ftp/ftpcube/Makefile 1.3 +1 -1 ports/ftp/ftpcube/distinfo 1.3 +3 -1 ports/ftp/ftpcube/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 Mar 11 20: 0: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 E2DCA37B405; Mon, 11 Mar 2002 20:00:11 -0800 (PST) Received: (from jeff@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C40BD98756; Mon, 11 Mar 2002 20:00:11 -0800 (PST) (envelope-from jeff) Message-Id: <200203120400.g2C40BD98756@freefall.freebsd.org> From: Jeff Roberson Date: Mon, 11 Mar 2002 20:00:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys namei.h src/sys/kern vfs_cache.c vfs_syscalls.c vfs_vnops.c src/sys/conf options X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/11 20:00:11 PST Modified files: sys/sys namei.h sys/kern vfs_cache.c vfs_syscalls.c vfs_vnops.c sys/conf options Log: This patch adds the "LOCKSHARED" option to namei which causes it to only acquire shared locks on leafs. The stat() and open() calls have been changed to make use of this new functionality. Using shared locks in these cases is sufficient and can significantly reduce their latency if IO is pending to these vnodes. Also, this reduces the number of exclusive locks that are floating around in the system, which helps reduce the number of deadlocks that occur. A new kernel option "LOOKUP_SHARED" has been added. It defaults to off so this patch can be turned on for testing, and should eventually go away once it is proven to be stable. I have personally been running this patch for over a year now, so it is believed to be fully stable. Reviewed by: jake, obrien Approved by: jake Revision Changes Path 1.304 +1 -0 src/sys/conf/options 1.68 +63 -0 src/sys/kern/vfs_cache.c 1.231 +5 -0 src/sys/kern/vfs_syscalls.c 1.138 +34 -0 src/sys/kern/vfs_vnops.c 1.34 +5 -4 src/sys/sys/namei.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 20: 4:23 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.chesapeake.net (chesapeake.net [205.130.220.14]) by hub.freebsd.org (Postfix) with ESMTP id 80AE537B405; Mon, 11 Mar 2002 20:04:17 -0800 (PST) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id g2C44Gb71080; Mon, 11 Mar 2002 23:04:16 -0500 (EST) (envelope-from jroberson@chesapeake.net) Date: Mon, 11 Mar 2002 23:04:16 -0500 (EST) From: Jeff Roberson Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/sys/sys namei.h src/sys/kern vfs_cache.c vfs_syscalls.c vfs_vnops.c src/sys/conf options In-Reply-To: <200203120400.g2C40BD98756@freefall.freebsd.org> Message-ID: <20020311230352.S34896-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Sorry about the wide text. I just noticed that I adjusted my xterm. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 20: 7:17 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BD93337B402; Mon, 11 Mar 2002 20:07:14 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C47Eh03745; Mon, 11 Mar 2002 20:07:14 -0800 (PST) (envelope-from rwatson) Message-Id: <200203120407.g2C47Eh03745@freefall.freebsd.org> From: Robert Watson Date: Mon, 11 Mar 2002 20:07:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/projects projects.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/03/11 20:07:14 PST Modified files: en/projects projects.sgml Log: Expand the text a little concerning TrustedBSD to note that the features are going back into FreeBSD, as well as being ported to other BSD-derived systems (including, at least count, OpenBSD and Darwin). Revision Changes Path 1.122 +4 -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 Mar 11 20:12:49 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.demos.su (relay1.demos.su [194.87.0.16]) by hub.freebsd.org (Postfix) with ESMTP id 2223537B404; Mon, 11 Mar 2002 20:12:44 -0800 (PST) Received: from [194.87.2.36] (HELO cavia.pp.ru) by mail.demos.su (CommuniGate Pro SMTP 3.5.6/D) with ESMTP-TLS id 17152045; Tue, 12 Mar 2002 07:12:43 +0300 Received: (from mitya@localhost) by cavia.pp.ru (8.11.6/8.11.6) id g2C4BJ000255; Tue, 12 Mar 2002 07:11:19 +0300 (MSK) Date: Tue, 12 Mar 2002 07:11:18 +0300 From: Dmitry Sivachenko To: "David O'Brien" Cc: Martin Blapp , Martin Blapp , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Openoffice workaround to build Message-ID: <20020312041118.GA180@cavia.pp.ru> References: <200203120122.g2C1MU061068@freefall.freebsd.org> <20020312022536.J441-100000@levais.imp.ch> <20020311175207.A90501@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20020311175207.A90501@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, Mar 11, 2002 at 05:52:07PM -0800, David O'Brien wrote: > On Tue, Mar 12, 2002 at 02:31:52AM +0100, Martin Blapp wrote: > > Workaround: > > ----------- > > > > cd /usr/ports/lang/gcc295 > > make install > > cd /usr/local/bin > > ln -s /usr/local/bin/g++295 /usr/local/bin/g++ > > ln -s /usr/local/bin/gcc295 /usr/local/bin/cc > > ln -s /usr/local/bin/gcc295 /usr/local/bin/gcc > > I mentioned the correct way to do this: > > cd /usr/ports/lang/gcc295 > make install > cd /usr/ports/editors/openoffice > make CC=gcc295 CXX=g++295 > > PLEASE NO ONE FOLLOW THE DIRECTIONS FOR MAKING THESE SYMLINKS !! > What is the difference between gcc in -STABLE and in ports/lang/gcc295 ? They both seems to be 2.95.3... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 20:13: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 B81F537B405; Mon, 11 Mar 2002 20:13:14 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C4DE404711; Mon, 11 Mar 2002 20:13:14 -0800 (PST) (envelope-from rwatson) Message-Id: <200203120413.g2C4DE404711@freefall.freebsd.org> From: Robert Watson Date: Mon, 11 Mar 2002 20:13:14 -0800 (PST) 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 rwatson 2002/03/11 20:13:14 PST Modified files: en/smp index.sgml Log: Seperate the VOP_GETATTR shared task into: - VOP_GETATTR() change to shared locks + namei() updates to support this - General VFS assertion review and corrections Move the first to the WIP section, since Jeff Roberson just committed supporting infrastructure for this in the form of namei's LOCKSHARED. Leave the second in the New section. Revision Changes Path 1.42 +14 -4 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 Mar 11 21:12:50 2002 Delivered-To: cvs-all@freebsd.org Received: from patrocles.silby.com (d117.as12.nwbl0.wi.voyager.net [169.207.135.117]) by hub.freebsd.org (Postfix) with ESMTP id 7DD2137B402; Mon, 11 Mar 2002 21:12:46 -0800 (PST) Received: from patrocles.silby.com (localhost [127.0.0.1]) by patrocles.silby.com (8.12.2/8.12.2) with ESMTP id g2BNHTjJ012350; Mon, 11 Mar 2002 23:17:29 GMT (envelope-from silby@silby.com) Received: from localhost (silby@localhost) by patrocles.silby.com (8.12.2/8.12.2/Submit) with ESMTP id g2BNHSA5012347; Mon, 11 Mar 2002 23:17:29 GMT X-Authentication-Warning: patrocles.silby.com: silby owned process doing -bs Date: Mon, 11 Mar 2002 23:17:27 +0000 (GMT) From: Mike Silbersack To: Jeff Roberson Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/sys/sys namei.h src/sys/kern vfs_cache.c vfs_syscalls.c vfs_vnops.c src/sys/conf options In-Reply-To: <200203120400.g2C40BD98756@freefall.freebsd.org> Message-ID: <20020311231514.V10727-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 Mon, 11 Mar 2002, Jeff Roberson wrote: > A new kernel option "LOOKUP_SHARED" has been added. It defaults to off so this patch can be turned on for > testing, and should eventually go away once it is proven to be stable. I have personally been running this > patch for over a year now, so it is believed to be fully stable. > > Reviewed by: jake, obrien > Approved by: jake You might as well invert the option so that the feature defaults to ON. This is -current, afterall, and it's there so features like this can be tested. If this does prove to be stable, is this something that could be MFC'd? 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 Mon Mar 11 21:15:43 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 B89AB37B416; Mon, 11 Mar 2002 21:15:38 -0800 (PST) Received: (from mike@localhost) by espresso.q9media.com (8.11.6/8.11.6) id g2C5A5w92806; Tue, 12 Mar 2002 00:10:05 -0500 (EST) (envelope-from mike) Date: Tue, 12 Mar 2002 00:10:05 -0500 From: Mike Barcroft To: Mike Silbersack Cc: Jeff Roberson , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys namei.h src/sys/kern vfs_cache.c vfs_syscalls.c vfs_vnops.c src/sys/conf options Message-ID: <20020312001005.D59465@espresso.q9media.com> References: <200203120400.g2C40BD98756@freefall.freebsd.org> <20020311231514.V10727-100000@patrocles.silby.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020311231514.V10727-100000@patrocles.silby.com>; from silby@silby.com on Mon, Mar 11, 2002 at 11:17:27PM +0000 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 Mike Silbersack writes: > You might as well invert the option so that the feature defaults to ON. > This is -current, afterall, and it's there so features like this can be > tested. You apparently haven't read the announcements about 5.0 Developer Preview 1. Best regards, Mike Barcroft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 21: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 584A837B404; Mon, 11 Mar 2002 21:25:13 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C5PDE19728; Mon, 11 Mar 2002 21:25:13 -0800 (PST) (envelope-from bmah) Message-Id: <200203120525.g2C5PDE19728@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 11 Mar 2002 21:25:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/texts README src/release/doc 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 bmah 2002/03/11 21:25:13 PST Modified files: (Branch: RELENG_4) release/texts README release/doc README Log: MFC: Make it more obvious where to find RELNOTESng source files if someone went browsing in the old release notes location. While I'm here, update README files to be closer to reality. doc/README 1.9->1.10 (partial merge) texts/REAMDE 1.2->1.3 Revision Changes Path 1.7.2.3 +4 -5 src/release/doc/README 1.2.2.2 +11 -13 src/release/texts/README To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 21:41: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 4B1C437B405; Mon, 11 Mar 2002 21:41:42 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C5fgF21833; Mon, 11 Mar 2002 21:41:42 -0800 (PST) (envelope-from dinoex) Message-Id: <200203120541.g2C5fgF21833@freefall.freebsd.org> From: Dirk Meyer Date: Mon, 11 Mar 2002 21:41:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/tk84 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 dinoex 2002/03/11 21:41:42 PST Modified files: x11-toolkits/tk84 distinfo Log: updated distfile distfiles contains now additional: wish.exe.manifest Revision Changes Path 1.21 +1 -1 ports/x11-toolkits/tk84/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 21:53:42 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.chesapeake.net (chesapeake.net [205.130.220.14]) by hub.freebsd.org (Postfix) with ESMTP id 3FE5837B400; Mon, 11 Mar 2002 21:53:39 -0800 (PST) Received: from localhost (jroberson@localhost) by mail.chesapeake.net (8.11.6/8.11.6) with ESMTP id g2C5rZC96062; Tue, 12 Mar 2002 00:53:35 -0500 (EST) (envelope-from jroberson@chesapeake.net) Date: Tue, 12 Mar 2002 00:53:35 -0500 (EST) From: Jeff Roberson To: Mike Barcroft Cc: Mike Silbersack , , Subject: Re: cvs commit: src/sys/sys namei.h src/sys/kern vfs_cache.c vfs_syscalls.c vfs_vnops.c src/sys/conf options In-Reply-To: <20020312001005.D59465@espresso.q9media.com> Message-ID: <20020312005237.L34896-100000@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 12 Mar 2002, Mike Barcroft wrote: > Mike Silbersack writes: > > You might as well invert the option so that the feature defaults to ON. > > This is -current, afterall, and it's there so features like this can be > > tested. > > You apparently haven't read the announcements about 5.0 Developer > Preview 1. > Yes, DP1 was the primary reason for leaving it off. I will turn it on as soon as that branches. Thanks, Jeff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 22: 6:26 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 C26D337B402; Mon, 11 Mar 2002 22:06:13 -0800 (PST) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id C66FB4D8A2; Tue, 12 Mar 2002 15:06:09 +0900 (JST) Date: Tue, 12 Mar 2002 09:18:13 +0900 Message-ID: <86ofhuabay.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Maxim Sobolev Cc: MANTANI Nobutaka , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, ports@FreeBSD.org Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... In-Reply-To: <1015886047.1763.26.camel@notebook> References: <200203111725.g2BHPVF52248@freefall.freebsd.org> <86adte28qw.wl@excalibur.nobutaka.com> <3C8D0B5D.3186A73D@FreeBSD.org> <86r8mqajfe.wl@archon.local.idaemons.org> <1015886047.1763.26.camel@notebook> User-Agent: Wanderlust/2.9.7 (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 12 Mar 2002 00:34:19 +0200, sobomax wrote: > As I said earlier, what we really need is the feature that will track > ABI-incompatible upgrades and when such upgrade is performed bump > PORTREVISION of all dependent ports automagically. Actually I've already > described prototype of such feature and instead of spending out time > arguing whether or not we need to bump PORTREVISION on 10 out of tens or > even hundreds ports that use freetype (waste of time IMO) in the long > run we are better off to implement such feature and forget about it. That sounds good, but aren't you supposed to help the users today before talking about the future? It is always innocent users who suffer from developers' unthoughtful misjudgement. Remind that your "wasting" time will help a bunch of users' and save their time a lot. While that feature would be useful in the future and it is hard to do the PORTREVISION bumps for each and every dependant port, how about just doing with most popular ports such as ImageMagick/libwmf, gd/gd2 and XFree86-4-libraries for the moment? It might be good enough for most users. If you don't object, shall I do it tonight? > In a nutshell idea is to assign each port with something called > PKGABIVERSION (>=0, non-decreasing), which will need to be increased > each time when some ABI-incompatible change is committed (e.g. shlib > version bump) and make PKGREVISION of each port be an arithmetical sum > of PKGABIVERSION's of all its dependencies and its own PORTREVISION. > Actual implementation I'm leaving as an exercise for the reader, because > I do not use portupgrade by myself and therefore have no interest in > doing it on my own. For me `pkg_delete -r freetype2\* ; cd > /usr/ports/x11/gnome ; make reinstall' is absolutely sufficient. No, I'm not talking about you but ordinary users. You are saying what.. "People, just delete and reinstall everything, because I'm absolutely fine with it." ? Because you are the one who committed the upgrade, you surely know exactly what is happening and how to handle the situation. But how about users? They won't even know something significant is happening until they happen to upgrade freetype2 and face the serious library dependency breakage. By not bumping the dependant ports' PORTREVISIONs, you are taking away the chance for them to "smell" something significant, or at least you are making it unable for pkg_version users to properly upgrade packages the way they usually do on a weekly basis or so. As for portupgrade, honestly I don't care a pin if you use it, if you like it or if you take it into account when maintaining ports and altering the ports infrastructure. I'm providing users the tool suite because I want to allow them to handle difficult situations by themselves even though the ports system is badly broken and even though developers including me often do not do things properly where they are supposed to. I believe ports (and probably any tool/system for users) should not be something you get used to using inconveniently. You should not assume people can or should live with inconvenience that is avoidable if we developers work just a little bit harder and wiser. P.S. I value your continuous efforts on ports and like your ideas like the above. Maybe I'll comment on some of them later this week if I can take the time. -- / /__ __ 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 Mon Mar 11 22:21:36 2002 Delivered-To: cvs-all@freebsd.org Received: from patrocles.silby.com (d117.as12.nwbl0.wi.voyager.net [169.207.135.117]) by hub.freebsd.org (Postfix) with ESMTP id 15F9D37B404; Mon, 11 Mar 2002 22:21:16 -0800 (PST) Received: from patrocles.silby.com (localhost [127.0.0.1]) by patrocles.silby.com (8.12.2/8.12.2) with ESMTP id g2C0Q3jJ012598; Tue, 12 Mar 2002 00:26:03 GMT (envelope-from silby@silby.com) Received: from localhost (silby@localhost) by patrocles.silby.com (8.12.2/8.12.2/Submit) with ESMTP id g2C0Q2ES012595; Tue, 12 Mar 2002 00:26:03 GMT X-Authentication-Warning: patrocles.silby.com: silby owned process doing -bs Date: Tue, 12 Mar 2002 00:26:02 +0000 (GMT) From: Mike Silbersack To: Mike Barcroft Cc: Jeff Roberson , , Subject: Re: cvs commit: src/sys/sys namei.h src/sys/kern vfs_cache.c vfs_syscalls.c vfs_vnops.c src/sys/conf options In-Reply-To: <20020312001005.D59465@espresso.q9media.com> Message-ID: <20020312002535.L10727-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 Tue, 12 Mar 2002, Mike Barcroft wrote: > Mike Silbersack writes: > > You might as well invert the option so that the feature defaults to ON. > > This is -current, afterall, and it's there so features like this can be > > tested. > > You apparently haven't read the announcements about 5.0 Developer > Preview 1. > > Best regards, > Mike Barcroft Good point, I had forgotten about that. Jeff's plan to hold off enabling it until after the preview makes sense. 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 Mon Mar 11 22:35:49 2002 Delivered-To: cvs-all@freebsd.org Received: from gate.soum.co.jp (gate.soum.co.jp [202.221.40.2]) by hub.freebsd.org (Postfix) with ESMTP id D429337B400; Mon, 11 Mar 2002 22:35:44 -0800 (PST) Received: from force.soum.co.jp (force.soum.co.jp [IPv6:3ffe:501:80a:1:a00:20ff:fef0:4c9c]) by gate.soum.co.jp (8.12.2/8.11.6) with ESMTP id g2C6Zgv9044232; Tue, 12 Mar 2002 15:35:43 +0900 (JST) (envelope-from uebayasi@soum.co.jp) Received: from localhost (localhost [127.0.0.1]) by force.soum.co.jp (8.11.6/3.7W-2001122804) with ESMTP id g2C6ZfS28775; Tue, 12 Mar 2002 15:35:41 +0900 (JST) Date: Tue, 12 Mar 2002 15:35:40 +0900 (JST) Message-Id: <20020312.153540.74173147.uebayasi@soum.co.jp> To: sobomax@FreeBSD.ORG Cc: knu@iDaemons.org, nobutaka@nobutaka.com, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... From: Masao Uebayashi In-Reply-To: <20020312.113940.125120884.uebayasi@soum.co.jp> References: <86r8mqajfe.wl@archon.local.idaemons.org> <1015886047.1763.26.camel@notebook> <20020312.113940.125120884.uebayasi@soum.co.jp> Organisation: SOUM Corporation, Tokyo, Japan X-Mailer: Mew version 2.2 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 For clarification... I agree ABI-oriented management is more important _in the very long run_ and this is totally irrelevant to the cost of package maintainance today. Sorry if you feel disturbed. (I'm not the one who maintains...) Masao To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 23:22: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 71B2E37B405; Mon, 11 Mar 2002 23:22:33 -0800 (PST) Received: (from jkh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C7MXA44784; Mon, 11 Mar 2002 23:22:33 -0800 (PST) (envelope-from jkh) Message-Id: <200203120722.g2C7MXA44784@freefall.freebsd.org> From: "Jordan K. Hubbard" Date: Mon, 11 Mar 2002 23:22:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/cvsupit 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 jkh 2002/03/11 23:22:32 PST Modified files: net/cvsupit Makefile pkg-install Log: Bump minor number, go to 4.5 release branch. Nagged by: kris Revision Changes Path 1.9 +2 -2 ports/net/cvsupit/Makefile 1.8 +1 -1 ports/net/cvsupit/pkg-install To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 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 3326937B701; Mon, 11 Mar 2002 23:28:31 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C7SVU45829; Mon, 11 Mar 2002 23:28:31 -0800 (PST) (envelope-from ijliao) Message-Id: <200203120728.g2C7SVU45829@freefall.freebsd.org> From: Ying-Chieh Liao Date: Mon, 11 Mar 2002 23:28:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/truevision 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/03/11 23:28:31 PST Modified files: graphics Makefile Added files: graphics/truevision Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add truevision 0.3.10 The GNOME 3D modeler Revision Changes Path 1.418 +1 -0 ports/graphics/Makefile 1.1 +33 -0 ports/graphics/truevision/Makefile (new) 1.1 +1 -0 ports/graphics/truevision/distinfo (new) 1.1 +1 -0 ports/graphics/truevision/pkg-comment (new) 1.1 +21 -0 ports/graphics/truevision/pkg-descr (new) 1.1 +122 -0 ports/graphics/truevision/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 Mar 11 23:32: 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 50BF437B43F; Mon, 11 Mar 2002 23:28:34 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C7SYf45860; Mon, 11 Mar 2002 23:28:34 -0800 (PST) (envelope-from ijliao) Message-Id: <200203120728.g2C7SYf45860@freefall.freebsd.org> From: Ying-Chieh Liao Date: Mon, 11 Mar 2002 23:28:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/11 23:28:34 PST Modified files: . modules Log: truevision --> ports/graphics/truevision Revision Changes Path 1.4826 +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 Mar 11 23:32:41 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id D34D237B443; Mon, 11 Mar 2002 23:31:55 -0800 (PST) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.11.6/8.11.6) with ESMTP id g2C7Vsb88180; Tue, 12 Mar 2002 08:31:54 +0100 (CET) Date: Tue, 12 Mar 2002 08:34:09 +0100 (CET) From: Martin Blapp To: "David O'Brien" Cc: , Subject: Re: Openoffice workaround to build In-Reply-To: <20020311175207.A90501@dragon.nuxi.com> Message-ID: <20020312083301.B441-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > I mentioned the correct way to do this: > > cd /usr/ports/lang/gcc295 > make install > cd /usr/ports/editors/openoffice > make CC=gcc295 CXX=g++295 This doesn't work for some reasons since dmake borks out just after configure was running. I've digged a while and give up for the first. Patches ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 11 23:50: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 20F7137B7BB; Mon, 11 Mar 2002 23:48:12 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C7mCx50452; Mon, 11 Mar 2002 23:48:12 -0800 (PST) (envelope-from mbr) Message-Id: <200203120748.g2C7mCx50452@freefall.freebsd.org> From: Martin Blapp Date: Mon, 11 Mar 2002 23:48:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice-devel/files patch-i18n::inc::collator.hxx X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/03/11 23:48:12 PST Added files: editors/openoffice-devel/files patch-i18n::inc::collator.hxx Log: Another alloca.h we do not have Revision Changes Path 1.1 +12 -0 ports/editors/openoffice-devel/files/patch-i18n::inc::collator.hxx (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 0:38: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EC31F37B41C; Tue, 12 Mar 2002 00:37:54 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C8bsK62209; Tue, 12 Mar 2002 00:37:54 -0800 (PST) (envelope-from murray) Message-Id: <200203120837.g2C8bsK62209@freefall.freebsd.org> From: Murray Stokely Date: Tue, 12 Mar 2002 00:37:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/scripts print-cdrom-packages.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 murray 2002/03/12 00:37:52 PST Modified files: release/scripts print-cdrom-packages.sh Log: * Add print/teTeX to the list of important packages for disc #3. This very large package is exactly the kind of thing that users buy the CDs for, so leaving it off of a 4 CD set is very bad. * Properly quote the last security/sudo entry. * Add a comment in the CDROM #2 section explaining that packages don't typically go on this disc. Revision Changes Path 1.21 +7 -2 src/release/scripts/print-cdrom-packages.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 0:47:28 2002 Delivered-To: cvs-all@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id E209F37B416; Tue, 12 Mar 2002 00:47:09 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id KAA78126; Tue, 12 Mar 2002 10:47:00 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from h221.228.dialup.iptcom.net (h221.228.dialup.iptcom.net [212.9.228.221]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id KAA20467; Tue, 12 Mar 2002 10:46:54 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... From: Maxim Sobolev To: Akinori MUSHA Cc: MANTANI Nobutaka , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, ports@FreeBSD.org In-Reply-To: <86ofhuabay.wl@archon.local.idaemons.org> References: <200203111725.g2BHPVF52248@freefall.freebsd.org> <86adte28qw.wl@excalibur.nobutaka.com> <3C8D0B5D.3186A73D@FreeBSD.org> <86r8mqajfe.wl@archon.local.idaemons.org> <1015886047.1763.26.camel@notebook> <86ofhuabay.wl@archon.local.idaemons.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-O+MplAdNk+l9WUs2p5hJ" Message-Id: <1015921012.255.1.camel@notebook> Mime-Version: 1.0 X-Mailer: Evolution/1.0.2 Date: 12 Mar 2002 10:46:46 +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 --=-O+MplAdNk+l9WUs2p5hJ Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2002-03-12 at 02:18, Akinori MUSHA wrote: > At 12 Mar 2002 00:34:19 +0200, > sobomax wrote: > > As I said earlier, what we really need is the feature that will track > > ABI-incompatible upgrades and when such upgrade is performed bump > > PORTREVISION of all dependent ports automagically. Actually I've alread= y > > described prototype of such feature and instead of spending out time > > arguing whether or not we need to bump PORTREVISION on 10 out of tens o= r > > even hundreds ports that use freetype (waste of time IMO) in the long > > run we are better off to implement such feature and forget about it. >=20 > That sounds good, but aren't you supposed to help the users today > before talking about the future? It is always innocent users who > suffer from developers' unthoughtful misjudgement. Remind that your > "wasting" time will help a bunch of users' and save their time a lot. >=20 > While that feature would be useful in the future and it is hard to do > the PORTREVISION bumps for each and every dependant port, how about > just doing with most popular ports such as ImageMagick/libwmf, gd/gd2 > and XFree86-4-libraries for the moment? It might be good enough for > most users. If you don't object, shall I do it tonight? Yes, please do. > > In a nutshell idea is to assign each port with something called > > PKGABIVERSION (>=3D0, non-decreasing), which will need to be increased > > each time when some ABI-incompatible change is committed (e.g. shlib > > version bump) and make PKGREVISION of each port be an arithmetical sum > > of PKGABIVERSION's of all its dependencies and its own PORTREVISION. > > Actual implementation I'm leaving as an exercise for the reader, becaus= e > > I do not use portupgrade by myself and therefore have no interest in > > doing it on my own. For me `pkg_delete -r freetype2\* ; cd > > /usr/ports/x11/gnome ; make reinstall' is absolutely sufficient. >=20 > No, I'm not talking about you but ordinary users. You are saying > what.. "People, just delete and reinstall everything, because I'm > absolutely fine with it." ? >=20 > Because you are the one who committed the upgrade, you surely know > exactly what is happening and how to handle the situation. But how > about users? They won't even know something significant is happening > until they happen to upgrade freetype2 and face the serious library > dependency breakage. By not bumping the dependant ports' > PORTREVISIONs, you are taking away the chance for them to "smell" > something significant, or at least you are making it unable for > pkg_version users to properly upgrade packages the way they usually do > on a weekly basis or so. >=20 >=20 > As for portupgrade, honestly I don't care a pin if you use it, if you > like it or if you take it into account when maintaining ports and > altering the ports infrastructure. I'm providing users the tool suite > because I want to allow them to handle difficult situations by > themselves even though the ports system is badly broken and even > though developers including me often do not do things properly where > they are supposed to. >=20 > I believe ports (and probably any tool/system for users) should not be > something you get used to using inconveniently. You should not assume > people can or should live with inconvenience that is avoidable if we > developers work just a little bit harder and wiser. >=20 >=20 > P.S. >=20 > I value your continuous efforts on ports and like your ideas like the > above. Maybe I'll comment on some of them later this week if I can > take the time. Thanks! -Maxim --=-O+MplAdNk+l9WUs2p5hJ 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 iD8DBQA8jblzoNu5t4iCBa8RAg/3AJ4pc0BChcM7Pv/uXiRgBhGZUN6SlACfaFH7 WpktWWIfHWMCsJwvs9AR2IE= =P+r6 -----END PGP SIGNATURE----- --=-O+MplAdNk+l9WUs2p5hJ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 0: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 DFFCB37B402; Tue, 12 Mar 2002 00:55:22 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C8tMO65452; Tue, 12 Mar 2002 00:55:22 -0800 (PST) (envelope-from maxim) Message-Id: <200203120855.g2C8tMO65452@freefall.freebsd.org> From: Maxim Konovalov Date: Tue, 12 Mar 2002 00:55:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pppd auth.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 maxim 2002/03/12 00:55:22 PST Modified files: (Branch: RELENG_4) usr.sbin/pppd auth.c Log: MFC rev. 1.26: unbreak PAP-only authentication. Revision Changes Path 1.24.2.2 +12 -6 src/usr.sbin/pppd/auth.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 1: 2: 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 BC7FB37B416; Tue, 12 Mar 2002 01:02:02 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C922166991; Tue, 12 Mar 2002 01:02:02 -0800 (PST) (envelope-from maxim) Message-Id: <200203120902.g2C922166991@freefall.freebsd.org> From: Maxim Konovalov Date: Tue, 12 Mar 2002 01:02:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net if_ppp.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 maxim 2002/03/12 01:02:02 PST Modified files: (Branch: RELENG_4) sys/net if_ppp.c Log: MFC rev. 1.75: remove duplicated and wrong sc->sc_last_recv setting. It unbreaks active-filter in pppd(8). Revision Changes Path 1.67.2.3 +1 -4 src/sys/net/if_ppp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 1: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 F059137B427; Tue, 12 Mar 2002 01:45:17 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C9jHP78053; Tue, 12 Mar 2002 01:45:17 -0800 (PST) (envelope-from dfr) Message-Id: <200203120945.g2C9jHP78053@freefall.freebsd.org> From: Doug Rabson Date: Tue, 12 Mar 2002 01:45:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/acpica acpica_support.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 01:45:17 PST Modified files: sys/dev/acpica acpica_support.c Log: Only i386 has wbinvd(). Revision Changes Path 1.4 +2 -0 src/sys/dev/acpica/acpica_support.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 1:46: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 46D6C37B423; Tue, 12 Mar 2002 01:45:29 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2C9jTr78093; Tue, 12 Mar 2002 01:45:29 -0800 (PST) (envelope-from murray) Message-Id: <200203120945.g2C9jTr78093@freefall.freebsd.org> From: Murray Stokely Date: Tue, 12 Mar 2002 01:45:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 ports.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 murray 2002/03/12 01:45:29 PST Modified files: share/man/man7 ports.7 Log: Point readers to the Porter's Handbook instead of the non-existant "Porting Applications" section of the FreeBSD Handbook. MFC After: 2 days Revision Changes Path 1.30 +12 -12 src/share/man/man7/ports.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 2: 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 B58D237B417; Tue, 12 Mar 2002 02:04:32 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CA4Wn80854; Tue, 12 Mar 2002 02:04:32 -0800 (PST) (envelope-from trevor) Message-Id: <200203121004.g2CA4Wn80854@freefall.freebsd.org> From: Trevor Johnson Date: Tue, 12 Mar 2002 02:04:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/linux-mozilla Makefile distinfo ports/www/linux-mozilla/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 trevor 2002/03/12 02:04:32 PST Modified files: www/linux-mozilla Makefile distinfo www/linux-mozilla/scripts configure Log: Update to "two nines" version. This version has MathML, TrueType, and SOAP. Add inspector component. Make venkman component optional. new version noticed by: Muhannad Asfour Revision Changes Path 1.8 +3 -2 ports/www/linux-mozilla/Makefile 1.3 +6 -11 ports/www/linux-mozilla/distinfo 1.2 +4 -2 ports/www/linux-mozilla/scripts/configure To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 2:38: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 4972B37B433; Tue, 12 Mar 2002 02:38:49 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CAcni89532; Tue, 12 Mar 2002 02:38:49 -0800 (PST) (envelope-from trevor) Message-Id: <200203121038.g2CAcni89532@freefall.freebsd.org> From: Trevor Johnson Date: Tue, 12 Mar 2002 02:38:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/linux-mozilla distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2002/03/12 02:38:49 PST Modified files: www/linux-mozilla distinfo Log: Add checksums for optional components. Revision Changes Path 1.4 +7 -0 ports/www/linux-mozilla/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 3: 3: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 12F9F37B444; Tue, 12 Mar 2002 03:03:32 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CB3W093608; Tue, 12 Mar 2002 03:03:32 -0800 (PST) (envelope-from trevor) Message-Id: <200203121103.g2CB3W093608@freefall.freebsd.org> From: Trevor Johnson Date: Tue, 12 Mar 2002 03:03:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/linux_base-7 Makefile distinfo.alpha distinfo.i386 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 03:03:31 PST Modified files: emulators/linux_base-7 Makefile distinfo.alpha distinfo.i386 Log: Update to zlib-1.1.3-25.7. This fixes the "double free" bug. See RHSA-2002:027-22 or Zlib Advisory 2002-03-11 (URL:http://www.gzip.org/zlib/advisory-2002-03-11.txt) for details. I only tested this on i386. Revision Changes Path 1.8 +4 -4 ports/emulators/linux_base-7/Makefile 1.2 +1 -1 ports/emulators/linux_base-7/distinfo.alpha 1.3 +1 -1 ports/emulators/linux_base-7/distinfo.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 3:19: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 0246A37B43D; Tue, 12 Mar 2002 03:19:43 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CBJgG00676; Tue, 12 Mar 2002 03:19:42 -0800 (PST) (envelope-from trevor) Message-Id: <200203121119.g2CBJgG00676@freefall.freebsd.org> From: Trevor Johnson Date: Tue, 12 Mar 2002 03:19:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/linux_base-7 distinfo.alpha X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 03:19:42 PST Modified files: emulators/linux_base-7 distinfo.alpha Log: Correct checksum for Alpha zlib package. Revision Changes Path 1.3 +1 -1 ports/emulators/linux_base-7/distinfo.alpha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 3:41:41 2002 Delivered-To: cvs-all@freebsd.org Received: from straylight.ringlet.net (discworld.nanolink.com [217.75.135.248]) by hub.freebsd.org (Postfix) with SMTP id B93A537B446 for ; Tue, 12 Mar 2002 03:41:27 -0800 (PST) Received: (qmail 588 invoked by uid 1000); 12 Mar 2002 11:41:37 -0000 Date: Tue, 12 Mar 2002 13:41:37 +0200 From: Peter Pentchev To: Maxim Sobolev Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... Message-ID: <20020312134137.B447@straylight.oblivion.bg> Mail-Followup-To: Maxim Sobolev , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200203111725.g2BHPVF52248@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="Y7xTucakfITjPcLV" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200203111725.g2BHPVF52248@freefall.freebsd.org>; from sobomax@FreeBSD.org on Mon, Mar 11, 2002 at 09:25:31AM -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 --Y7xTucakfITjPcLV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 11, 2002 at 09:25:31AM -0800, Maxim Sobolev wrote: > sobomax 2002/03/11 09:25:31 PST >=20 > Modified files: > graphics/autotrace Makefile=20 > graphics/graphviz Makefile=20 > graphics/libafterimage Makefile=20 > graphics/librsvg Makefile=20 > graphics/libwmf Makefile=20 > graphics/sdl_ttf Makefile=20 > print/ft2demos Makefile=20 > print/gnomeprint Makefile=20 > textproc/p5-XML-LibRSVG Makefile=20 > x11/XFree86-4-libraries Makefile=20 > x11-fm/nautilus Makefile=20 > Log: > Chase increase of freetype2 shlib version. As soon as I saw this, a bell rang out, loudly: what about www/mod_php4? This is not the first time this has happened - a shared library version bump, followed by a commit which does *not* catch ALL dependent ports. People, PLEASE take note that there are ports which do not depend directly on others! The PHP ports are one example - a lot of the dependencies are configured dynamically, using dialog(1), at build time. Sometimes there is *no* substitute for a find/grep over the whole of the ports tree to fish out the ports which reference the older library version. In this particular case, the following command: find /usr/ports -type f | xargs fgrep -le freetype.8 -e freetype.so.8 yielded the following results: /usr/ports/databases/grass/Makefile /usr/ports/print/pfaedit/Makefile /usr/ports/www/mod_php4/scripts/configure.php I will commit a patch updating those three ports in a minute, but please take note of this situation and try not to miss "hidden" dependencies in the future! :) 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 the thought you are now thinking. --Y7xTucakfITjPcLV 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 iEYEARECAAYFAjyN6XEACgkQ7Ri2jRYZRVMe5QCdFGd5dgh6F1Ahi9bcs3GGH5+T pX8An0gQSA5H18yLLU3ZS1OFThGrhIpf =3wQk -----END PGP SIGNATURE----- --Y7xTucakfITjPcLV-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 3:51:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8AE1A37B442; Tue, 12 Mar 2002 03:51:15 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CBpFc05102; Tue, 12 Mar 2002 03:51:15 -0800 (PST) (envelope-from roam) Message-Id: <200203121151.g2CBpFc05102@freefall.freebsd.org> From: Peter Pentchev Date: Tue, 12 Mar 2002 03:51:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/grass Makefile ports/print/pfaedit Makefile ports/www/mod_php4/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 roam 2002/03/12 03:51:15 PST Modified files: databases/grass Makefile print/pfaedit Makefile www/mod_php4/scripts configure.php Log: Bump the freetype2 library version in a couple of ports sobomax missed. Revision Changes Path 1.9 +1 -1 ports/databases/grass/Makefile 1.10 +1 -1 ports/print/pfaedit/Makefile 1.157 +2 -2 ports/www/mod_php4/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 Tue Mar 12 3:55:56 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id B78E137B43D; Tue, 12 Mar 2002 03:55:53 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id B1A285346; Tue, 12 Mar 2002 12:55:51 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Jake Burkholder Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c References: <200203111123.g2BBNo651853@freefall.freebsd.org> <20020311175817.I20687@locore.ca> From: Dag-Erling Smorgrav Date: 12 Mar 2002 12:55:50 +0100 In-Reply-To: <20020311175817.I20687@locore.ca> 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 Jake Burkholder writes: > This will build but its actually wrong. We can't make the same assumptions > about the physical address of where the kernel is loaded as i386 does. Well, I was told it was correct :) This doesn't make any assumptions, BTW - it looks for the kernbase symbol in the kernel and uses that. Now if you're telling me that the kernel's own idea of kernbase is wrong... DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 3:57:58 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id A9F6A37B442; Tue, 12 Mar 2002 03:57:55 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id C37025346; Tue, 12 Mar 2002 12:57:53 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: cjclark@alum.mit.edu Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc src/share/man/man5 rc.conf.5 References: <200203110847.g2B8l4714026@freefall.freebsd.org> <20020311182200.D29705@blossom.cjclark.org> From: Dag-Erling Smorgrav Date: 12 Mar 2002 12:57:52 +0100 In-Reply-To: <20020311182200.D29705@blossom.cjclark.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 "Crist J. Clark" writes: > Makes sense. How about doing it first thing after we load the rc.conf > files? In addition, take out the checks on the $dumpdev. dumpon(8) > behaves well if given a non-existent filename. It gives a nice error > message which is better rather than the current silent failure. > Likewise, we can take out the remaining safety net for the savecore(8) > run; it doesn't need hand-holding. Let misconfigured setups produce > error messages. Yeah, that patch looks good. Go for it! DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 4:21:28 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 05A4337B404; Tue, 12 Mar 2002 04:21:24 -0800 (PST) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 16klKV-0004Fu-00; Tue, 12 Mar 2002 14:24:35 +0200 From: Sheldon Hearn To: Dmitry Sivachenko Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/databases/p5-DBD-Pg Makefile In-reply-to: Your message of "Sun, 10 Mar 2002 02:35:05 PST." <200203101035.g2AAZ5K14428@freefall.freebsd.org> Date: Tue, 12 Mar 2002 14:24:35 +0200 Message-ID: <16361.1015935875@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 Sun, 10 Mar 2002 02:35:05 PST, Dmitry Sivachenko wrote: > Modified files: > databases/p5-DBD-Pg Makefile > Log: > I am not interested in this port anymore. Were there any problems with it that you knew of at the time you released maintainership? :-) Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 4:26: 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 3F29137B405; Tue, 12 Mar 2002 04:26:06 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CCQ6H20841; Tue, 12 Mar 2002 04:26:06 -0800 (PST) (envelope-from murray) Message-Id: <200203121226.g2CCQ6H20841@freefall.freebsd.org> From: Murray Stokely Date: Tue, 12 Mar 2002 04:26:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4/man4.i386 amdpm.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 murray 2002/03/12 04:26:06 PST Modified files: share/man/man4/man4.i386 amdpm.4 Log: This driver first appeared in FreeBSD 4.5, not 5.0. Revision Changes Path 1.3 +1 -1 src/share/man/man4/man4.i386/amdpm.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 4:28:56 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E83937B419; Tue, 12 Mar 2002 04:28:48 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CCSmq21341; Tue, 12 Mar 2002 04:28:48 -0800 (PST) (envelope-from murray) Message-Id: <200203121228.g2CCSmq21341@freefall.freebsd.org> From: Murray Stokely Date: Tue, 12 Mar 2002 04:28:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4/man4.i386 amdpm.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 murray 2002/03/12 04:28:48 PST Modified files: (Branch: RELENG_4) share/man/man4/man4.i386 amdpm.4 Log: MFC: r1.3 - amdpm(4) first appeared in FreeBSD 4.5, not 5.0. Revision Changes Path 1.1.2.3 +1 -1 src/share/man/man4/man4.i386/amdpm.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 4: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 C94D537B400; Tue, 12 Mar 2002 04:36:40 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CCaei22471; Tue, 12 Mar 2002 04:36:40 -0800 (PST) (envelope-from murray) Message-Id: <200203121236.g2CCaei22471@freefall.freebsd.org> From: Murray Stokely Date: Tue, 12 Mar 2002 04:36:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/eresources 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 murray 2002/03/12 04:36:40 PST Modified files: en_US.ISO8859-1/books/handbook/eresources chapter.sgml Log: * Capitalize SPARC. * Add the freebsd-bugbusters list. PR: docs/35677 Submitted by: Hiten Pandya Revision Changes Path 1.78 +6 -1 doc/en_US.ISO8859-1/books/handbook/eresources/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 4:43: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 7F55237B417; Tue, 12 Mar 2002 04:43:52 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CChqX24294; Tue, 12 Mar 2002 04:43:52 -0800 (PST) (envelope-from murray) Message-Id: <200203121243.g2CChqX24294@freefall.freebsd.org> From: Murray Stokely Date: Tue, 12 Mar 2002 04:43:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/sound 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 murray 2002/03/12 04:43:52 PST Modified files: en_US.ISO8859-1/books/handbook/sound chapter.sgml Log: Note that cdda2wav can be used with IDE drives. PR: docs/35750 Revision Changes Path 1.29 +6 -4 doc/en_US.ISO8859-1/books/handbook/sound/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 4:59:44 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.demos.su (relay1.demos.su [194.87.0.16]) by hub.freebsd.org (Postfix) with ESMTP id 432FD37B402; Tue, 12 Mar 2002 04:59:36 -0800 (PST) Received: from [194.87.2.36] (HELO cavia.pp.ru) by mail.demos.su (CommuniGate Pro SMTP 3.5.6/D) with ESMTP-TLS id 17189016; Tue, 12 Mar 2002 15:59:34 +0300 Received: (from mitya@localhost) by cavia.pp.ru (8.11.6/8.11.6) id g2CCwDp73836; Tue, 12 Mar 2002 15:58:13 +0300 (MSK) Date: Tue, 12 Mar 2002 15:58:13 +0300 From: Dmitry Sivachenko To: Sheldon Hearn Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/databases/p5-DBD-Pg Makefile Message-ID: <20020312125813.GA73764@cavia.pp.ru> References: <200203101035.g2AAZ5K14428@freefall.freebsd.org> <16361.1015935875@axl.seasidesoftware.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <16361.1015935875@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 On Tue, Mar 12, 2002 at 02:24:35PM +0200, Sheldon Hearn wrote: > > > On Sun, 10 Mar 2002 02:35:05 PST, Dmitry Sivachenko wrote: > > > Modified files: > > databases/p5-DBD-Pg Makefile > > Log: > > I am not interested in this port anymore. > > Were there any problems with it that you knew of at the time you released > maintainership? :-) > There was some issues after upgrading postgres. May be someone else will have desire to look after this port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 5: 0: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 37FE037B400; Tue, 12 Mar 2002 05:00:17 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CD0Ha27924; Tue, 12 Mar 2002 05:00:17 -0800 (PST) (envelope-from murray) Message-Id: <200203121300.g2CD0Ha27924@freefall.freebsd.org> From: Murray Stokely Date: Tue, 12 Mar 2002 05:00:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en docs.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/03/12 05:00:17 PST Modified files: en docs.sgml Log: Add a link to Appendix A of Operating Systems Concepts. PR: docs/35697 Submitted by: Andrew Boothman Revision Changes Path 1.141 +13 -2 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 Tue Mar 12 5: 7: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 31A7A37B400; Tue, 12 Mar 2002 05:07:25 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CD7Pg33146; Tue, 12 Mar 2002 05:07:25 -0800 (PST) (envelope-from murray) Message-Id: <200203121307.g2CD7Pg33146@freefall.freebsd.org> From: Murray Stokely Date: Tue, 12 Mar 2002 05:07:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/scripts print-cdrom-packages.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 murray 2002/03/12 05:07:25 PST Modified files: (Branch: RELENG_4) release/scripts print-cdrom-packages.sh Log: MFC: r1.20, 1.21 - Add print/teTeX to disc3, security/sudo to disc1. Revision Changes Path 1.1.2.14 +7 -1 src/release/scripts/print-cdrom-packages.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 5:11:17 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 D0A1837B400; Tue, 12 Mar 2002 05:11:12 -0800 (PST) Received: by tao.org.uk (Postfix, from userid 100) id 46DFE2F6; Tue, 12 Mar 2002 13:10:23 +0000 (GMT) Date: Tue, 12 Mar 2002 13:10:23 +0000 From: Josef Karthauser To: Jeff Roberson Cc: Mike Barcroft , Mike Silbersack , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys namei.h src/sys/kern vfs_cache.c vfs_syscalls.c vfs_vnops.c src/sys/conf options Message-ID: <20020312131023.GA2690@genius.tao.org.uk> References: <20020312001005.D59465@espresso.q9media.com> <20020312005237.L34896-100000@mail.chesapeake.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Qxx1br4bt0+wmkIi" Content-Disposition: inline In-Reply-To: <20020312005237.L34896-100000@mail.chesapeake.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 --Qxx1br4bt0+wmkIi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Mar 12, 2002 at 12:53:35AM -0500, Jeff Roberson wrote: > On Tue, 12 Mar 2002, Mike Barcroft wrote: > > > > You apparently haven't read the announcements about 5.0 Developer > > Preview 1. > > >=20 > Yes, DP1 was the primary reason for leaving it off. I will turn it on as > soon as that branches. >=20 When is that again? I'm hankering to commit a huge usb patch. Joe --Qxx1br4bt0+wmkIi 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 iEYEARECAAYFAjyN/j4ACgkQXVIcjOaxUBb9QQCdHRMmlN4DXnQ5zLA72qwjFAXA sPcAn2XhsoiJqyUyNtlgl0HxDtN+6iqA =Z4vv -----END PGP SIGNATURE----- --Qxx1br4bt0+wmkIi-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 5:13: 5 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 8102D37B402; Tue, 12 Mar 2002 05:13:00 -0800 (PST) Received: by mao.stokely.org (Postfix, from userid 2074) id 3916C4B65D; Tue, 12 Mar 2002 05:13:00 -0800 (PST) Date: Tue, 12 Mar 2002 05:13:00 -0800 From: Murray Stokely To: Josef Karthauser Cc: Jeff Roberson , Mike Barcroft , Mike Silbersack , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys namei.h src/sys/kern vfs_cache.c vfs_syscalls.c vfs_vnops.c src/sys/conf options Message-ID: <20020312131300.GO7036@freebsdmall.com> References: <20020312001005.D59465@espresso.q9media.com> <20020312005237.L34896-100000@mail.chesapeake.net> <20020312131023.GA2690@genius.tao.org.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020312131023.GA2690@genius.tao.org.uk> 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 Tue, Mar 12, 2002 at 01:10:23PM +0000, Josef Karthauser wrote: > > Yes, DP1 was the primary reason for leaving it off. I will turn it on as > > soon as that branches. > > > > When is that again? I'm hankering to commit a huge usb patch. Please wait 4 more days. We will create a release branch on or around the 15th so as not to hold up -CURRENT development any longer. - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 5:15:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DAD0037B405; Tue, 12 Mar 2002 05:15:16 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CDFGj34471; Tue, 12 Mar 2002 05:15:16 -0800 (PST) (envelope-from murray) Message-Id: <200203121315.g2CDFGj34471@freefall.freebsd.org> From: Murray Stokely Date: Tue, 12 Mar 2002 05:15:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en index.xsl X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 05:15:16 PST Modified files: en index.xsl Log: Link to release engineering section of the web site from the 'Development' area of the left side navigation bar. Revision Changes Path 1.21 +3 -2 www/en/index.xsl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 5:21:54 2002 Delivered-To: cvs-all@freebsd.org Received: from blues.jpj.net (blues.jpj.net [204.97.17.6]) by hub.freebsd.org (Postfix) with ESMTP id 66C7C37B416; Tue, 12 Mar 2002 05:21:49 -0800 (PST) Received: from localhost (trevor@localhost) by blues.jpj.net (8.11.6/8.11.6) with ESMTP id g2CDLmg19423; Tue, 12 Mar 2002 08:21:48 -0500 (EST) Date: Tue, 12 Mar 2002 08:21:48 -0500 (EST) From: Trevor Johnson To: Trevor Johnson Cc: cvs-committers@FreeBSD.org, , Subject: Re: cvs commit: ports/www/linux-mozilla Makefile distinfo ports/www/linux-mozilla/scripts configure In-Reply-To: <200203121004.g2CA4Wn80854@freefall.freebsd.org> Message-ID: <20020312082049.C19417-100000@blues.jpj.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG According to the release notes, the internal zlib functions in this version are corrected for the "double free" security bug. > trevor 2002/03/12 02:04:32 PST > > Modified files: > www/linux-mozilla Makefile distinfo > www/linux-mozilla/scripts configure > Log: > Update to "two nines" version. This version has MathML, TrueType, > and SOAP. Add inspector component. Make venkman component optional. > > new version noticed by: Muhannad Asfour > > Revision Changes Path > 1.8 +3 -2 ports/www/linux-mozilla/Makefile > 1.3 +6 -11 ports/www/linux-mozilla/distinfo > 1.2 +4 -2 ports/www/linux-mozilla/scripts/configure -- Trevor Johnson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 5:22: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 DCC6937B416; Tue, 12 Mar 2002 05:22:44 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CDMiS35723; Tue, 12 Mar 2002 05:22:44 -0800 (PST) (envelope-from murray) Message-Id: <200203121322.g2CDMiS35723@freefall.freebsd.org> From: Murray Stokely Date: Tue, 12 Mar 2002 05:22:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/news news.xml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2002/03/12 05:22:44 PST Modified files: en/news news.xml Log: Add a newsflash entry that an updated release schedule is now available, and point to the new releng area of the web site. Revision Changes Path 1.70 +16 -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 Tue Mar 12 5:29: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 B937637B400; Tue, 12 Mar 2002 05:29:11 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CDTBi36760; Tue, 12 Mar 2002 05:29:11 -0800 (PST) (envelope-from mbr) Message-Id: <200203121329.g2CDTBi36760@freefall.freebsd.org> From: Martin Blapp Date: Tue, 12 Mar 2002 05:29:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice-devel/files patch-product::util::makefile.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 mbr 2002/03/12 05:29:11 PST Modified files: editors/openoffice-devel/files patch-product::util::makefile.mk Log: Copy stlport library to the right place. Fix build Revision Changes Path 1.4 +17 -6 ports/editors/openoffice-devel/files/patch-product::util::makefile.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 5:43: 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 D92F137B419; Tue, 12 Mar 2002 05:43:02 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CDh2x47154; Tue, 12 Mar 2002 05:43:02 -0800 (PST) (envelope-from markm) Message-Id: <200203121343.g2CDh2x47154@freefall.freebsd.org> From: Mark Murray Date: Tue, 12 Mar 2002 05:43:02 -0800 (PST) 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 markm 2002/03/12 05:43:02 PST Modified files: usr.bin Makefile Log: Turn back on (x)lint. It is working just fine. Revision Changes Path 1.183 +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 Tue Mar 12 5:44: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 319ED37B405; Tue, 12 Mar 2002 05:44:44 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CDiin48576; Tue, 12 Mar 2002 05:44:44 -0800 (PST) (envelope-from trevor) Message-Id: <200203121344.g2CDiin48576@freefall.freebsd.org> From: Trevor Johnson Date: Tue, 12 Mar 2002 05:44:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/linux_base-62 Makefile distinfo distinfo.alpha distinfo.i386 pkg-plist.alpha pkg-plist.i386 ports/emulators/linux_base Makefile distinfo distinfo.alpha distinfo.i386 pkg-plist.alpha pkg-plist.i386 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 05:44:44 PST Modified files: emulators/linux_base-62 Makefile distinfo distinfo.alpha distinfo.i386 pkg-plist.alpha pkg-plist.i386 emulators/linux_base Makefile distinfo distinfo.alpha distinfo.i386 pkg-plist.alpha pkg-plist.i386 Log: Update for zlib "double free" security bug (http://www.redhat.com/support/errata/RHSA-2002-026.html). I only tested this on i386. Revision Changes Path 1.58 +4 -4 ports/emulators/linux_base-62/Makefile 1.18 +2 -2 ports/emulators/linux_base-62/distinfo 1.3 +1 -1 ports/emulators/linux_base-62/distinfo.alpha 1.2 +1 -1 ports/emulators/linux_base-62/distinfo.i386 1.7 +1 -0 ports/emulators/linux_base-62/pkg-plist.alpha 1.6 +1 -0 ports/emulators/linux_base-62/pkg-plist.i386 1.58 +4 -4 ports/emulators/linux_base/Makefile 1.18 +2 -2 ports/emulators/linux_base/distinfo 1.3 +1 -1 ports/emulators/linux_base/distinfo.alpha 1.2 +1 -1 ports/emulators/linux_base/distinfo.i386 1.7 +1 -0 ports/emulators/linux_base/pkg-plist.alpha 1.6 +1 -0 ports/emulators/linux_base/pkg-plist.i386 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 5:47: 0 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 CA20937B400; Tue, 12 Mar 2002 05:46:53 -0800 (PST) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id D863F4D8A2; Tue, 12 Mar 2002 22:46:50 +0900 (JST) Date: Tue, 12 Mar 2002 22:46:50 +0900 Message-ID: <86zo1daofp.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Peter Pentchev , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... In-Reply-To: <20020312134137.B447@straylight.oblivion.bg> References: <200203111725.g2BHPVF52248@freefall.freebsd.org> User-Agent: Wanderlust/2.9.7 (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 Tue, 12 Mar 2002 13:41:37 +0200, Peter Pentchev wrote: > As soon as I saw this, a bell rang out, loudly: what about www/mod_php4? > This is not the first time this has happened - a shared library version > bump, followed by a commit which does *not* catch ALL dependent ports. > > People, PLEASE take note that there are ports which do not depend directly > on others! The PHP ports are one example - a lot of the dependencies are > configured dynamically, using dialog(1), at build time. Sometimes there > is *no* substitute for a find/grep over the whole of the ports tree to fish > out the ports which reference the older library version. > > In this particular case, the following command: > > find /usr/ports -type f | xargs fgrep -le freetype.8 -e freetype.so.8 Unfortunately, this is not sufficient because someone removed the shlib major part of freetype2 and some other libraries' LIB_DEPENDS entries from his ports. You should grep for -w freetype2 instead to catch by the port name. > I will commit a patch updating those three ports in a minute, but please > take note of this situation and try not to miss "hidden" dependencies > in the future! :) Actually many ports that have explicit dependencies in their Makefiles were left untouched too. (Read other mails on this thread, you can find my getting sobomax' OK to deal with ImageMagic, gd and XFree86-4-libraries) Anyhow, let's do bump PORTREVISION's ourselves whenever we find this kind of incomplete library port upgrade. :) Or users may just get lost. -- / /__ __ 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 Tue Mar 12 5: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 B6CF637B400; Tue, 12 Mar 2002 05:55:19 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CDtJP50685; Tue, 12 Mar 2002 05:55:19 -0800 (PST) (envelope-from luigi) Message-Id: <200203121355.g2CDtJP50685@freefall.freebsd.org> From: Luigi Rizzo Date: Tue, 12 Mar 2002 05:55:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/sysctl sysctl.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 luigi 2002/03/12 05:55:19 PST Modified files: sbin/sysctl sysctl.8 Log: Document the existence of machdep.guessed_bootdev, as suggested by Sheldon. For a detailed description look at the commit log for sysctl.c rev.1.42 -- i do not think it is appropriate to put the full description in this manpage, and the "boot" and "loader" manpages where this description might go are also missing a description of a number of similar variables, so i think this it is ok to limit documentation to this now, and update it later when I (or someone else) have a chance to revise "boot" and "loader". Revision Changes Path 1.45 +1 -0 src/sbin/sysctl/sysctl.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 6: 1:51 2002 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 904) id 2165537B402; Tue, 12 Mar 2002 06:01:46 -0800 (PST) Date: Tue, 12 Mar 2002 06:01:46 -0800 From: Max Khon To: Dmitry Sivachenko Cc: David O'Brien , Martin Blapp , Martin Blapp , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: Openoffice workaround to build Message-ID: <20020312060146.A37516@hub.freebsd.org> References: <200203120122.g2C1MU061068@freefall.freebsd.org> <20020312022536.J441-100000@levais.imp.ch> <20020311175207.A90501@dragon.nuxi.com> <20020312041118.GA180@cavia.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020312041118.GA180@cavia.pp.ru>; from demon@FreeBSD.org on Tue, Mar 12, 2002 at 07:11:18AM +0300 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hi, there! On Tue, Mar 12, 2002 at 07:11:18AM +0300, Dmitry Sivachenko wrote: > > > Workaround: > > > ----------- > > > > > > cd /usr/ports/lang/gcc295 > > > make install > > > cd /usr/local/bin > > > ln -s /usr/local/bin/g++295 /usr/local/bin/g++ > > > ln -s /usr/local/bin/gcc295 /usr/local/bin/cc > > > ln -s /usr/local/bin/gcc295 /usr/local/bin/gcc > > > > I mentioned the correct way to do this: > > > > cd /usr/ports/lang/gcc295 > > make install > > cd /usr/ports/editors/openoffice > > make CC=gcc295 CXX=g++295 > > > > PLEASE NO ONE FOLLOW THE DIRECTIONS FOR MAKING THESE SYMLINKS !! > > What is the difference between gcc in -STABLE and in ports/lang/gcc295 ? > They both seems to be 2.95.3... AFAIK gcc 2.95.3 from ports uses DWARF2 unwinding info for exception handling. gcc from base system still uses sjlj method. /fjoe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 6: 3:54 2002 Delivered-To: cvs-all@freebsd.org Received: from straylight.ringlet.net (discworld.nanolink.com [217.75.135.248]) by hub.freebsd.org (Postfix) with SMTP id 1F4C737B400 for ; Tue, 12 Mar 2002 06:02:53 -0800 (PST) Received: (qmail 52231 invoked by uid 1000); 12 Mar 2002 14:03:06 -0000 Date: Tue, 12 Mar 2002 16:03:06 +0200 From: Peter Pentchev To: Akinori MUSHA Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... Message-ID: <20020312160305.A1457@straylight.oblivion.bg> Mail-Followup-To: Akinori MUSHA , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200203111725.g2BHPVF52248@freefall.freebsd.org> <20020312134137.B447@straylight.oblivion.bg> <86zo1daofp.wl@archon.local.idaemons.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="FCuugMFkClbJLl1L" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <86zo1daofp.wl@archon.local.idaemons.org>; from knu@iDaemons.org on Tue, Mar 12, 2002 at 10:46:50PM +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 --FCuugMFkClbJLl1L Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Mar 12, 2002 at 10:46:50PM +0900, Akinori MUSHA wrote: > At Tue, 12 Mar 2002 13:41:37 +0200, > Peter Pentchev wrote: > > As soon as I saw this, a bell rang out, loudly: what about www/mod_php4? > > This is not the first time this has happened - a shared library version > > bump, followed by a commit which does *not* catch ALL dependent ports. > >=20 > > People, PLEASE take note that there are ports which do not depend direc= tly > > on others! The PHP ports are one example - a lot of the dependencies a= re > > configured dynamically, using dialog(1), at build time. Sometimes there > > is *no* substitute for a find/grep over the whole of the ports tree to = fish > > out the ports which reference the older library version. > >=20 > > In this particular case, the following command: > >=20 > > find /usr/ports -type f | xargs fgrep -le freetype.8 -e freetype.so.8 >=20 > Unfortunately, this is not sufficient because someone removed the > shlib major part of freetype2 and some other libraries' LIB_DEPENDS > entries from his ports. You should grep for -w freetype2 instead to > catch by the port name. In this case, I was only interested in the shared library's version number; I did not bump the three ports' PORTREVISION, because.. well, because it would be weird to bump PORTREVISION on only these three, when it was not bumped on any of the other 2,000+ that Maxim referred to. Since it was just the shlib major number I was interested in, it was just the shlib major number that I looked for, hence the .8 :) > > I will commit a patch updating those three ports in a minute, but please > > take note of this situation and try not to miss "hidden" dependencies > > in the future! :) >=20 > Actually many ports that have explicit dependencies in their Makefiles > were left untouched too. (Read other mails on this thread, you can > find my getting sobomax' OK to deal with ImageMagic, gd and > XFree86-4-libraries) None of these referred to the shlib's major version number; all of these would be caught by a proper package depencies' registration within /var/db/pkg (@pkgdep and +REQUIRED_BY). All right, so sometimes the /var/db/pkg dependencies are not recorded quite correctly; I personally use a one-line shell script - 'egrep "^@pkgdep $*" */+CONTENTS' - to see which packages depend on an older version that I am about to remove before installing the new one. Again, my reply only referred to the shlib version number. Still, the find/fgrep could be done in such a way as to catch all ports depending in some way on print/freetype2 - simply search for that :) find /usr/ports -type f | xargs fgrep -l print/freetype2 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 What would this sentence be like if it weren't self-referential? --FCuugMFkClbJLl1L 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 iEYEARECAAYFAjyOCpkACgkQ7Ri2jRYZRVPtXgCfc+D0B6yzRjvma8qVH78BGMHM cUkAnjdz0nEgEHSnUnUbv8AmyfIzJzrw =C+kY -----END PGP SIGNATURE----- --FCuugMFkClbJLl1L-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 6: 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 C236B37B431; Tue, 12 Mar 2002 06:03:29 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CE3T552103; Tue, 12 Mar 2002 06:03:29 -0800 (PST) (envelope-from sobomax) Message-Id: <200203121403.g2CE3T552103@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 12 Mar 2002 06:03:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/gnome 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 sobomax 2002/03/12 06:03:29 PST Modified files: en/gnome news.xml Log: Announce recent update of GNOME2 ports. Revision Changes Path 1.6 +19 -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 Tue Mar 12 6: 6:15 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id 1FF4737B402; Tue, 12 Mar 2002 06:06:09 -0800 (PST) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.11.6/8.11.6) with ESMTP id g2CE67h88774; Tue, 12 Mar 2002 15:06:08 +0100 (CET) Date: Tue, 12 Mar 2002 15:08:22 +0100 (CET) From: Martin Blapp To: Max Khon Cc: Dmitry Sivachenko , "David O'Brien" , Martin Blapp , , Subject: Re: Openoffice workaround to build In-Reply-To: <20020312060146.A37516@hub.freebsd.org> Message-ID: <20020312150747.W2573-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, > AFAIK gcc 2.95.3 from ports uses DWARF2 unwinding info for exception > handling. gcc from base system still uses sjlj method. That may be it. How can I trun DWARF2 on for the base system ? Patch ? Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 6: 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 9765637B435; Tue, 12 Mar 2002 06:06:27 -0800 (PST) Received: (from greid@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CE6Rj56113; Tue, 12 Mar 2002 06:06:27 -0800 (PST) (envelope-from greid) Message-Id: <200203121406.g2CE6Rj56113@freefall.freebsd.org> From: George C A Reid Date: Tue, 12 Mar 2002 06:06:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/dircproxy 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 greid 2002/03/12 06:06:27 PST Modified files: irc/dircproxy Makefile distinfo pkg-plist Log: Update to version 1.0.3 Submitted by: Neil Darlow Revision Changes Path 1.4 +2 -3 ports/irc/dircproxy/Makefile 1.4 +1 -1 ports/irc/dircproxy/distinfo 1.2 +2 -0 ports/irc/dircproxy/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 Mar 12 6: 8: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 CCC4637B405; Tue, 12 Mar 2002 06:08:29 -0800 (PST) Received: (from greid@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CE8TN56429; Tue, 12 Mar 2002 06:08:29 -0800 (PST) (envelope-from greid) Message-Id: <200203121408.g2CE8TN56429@freefall.freebsd.org> From: George C A Reid Date: Tue, 12 Mar 2002 06:08:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/dircproxy 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 greid 2002/03/12 06:08:29 PST Modified files: irc/dircproxy pkg-descr Log: Whoops, left this out of the last commit. Add a WWW reference. Submitted by: jim Revision Changes Path 1.2 +2 -0 ports/irc/dircproxy/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 Mar 12 6:18: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from mailout06.sul.t-online.com (mailout06.sul.t-online.com [194.25.134.19]) by hub.freebsd.org (Postfix) with ESMTP id AC87337B402; Tue, 12 Mar 2002 06:18:03 -0800 (PST) Received: from fwd11.sul.t-online.de by mailout06.sul.t-online.com with smtp id 16kn6I-0007rn-0J; Tue, 12 Mar 2002 15:18:02 +0100 Received: from Magelan.Leidinger.net (520065502893-0001@[217.229.219.58]) by fmrl11.sul.t-online.com with esmtp id 16kn6F-1ajvpAC; Tue, 12 Mar 2002 15:17:59 +0100 Received: from Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.2/8.12.2) with ESMTP id g2CEHnmD061900; Tue, 12 Mar 2002 15:17:53 +0100 (CET) (envelope-from netchild@Leidinger.net) Message-Id: <200203121417.g2CEHnmD061900@Magelan.Leidinger.net> Date: Tue, 12 Mar 2002 15:17:47 +0100 (CET) From: Alexander Leidinger Subject: Re: Openoffice workaround to build To: mb@imp.ch Cc: fjoe@FreeBSD.ORG, demon@FreeBSD.ORG, obrien@FreeBSD.ORG, mbr@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-Reply-To: <20020312150747.W2573-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8BIT 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 12 Mär, Martin Blapp wrote: > That may be it. How can I trun DWARF2 on for the base system ? At least for -current: WANT_DWARF2_UNWIND=YES in /etc/make.conf Bye, Alexander. -- The dark ages were caused by the Y1K problem. 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 Tue Mar 12 6:58:14 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id E9AC437BD88; Tue, 12 Mar 2002 06:51:09 -0800 (PST) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.11.6/8.11.6) with ESMTP id g2CEnVJ98992; Tue, 12 Mar 2002 15:49:31 +0100 (CET) Date: Tue, 12 Mar 2002 15:51:46 +0100 (CET) From: Martin Blapp To: Alexander Leidinger Cc: , , , , , Subject: Re: Openoffice workaround to build In-Reply-To: <200203121417.g2CEHnmD061900@Magelan.Leidinger.net> Message-ID: <20020312155121.I2573-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > At least for -current: > WANT_DWARF2_UNWIND=YES in /etc/make.conf > And then recompile world ? Or is this then used by the gcc directly ? martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 7:56:51 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id D1FC937B90A; Tue, 12 Mar 2002 07:55:39 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.12.2/8.12.2) with ESMTP id g2CFsi3b073497; Tue, 12 Mar 2002 10:54:49 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200203121554.g2CFsi3b073497@aldan.algebra.com> Date: Tue, 12 Mar 2002 10:54:44 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... To: knu@iDaemons.org Cc: roam@ringlet.net, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <86zo1daofp.wl@archon.local.idaemons.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 12 Mar, Akinori MUSHA wrote: >> In this particular case, the following command: >> >> find /usr/ports -type f | xargs fgrep -le freetype.8 -e freetype.so.8 > Unfortunately, this is not sufficient because someone removed the > shlib major part of freetype2 and some other libraries' LIB_DEPENDS > entries from his ports. You should grep for -w freetype2 instead to > catch by the port name. I did. And you know my reasoning, which I don't find unfortunate at all. All those ports will build with ANY freetype, and handling the binary upgrades is not the ports system's primary objective. Hardly even secondary. >> I will commit a patch updating those three ports in a minute, but >> please take note of this situation and try not to miss "hidden" >> dependencies in the future! :) If you plan on backing out my changes, I'll, probably, put them back in promptly -- you are yet to convince me they are wrong. Yours, > Anyhow, let's do bump PORTREVISION's ourselves whenever we find this > kind of incomplete library port upgrade. :) > > Or users may just get lost. This means the upgrade mechanism is incomplete. If portupgrade (or whatever tool is used) upgrades port A, which results in a shared library bump of libA, it should automaticly upgrade all ports B, C, D which LIB_DEPEND on libA -- without an explicit PORTREVISION bump in B, C, and D. -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 7: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 EFFC837B499; Tue, 12 Mar 2002 07:58:29 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CFuiO83359; Tue, 12 Mar 2002 07:56:44 -0800 (PST) (envelope-from ijliao) Message-Id: <200203121556.g2CFuiO83359@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 12 Mar 2002 07:56:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/styx Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/12 07:56:43 PST Modified files: devel/styx Makefile distinfo pkg-plist Log: upgrade to 1.5 drop maintainership Revision Changes Path 1.4 +6 -4 ports/devel/styx/Makefile 1.3 +1 -1 ports/devel/styx/distinfo 1.4 +30 -0 ports/devel/styx/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 Mar 12 8: 3:24 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 72A4A37B4D3; Tue, 12 Mar 2002 08:02:33 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.12.2/8.12.2) with ESMTP id g2CG1G3b073557; Tue, 12 Mar 2002 11:01:21 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200203121601.g2CG1G3b073557@aldan.algebra.com> Date: Tue, 12 Mar 2002 11:01:16 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... To: roam@ringlet.net Cc: sobomax@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20020312134137.B447@straylight.oblivion.bg> 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 12 Mar, Peter Pentchev wrote: > As soon as I saw this, a bell rang out, loudly: what about > www/mod_php4? This is not the first time this has happened - a shared > library version bump, followed by a commit which does *not* catch ALL > dependent ports. Yes, and then a strange looking man from the corner starts whining again -- why are the major numbers there at all? All of those ports will build fine with libfreetype.so.[56789] -- it is rather rare to have a situation, when a particular version is needed by a depending port... To help with binary upgrades? Please, the ports system is about building from source. Binary packages are secondary... -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 8: 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 5545E37BAC9; Tue, 12 Mar 2002 08:06:02 -0800 (PST) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CG5BJ86146; Tue, 12 Mar 2002 08:05:11 -0800 (PST) (envelope-from joe) Message-Id: <200203121605.g2CG5BJ86146@freefall.freebsd.org> From: Josef Karthauser Date: Tue, 12 Mar 2002 08:05:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/libusb/files patch-bsd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 08:05:11 PST Modified files: devel/libusb/files patch-bsd.c Log: Fix a typo in the last patch. Spotted by: John Reynolds~ Revision Changes Path 1.3 +6 -6 ports/devel/libusb/files/patch-bsd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 8: 9: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 CC30837BADF; Tue, 12 Mar 2002 08:06:11 -0800 (PST) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CG5Rp88096; Tue, 12 Mar 2002 08:05:27 -0800 (PST) (envelope-from brian) Message-Id: <200203121605.g2CG5Rp88096@freefall.freebsd.org> From: Brian Somers Date: Tue, 12 Mar 2002 08:05:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp defs.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 08:05:27 PST Modified files: usr.sbin/ppp defs.c Log: Handle B460800 and B921600 being defined in Revision Changes Path 1.44 +6 -0 src/usr.sbin/ppp/defs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 8:11: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 74E1037BB27; Tue, 12 Mar 2002 08:07:06 -0800 (PST) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CG69m89075; Tue, 12 Mar 2002 08:06:09 -0800 (PST) (envelope-from brian) Message-Id: <200203121606.g2CG69m89075@freefall.freebsd.org> From: Brian Somers Date: Tue, 12 Mar 2002 08:06:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp defs.c X-FreeBSD-CVS-Branch: NETGRAPH Sender: owner-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/03/12 08:06:09 PST Modified files: (Branch: NETGRAPH) usr.sbin/ppp defs.c Log: MFC: Handle B460800 and B921600 being defined in Revision Changes Path 1.40.2.6 +6 -0 src/usr.sbin/ppp/defs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 8:12:47 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 EACB737BC19; Tue, 12 Mar 2002 08:12:02 -0800 (PST) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 3CF604D8FD; Wed, 13 Mar 2002 01:10:18 +0900 (JST) Date: Wed, 13 Mar 2002 01:10:18 +0900 Message-ID: <86y9gxahsl.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: roam@ringlet.net, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... In-Reply-To: <20020312160305.A1457@straylight.oblivion.bg> References: <200203111725.g2BHPVF52248@freefall.freebsd.org> <20020312134137.B447@straylight.oblivion.bg> <86zo1daofp.wl@archon.local.idaemons.org> User-Agent: Wanderlust/2.9.7 (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 Tue, 12 Mar 2002 16:03:06 +0200, Peter Pentchev wrote: > In this case, I was only interested in the shared library's version number; > I did not bump the three ports' PORTREVISION, because.. well, because it > would be weird to bump PORTREVISION on only these three, when it was not > bumped on any of the other 2,000+ that Maxim referred to. Hey hey hey, do you REALLY believe there are 2,000+ ports that install binaries directly linked with the freetype2 library and thus need rebuilding? Realize that the number is actually bogus, and that you can exclude the ports that do not directly depend on freetype2 themselves but depend on one of those ports that directly depend on freetype2. All that we have to do is just bump the PORTREVISION's of those ports which have freetype2 dependencies in their LIB_DEPENDS. So there should be no more than the following, actually: knu@daemon[1]% grep -lrw freetype2 /usr/ports/[a-z]* /usr/ports/databases/grass/Makefile /usr/ports/devel/agenda-headers/pkg-plist /usr/ports/emulators/linux_base-7/pkg-plist.alpha /usr/ports/emulators/linux_base-7/pkg-plist.i386 /usr/ports/graphics/ImageMagick/Makefile /usr/ports/graphics/autotrace/Makefile /usr/ports/graphics/gd/files/patch-ac /usr/ports/graphics/gd/Makefile /usr/ports/graphics/graphviz/Makefile /usr/ports/graphics/librsvg/Makefile /usr/ports/graphics/libwmf/Makefile /usr/ports/graphics/ruby-gd/Makefile /usr/ports/graphics/sdl_ttf/Makefile /usr/ports/graphics/gd2/files/Makefile.bsd /usr/ports/graphics/gd2/Makefile /usr/ports/graphics/libafterimage/Makefile /usr/ports/math/ploticus/files/patch-Makefile /usr/ports/math/ploticus/Makefile /usr/ports/print/Makefile /usr/ports/print/freetype2/files/patch-include::freetype::config::ftoption.h /usr/ports/print/freetype2/files/patch-builds::unix::ltmain.sh /usr/ports/print/freetype2/files/patch-builds::unix::freetype-config.in /usr/ports/print/freetype2/Makefile /usr/ports/print/freetype2/pkg-plist /usr/ports/print/ft2demos/Makefile /usr/ports/print/gnomeprint/Makefile /usr/ports/print/pfaedit/Makefile /usr/ports/print/ttf2pt1/files/patch-Makefile /usr/ports/print/ttf2pt1/Makefile /usr/ports/sysutils/pkg_tree/pkg-descr /usr/ports/textproc/p5-XML-LibRSVG/Makefile /usr/ports/www/mod_php4/scripts/configure.php /usr/ports/x11/XFree86-4/pkg-plist /usr/ports/x11/XFree86-4/pkg-plist.alpha /usr/ports/x11/XFree86-4/pkg-plist.pc98 /usr/ports/x11/XFree86-4-libraries/Makefile /usr/ports/x11-fm/nautilus/Makefile /usr/ports/x11-toolkits/eel/Makefile /usr/ports/x11-toolkits/pango/Makefile /usr/ports/x11-toolkits/gtk20/Makefile If there are other ports that install binaries which depend on the freetype2 library without listing the dependency in their LIB_DEPENDS', then we should simply have the entry to them in the first place. > Since it was just the shlib major number I was interested in, it was just > the shlib major number that I looked for, hence the .8 :) Removing shlib major versions from a port's LIB_DEPENDS entries does NOT mean what it installs stops depeding on a specific version. Those ports are still affected by every major upgrade of libraries that it depend on. Hmm. Now I must admit that I'm getting less and less hopeful about ports and especially about the ports team. Come on.. Wake up, ports! For me it looks kind of nonsense to talk about new rules, new features and new enhancements while breaking or not conforming to what we made as rules and not utilizing what we already have. Things hadn't been this way in the past where the Ports Wraith dominated the ports world... -- / /__ __ 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 Tue Mar 12 8:19: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 6DE8D37BD5B; Tue, 12 Mar 2002 08:17:48 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CGHL991181; Tue, 12 Mar 2002 08:17:21 -0800 (PST) (envelope-from phantom) Message-Id: <200203121617.g2CGHL991181@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 08:17:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/calendar day.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 phantom 2002/03/12 08:17:21 PST Modified files: (Branch: RELENG_4) usr.bin/calendar day.c Log: MFC: revs 1.15 & 1.19, restore old locale properly Revision Changes Path 1.13.2.3 +9 -2 src/usr.bin/calendar/day.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 8: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 4B93637BF7F; Tue, 12 Mar 2002 08:25:10 -0800 (PST) Received: (from jim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CGPAO92724; Tue, 12 Mar 2002 08:25:10 -0800 (PST) (envelope-from jim) Message-Id: <200203121625.g2CGPAO92724@freefall.freebsd.org> From: Jim Mock Date: Tue, 12 Mar 2002 08:25:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/mutt-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 jim 2002/03/12 08:25:10 PST Modified files: mail/mutt-devel Makefile Log: 1) Rename MUTT_WITH_PGP_OUTLOOK_PATCH to WITH_MUTT_PGP_OUTLOOK_PATCH to be consistent with the other knobs. 2) Move --enable-pop and --enable-imap up to CONFIGURE_ARGS from where they were originally defined lower in the Makefile so they can be overridden by using MUTT_CONFIGURE_ARGS. 3) s/directory/file/ in a comment in the Makefile. 4) Bump PORTREVISION. 3) Submitted by: maintainer Approved by: maintainer Revision Changes Path 1.159 +7 -8 ports/mail/mutt-devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 8:34: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 3DDE837BC71; Tue, 12 Mar 2002 08:33:40 -0800 (PST) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CGXeX94700; Tue, 12 Mar 2002 08:33:40 -0800 (PST) (envelope-from brian) Message-Id: <200203121633.g2CGXeX94700@freefall.freebsd.org> From: Brian Somers Date: Tue, 12 Mar 2002 08:33:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/p5-DBD-Pg 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 brian 2002/03/12 08:33:40 PST Modified files: databases/p5-DBD-Pg Makefile Log: Change MAINTAINER from ports@FreeBSD.org to ports@freebsd-services.com Revision Changes Path 1.37 +1 -1 ports/databases/p5-DBD-Pg/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 8:34:52 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id 61A5037BB4B; Tue, 12 Mar 2002 08:34:03 -0800 (PST) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.11.6/8.11.6) with ESMTP id g2CGY0J23666; Tue, 12 Mar 2002 17:34:01 +0100 (CET) Date: Tue, 12 Mar 2002 17:36:15 +0100 (CET) From: Martin Blapp To: Alexander Leidinger Cc: , , , , , Subject: Re: Openoffice workaround to build In-Reply-To: <200203121417.g2CEHnmD061900@Magelan.Leidinger.net> Message-ID: <20020312173505.N2573-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > At least for -current: > WANT_DWARF2_UNWIND=YES in /etc/make.conf Be there, done that. I made world. I reinstalled the STLport, I run the tests and was no more happy, since it still coredumps. It is definitly not WANT_DWARF2_UNWIND Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 8:36:23 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 14D5037BDFF; Tue, 12 Mar 2002 08:35:12 -0800 (PST) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.6/8.11.6) with ESMTP id g2CGZ6577214; Tue, 12 Mar 2002 16:35:06 GMT (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 g2CGZ7Hf011219; Tue, 12 Mar 2002 16:35:07 GMT (envelope-from brian@freebsd-services.com) Message-Id: <200203121635.g2CGZ7Hf011219@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Dmitry Sivachenko Cc: Sheldon Hearn , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, brian@freebsd-services.com Subject: Re: cvs commit: ports/databases/p5-DBD-Pg Makefile In-Reply-To: Message from Dmitry Sivachenko of "Tue, 12 Mar 2002 15:58:13 +0300." <20020312125813.GA73764@cavia.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 12 Mar 2002 16:35:07 +0000 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, Mar 12, 2002 at 02:24:35PM +0200, Sheldon Hearn wrote: > > > > > > On Sun, 10 Mar 2002 02:35:05 PST, Dmitry Sivachenko wrote: > > > > > Modified files: > > > databases/p5-DBD-Pg Makefile > > > Log: > > > I am not interested in this port anymore. > > > > Were there any problems with it that you knew of at the time you released > > maintainership? :-) > > > > There was some issues after upgrading postgres. > May be someone else will have desire to look after this port. I (well, FreeBSD Services) can look after it.... What are the ``issues'' that you're aware of ? Cheers -- 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 Mar 12 8:38:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 43CA937C040; Tue, 12 Mar 2002 08:37:48 -0800 (PST) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CGbmK95457; Tue, 12 Mar 2002 08:37:48 -0800 (PST) (envelope-from brian) Message-Id: <200203121637.g2CGbmK95457@freefall.freebsd.org> From: Brian Somers Date: Tue, 12 Mar 2002 08:37:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/dvdtape 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 brian 2002/03/12 08:37:47 PST Modified files: sysutils/dvdtape Makefile Log: Change MAINTAINER from brian@FreeBSD.org to ports@freebsd-services.com Revision Changes Path 1.6 +2 -2 ports/sysutils/dvdtape/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 8:46:36 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 BDF9337BD01; Tue, 12 Mar 2002 08:43:39 -0800 (PST) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 563224D8A2; Wed, 13 Mar 2002 01:43:33 +0900 (JST) Date: Wed, 13 Mar 2002 01:43:33 +0900 Message-ID: <86wuwhag96.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Mikhail Teterin Cc: roam@ringlet.net, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... In-Reply-To: <200203121554.g2CFsi3b073497@aldan.algebra.com> References: <86zo1daofp.wl@archon.local.idaemons.org> <200203121554.g2CFsi3b073497@aldan.algebra.com> User-Agent: Wanderlust/2.9.7 (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 Tue, 12 Mar 2002 10:54:44 -0500 (EST), Mikhail Teterin wrote: > > Unfortunately, this is not sufficient because someone removed the > > shlib major part of freetype2 and some other libraries' LIB_DEPENDS > > entries from his ports. You should grep for -w freetype2 instead to > > catch by the port name. > > I did. And you know my reasoning, which I don't find unfortunate at all. > All those ports will build with ANY freetype, and handling the binary > upgrades is not the ports system's primary objective. Hardly even > secondary. I don't particularly object to your chagens by now, but I cannot fully agree with that. Handling upgrades is not a priority, but making ports-current work with older installation is not a priority either. I think people want to upgrade packages just as they want to build ports with older libraries. It's hard to decide which should come first, but as long as they don't conflict, let each of us do the best. > >> I will commit a patch updating those three ports in a minute, but > >> please take note of this situation and try not to miss "hidden" > >> dependencies in the future! :) > > If you plan on backing out my changes, I'll, probably, put them back I don't have the authority nor such a plan. I'm going to do proper PORTREVISION bumps only, and I was just saying that he was missing your changes and looked confused. And that was my concern, actually. > in promptly -- you are yet to convince me they are wrong. Yours, In the last discussion, some people expressed anxiety that people might neglect bumping PORTREVISIONs because of your changes. Do you remember? So, I might as well suggest you join my preaching about forgotton PORTREVISION bumps as a compensation. :) > > Anyhow, let's do bump PORTREVISION's ourselves whenever we find this > > kind of incomplete library port upgrade. :) > > > > Or users may just get lost. > > This means the upgrade mechanism is incomplete. If portupgrade (or > whatever tool is used) upgrades port A, which results in a shared > library bump of libA, it should automaticly upgrade all ports B, C, D > which LIB_DEPEND on libA -- without an explicit PORTREVISION bump in B, > C, and D. Oh, thanks for the hint. :) I'll add the feature to portupgrae in the future, although it's not very easy to implement. -- / /__ __ 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 Tue Mar 12 9: 2:36 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 AE8D337B490; Tue, 12 Mar 2002 09:02:25 -0800 (PST) Received: (from jake@localhost) by k6.locore.ca (8.11.6/8.11.6) id g2CH83o43302; Tue, 12 Mar 2002 12:08:03 -0500 (EST) (envelope-from jake) Date: Tue, 12 Mar 2002 12:07:59 -0500 From: Jake Burkholder To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c Message-ID: <20020312120759.O20687@locore.ca> References: <200203111123.g2BBNo651853@freefall.freebsd.org> <20020311175817.I20687@locore.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Tue, Mar 12, 2002 at 12:55:50PM +0100 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Apparently, On Tue, Mar 12, 2002 at 12:55:50PM +0100, Dag-Erling Smorgrav said words to the effect of; > Jake Burkholder writes: > > This will build but its actually wrong. We can't make the same assumptions > > about the physical address of where the kernel is loaded as i386 does. > > Well, I was told it was correct :) This doesn't make any assumptions, > BTW - it looks for the kernbase symbol in the kernel and uses that. Yes, but why. It assumes that subtracting kernbase from a virtual address will give on offset into the core dump, ie a phsyical address. This doesn't work on sparc64. > Now if you're telling me that the kernel's own idea of kernbase is > wrong... It isn't. kernbase is the lowest kernel virtual address, it may not have anything to do with physical addresses. Jake To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 9: 3:21 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 56A9B37B404; Tue, 12 Mar 2002 09:03:14 -0800 (PST) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 7DF074D8A2; Wed, 13 Mar 2002 02:03:13 +0900 (JST) Date: Wed, 13 Mar 2002 02:03:13 +0900 Message-ID: <86vgc1afce.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Mikhail Teterin Cc: roam@ringlet.net, sobomax@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... In-Reply-To: <200203121601.g2CG1G3b073557@aldan.algebra.com> References: <20020312134137.B447@straylight.oblivion.bg> <200203121601.g2CG1G3b073557@aldan.algebra.com> User-Agent: Wanderlust/2.9.7 (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 Tue, 12 Mar 2002 11:01:16 -0500 (EST), Mikhail Teterin wrote: > Yes, and then a strange looking man from the corner starts whining again > -- why are the major numbers there at all? All of those ports will > build fine with libfreetype.so.[56789] -- it is rather rare to have a > situation, when a particular version is needed by a depending port... > To help with binary upgrades? Please, the ports system is about building > from source. Binary packages are secondary... Relax, take it easy. I'm not objecting to your changes. Whether putting a shlib major version in a LIB_DEPENDS entry or not is not the topic of this thread. We are talking about PORTREVISION and how to check out which ports need bumping. -- / /__ __ 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 Tue Mar 12 9: 6:23 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 442D637B405; Tue, 12 Mar 2002 09:06:16 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 9C6225346; Tue, 12 Mar 2002 18:06:14 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Jake Burkholder Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c References: <200203111123.g2BBNo651853@freefall.freebsd.org> <20020311175817.I20687@locore.ca> <20020312120759.O20687@locore.ca> From: Dag-Erling Smorgrav Date: 12 Mar 2002 18:06:13 +0100 In-Reply-To: <20020312120759.O20687@locore.ca> 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 Jake Burkholder writes: > Yes, but why. It assumes that subtracting kernbase from a virtual > address will give on offset into the core dump, ie a phsyical address. > This doesn't work on sparc64. I was told that it did work, but I'll take your word that it doesn't. The question is, what *does* work? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 9: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 5108D37B405; Tue, 12 Mar 2002 09:12:24 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CHCOV06202; Tue, 12 Mar 2002 09:12:24 -0800 (PST) (envelope-from phantom) Message-Id: <200203121712.g2CHCOV06202@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 09:12:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include Makefile langinfo.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 phantom 2002/03/12 09:12:24 PST Modified files: (Branch: RELENG_4) include Makefile Added files: (Branch: RELENG_4) include langinfo.h Log: MFC: add langinfo.h Revision Changes Path 1.109.2.20 +1 -1 src/include/Makefile 1.4.2.1 +111 -0 src/include/langinfo.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 Mar 12 9:13: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 6301E37B429; Tue, 12 Mar 2002 09:13:32 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CHDWX06479; Tue, 12 Mar 2002 09:13:32 -0800 (PST) (envelope-from phantom) Message-Id: <200203121713.g2CHDWX06479@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 09:13:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share 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 phantom 2002/03/12 09:13:32 PST Modified files: (Branch: RELENG_4) share Makefile Log: MFC: rev 1.25, activate monetdef, msgdef and numericdef subdirectories Revision Changes Path 1.22.2.4 +3 -3 src/share/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 9:14:19 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 82A7137B405; Tue, 12 Mar 2002 09:14:06 -0800 (PST) Received: (from jake@localhost) by k6.locore.ca (8.11.6/8.11.6) id g2CHJwH43385; Tue, 12 Mar 2002 12:19:58 -0500 (EST) (envelope-from jake) Date: Tue, 12 Mar 2002 12:19:57 -0500 From: Jake Burkholder To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c Message-ID: <20020312121957.P20687@locore.ca> References: <200203111123.g2BBNo651853@freefall.freebsd.org> <20020311175817.I20687@locore.ca> <20020312120759.O20687@locore.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Tue, Mar 12, 2002 at 06:06:13PM +0100 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Apparently, On Tue, Mar 12, 2002 at 06:06:13PM +0100, Dag-Erling Smorgrav said words to the effect of; > Jake Burkholder writes: > > Yes, but why. It assumes that subtracting kernbase from a virtual > > address will give on offset into the core dump, ie a phsyical address. > > This doesn't work on sparc64. > > I was told that it did work, but I'll take your word that it doesn't. > The question is, what *does* work? I don't know yet and its going to be hard. This is why I just left savecore for now. Jake To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 9:20:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2BC7437B416; Tue, 12 Mar 2002 09:20:54 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CHKsI07747; Tue, 12 Mar 2002 09:20:54 -0800 (PST) (envelope-from phantom) Message-Id: <200203121720.g2CHKsI07747@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 09:20:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/locale setlocale.3 setlocale.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 phantom 2002/03/12 09:20:54 PST Modified files: (Branch: RELENG_4) lib/libc/locale setlocale.3 setlocale.c Log: MFC: sync with -CURRENT's locale code This MFC brings to -STABLE following features: . support for LC_NUMERIC/LC_MONETARY/LC_MESSAGES locale categories . real implementation of nl_langinfo(3) WARNING: please beware about this commit. It can trigger some hidden or implicit problems with locale specific functions or related/dependent stuff in userland applications. Please report anything unusual! Following files/revisions were MFCed: Makefile.inc 1.17, 1.18, 1.20 localeconv.c 1.2 - 1.10 setlocale.c 1.27, 1.29, 1.32 setlocale.3 1.18, 1.19 Following files were added to RELENG_4 branch: fix_grouping.c ldpart.c ldpart.h lmessages.c lmessages.h lmonetary.c lmonetary.h lnumeric.c lnumeric.h nl_langinfo.3 nl_langinfo.c Following files were removed: lconv.c Revision Changes Path 1.15.2.6 +6 -25 src/lib/libc/locale/setlocale.3 1.25.2.5 +20 -58 src/lib/libc/locale/setlocale.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 9:23:29 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 984A137B400; Tue, 12 Mar 2002 09:23:24 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CHNOU08090; Tue, 12 Mar 2002 09:23:24 -0800 (PST) (envelope-from phantom) Message-Id: <200203121723.g2CHNOU08090@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 09:23:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/locale nl_langinfo.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 phantom 2002/03/12 09:23:24 PST Added files: (Branch: RELENG_4) lib/libc/locale nl_langinfo.c Log: Add nl_langinfo.c to RELENG_4 branch. Due to remote cvs re-add problem it was missed in previous commit. Revision Changes Path 1.13.2.3 +200 -0 src/lib/libc/locale/nl_langinfo.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 Mar 12 9:25: 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 2495737B405; Tue, 12 Mar 2002 09:24:55 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CHOt308299; Tue, 12 Mar 2002 09:24:55 -0800 (PST) (envelope-from phantom) Message-Id: <200203121724.g2CHOt308299@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 09:24:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/stdtime Makefile.inc strftime.3 strftime.c strptime.c timelocal.c timelocal.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 phantom 2002/03/12 09:24:55 PST Modified files: (Branch: RELENG_4) lib/libc/stdtime Makefile.inc strftime.3 strftime.c strptime.c timelocal.c timelocal.h Log: MFC: sync with -CURRENT's stdtime code This MFC brings to -STABLE following changes/features: . get rid of non-standard %E[Ff] formats . add %F per POSIX . add %r per POSIX (ampm_fmt) . hardcode c_fmt in a different way since used in nl_langinfo now . make '%A' and '%a', '%B' and '%b' same per POSIX . introduce non-standard md_order (month/day order locale field). This field is available to user-land apps via nl_langinfo(3) and supposed to replace all usages of %E[Ff] in more correct way. . allow POSIX legal data on 3 chars abbrev, name length and %c format WARNING: please beware about this commit. It can trigger some hidden or implicit problems with locale/time specific functions or related/dependent stuff in userland applications. Please report anything unusual! Following files/revisions were MFCed: Makefile.inc 1.11 strftime.3 1.25, 1.26 strftime.c 1.29, 1.30, 1.32 - 1.34 strptime.c 1.20 - 1.25 timelocal.c 1.12 - 1.22 timelocal.h 1.7 - 1.11 Revision Changes Path 1.9.2.2 +2 -2 src/lib/libc/stdtime/Makefile.inc 1.18.2.8 +7 -14 src/lib/libc/stdtime/strftime.3 1.25.2.4 +15 -22 src/lib/libc/stdtime/strftime.c 1.17.2.3 +33 -46 src/lib/libc/stdtime/strptime.c 1.8.2.3 +44 -168 src/lib/libc/stdtime/timelocal.c 1.5.2.2 +21 -20 src/lib/libc/stdtime/timelocal.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 9:28:58 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 D94F437B400; Tue, 12 Mar 2002 09:28:45 -0800 (PST) Received: from ark.cris.net (root@ark.cris.net [212.110.128.68]) by columbus.cris.net (8.9.3/8.9.3) with ESMTP id TAA21638; Tue, 12 Mar 2002 19:28:41 +0200 (EET) Received: (from phantom@localhost) by ark.cris.net (8.11.1/8.11.1) id g2CHSeO77362; Tue, 12 Mar 2002 19:28:40 +0200 (EET) Date: Tue, 12 Mar 2002 19:28:40 +0200 From: Alexey Zelkin To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/locale setlocale.3 setlocale.c Message-ID: <20020312192840.A77027@ark.cris.net> References: <200203121720.g2CHKsI07747@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200203121720.g2CHKsI07747@freefall.freebsd.org>; from phantom@FreeBSD.org on Tue, Mar 12, 2002 at 09:20:54AM -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 hi, All files noted in this commit were checked in, but due to old problem with breaking remote cvs-over-ssh with trying to re-add deleted file it was stoped in middle with no commit message sent. On Tue, Mar 12, 2002 at 09:20:54AM -0800, Alexey Zelkin wrote: > phantom 2002/03/12 09:20:54 PST > > Modified files: (Branch: RELENG_4) > lib/libc/locale setlocale.3 setlocale.c > Log: > MFC: sync with -CURRENT's locale code > > This MFC brings to -STABLE following features: > > . support for LC_NUMERIC/LC_MONETARY/LC_MESSAGES locale categories > . real implementation of nl_langinfo(3) > > WARNING: please beware about this commit. It can trigger some > hidden or implicit problems with locale specific functions or > related/dependent stuff in userland applications. Please report > anything unusual! > > Following files/revisions were MFCed: > > Makefile.inc 1.17, 1.18, 1.20 > localeconv.c 1.2 - 1.10 > setlocale.c 1.27, 1.29, 1.32 > setlocale.3 1.18, 1.19 > > Following files were added to RELENG_4 branch: > > fix_grouping.c ldpart.c ldpart.h lmessages.c lmessages.h > lmonetary.c lmonetary.h lnumeric.c lnumeric.h nl_langinfo.3 > nl_langinfo.c > > Following files were removed: > > lconv.c > > Revision Changes Path > 1.15.2.6 +6 -25 src/lib/libc/locale/setlocale.3 > 1.25.2.5 +20 -58 src/lib/libc/locale/setlocale.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 9:32: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 3F8E437B400; Tue, 12 Mar 2002 09:32:21 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CHWLg09555; Tue, 12 Mar 2002 09:32:21 -0800 (PST) (envelope-from phantom) Message-Id: <200203121732.g2CHWLg09555@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 09:32:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/timedef Makefile bg_BG.CP1251.src cs_CZ.ISO8859-2.src da_DK.ISO8859-1.src de_AT.ISO8859-1.src de_DE.ISO8859-1.src el_GR.ISO8859-7.src en_GB.ISO8859-1.src en_US.ISO8859-1.src es_ES.ISO8859-1.src et_EE.ISO8859-15.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 phantom 2002/03/12 09:32:21 PST Modified files: (Branch: RELENG_4) share/timedef Makefile bg_BG.CP1251.src cs_CZ.ISO8859-2.src da_DK.ISO8859-1.src de_AT.ISO8859-1.src de_DE.ISO8859-1.src en_GB.ISO8859-1.src en_US.ISO8859-1.src es_ES.ISO8859-1.src fi_FI.ISO8859-1.src fr_FR.ISO8859-1.src hr_HR.ISO8859-2.src hu_HU.ISO8859-2.src is_IS.ISO8859-1.src it_IT.ISO8859-1.src ja_JP.SJIS.src la_LN.ISO8859-1.src lt_LT.ISO8859-4.src nl_NL.ISO8859-1.src no_NO.ISO8859-1.src pl_PL.ISO8859-2.src pt_PT.ISO8859-1.src ro_RO.ISO8859-2.src ru_RU.CP866.src ru_RU.ISO8859-5.src ru_RU.KOI8-R.src sk_SK.ISO8859-2.src sl_SI.ISO8859-2.src sv_SE.ISO8859-1.src tr_TR.ISO8859-9.src uk_UA.KOI8-U.src zh_TW.Big5.src Added files: (Branch: RELENG_4) share/timedef el_GR.ISO8859-7.src et_EE.ISO8859-15.src uk_UA.ISO8859-5.src Log: MFC: sync timedef definitions with -CURRENT. Revision Changes Path 1.11.2.9 +25 -26 src/share/timedef/Makefile 1.1.2.2 +5 -5 src/share/timedef/bg_BG.CP1251.src 1.5.2.2 +13 -12 src/share/timedef/cs_CZ.ISO8859-2.src 1.10.2.2 +7 -6 src/share/timedef/da_DK.ISO8859-1.src 1.8.2.2 +14 -13 src/share/timedef/de_AT.ISO8859-1.src 1.13.2.2 +14 -13 src/share/timedef/de_DE.ISO8859-1.src 1.4.2.1 +102 -0 src/share/timedef/el_GR.ISO8859-7.src (new) 1.9.2.2 +6 -5 src/share/timedef/en_GB.ISO8859-1.src 1.9.2.2 +6 -5 src/share/timedef/en_US.ISO8859-1.src 1.8.2.2 +6 -5 src/share/timedef/es_ES.ISO8859-1.src 1.5.2.1 +102 -0 src/share/timedef/et_EE.ISO8859-15.src (new) 1.8.2.2 +14 -13 src/share/timedef/fi_FI.ISO8859-1.src 1.12.2.2 +8 -7 src/share/timedef/fr_FR.ISO8859-1.src 1.8.2.2 +14 -13 src/share/timedef/hr_HR.ISO8859-2.src 1.6.2.2 +5 -5 src/share/timedef/hu_HU.ISO8859-2.src 1.9.2.2 +6 -5 src/share/timedef/is_IS.ISO8859-1.src 1.10.2.2 +6 -5 src/share/timedef/it_IT.ISO8859-1.src 1.7.2.2 +26 -31 src/share/timedef/ja_JP.SJIS.src 1.7.2.2 +6 -5 src/share/timedef/la_LN.ISO8859-1.src 1.5.2.2 +15 -14 src/share/timedef/lt_LT.ISO8859-4.src 1.7.2.2 +12 -12 src/share/timedef/nl_NL.ISO8859-1.src 1.12.2.2 +7 -6 src/share/timedef/no_NO.ISO8859-1.src 1.7.2.2 +6 -5 src/share/timedef/pl_PL.ISO8859-2.src 1.12.2.2 +9 -8 src/share/timedef/pt_PT.ISO8859-1.src 1.1.2.2 +4 -4 src/share/timedef/ro_RO.ISO8859-2.src 1.18.2.2 +18 -17 src/share/timedef/ru_RU.CP866.src 1.9.2.2 +18 -17 src/share/timedef/ru_RU.ISO8859-5.src 1.18.2.2 +18 -17 src/share/timedef/ru_RU.KOI8-R.src 1.1.2.2 +4 -4 src/share/timedef/sk_SK.ISO8859-2.src 1.7.2.2 +6 -5 src/share/timedef/sl_SI.ISO8859-2.src 1.8.2.2 +7 -6 src/share/timedef/sv_SE.ISO8859-1.src 1.4.2.2 +6 -5 src/share/timedef/tr_TR.ISO8859-9.src 1.1.2.1 +102 -0 src/share/timedef/uk_UA.ISO8859-5.src (new) 1.4.2.1 +17 -16 src/share/timedef/uk_UA.KOI8-U.src 1.5.2.2 +27 -27 src/share/timedef/zh_TW.Big5.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 9:36: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 4061A37B405; Tue, 12 Mar 2002 09:36:28 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CHaSs10266; Tue, 12 Mar 2002 09:36:28 -0800 (PST) (envelope-from phantom) Message-Id: <200203121736.g2CHaSs10266@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 09:36:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys param.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 phantom 2002/03/12 09:36:28 PST Modified files: (Branch: RELENG_4) sys/sys param.h Log: Bump __FreeBSD_version to track following locale changes in RELENG_4: . *.EUC -> *.euc?? locales rename . LC_NUMERIC/LC_MONETARY/LC_MESSAGES implementation . nl_langinfo() implementation . str[fp]time() specifiers changes (see commit log to rev 1.25.2.4 of lib/libc/stdtime/strftime.c) Revision Changes Path 1.61.2.24 +1 -1 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 Tue Mar 12 9:41: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6BDF337B402; Tue, 12 Mar 2002 09:41:05 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CHf5D11183; Tue, 12 Mar 2002 09:41:05 -0800 (PST) (envelope-from phantom) Message-Id: <200203121741.g2CHf5D11183@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 09:41:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mklocale README.locale_name 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 phantom 2002/03/12 09:41:05 PST Modified files: (Branch: RELENG_4) share/mklocale README.locale_name Log: MFC: rev 1.2, fix encoding info Revision Changes Path 1.1.12.1 +3 -1 src/share/mklocale/README.locale_name To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 9:42:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EA94237B402; Tue, 12 Mar 2002 09:42:33 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CHgX111766; Tue, 12 Mar 2002 09:42:33 -0800 (PST) (envelope-from phantom) Message-Id: <200203121742.g2CHgX111766@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 09:42:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mklocale Makefile el_GR.ISO8859-7.src ja_JP.SJIS.src uk_UA.KOI8-U.src zh_TW.Big5.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 phantom 2002/03/12 09:42:33 PST Modified files: (Branch: RELENG_4) share/mklocale Makefile ja_JP.SJIS.src uk_UA.KOI8-U.src zh_TW.Big5.src Added files: (Branch: RELENG_4) share/mklocale el_GR.ISO8859-7.src Log: MFC: sync mklocale definitions with -CURRENT Revision Changes Path 1.28.2.8 +17 -13 src/share/mklocale/Makefile 1.3.2.1 +45 -0 src/share/mklocale/el_GR.ISO8859-7.src (new) 1.1.8.1 +6 -4 src/share/mklocale/ja_JP.SJIS.src 1.1.2.2 +3 -4 src/share/mklocale/uk_UA.KOI8-U.src 1.1.4.1 +51 -46 src/share/mklocale/zh_TW.Big5.src To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 9:43: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 3AC8C37B402; Tue, 12 Mar 2002 09:43:25 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CHhPu11913; Tue, 12 Mar 2002 09:43:25 -0800 (PST) (envelope-from phantom) Message-Id: <200203121743.g2CHhPu11913@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 09:43:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/colldef Makefile el_GR.ISO8859-7.src et_EE.ISO8859-15.src map.ISO8859-7 sv_SE.ISO8859-1.src sv_SE.ISO8859-15.src uk_UA.ISO8859-5.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 phantom 2002/03/12 09:43:25 PST Modified files: (Branch: RELENG_4) share/colldef Makefile sv_SE.ISO8859-1.src sv_SE.ISO8859-15.src Added files: (Branch: RELENG_4) share/colldef el_GR.ISO8859-7.src et_EE.ISO8859-15.src map.ISO8859-7 uk_UA.ISO8859-5.src Log: MFC: sync colldef definitions with -CURRENT Revision Changes Path 1.32.2.8 +39 -39 src/share/colldef/Makefile 1.2.2.1 +34 -0 src/share/colldef/el_GR.ISO8859-7.src (new) 1.2.2.1 +62 -0 src/share/colldef/et_EE.ISO8859-15.src (new) 1.1.2.1 +175 -0 src/share/colldef/map.ISO8859-7 (new) 1.2.2.2 +1 -1 src/share/colldef/sv_SE.ISO8859-1.src 1.3.2.2 +2 -2 src/share/colldef/sv_SE.ISO8859-15.src 1.2.2.1 +37 -0 src/share/colldef/uk_UA.ISO8859-5.src (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 9:44: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 DE98537B402; Tue, 12 Mar 2002 09:44:23 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 64B645346; Tue, 12 Mar 2002 18:44:22 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Jake Burkholder Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c References: <200203111123.g2BBNo651853@freefall.freebsd.org> <20020311175817.I20687@locore.ca> <20020312120759.O20687@locore.ca> <20020312121957.P20687@locore.ca> From: Dag-Erling Smorgrav Date: 12 Mar 2002 18:44:21 +0100 In-Reply-To: <20020312121957.P20687@locore.ca> Message-ID: Lines: 24 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 Jake Burkholder writes: > > > Yes, but why. It assumes that subtracting kernbase from a virtual > > > address will give on offset into the core dump, ie a phsyical address. > > > This doesn't work on sparc64. > > I was told that it did work, but I'll take your word that it doesn't. > > The question is, what *does* work? > I don't know yet and its going to be hard. This is why I just left > savecore for now. But - waitasec. Subtracting kernbase from a virtual address doesn't give you a physical address on i386 either - it gives you an offset into the KVA, regardless how it's mapped onto physical memory. Are you saying that kernel memory on the i386 starts at physical address 0 and is mapped linearly upward from there? Looking at the equivalent code for Alpha, it would seem that on Alpha the kernel is also mapped linearly, starting at 0x300000 - is that correct? And how, in brief terms, is kernel memory mapped on Sparc64? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 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 E20A637B400; Tue, 12 Mar 2002 09:45:15 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CHjF412225; Tue, 12 Mar 2002 09:45:15 -0800 (PST) (envelope-from phantom) Message-Id: <200203121745.g2CHjF412225@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 09:45:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/games/morse morse.6 morse.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 phantom 2002/03/12 09:45:15 PST Modified files: (Branch: RELENG_4) games/morse morse.6 morse.c Log: MFC: convert to nl_langinfo(CODESET) morse.c rev 1.14 morse.6 rev 1.6 Revision Changes Path 1.4.2.5 +10 -8 src/games/morse/morse.6 1.12.2.2 +11 -10 src/games/morse/morse.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 9:48: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 8611737B41F; Tue, 12 Mar 2002 09:48:07 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CHm7N12719; Tue, 12 Mar 2002 09:48:07 -0800 (PST) (envelope-from phantom) Message-Id: <200203121748.g2CHm7N12719@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 09:48:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/ls print.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 phantom 2002/03/12 09:48:07 PST Modified files: (Branch: RELENG_4) bin/ls print.c Log: MFC: rev 1.37 & 1.38, use nl_langinfo() instead of harcoding "%Ef" Revision Changes Path 1.19.2.4 +7 -6 src/bin/ls/print.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 9: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 AC65337B417; Tue, 12 Mar 2002 09:49:17 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CHnHG12921; Tue, 12 Mar 2002 09:49:17 -0800 (PST) (envelope-from phantom) Message-Id: <200203121749.g2CHnHG12921@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 09:49:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/pax gen_subs.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 phantom 2002/03/12 09:49:17 PST Modified files: (Branch: RELENG_4) bin/pax gen_subs.c Log: MFC: rev 1.15, use nl_langinfo() instead of harcoding "%Ef" Revision Changes Path 1.12.2.4 +17 -7 src/bin/pax/gen_subs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 9: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 1468537B41A; Tue, 12 Mar 2002 09:50:42 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CHog013194; Tue, 12 Mar 2002 09:50:42 -0800 (PST) (envelope-from dinoex) Message-Id: <200203121750.g2CHog013194@freefall.freebsd.org> From: Dirk Meyer Date: Tue, 12 Mar 2002 09:50:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/openssh 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 dinoex 2002/03/12 09:50:42 PST Modified files: security/openssh Makefile pkg-plist Log: create ssh_config-dist and sshd_config-dist make sure that package install and deinstall don't temper existing configuration files. install sshd.sh now as sample. Package changed, but no need to update if you have PORTREVISION=2 Revision Changes Path 1.86 +6 -6 ports/security/openssh/Makefile 1.16 +7 -3 ports/security/openssh/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 Mar 12 9:53:56 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 581D137B416; Tue, 12 Mar 2002 09:53:44 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.12.2/8.12.2) with ESMTP id g2CHrg3b074070; Tue, 12 Mar 2002 12:53:46 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200203121753.g2CHrg3b074070@aldan.algebra.com> Date: Tue, 12 Mar 2002 12:53:42 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... To: knu@iDaemons.org Cc: roam@ringlet.net, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <86wuwhag96.wl@archon.local.idaemons.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 13 Mar, Akinori MUSHA wrote: >> All those ports will build with ANY freetype, and handling the binary >> upgrades is not the ports system's primary objective. Hardly even >> secondary. > I don't particularly object to your chagens by now, but I cannot fully > agree with that. Handling upgrades is not a priority, but making > ports-current work with older installation is not a priority either. I disagree. Here is my view. Ports System is all about building and installing third party software from its source code (when available). Some of that third party software depends on data-files, executables, and shared libraries, which are installed by other third (fourth?) party software. There needs to be a way of describing such dependencies. This descriptions are part of the _primary_ objective of the ports system. And any problems with them, and solutions to those problems are also parts of the _primary_ objective. The binary packages are derivatives of the ports and thus are of secondary importance. > I think people want to upgrade packages just as they want to build > ports with older libraries. It's hard to decide which should come > first, but as long as they don't conflict, let each of us do the best. The difference is, without my changes it is NOT POSSIBLE to build a port using an older library. However, the binary upgrades can still happen after my changes. Especially when you implement the feature discussed at the bottom. :-) >> in promptly -- you are yet to convince me they are wrong. Yours, > > In the last discussion, some people expressed anxiety that people > might neglect bumping PORTREVISIONs because of your changes. Do you > remember? I do. However, I countered, that such bumping is only serving the binary upgrades, which can be done without it anyway, and rejected that argument. >> > Or users may just get lost. >> >> This means the upgrade mechanism is incomplete. If portupgrade (or >> whatever tool is used) upgrades port A, which results in a shared >> library bump of libA, it should automaticly upgrade all ports B, C, D >> which LIB_DEPEND on libA -- without an explicit PORTREVISION bump in >> B, C, and D. > > Oh, thanks for the hint. :) > > I'll add the feature to portupgrae in the future, although it's not > very easy to implement. I find it much easier to communicate with computers, than with people :-) If I knew Python, I'd concentrate on coding the feature instead of preaching to people... Then, the PORTREVISION bump would only be needed if the port itself changes. -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 9:54: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 78E6A37B431; Tue, 12 Mar 2002 09:54:14 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CHsEK14014; Tue, 12 Mar 2002 09:54:14 -0800 (PST) (envelope-from dinoex) Message-Id: <200203121754.g2CHsEK14014@freefall.freebsd.org> From: Dirk Meyer Date: Tue, 12 Mar 2002 09:54:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/openssh/files patch-Makefile patch-Makefile.inc patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak patch-al patch-am patch-an patch-ao patch-ap patch-ar patch-as patch-at patch-au patch-auth.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 09:54:14 PST Added files: security/openssh/files patch-Makefile patch-Makefile.inc patch-auth.c patch-clientloop.c patch-includes.h patch-lib-Makefile patch-pathnames.h patch-scp-Makefile patch-session.c patch-ssh-Makefile patch-ssh-add-Makefile patch-ssh-agent-Makefile patch-ssh-keygen-Makefile patch-ssh.c patch-sshconnect.c patch-sshd-Makefile patch-sshd.8 patch-sshd.c patch-sshd_config patch-sshlogin.c patch-sshpty.c Removed files: security/openssh/files patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ah patch-ai patch-aj patch-ak patch-al patch-am patch-an patch-ao patch-ap patch-ar patch-as patch-at patch-au patch-av Log: Rename Patches to make navigation much more easier. Revision Changes Path 1.1 +10 -0 ports/security/openssh/files/patch-Makefile (new) 1.1 +23 -0 ports/security/openssh/files/patch-Makefile.inc (new) 1.7 +0 -20 ports/security/openssh/files/patch-aa (dead) 1.12 +0 -23 ports/security/openssh/files/patch-ab (dead) 1.10 +0 -71 ports/security/openssh/files/patch-ac (dead) 1.15 +0 -24 ports/security/openssh/files/patch-ad (dead) 1.6 +0 -14 ports/security/openssh/files/patch-ae (dead) 1.6 +0 -13 ports/security/openssh/files/patch-af (dead) 1.9 +0 -40 ports/security/openssh/files/patch-ag (dead) 1.7 +0 -18 ports/security/openssh/files/patch-ah (dead) 1.5 +0 -18 ports/security/openssh/files/patch-ai (dead) 1.7 +0 -18 ports/security/openssh/files/patch-aj (dead) 1.11 +0 -12 ports/security/openssh/files/patch-ak (dead) 1.8 +0 -20 ports/security/openssh/files/patch-al (dead) 1.10 +0 -44 ports/security/openssh/files/patch-am (dead) 1.13 +0 -15 ports/security/openssh/files/patch-an (dead) 1.10 +0 -23 ports/security/openssh/files/patch-ao (dead) 1.10 +0 -11 ports/security/openssh/files/patch-ap (dead) 1.6 +0 -14 ports/security/openssh/files/patch-ar (dead) 1.5 +0 -14 ports/security/openssh/files/patch-as (dead) 1.9 +0 -49 ports/security/openssh/files/patch-at (dead) 1.13 +0 -157 ports/security/openssh/files/patch-au (dead) 1.1 +97 -0 ports/security/openssh/files/patch-auth.c (new) 1.7 +0 -97 ports/security/openssh/files/patch-av (dead) 1.1 +11 -0 ports/security/openssh/files/patch-clientloop.c (new) 1.1 +71 -0 ports/security/openssh/files/patch-includes.h (new) 1.1 +24 -0 ports/security/openssh/files/patch-lib-Makefile (new) 1.1 +20 -0 ports/security/openssh/files/patch-pathnames.h (new) 1.1 +13 -0 ports/security/openssh/files/patch-scp-Makefile (new) 1.1 +157 -0 ports/security/openssh/files/patch-session.c (new) 1.1 +40 -0 ports/security/openssh/files/patch-ssh-Makefile (new) 1.1 +18 -0 ports/security/openssh/files/patch-ssh-add-Makefile (new) 1.1 +18 -0 ports/security/openssh/files/patch-ssh-agent-Makefile (new) 1.1 +18 -0 ports/security/openssh/files/patch-ssh-keygen-Makefile (new) 1.1 +12 -0 ports/security/openssh/files/patch-ssh.c (new) 1.1 +49 -0 ports/security/openssh/files/patch-sshconnect.c (new) 1.1 +44 -0 ports/security/openssh/files/patch-sshd-Makefile (new) 1.1 +14 -0 ports/security/openssh/files/patch-sshd.8 (new) 1.1 +15 -0 ports/security/openssh/files/patch-sshd.c (new) 1.1 +23 -0 ports/security/openssh/files/patch-sshd_config (new) 1.1 +14 -0 ports/security/openssh/files/patch-sshlogin.c (new) 1.1 +14 -0 ports/security/openssh/files/patch-sshpty.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 Mar 12 9: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 99FD637B417; Tue, 12 Mar 2002 09:56:10 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CHuAM14349; Tue, 12 Mar 2002 09:56:10 -0800 (PST) (envelope-from alfred) Message-Id: <200203121756.g2CHuAM14349@freefall.freebsd.org> From: Alfred Perlstein Date: Tue, 12 Mar 2002 09:56:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/cvswrap Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/03/12 09:56:10 PST Modified files: devel/cvswrap Makefile Log: use 'local-distfiles' Revision Changes Path 1.3 +2 -1 ports/devel/cvswrap/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 10: 8:15 2002 Delivered-To: cvs-all@freebsd.org Received: from mailhub.yumyumyum.org (dsl092-171-091.wdc1.dsl.speakeasy.net [66.92.171.91]) by hub.freebsd.org (Postfix) with SMTP id 6F90137B41A for ; Tue, 12 Mar 2002 10:07:59 -0800 (PST) Received: (qmail 3878 invoked from network); 12 Mar 2002 18:07:57 -0000 Received: from dsl092-171-091.wdc1.dsl.speakeasy.net (66.92.171.91) by dsl092-171-091.wdc1.dsl.speakeasy.net with SMTP; 12 Mar 2002 18:07:57 -0000 Date: Tue, 12 Mar 2002 13:07:57 -0500 (EST) From: Kenneth Culver To: Max Khon Cc: Dmitry Sivachenko , David O'Brien , Martin Blapp , Martin Blapp , , Subject: Re: Openoffice workaround to build In-Reply-To: <20020312060146.A37516@hub.freebsd.org> Message-ID: <20020312130724.H3871-100000@alpha.yumyumyum.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 Just a question, but I tried to build this, and for some reason, it fails when it tries to find some executable "xml2cmp" Is this a known problem? Ken On Tue, 12 Mar 2002, Max Khon wrote: > hi, there! > > On Tue, Mar 12, 2002 at 07:11:18AM +0300, Dmitry Sivachenko wrote: > > > > > Workaround: > > > > ----------- > > > > > > > > cd /usr/ports/lang/gcc295 > > > > make install > > > > cd /usr/local/bin > > > > ln -s /usr/local/bin/g++295 /usr/local/bin/g++ > > > > ln -s /usr/local/bin/gcc295 /usr/local/bin/cc > > > > ln -s /usr/local/bin/gcc295 /usr/local/bin/gcc > > > > > > I mentioned the correct way to do this: > > > > > > cd /usr/ports/lang/gcc295 > > > make install > > > cd /usr/ports/editors/openoffice > > > make CC=gcc295 CXX=g++295 > > > > > > PLEASE NO ONE FOLLOW THE DIRECTIONS FOR MAKING THESE SYMLINKS !! > > > > What is the difference between gcc in -STABLE and in ports/lang/gcc295 ? > > They both seems to be 2.95.3... > > AFAIK gcc 2.95.3 from ports uses DWARF2 unwinding info for exception > handling. gcc from base system still uses sjlj method. > > /fjoe > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 10:10:39 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 787AB37B402; Tue, 12 Mar 2002 10:10:29 -0800 (PST) Received: (from jake@localhost) by k6.locore.ca (8.11.6/8.11.6) id g2CIGHn43762; Tue, 12 Mar 2002 13:16:17 -0500 (EST) (envelope-from jake) Date: Tue, 12 Mar 2002 13:16:17 -0500 From: Jake Burkholder To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c Message-ID: <20020312131617.Q20687@locore.ca> References: <200203111123.g2BBNo651853@freefall.freebsd.org> <20020311175817.I20687@locore.ca> <20020312120759.O20687@locore.ca> <20020312121957.P20687@locore.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Tue, Mar 12, 2002 at 06:44:21PM +0100 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Apparently, On Tue, Mar 12, 2002 at 06:44:21PM +0100, Dag-Erling Smorgrav said words to the effect of; > Jake Burkholder writes: > > > > Yes, but why. It assumes that subtracting kernbase from a virtual > > > > address will give on offset into the core dump, ie a phsyical address. > > > > This doesn't work on sparc64. > > > I was told that it did work, but I'll take your word that it doesn't. > > > The question is, what *does* work? > > I don't know yet and its going to be hard. This is why I just left > > savecore for now. > > But - waitasec. Subtracting kernbase from a virtual address doesn't > give you a physical address on i386 either - it gives you an offset > into the KVA, regardless how it's mapped onto physical memory. Are > you saying that kernel memory on the i386 starts at physical address 0 > and is mapped linearly upward from there? Yes, that's exactly the problem. The kernel is loaded at physical adress 0x100000 and linked for virtual address 0xc0100000. Once you know the offset of the page table directory in the core dump, which is found in the data segment which is at a well known physical address, you can find the phsyical address, and thus offsets in the core dump, of dynamic kernel memory which may be anywhere (physically). > > Looking at the equivalent code for Alpha, it would seem that on Alpha > the kernel is also mapped linearly, starting at 0x300000 - is that > correct? Alpha uses a large direct mapped segment and the kernel runs from there. I don't know much about the details. > > And how, in brief terms, is kernel memory mapped on Sparc64? We allocate phsyical memory from the prom and load the kernel binary there. It must be physically contiguous, but may start at any reasonable physical address. To make matters worse, the physical addresses that are available change based on what banks your memory is in, and may have large holes if a bank is empty. The prom provides an array of (start, size) pairs which describe what physical memory is available. Once the kernel image is loaded an executing, dynamic kernel memory is allocated from all over the place (physically), just like everyone else. Once we can find the address of the kernel page table structure, we can find the rest of the kernel relatively easily. But finding that in the first place may take some doing. Jake To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 10: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 46B2037B402; Tue, 12 Mar 2002 10:12:57 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CICvn20381; Tue, 12 Mar 2002 10:12:57 -0800 (PST) (envelope-from phantom) Message-Id: <200203121812.g2CICvn20381@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 10:12:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/ps print.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 phantom 2002/03/12 10:12:57 PST Modified files: (Branch: RELENG_4) bin/ps print.c Log: MFC: misc locale improvements rev 1.38, no need to work around SCCS variable expansion any more rev 1.42, use decimal point from locale rev 1.44, use AM/PM time only when available in locale rev 1.45, set use_ampm only when needed Revision Changes Path 1.36.2.3 +15 -8 src/bin/ps/print.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 10:15: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 156C437B405; Tue, 12 Mar 2002 10:15:06 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 807735346; Tue, 12 Mar 2002 19:15:04 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Jake Burkholder Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c References: <200203111123.g2BBNo651853@freefall.freebsd.org> <20020311175817.I20687@locore.ca> <20020312120759.O20687@locore.ca> <20020312121957.P20687@locore.ca> <20020312131617.Q20687@locore.ca> From: Dag-Erling Smorgrav Date: 12 Mar 2002 19:15:03 +0100 In-Reply-To: <20020312131617.Q20687@locore.ca> 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 Jake Burkholder writes: > We allocate phsyical memory from the prom and load the kernel binary > there. It must be physically contiguous, but may start at any reasonable > physical address. Right, so what savecore needs is a way to determine this address. The solution is trivial: record it at a fixed location in the dump. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 10: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 2412337B416; Tue, 12 Mar 2002 10:16:10 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CIGAd20916; Tue, 12 Mar 2002 10:16:10 -0800 (PST) (envelope-from sobomax) Message-Id: <200203121816.g2CIGAd20916@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 12 Mar 2002 10:16:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mozilla Makefile distinfo pkg-plist ports/www/mozilla/files patch-ak patch-embedding::config::basebrowser-unix patch-extensions::transformiix::source::base::Double.cpp patch-intl::uconv::src::unixcharset.properties patch-netwerk::base::src::nsSocketTransport.cpp patch-netwerk::base::src::nsSocketTransport.h patch-nsprpub::configure patch-qt ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 10:16:10 PST Modified files: www/mozilla Makefile distinfo pkg-plist www/mozilla/files patch-embedding::config::basebrowser-unix patch-qt patch-security::coreconf::FreeBSD.mk www/mozilla-embedded pkg-plist www/mozilla-headers pkg-plist Removed files: www/mozilla/files patch-ak patch-extensions::transformiix::source::base::Double.cpp patch-intl::uconv::src::unixcharset.properties patch-netwerk::base::src::nsSocketTransport.cpp patch-netwerk::base::src::nsSocketTransport.h patch-nsprpub::configure patch-xpfe::bootstrap::nsAppRunner.cpp Log: Long awaited 0.9.9 update. For some reason configure doesn't pick up our request to enable chatzilla, therefore it is not enabled now - the issue is under investigation, but anybody is free to smash maintainers with a relevant patch. Revision Changes Path 1.22 +11 -2 ports/www/mozilla-embedded/pkg-plist 1.18 +71 -14 ports/www/mozilla-headers/pkg-plist 1.83 +5 -4 ports/www/mozilla/Makefile 1.46 +2 -2 ports/www/mozilla/distinfo 1.4 +0 -18 ports/www/mozilla/files/patch-ak (dead) 1.3 +5 -5 ports/www/mozilla/files/patch-embedding::config::basebrowser-unix 1.2 +0 -26 ports/www/mozilla/files/patch-extensions::transformiix::source::base::Double.cpp (dead) 1.6 +0 -14 ports/www/mozilla/files/patch-intl::uconv::src::unixcharset.properties (dead) 1.2 +0 -329 ports/www/mozilla/files/patch-netwerk::base::src::nsSocketTransport.cpp (dead) 1.2 +0 -57 ports/www/mozilla/files/patch-netwerk::base::src::nsSocketTransport.h (dead) 1.2 +0 -50 ports/www/mozilla/files/patch-nsprpub::configure (dead) 1.15 +8 -17 ports/www/mozilla/files/patch-qt 1.2 +11 -36 ports/www/mozilla/files/patch-security::coreconf::FreeBSD.mk 1.2 +0 -11 ports/www/mozilla/files/patch-xpfe::bootstrap::nsAppRunner.cpp (dead) 1.51 +21 -5 ports/www/mozilla/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 10:26: 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 34D0837B416; Tue, 12 Mar 2002 10:25:27 -0800 (PST) Received: (from tegge@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CIPRb22541; Tue, 12 Mar 2002 10:25:27 -0800 (PST) (envelope-from tegge) Message-Id: <200203121825.g2CIPRb22541@freefall.freebsd.org> From: Tor Egge Date: Tue, 12 Mar 2002 10:25:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm vm_kern.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 tegge 2002/03/12 10:25:27 PST Modified files: (Branch: RELENG_4) sys/vm vm_kern.c Log: MFC: r1.75 - don't deadlock if the system is low on physical memory and malloc is called with both size > PAGE_SIZE and the M_NOWAIT flag set. Revision Changes Path 1.61.2.2 +12 -0 src/sys/vm/vm_kern.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 10:31: 8 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 E04C237B404; Tue, 12 Mar 2002 10:31:01 -0800 (PST) Received: (from jake@localhost) by k6.locore.ca (8.11.6/8.11.6) id g2CIan943925; Tue, 12 Mar 2002 13:36:49 -0500 (EST) (envelope-from jake) Date: Tue, 12 Mar 2002 13:36:44 -0500 From: Jake Burkholder To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c Message-ID: <20020312133644.R20687@locore.ca> References: <200203111123.g2BBNo651853@freefall.freebsd.org> <20020311175817.I20687@locore.ca> <20020312120759.O20687@locore.ca> <20020312121957.P20687@locore.ca> <20020312131617.Q20687@locore.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Tue, Mar 12, 2002 at 07:15:03PM +0100 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Apparently, On Tue, Mar 12, 2002 at 07:15:03PM +0100, Dag-Erling Smorgrav said words to the effect of; > Jake Burkholder writes: > > We allocate phsyical memory from the prom and load the kernel binary > > there. It must be physically contiguous, but may start at any reasonable > > physical address. > > Right, so what savecore needs is a way to determine this address. The > solution is trivial: record it at a fixed location in the dump. Are you volunteering? > > DES > -- > Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 10:35:19 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 EC09337B400; Tue, 12 Mar 2002 10:35:14 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 684B65346; Tue, 12 Mar 2002 19:35:13 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Jake Burkholder Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c References: <200203111123.g2BBNo651853@freefall.freebsd.org> <20020311175817.I20687@locore.ca> <20020312120759.O20687@locore.ca> <20020312121957.P20687@locore.ca> <20020312131617.Q20687@locore.ca> <20020312133644.R20687@locore.ca> From: Dag-Erling Smorgrav Date: 12 Mar 2002 19:35:12 +0100 In-Reply-To: <20020312133644.R20687@locore.ca> Message-ID: Lines: 15 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Jake Burkholder writes: > Are you volunteering? Might as well, but I don't have hardware to test it, so I'll need someone else to test it for me. ISTR that dumpsys already reserves an extra page or so at the end of the dump; this might be a good place to store this data. If not, I'll have to modify the format of the dump. How do I obtain the correct start address from within the kernel? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 10:36:45 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 838CF37B404; Tue, 12 Mar 2002 10:35:54 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CIZsH24547; Tue, 12 Mar 2002 10:35:54 -0800 (PST) (envelope-from ue) Message-Id: <200203121835.g2CIZsH24547@freefall.freebsd.org> From: Udo Erdelhoff Date: Tue, 12 Mar 2002 10:35:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1 Makefile src/release/doc/de_DE.ISO8859-1/errata Makefile article.sgml src/release/doc/de_DE.ISO8859-1/hardware Makefile Makefile.inc src/release/doc/de_DE.ISO8859-1/hardware/alpha Makefile article.sgml proc-alpha.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/03/12 10:35:54 PST Added files: release/doc/de_DE.ISO8859-1 Makefile release/doc/de_DE.ISO8859-1/errata Makefile article.sgml release/doc/de_DE.ISO8859-1/hardware Makefile Makefile.inc release/doc/de_DE.ISO8859-1/hardware/alpha Makefile article.sgml proc-alpha.sgml release/doc/de_DE.ISO8859-1/hardware/common artheader.sgml dev.sgml hw.ent intro.sgml release/doc/de_DE.ISO8859-1/hardware/i386 Makefile article.sgml proc-i386.sgml release/doc/de_DE.ISO8859-1/hardware/ia64 Makefile article.sgml proc-ia64.sgml release/doc/de_DE.ISO8859-1/hardware/sparc64 Makefile article.sgml dev-sparc64.sgml proc-sparc64.sgml release/doc/de_DE.ISO8859-1/installation Makefile Makefile.inc release/doc/de_DE.ISO8859-1/installation/alpha Makefile article.sgml release/doc/de_DE.ISO8859-1/installation/common abstract.sgml artheader.sgml install.ent install.sgml layout.sgml trouble.sgml upgrade.sgml release/doc/de_DE.ISO8859-1/installation/i386 Makefile article.sgml release/doc/de_DE.ISO8859-1/readme Makefile article.sgml release/doc/de_DE.ISO8859-1/relnotes Makefile Makefile.inc release/doc/de_DE.ISO8859-1/relnotes/alpha Makefile article.sgml release/doc/de_DE.ISO8859-1/relnotes/common new.sgml relnotes.ent release/doc/de_DE.ISO8859-1/relnotes/i386 Makefile article.sgml release/doc/de_DE.ISO8859-1/relnotes/sparc64 Makefile article.sgml release/doc/de_DE.ISO8859-1/share/sgml catalog release.dsl release.ent Log: German Translation of the Release Notes for FreeBSD-current Revision Changes Path 1.1 +17 -0 src/release/doc/de_DE.ISO8859-1/Makefile (new) 1.1 +22 -0 src/release/doc/de_DE.ISO8859-1/errata/Makefile (new) 1.1 +138 -0 src/release/doc/de_DE.ISO8859-1/errata/article.sgml (new) 1.1 +13 -0 src/release/doc/de_DE.ISO8859-1/hardware/Makefile (new) 1.1 +11 -0 src/release/doc/de_DE.ISO8859-1/hardware/Makefile.inc (new) 1.1 +23 -0 src/release/doc/de_DE.ISO8859-1/hardware/alpha/Makefile (new) 1.1 +33 -0 src/release/doc/de_DE.ISO8859-1/hardware/alpha/article.sgml (new) 1.1 +4069 -0 src/release/doc/de_DE.ISO8859-1/hardware/alpha/proc-alpha.sgml (new) 1.1 +30 -0 src/release/doc/de_DE.ISO8859-1/hardware/common/artheader.sgml (new) 1.1 +3189 -0 src/release/doc/de_DE.ISO8859-1/hardware/common/dev.sgml (new) 1.1 +20 -0 src/release/doc/de_DE.ISO8859-1/hardware/common/hw.ent (new) 1.1 +26 -0 src/release/doc/de_DE.ISO8859-1/hardware/common/intro.sgml (new) 1.1 +23 -0 src/release/doc/de_DE.ISO8859-1/hardware/i386/Makefile (new) 1.1 +31 -0 src/release/doc/de_DE.ISO8859-1/hardware/i386/article.sgml (new) 1.1 +52 -0 src/release/doc/de_DE.ISO8859-1/hardware/i386/proc-i386.sgml (new) 1.1 +23 -0 src/release/doc/de_DE.ISO8859-1/hardware/ia64/Makefile (new) 1.1 +31 -0 src/release/doc/de_DE.ISO8859-1/hardware/ia64/article.sgml (new) 1.1 +11 -0 src/release/doc/de_DE.ISO8859-1/hardware/ia64/proc-ia64.sgml (new) 1.1 +23 -0 src/release/doc/de_DE.ISO8859-1/hardware/sparc64/Makefile (new) 1.1 +41 -0 src/release/doc/de_DE.ISO8859-1/hardware/sparc64/article.sgml (new) 1.1 +209 -0 src/release/doc/de_DE.ISO8859-1/hardware/sparc64/dev-sparc64.sgml (new) 1.1 +319 -0 src/release/doc/de_DE.ISO8859-1/hardware/sparc64/proc-sparc64.sgml (new) 1.1 +12 -0 src/release/doc/de_DE.ISO8859-1/installation/Makefile (new) 1.1 +10 -0 src/release/doc/de_DE.ISO8859-1/installation/Makefile.inc (new) 1.1 +23 -0 src/release/doc/de_DE.ISO8859-1/installation/alpha/Makefile (new) 1.1 +32 -0 src/release/doc/de_DE.ISO8859-1/installation/alpha/article.sgml (new) 1.1 +14 -0 src/release/doc/de_DE.ISO8859-1/installation/common/abstract.sgml (new) 1.1 +26 -0 src/release/doc/de_DE.ISO8859-1/installation/common/artheader.sgml (new) 1.1 +20 -0 src/release/doc/de_DE.ISO8859-1/installation/common/install.ent (new) 1.1 +1045 -0 src/release/doc/de_DE.ISO8859-1/installation/common/install.sgml (new) 1.1 +178 -0 src/release/doc/de_DE.ISO8859-1/installation/common/layout.sgml (new) 1.1 +642 -0 src/release/doc/de_DE.ISO8859-1/installation/common/trouble.sgml (new) 1.1 +211 -0 src/release/doc/de_DE.ISO8859-1/installation/common/upgrade.sgml (new) 1.1 +23 -0 src/release/doc/de_DE.ISO8859-1/installation/i386/Makefile (new) 1.1 +33 -0 src/release/doc/de_DE.ISO8859-1/installation/i386/article.sgml (new) 1.1 +27 -0 src/release/doc/de_DE.ISO8859-1/readme/Makefile (new) 1.1 +473 -0 src/release/doc/de_DE.ISO8859-1/readme/article.sgml (new) 1.1 +13 -0 src/release/doc/de_DE.ISO8859-1/relnotes/Makefile (new) 1.1 +11 -0 src/release/doc/de_DE.ISO8859-1/relnotes/Makefile.inc (new) 1.1 +21 -0 src/release/doc/de_DE.ISO8859-1/relnotes/alpha/Makefile (new) 1.1 +28 -0 src/release/doc/de_DE.ISO8859-1/relnotes/alpha/article.sgml (new) 1.1 +3607 -0 src/release/doc/de_DE.ISO8859-1/relnotes/common/new.sgml (new) 1.1 +17 -0 src/release/doc/de_DE.ISO8859-1/relnotes/common/relnotes.ent (new) 1.1 +21 -0 src/release/doc/de_DE.ISO8859-1/relnotes/i386/Makefile (new) 1.1 +28 -0 src/release/doc/de_DE.ISO8859-1/relnotes/i386/article.sgml (new) 1.1 +21 -0 src/release/doc/de_DE.ISO8859-1/relnotes/sparc64/Makefile (new) 1.1 +31 -0 src/release/doc/de_DE.ISO8859-1/relnotes/sparc64/article.sgml (new) 1.1 +15 -0 src/release/doc/de_DE.ISO8859-1/share/sgml/catalog (new) 1.1 +84 -0 src/release/doc/de_DE.ISO8859-1/share/sgml/release.dsl (new) 1.1 +39 -0 src/release/doc/de_DE.ISO8859-1/share/sgml/release.ent (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 10:38:31 2002 Delivered-To: cvs-all@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id 60F0B37B416; Tue, 12 Mar 2002 10:38:09 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id UAA33549; Tue, 12 Mar 2002 20:38:06 +0200 (EET) (envelope-from max@vega.com) Received: from vega.vega.com (h55.228.dialup.iptcom.net [212.9.228.55]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id UAA06012; Tue, 12 Mar 2002 20:38:05 +0200 (EET) (envelope-from max@vega.com) Received: (from max@localhost) by vega.vega.com (8.11.6/8.11.3) id g2CIbXR85164; Tue, 12 Mar 2002 20:37:33 +0200 (EET) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200203121837.g2CIbXR85164@vega.vega.com> Subject: Re: cvs commit: ports/security/openssh/files patch-Makefile patch-Makefile.inc To: dinoex@FreeBSD.ORG (Dirk Meyer) Date: Tue, 12 Mar 2002 20:37:26 +0200 (EET) Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-Reply-To: from "Dirk Meyer" at Mar 12, 2002 09:54:14 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 What about "always preserve history" golden rule? -Maxim > > dinoex 2002/03/12 09:54:14 PST > > Added files: > security/openssh/files patch-Makefile patch-Makefile.inc > patch-auth.c patch-clientloop.c > patch-includes.h patch-lib-Makefile > patch-pathnames.h patch-scp-Makefile > patch-session.c patch-ssh-Makefile > patch-ssh-add-Makefile > patch-ssh-agent-Makefile > patch-ssh-keygen-Makefile patch-ssh.c > patch-sshconnect.c patch-sshd-Makefile > patch-sshd.8 patch-sshd.c > patch-sshd_config patch-sshlogin.c > patch-sshpty.c > Removed files: > security/openssh/files patch-aa patch-ab patch-ac patch-ad > patch-ae patch-af patch-ag patch-ah > patch-ai patch-aj patch-ak patch-al > patch-am patch-an patch-ao patch-ap > patch-ar patch-as patch-at patch-au > patch-av > Log: > Rename Patches to make navigation much more easier. > > Revision Changes Path > 1.1 +10 -0 ports/security/openssh/files/patch-Makefile (new) > 1.1 +23 -0 ports/security/openssh/files/patch-Makefile.inc (new) > 1.7 +0 -20 ports/security/openssh/files/patch-aa (dead) > 1.12 +0 -23 ports/security/openssh/files/patch-ab (dead) > 1.10 +0 -71 ports/security/openssh/files/patch-ac (dead) > 1.15 +0 -24 ports/security/openssh/files/patch-ad (dead) > 1.6 +0 -14 ports/security/openssh/files/patch-ae (dead) > 1.6 +0 -13 ports/security/openssh/files/patch-af (dead) > 1.9 +0 -40 ports/security/openssh/files/patch-ag (dead) > 1.7 +0 -18 ports/security/openssh/files/patch-ah (dead) > 1.5 +0 -18 ports/security/openssh/files/patch-ai (dead) > 1.7 +0 -18 ports/security/openssh/files/patch-aj (dead) > 1.11 +0 -12 ports/security/openssh/files/patch-ak (dead) > 1.8 +0 -20 ports/security/openssh/files/patch-al (dead) > 1.10 +0 -44 ports/security/openssh/files/patch-am (dead) > 1.13 +0 -15 ports/security/openssh/files/patch-an (dead) > 1.10 +0 -23 ports/security/openssh/files/patch-ao (dead) > 1.10 +0 -11 ports/security/openssh/files/patch-ap (dead) > 1.6 +0 -14 ports/security/openssh/files/patch-ar (dead) > 1.5 +0 -14 ports/security/openssh/files/patch-as (dead) > 1.9 +0 -49 ports/security/openssh/files/patch-at (dead) > 1.13 +0 -157 ports/security/openssh/files/patch-au (dead) > 1.1 +97 -0 ports/security/openssh/files/patch-auth.c (new) > 1.7 +0 -97 ports/security/openssh/files/patch-av (dead) > 1.1 +11 -0 ports/security/openssh/files/patch-clientloop.c (new) > 1.1 +71 -0 ports/security/openssh/files/patch-includes.h (new) > 1.1 +24 -0 ports/security/openssh/files/patch-lib-Makefile (new) > 1.1 +20 -0 ports/security/openssh/files/patch-pathnames.h (new) > 1.1 +13 -0 ports/security/openssh/files/patch-scp-Makefile (new) > 1.1 +157 -0 ports/security/openssh/files/patch-session.c (new) > 1.1 +40 -0 ports/security/openssh/files/patch-ssh-Makefile (new) > 1.1 +18 -0 ports/security/openssh/files/patch-ssh-add-Makefile (new) > 1.1 +18 -0 ports/security/openssh/files/patch-ssh-agent-Makefile (new) > 1.1 +18 -0 ports/security/openssh/files/patch-ssh-keygen-Makefile (new) > 1.1 +12 -0 ports/security/openssh/files/patch-ssh.c (new) > 1.1 +49 -0 ports/security/openssh/files/patch-sshconnect.c (new) > 1.1 +44 -0 ports/security/openssh/files/patch-sshd-Makefile (new) > 1.1 +14 -0 ports/security/openssh/files/patch-sshd.8 (new) > 1.1 +15 -0 ports/security/openssh/files/patch-sshd.c (new) > 1.1 +23 -0 ports/security/openssh/files/patch-sshd_config (new) > 1.1 +14 -0 ports/security/openssh/files/patch-sshlogin.c (new) > 1.1 +14 -0 ports/security/openssh/files/patch-sshpty.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 Mar 12 10:47:33 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 EA6E037B405; Tue, 12 Mar 2002 10:47:23 -0800 (PST) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020312184723.IHNM1214.rwcrmhc54.attbi.com@bmah.dyndns.org>; Tue, 12 Mar 2002 18:47:23 +0000 Received: (from bmah@localhost) by bmah.dyndns.org (8.11.6/8.11.6) id g2CIlN926130; Tue, 12 Mar 2002 10:47:23 -0800 (PST) (envelope-from bmah) Message-Id: <200203121847.g2CIlN926130@bmah.dyndns.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Udo Erdelhoff Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/doc/de_DE.ISO8859-1 Makefile src/release/doc/de_DE.ISO8859-1/errata Makefile article.sgml src/release/doc/de_DE.ISO8859-1/hardware Makefile Makefile.inc src/release/doc/de_DE.ISO8859-1/hardware/alpha Makefile article.sgml proc-alpha.sgml ... In-reply-to: <200203121835.g2CIZsH24547@freefall.freebsd.org> References: <200203121835.g2CIZsH24547@freefall.freebsd.org> Comments: In-reply-to Udo Erdelhoff message dated "Tue, 12 Mar 2002 10:35:54 -0800." From: "Bruce A. Mah" Reply-To: bmah@FreeBSD.org X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 12 Mar 2002 10:47:23 -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG If memory serves me right, Udo Erdelhoff wrote: > Log: > German Translation of the Release Notes for FreeBSD-current Yaaay! Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 10:48:11 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by hub.freebsd.org (Postfix) with ESMTP id 9BF1B37B417; Tue, 12 Mar 2002 10:47:51 -0800 (PST) Received: from peter3.wemm.org ([12.232.27.13]) by rwcrmhc52.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020312184751.CQE1147.rwcrmhc52.attbi.com@peter3.wemm.org>; Tue, 12 Mar 2002 18:47:51 +0000 Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id g2CIlps32093; Tue, 12 Mar 2002 10:47:51 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id D9702380A; Tue, 12 Mar 2002 10:47:50 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Dag-Erling Smorgrav Cc: Jake Burkholder , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c In-Reply-To: Date: Tue, 12 Mar 2002 10:47:50 -0800 From: Peter Wemm Message-Id: <20020312184750.D9702380A@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: > Jake Burkholder writes: > > Yes, but why. It assumes that subtracting kernbase from a virtual > > address will give on offset into the core dump, ie a phsyical address. > > This doesn't work on sparc64. > > I was told that it did work, but I'll take your word that it doesn't. > The question is, what *does* work? If you're referring to our conversation, I said "it looks like it might be like the x86". From my understanding of what Jake told me before, there is no linear mapping of kernel memory on sparc64. 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 Mar 12 10:54:13 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 1A74E37B4A4; Tue, 12 Mar 2002 10:51:51 -0800 (PST) Received: from peter3.wemm.org ([12.232.27.13]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020312185151.ILKN1214.rwcrmhc54.attbi.com@peter3.wemm.org>; Tue, 12 Mar 2002 18:51:51 +0000 Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id g2CIpos32123; Tue, 12 Mar 2002 10:51:50 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id 40FE6380A; Tue, 12 Mar 2002 10:51:50 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Dag-Erling Smorgrav Cc: Jake Burkholder , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c In-Reply-To: Date: Tue, 12 Mar 2002 10:51:50 -0800 From: Peter Wemm Message-Id: <20020312185150.40FE6380A@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: > Jake Burkholder writes: > > Are you volunteering? > > Might as well, but I don't have hardware to test it, so I'll need > someone else to test it for me. > > ISTR that dumpsys already reserves an extra page or so at the end of > the dump; this might be a good place to store this data. If not, I'll > have to modify the format of the dump. Nope. And to make it worse, the dump routines are in the MI drivers. dumpsys() does not *do* the dumps, it is the drivers themselves. The MI dump routines have code like this in them: vm_offset_t addr = 0; ... for (i = 0; i < dumppages; ++i) { vm_offset_t a = addr + (i * PAGE_SIZE); if (is_physical_memory(a)) va = pmap_kenter_temporary(trunc_page(a), i); else va = pmap_kenter_temporary(trunc_page(0), i); } (this one taken from ata-disk.c, they are all different) > How do I obtain the correct start address from within the kernel? > > DES > -- > Dag-Erling Smorgrav - des@ofug.org > 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 Mar 12 10:56:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 567BF37B71B; Tue, 12 Mar 2002 10:55:53 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CItrq28077; Tue, 12 Mar 2002 10:55:53 -0800 (PST) (envelope-from des) Message-Id: <200203121855.g2CItrq28077@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 12 Mar 2002 10:55:53 -0800 (PST) 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 des 2002/03/12 10:55:53 PST Modified files: usr.sbin Makefile Log: Don't try to cross-build sysinstall. Revision Changes Path 1.215 +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 Tue Mar 12 10:57:31 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 52AC837B42F; Tue, 12 Mar 2002 10:56:15 -0800 (PST) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id E76FE4D8FD; Wed, 13 Mar 2002 03:56:13 +0900 (JST) Date: Wed, 13 Mar 2002 03:56:13 +0900 Message-ID: <86u1rlaa42.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Mikhail Teterin Cc: roam@ringlet.net, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, portmgr@FreeBSD.org Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... In-Reply-To: <200203121753.g2CHrg3b074070@aldan.algebra.com> References: <86wuwhag96.wl@archon.local.idaemons.org> <200203121753.g2CHrg3b074070@aldan.algebra.com> User-Agent: Wanderlust/2.9.7 (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 Tue, 12 Mar 2002 12:53:42 -0500 (EST), Mikhail Teterin wrote: > I disagree. Here is my view. Ports System is all about building and > installing third party software from its source code (when available). > Some of that third party software depends on data-files, executables, > and shared libraries, which are installed by other third (fourth?) party > software. There needs to be a way of describing such dependencies. This > descriptions are part of the _primary_ objective of the ports system. > And any problems with them, and solutions to those problems are also > parts of the _primary_ objective. > > The binary packages are derivatives of the ports and thus are of > secondary importance. You are still misunderstanding something. PORTREVISION is not just for binary packages. As you say, few people do binary upgrading because there is no good way to do that (even with portupgrade); we are here talking about ports. One day one builds and installs port A and then port B which depends on A, and after a week the port A is updated with a library major bump. Now, if the committer who updates the port A do PORTREVISION bumps for the port B and other dependant ports properly, one will be notified by the /etc/periodic/weekly/400.status-pkg script that an upgrade of the port A is available and the port B should be upgraded at the same time, This is VERY common manners among average ports users. If you don't believe me, ask users on ports@. > > In the last discussion, some people expressed anxiety that people > > might neglect bumping PORTREVISIONs because of your changes. Do you > > remember? > > I do. However, I countered, that such bumping is only serving the binary > upgrades, which can be done without it anyway, and rejected that argument. You cannot "reject" what we once introduced after a discussion. PORTREVISION was introduced for the very purose; to help people know when they should upgrade which. Please do not go selfish and break the written rules other people have been keeping. If you want to do what conflicts with the rules, convince portmgr and change the rules first. We are a team. You cannot play arbitrarily. > I find it much easier to communicate with computers, than with people > :-) If I knew Python, I'd concentrate on coding the feature instead of > preaching to people... > > Then, the PORTREVISION bump would only be needed if the port itself > changes. Well, do not mistake me... While the feature can and should be implemented in most tools like the standard pkg_* and portupgrade, proper PORTREVISION bumping keeps being a duty until then. -- / /__ __ 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 Tue Mar 12 10:59: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 491E437B757; Tue, 12 Mar 2002 10:58:28 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id BD2F35346; Tue, 12 Mar 2002 19:58:26 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Peter Wemm Cc: Jake Burkholder , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c References: <20020312185150.40FE6380A@overcee.wemm.org> From: Dag-Erling Smorgrav Date: 12 Mar 2002 19:58:26 +0100 In-Reply-To: <20020312185150.40FE6380A@overcee.wemm.org> Message-ID: Lines: 18 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: > > ISTR that dumpsys already reserves an extra page or so at the end of > > the dump; this might be a good place to store this data. If not, I'll > > have to modify the format of the dump. > Nope. And to make it worse, the dump routines are in the MI drivers. > dumpsys() does not *do* the dumps, it is the drivers themselves. Yeah, I know. I'm working on the ata driver since that's what most Ultras will use IIRC. I've already modified setdumpdev() to reserve an extra page at the end of the dump. BTW, setdumpdev() assumes that PAGE_SIZE is a multiple of DEV_BSIZE; is this universally true, or just coincidentially true? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11: 0:54 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.ruhr.de (in-ruhr4.ruhr.de [212.23.134.2]) by hub.freebsd.org (Postfix) with SMTP id F00DD37B651 for ; Tue, 12 Mar 2002 10:59:55 -0800 (PST) Received: (qmail 8446 invoked by uid 10); 12 Mar 2002 18:59:54 -0000 Received: (from ue@localhost) by nathan.ruhr.de (8.11.6/8.11.2) id g2CItBD33697; Tue, 12 Mar 2002 19:55:11 +0100 (CET) (envelope-from ue) Date: Tue, 12 Mar 2002 19:55:11 +0100 From: Udo Erdelhoff To: "Bruce A. Mah" Cc: Udo Erdelhoff , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/doc/de_DE.ISO8859-1 Makefile src/release/doc/de_DE.ISO8859-1/errata Makefile article.sgml src/release/doc/de_DE.ISO8859-1/hardware Makefile Makefile.inc src/release/doc/de_DE.ISO8859-1/hardware/alpha Makefile article.sgml proc-alpha.sgml ... Message-ID: <20020312195511.H23882@nathan.ruhr.de> Mail-Followup-To: "Bruce A. Mah" , Udo Erdelhoff , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200203121835.g2CIZsH24547@freefall.freebsd.org> <200203121847.g2CIlN926130@bmah.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203121847.g2CIlN926130@bmah.dyndns.org> 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 On Tue, Mar 12, 2002 at 10:47:23AM -0800, Bruce A. Mah wrote: > Yaaay! I hope this is a 'great stuff' Yaaay and not an 'Are you insane?' one. I'm still waiting for the stuff to swap back to me via cvsup to test if it really builds correctly. It's not connected to the main build yet, I do not trust myself ;-) And then I will have to tag the stuff, which will be a pain in the **s. Yes, the RELENG_4 version is also ready. /s/Udo -- Ich bin root, ich darf das. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11: 2:17 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 60C7737B7D1; Tue, 12 Mar 2002 11:01:52 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id DB0075347; Tue, 12 Mar 2002 20:01:50 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Peter Wemm Cc: Jake Burkholder , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c References: <20020312184750.D9702380A@overcee.wemm.org> From: Dag-Erling Smorgrav Date: 12 Mar 2002 20:01:50 +0100 In-Reply-To: <20020312184750.D9702380A@overcee.wemm.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: > If you're referring to our conversation, I said "it looks like it might > be like the x86". From my understanding of what Jake told me before, there > is no linear mapping of kernel memory on sparc64. Right, sorry for reading too much into your words. It was too good to be true :) DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:10: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 17C5437B400; Tue, 12 Mar 2002 11:10:15 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJAFA33902; Tue, 12 Mar 2002 11:10:15 -0800 (PST) (envelope-from phantom) Message-Id: <200203121910.g2CJAFA33902@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:10:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/cpio copyin.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 phantom 2002/03/12 11:10:15 PST Modified files: (Branch: RELENG_4) contrib/cpio copyin.c Log: MFC: rev 1.7, don't attempt to parse %c Revision Changes Path 1.6.6.1 +27 -4 src/contrib/cpio/copyin.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:12:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 451A937B428; Tue, 12 Mar 2002 11:12:35 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJCZb34392; Tue, 12 Mar 2002 11:12:35 -0800 (PST) (envelope-from phantom) Message-Id: <200203121912.g2CJCZb34392@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:12:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/man/man man.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 phantom 2002/03/12 11:12:35 PST Modified files: (Branch: RELENG_4) gnu/usr.bin/man/man man.c Log: MFC: rev 1.48, rewrite locale handling using nl_langinfo(CODESET) Revision Changes Path 1.37.2.5 +77 -44 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 Tue Mar 12 11:16: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 6600D37B634; Tue, 12 Mar 2002 11:16:03 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJG3s34792; Tue, 12 Mar 2002 11:16:03 -0800 (PST) (envelope-from phantom) Message-Id: <200203121916.g2CJG3s34792@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:16:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/tar list.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 phantom 2002/03/12 11:16:03 PST Modified files: (Branch: RELENG_4) gnu/usr.bin/tar list.c Log: MFC: strftime related improvements rev 1.9, use nl_langinfo() instead of parsing %c rev 1.10 use %R instead of %H:%M Revision Changes Path 1.8.6.1 +14 -6 src/gnu/usr.bin/tar/list.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:17: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 56A4837B41E; Tue, 12 Mar 2002 11:16:24 -0800 (PST) Received: (from mi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJGOL34857; Tue, 12 Mar 2002 11:16:24 -0800 (PST) (envelope-from mi) Message-Id: <200203121916.g2CJGOL34857@freefall.freebsd.org> From: Mikhail Teterin Date: Tue, 12 Mar 2002 11:16:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mi 2002/03/12 11:16:24 PST Modified files: graphics Makefile Log: Add djvulibre, which was repo-copied, upgraded, but never added to the list. Now, where is that strange looking hat?.. Submitted by: Dan Langille Revision Changes Path 1.419 +1 -0 ports/graphics/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:19: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by hub.freebsd.org (Postfix) with ESMTP id 4CC2637B48E; Tue, 12 Mar 2002 11:18:40 -0800 (PST) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc52.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020312191840.BBSO1147.rwcrmhc52.attbi.com@bmah.dyndns.org>; Tue, 12 Mar 2002 19:18:40 +0000 Received: (from bmah@localhost) by bmah.dyndns.org (8.11.6/8.11.6) id g2CJId926479; Tue, 12 Mar 2002 11:18:39 -0800 (PST) (envelope-from bmah) Message-Id: <200203121918.g2CJId926479@bmah.dyndns.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Udo Erdelhoff Cc: "Bruce A. Mah" , Udo Erdelhoff , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/doc/de_DE.ISO8859-1 Makefile src/release/doc/de_DE.ISO8859-1/errata Makefile article.sgml src/release/doc/de_DE.ISO8859-1/hardware Makefile Makefile.inc src/release/doc/de_DE.ISO8859-1/hardware/alpha Makefile article.sgml proc-alpha.sgml ... In-reply-to: <20020312195511.H23882@nathan.ruhr.de> References: <200203121835.g2CIZsH24547@freefall.freebsd.org> <200203121847.g2CIlN926130@bmah.dyndns.org> <20020312195511.H23882@nathan.ruhr.de> Comments: In-reply-to Udo Erdelhoff message dated "Tue, 12 Mar 2002 19:55:11 +0100." From: bmah@FreeBSD.org (Bruce A. Mah) Reply-To: bmah@FreeBSD.org X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 12 Mar 2002 11:18:39 -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG If memory serves me right, Udo Erdelhoff wrote: > On Tue, Mar 12, 2002 at 10:47:23AM -0800, Bruce A. Mah wrote: > > Yaaay! > > I hope this is a 'great stuff' Yaaay and not an 'Are you insane?' one. The former, but I bet if I had to read all of the release documentation and do a translation of it, I'd probably be insane when I was done. :-) > I'm still waiting for the stuff to swap back to me via cvsup to test > if it really builds correctly. It's not connected to the main build > yet, I do not trust myself ;-) It passed the make lint test for me. > And then I will have to tag the stuff, which will be a pain in the **s. My first thought was "cvs tag", but you must mean something else? > Yes, the RELENG_4 version is also ready. Excellent! Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:31:28 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id A66EF37B41B; Tue, 12 Mar 2002 11:31:02 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.12.2/8.12.2) with ESMTP id g2CJV33b082819; Tue, 12 Mar 2002 14:31:07 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200203121931.g2CJV33b082819@aldan.algebra.com> Date: Tue, 12 Mar 2002 14:31:03 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/libwmf Makefile ports/graphics/sdl_ttf Makefile ports/print/ft2demos Makefile ... To: knu@iDaemons.org Cc: roam@ringlet.net, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, portmgr@FreeBSD.org In-Reply-To: <86u1rlaa42.wl@archon.local.idaemons.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 13 Mar, Akinori MUSHA wrote: > You are still misunderstanding something. PORTREVISION is not just > for binary packages. As you say, few people do binary upgrading > because there is no good way to do that (even with portupgrade); we > are here talking about ports. [...] > One day one builds and installs port A and then port B which depends > on A, and after a week the port A is updated with a library major > bump. Now, if the committer who updates the port A do PORTREVISION > bumps for the port B and other dependant ports properly, one will be > notified by the /etc/periodic/weekly/400.status-pkg script that an > upgrade of the port A is available and the port B should be upgraded > at the same time, For A to stop working, one has to remove the older libB.so.N. To remove the earlier version of libB, one has to do pkg_delete of the old B. That is when he/she will be told, that port A depends on it, and when he/she will know to delete/upgrade port A as well. If he/she piles up the new port B on top of the old B, port A will continue working since the old libB.so.N will still be there along with the new libB.so.N+1 >> > In the last discussion, some people expressed anxiety that people >> > might neglect bumping PORTREVISIONs because of your changes. Do you >> > remember? >> >> I do. However, I countered, that such bumping is only serving the binary >> upgrades, which can be done without it anyway, and rejected that argument. > > You cannot "reject" what we once introduced after a discussion. > PORTREVISION was introduced for the very purose; to help people know > when they should upgrade which. I'm not rejecting PORTREVISIONs bump. I am saying it is not important enough to justify having to build the latest versions of each port, that a port I actually want depends on. >> I find it much easier to communicate with computers, than with people >> :-) If I knew Python, I'd concentrate on coding the feature instead >> of preaching to people... >> >> Then, the PORTREVISION bump would only be needed if the port itself >> changes. > > Well, do not mistake me... While the feature can and should be > implemented in most tools like the standard pkg_* and portupgrade, > proper PORTREVISION bumping keeps being a duty until then. Ok. But, please, hurry :) -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:33: 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 7236A37B402; Tue, 12 Mar 2002 11:33:00 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJX0237922; Tue, 12 Mar 2002 11:33:00 -0800 (PST) (envelope-from phantom) Message-Id: <200203121933.g2CJX0237922@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:33:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/ar contents.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 phantom 2002/03/12 11:33:00 PST Modified files: (Branch: RELENG_4) usr.bin/ar contents.c Log: MFC: rev 1.6, don't attempt to parse %c, use nl_langinfo instead Revision Changes Path 1.5.6.2 +13 -4 src/usr.bin/ar/contents.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:34:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C03037B41F; Tue, 12 Mar 2002 11:34:00 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJY0V38245; Tue, 12 Mar 2002 11:34:00 -0800 (PST) (envelope-from phantom) Message-Id: <200203121934.g2CJY0V38245@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:34:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/calendar io.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 phantom 2002/03/12 11:34:00 PST Modified files: (Branch: RELENG_4) usr.bin/calendar io.c Log: MFC: rev 1.15, don't attempt to parse %c, use nl_langinfo instead Revision Changes Path 1.13.2.1 +11 -6 src/usr.bin/calendar/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 Mar 12 11: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 51B9F37B400; Tue, 12 Mar 2002 11:34:35 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJYZ638603; Tue, 12 Mar 2002 11:34:35 -0800 (PST) (envelope-from sobomax) Message-Id: <200203121934.g2CJYZ638603@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 12 Mar 2002 11:34:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-fm/nautilus Makefile ports/www/galeon 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/03/12 11:34:35 PST Modified files: x11-fm/nautilus Makefile www/galeon Makefile Log: Victims of Mozilla update to 0.9.9. Revision Changes Path 1.58 +1 -1 ports/www/galeon/Makefile 1.44 +2 -0 ports/x11-fm/nautilus/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:35:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6606D37B446; Tue, 12 Mar 2002 11:34:50 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJYoI39058; Tue, 12 Mar 2002 11:34:50 -0800 (PST) (envelope-from phantom) Message-Id: <200203121934.g2CJYoI39058@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:34:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/find ls.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 phantom 2002/03/12 11:34:50 PST Modified files: (Branch: RELENG_4) usr.bin/find ls.c Log: MFC: rev 1.8, don't attempt to parse %c, use nl_langinfo instead Revision Changes Path 1.5.6.3 +18 -15 src/usr.bin/find/ls.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:36: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 2253C37B416; Tue, 12 Mar 2002 11:36:20 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJaKl40544; Tue, 12 Mar 2002 11:36:20 -0800 (PST) (envelope-from phantom) Message-Id: <200203121936.g2CJaKl40544@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:36:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/finger extern.h finger.c lprint.c sprint.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 phantom 2002/03/12 11:36:19 PST Modified files: (Branch: RELENG_4) usr.bin/finger extern.h finger.c lprint.c sprint.c Log: MFC: don't attempt to parse %c, use nl_langinfo instead extern.h 1.4 finger.c 1.24 lprint.c 1.16 sprint.c 1.16 Revision Changes Path 1.2.6.2 +1 -0 src/usr.bin/finger/extern.h 1.15.2.7 +2 -1 src/usr.bin/finger/finger.c 1.10.2.3 +35 -24 src/usr.bin/finger/lprint.c 1.11.2.4 +21 -12 src/usr.bin/finger/sprint.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:37: 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 4746C37B48B; Tue, 12 Mar 2002 11:36:56 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJauO40627; Tue, 12 Mar 2002 11:36:56 -0800 (PST) (envelope-from phantom) Message-Id: <200203121936.g2CJauO40627@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:36:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/hexdump hexdump.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 phantom 2002/03/12 11:36:56 PST Modified files: (Branch: RELENG_4) usr.bin/hexdump hexdump.c Log: MFC: rev 1.5, change localizing to LC_ALL Revision Changes Path 1.4.2.1 +1 -1 src/usr.bin/hexdump/hexdump.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:38: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 8F9F737B404; Tue, 12 Mar 2002 11:38:38 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJccU41078; Tue, 12 Mar 2002 11:38:38 -0800 (PST) (envelope-from phantom) Message-Id: <200203121938.g2CJccU41078@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:38:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/ncal ncal.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 phantom 2002/03/12 11:38:38 PST Modified files: (Branch: RELENG_4) usr.bin/ncal ncal.c Log: MFC: locale time handling fixes rev 1.12, use nl_langinfo() instead of %EF rev 1.13, uppercase first month letter, terminate weekday string rev 1.14, properly deal with one char weekdays Revision Changes Path 1.11.2.2 +18 -5 src/usr.bin/ncal/ncal.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:40: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 88CBE37B41C; Tue, 12 Mar 2002 11:40:10 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJeAh42056; Tue, 12 Mar 2002 11:40:10 -0800 (PST) (envelope-from phantom) Message-Id: <200203121940.g2CJeAh42056@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:40:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/pr pr.c pr.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 phantom 2002/03/12 11:40:10 PST Modified files: (Branch: RELENG_4) usr.bin/pr pr.c pr.h Log: MFC: use nl_langinfo instead of %Ef pr.c rev 1.11 pr.h rev 1.4 Revision Changes Path 1.9.2.3 +5 -1 src/usr.bin/pr/pr.c 1.3.2.1 +3 -2 src/usr.bin/pr/pr.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:40:50 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc54.attbi.com (rwcrmhc54.attbi.com [216.148.227.87]) by hub.freebsd.org (Postfix) with ESMTP id 218B637B420; Tue, 12 Mar 2002 11:40:26 -0800 (PST) Received: from peter3.wemm.org ([12.232.27.13]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020312194025.KAVA1214.rwcrmhc54.attbi.com@peter3.wemm.org>; Tue, 12 Mar 2002 19:40:25 +0000 Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id g2CJePs32343; Tue, 12 Mar 2002 11:40:25 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id 50BFC380A; Tue, 12 Mar 2002 11:40:25 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Dag-Erling Smorgrav Cc: Jake Burkholder , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c In-Reply-To: Date: Tue, 12 Mar 2002 11:40:25 -0800 From: Peter Wemm Message-Id: <20020312194025.50BFC380A@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: > > > ISTR that dumpsys already reserves an extra page or so at the end of > > > the dump; this might be a good place to store this data. If not, I'll > > > have to modify the format of the dump. > > Nope. And to make it worse, the dump routines are in the MI drivers. > > dumpsys() does not *do* the dumps, it is the drivers themselves. > > Yeah, I know. I'm working on the ata driver since that's what most > Ultras will use IIRC. I've already modified setdumpdev() to reserve > an extra page at the end of the dump. I'm not sure that will cut it, the entire structure of the dump has to change since phsyical ram will probably not be contiguous and will probably not start at address zero either. > BTW, setdumpdev() assumes that PAGE_SIZE is a multiple of DEV_BSIZE; > is this universally true, or just coincidentially true? This is a requirement in lots of places, including VM. 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 Mar 12 11: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 2443E37B400; Tue, 12 Mar 2002 11:46:29 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJkTS47457; Tue, 12 Mar 2002 11:46:29 -0800 (PST) (envelope-from ade) Message-Id: <200203121946.g2CJkTS47457@freefall.freebsd.org> From: Ade Lovett Date: Tue, 12 Mar 2002 11:46:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/ninja 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 ade 2002/03/12 11:46:25 PST Modified files: irc/ninja Makefile distinfo Log: Update to 1.5.8.1 (previous version no longer available) PR: 35820 Submitted by: Peter Avalos Revision Changes Path 1.27 +1 -2 ports/irc/ninja/Makefile 1.16 +1 -1 ports/irc/ninja/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:47: 7 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 C1E3C37B41B; Tue, 12 Mar 2002 11:47:00 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 43E2A5347; Tue, 12 Mar 2002 20:46:59 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Peter Wemm Cc: Jake Burkholder , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c References: <20020312194025.50BFC380A@overcee.wemm.org> From: Dag-Erling Smorgrav Date: 12 Mar 2002 20:46:58 +0100 In-Reply-To: <20020312194025.50BFC380A@overcee.wemm.org> Message-ID: Lines: 13 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Peter Wemm writes: > I'm not sure that will cut it, the entire structure of the dump has to > change since phsyical ram will probably not be contiguous and will probably > not start at address zero either. I was thinking a while back (when I made savecore() write sparse files) that dumpsys() and its minions should be able to write sparse dumps (to avoid writing out unused areas). I guess I'll just have to follow up on that thought :) DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:47: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 73A1637B41B; Tue, 12 Mar 2002 11:47:24 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJlOq48025; Tue, 12 Mar 2002 11:47:24 -0800 (PST) (envelope-from phantom) Message-Id: <200203121947.g2CJlOq48025@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:47:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/printf printf.1 printf.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 phantom 2002/03/12 11:47:24 PST Modified files: (Branch: RELENG_4) usr.bin/printf printf.1 printf.c Log: MFC: localize it (LC_NUMERIC) printf.c rev 1.17 printf.1 rev 1.12 Revision Changes Path 1.8.2.5 +3 -0 src/usr.bin/printf/printf.1 1.12.6.5 +8 -1 src/usr.bin/printf/printf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:48: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 C865137B400; Tue, 12 Mar 2002 11:48:46 -0800 (PST) Received: (from gad@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJmkC48843; Tue, 12 Mar 2002 11:48:46 -0800 (PST) (envelope-from gad) Message-Id: <200203121948.g2CJmkC48843@freefall.freebsd.org> From: Garance A Drosehn Date: Tue, 12 Mar 2002 11:48:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: 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 gad 2002/03/12 11:48:44 PST Modified files: usr.bin/login login.c Log: Simple fix so the 'LOGIN FAILURE' message send to syslog will include the correct userid, instead of random garbage. This bug does not exist in -stable. Reviewed by: freebsd-audit Revision Changes Path 1.82 +0 -1 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 Tue Mar 12 11:49:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A1F3D37B405; Tue, 12 Mar 2002 11:49:13 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJnDZ48970; Tue, 12 Mar 2002 11:49:13 -0800 (PST) (envelope-from phantom) Message-Id: <200203121949.g2CJnDZ48970@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:49:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/rwho rwho.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 phantom 2002/03/12 11:49:13 PST Modified files: (Branch: RELENG_4) usr.bin/rwho rwho.c Log: MFC: rev 1.14, don't attempt to parse %c, use nl_langinfo instead Revision Changes Path 1.13.2.1 +9 -3 src/usr.bin/rwho/rwho.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:50: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 4C16B37B405; Tue, 12 Mar 2002 11:50:24 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJoOR49358; Tue, 12 Mar 2002 11:50:24 -0800 (PST) (envelope-from phantom) Message-Id: <200203121950.g2CJoOR49358@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:50:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/systat vmstat.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 phantom 2002/03/12 11:50:24 PST Modified files: (Branch: RELENG_4) usr.bin/systat vmstat.c Log: MFC: rev 1.44, don't attempt to parse %c, use nl_langinfo instead Revision Changes Path 1.38.2.4 +8 -3 src/usr.bin/systat/vmstat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:51: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 BEA4837B481; Tue, 12 Mar 2002 11:51:09 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJp9r49585; Tue, 12 Mar 2002 11:51:09 -0800 (PST) (envelope-from phantom) Message-Id: <200203121951.g2CJp9r49585@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:51:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/time time.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 phantom 2002/03/12 11:51:09 PST Modified files: (Branch: RELENG_4) usr.bin/time time.c Log: MFC: rev 1.18, localize it (LC_NUMERIC) Revision Changes Path 1.14.2.3 +25 -13 src/usr.bin/time/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 Mar 12 11:52: 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 7EC6E37B405; Tue, 12 Mar 2002 11:51:51 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJppS49758; Tue, 12 Mar 2002 11:51:51 -0800 (PST) (envelope-from phantom) Message-Id: <200203121951.g2CJppS49758@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:51:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/w extern.h pr_time.c w.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 phantom 2002/03/12 11:51:51 PST Modified files: (Branch: RELENG_4) usr.bin/w extern.h pr_time.c w.c Log: MFC: use AM/PM time only when available in locale, correctly handle comma as load avg. separator extern.hs rev 1.4 pr_time.c revs 1.15, 1.16, 1.17 w.c revs 1.42, 1.43, 1.44 Revision Changes Path 1.2.6.1 +3 -0 src/usr.bin/w/extern.h 1.14.2.1 +5 -9 src/usr.bin/w/pr_time.c 1.38.2.6 +13 -4 src/usr.bin/w/w.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:54: 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 2A75037B402; Tue, 12 Mar 2002 11:54:00 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJs0F50281; Tue, 12 Mar 2002 11:54:00 -0800 (PST) (envelope-from phantom) Message-Id: <200203121954.g2CJs0F50281@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:54:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/who who.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 phantom 2002/03/12 11:54:00 PST Modified files: (Branch: RELENG_4) usr.bin/who who.c Log: MFC: rev 1.10, don't attempt to parse %c, use nl_langinfo instead Revision Changes Path 1.9.2.2 +9 -3 src/usr.bin/who/who.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:55: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 366C037B416; Tue, 12 Mar 2002 11:55:04 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJt4g50758; Tue, 12 Mar 2002 11:55:04 -0800 (PST) (envelope-from phantom) Message-Id: <200203121955.g2CJt4g50758@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:55:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ac ac.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 phantom 2002/03/12 11:55:04 PST Modified files: (Branch: RELENG_4) usr.sbin/ac ac.c Log: MFC: rev 1.16, don't attempt to parse %c, use nl_langinfo instead Revision Changes Path 1.14.2.2 +7 -2 src/usr.sbin/ac/ac.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:55: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 6E96C37B41B; Tue, 12 Mar 2002 11:55:36 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CJtac50982; Tue, 12 Mar 2002 11:55:36 -0800 (PST) (envelope-from phantom) Message-Id: <200203121955.g2CJtac50982@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 11:55:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pw pw_user.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 phantom 2002/03/12 11:55:36 PST Modified files: (Branch: RELENG_4) usr.sbin/pw pw_user.c Log: MFC: rev 1.46, use %c for expire/change dates Revision Changes Path 1.34.2.11 +2 -2 src/usr.sbin/pw/pw_user.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 11:58:50 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by hub.freebsd.org (Postfix) with ESMTP id 6238C37B419; Tue, 12 Mar 2002 11:58:38 -0800 (PST) Received: from peter3.wemm.org ([12.232.27.13]) by rwcrmhc52.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020312195838.CIDF1147.rwcrmhc52.attbi.com@peter3.wemm.org>; Tue, 12 Mar 2002 19:58:38 +0000 Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id g2CJwbs32451; Tue, 12 Mar 2002 11:58:37 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id C5AFA380A; Tue, 12 Mar 2002 11:58:37 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Dag-Erling Smorgrav Cc: Jake Burkholder , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c In-Reply-To: Date: Tue, 12 Mar 2002 11:58:37 -0800 From: Peter Wemm Message-Id: <20020312195837.C5AFA380A@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: > > I'm not sure that will cut it, the entire structure of the dump has to > > change since phsyical ram will probably not be contiguous and will probably > > not start at address zero either. > > I was thinking a while back (when I made savecore() write sparse > files) that dumpsys() and its minions should be able to write sparse > dumps (to avoid writing out unused areas). I guess I'll just have to > follow up on that thought :) The problem is that it is that dumpsys() does nothing at all with regards to doing the actual dumping. All of the dumping code, accessing physical ram etc, is done in the MI drivers. This is wrong. What needs to happen is that dumpsys() decides on the dump device, checks the slices etc, and then finds three helper functions in the MI drivers. It then should call the MD backend dump driver, and that MD backend should call the driver "prepare for dump" setup function, arrange the mappings, call the driver "dump these pages" function, do all the looping etc, and then finally call the driver "finish the dump" shutdown function. This then means that we have a MD place to do the physical page mapping and controlling the loops etc, as well as controlling what other structured info gets written out. This basically means taking each of the dump routines, splitting it into 4 parts (setup, loop, write pages, finish), and moving the loop part to a MD area (or MI to start with, in dumpsys itself for now, since the drivers are currently MI). That probably means changing devsw from one dump function to three, or changing the meaning of the dump function so that it returns the three pointers somehow. It isn't a small job to do and test. 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 Mar 12 12: 0: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 ACC2737B416; Tue, 12 Mar 2002 12:00:52 -0800 (PST) Received: (from charnier@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CK0qa52229; Tue, 12 Mar 2002 12:00:52 -0800 (PST) (envelope-from charnier) Message-Id: <200203122000.g2CK0qa52229@freefall.freebsd.org> From: Philippe Charnier Date: Tue, 12 Mar 2002 12:00:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/man/apropos apropos.man X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 12:00:52 PST Modified files: gnu/usr.bin/man/apropos apropos.man Log: RETURN VALUES is for sections 2, 3 and 9, but here in section 1 man page, DIAGNOSTICS should be used instead. Reviewed by: wosch Revision Changes Path 1.10 +5 -3 src/gnu/usr.bin/man/apropos/apropos.man To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 12: 9:19 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 450C137B42F; Tue, 12 Mar 2002 12:09:07 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id D96BA5347; Tue, 12 Mar 2002 21:09:05 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Peter Wemm Cc: Jake Burkholder , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/savecore savecore.c References: <20020312195837.C5AFA380A@overcee.wemm.org> From: Dag-Erling Smorgrav Date: 12 Mar 2002 21:09:05 +0100 In-Reply-To: <20020312195837.C5AFA380A@overcee.wemm.org> Message-ID: Lines: 23 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: > The problem is that it is that dumpsys() does nothing at all with regards > to doing the actual dumping. All of the dumping code, accessing physical > ram etc, is done in the MI drivers. I know, I know... > This is wrong. Agreed. > What needs to happen is that [...] Agreed. > It isn't a small job to do and test. No... but it needs to be done, and other platforms will benefit from it as well (faster dumps, for one thing). DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 12:10: 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 261C937B420; Tue, 12 Mar 2002 12:09:30 -0800 (PST) Received: (from phantom@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CK9UV62448; Tue, 12 Mar 2002 12:09:30 -0800 (PST) (envelope-from phantom) Message-Id: <200203122009.g2CK9UV62448@freefall.freebsd.org> From: Alexey Zelkin Date: Tue, 12 Mar 2002 12:09:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/last last.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 phantom 2002/03/12 12:09:30 PST Modified files: (Branch: RELENG_4) usr.bin/last last.c Log: MFC: don't attempt to parse %c (it's actually MFC of r1.16, but diff is different due to effect of MFC r1.23) Revision Changes Path 1.10.6.10 +10 -4 src/usr.bin/last/last.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 12: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 80A6737B405; Tue, 12 Mar 2002 12:25:25 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CKPP966458; Tue, 12 Mar 2002 12:25:25 -0800 (PST) (envelope-from cjc) Message-Id: <200203122025.g2CKPP966458@freefall.freebsd.org> From: "Crist J. Clark" Date: Tue, 12 Mar 2002 12:25:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc.network X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjc 2002/03/12 12:25:25 PST Modified files: etc rc.network Log: The reload of ipf(8) rules should depend on $ipfilter_enable, not $ipfilter_active. $ipfilter_enable is set to "NO" if modules fail to load, and $ipfilter_active can be "YES" when we are not using ipf(8). MFC after: 3 days Revision Changes Path 1.128 +2 -3 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 Tue Mar 12 12: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 2335E37B400; Tue, 12 Mar 2002 12:29:25 -0800 (PST) Received: (from fjoe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CKTPN67558; Tue, 12 Mar 2002 12:29:25 -0800 (PST) (envelope-from fjoe) Message-Id: <200203122029.g2CKTPN67558@freefall.freebsd.org> From: Max Khon Date: Tue, 12 Mar 2002 12:29:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/p5-DBD-Pg 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 fjoe 2002/03/12 12:29:25 PST Modified files: databases/p5-DBD-Pg Makefile Log: - allow this port to be built with PostgreSQL 7.1 port (use pg_config) - grab maintainership Revision Changes Path 1.38 +14 -4 ports/databases/p5-DBD-Pg/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 12:44: 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 4BCCF37B404; Tue, 12 Mar 2002 12:44:04 -0800 (PST) Received: (from wilko@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CKi4671544; Tue, 12 Mar 2002 12:44:04 -0800 (PST) (envelope-from wilko) Message-Id: <200203122044.g2CKi4671544@freefall.freebsd.org> From: Wilko Bulte Date: Tue, 12 Mar 2002 12:44:04 -0800 (PST) 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: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wilko 2002/03/12 12:44:04 PST Modified files: release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: - TGA clarification - TGA2 VGA compatibility clarification - Sound on AS500 Thanks to: "Andrew M. Miklic" (TGA2) Revision Changes Path 1.34 +26 -1 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 Tue Mar 12 12:50: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 2AE6937B416; Tue, 12 Mar 2002 12:50:07 -0800 (PST) Received: (from wilko@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CKo7S72963; Tue, 12 Mar 2002 12:50:07 -0800 (PST) (envelope-from wilko) Message-Id: <200203122050.g2CKo7S72963@freefall.freebsd.org> From: Wilko Bulte Date: Tue, 12 Mar 2002 12:50:07 -0800 (PST) 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: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wilko 2002/03/12 12:50:07 PST Modified files: release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: TGA and TGA2 clarification AS500 onboard sound. Revision Changes Path 1.35 +3 -4 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 Tue Mar 12 12:59: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 0CCD637B422; Tue, 12 Mar 2002 12:59:36 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CKxZC75409; Tue, 12 Mar 2002 12:59:35 -0800 (PST) (envelope-from cjc) Message-Id: <200203122059.g2CKxZC75409@freefall.freebsd.org> From: "Crist J. Clark" Date: Tue, 12 Mar 2002 12:59:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjc 2002/03/12 12:59:35 PST Modified files: etc rc Log: Run dumpon(8) early so crashes during startup can be caught. In addition, take out the checks on the $dumpdev. dumpon(8) behaves well if given a non-existent filename. It gives a nice error message which is better rather than the current silent failure. Reviewed by: des Revision Changes Path 1.298 +18 -15 src/etc/rc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 13:13:53 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id 58D1537B42F; Tue, 12 Mar 2002 13:13:36 -0800 (PST) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.11.6/8.11.6) with ESMTP id g2CLDVJ62409; Tue, 12 Mar 2002 22:13:32 +0100 (CET) Date: Tue, 12 Mar 2002 22:15:46 +0100 (CET) From: Martin Blapp To: Kenneth Culver Cc: Max Khon , Dmitry Sivachenko , "David O'Brien" , Martin Blapp , , Subject: Re: Openoffice workaround to build In-Reply-To: <20020312130724.H3871-100000@alpha.yumyumyum.org> Message-ID: <20020312221417.F2573-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, > Just a question, but I tried to build this, and for some reason, it fails > when it tries to find some executable "xml2cmp" > > Is this a known problem? No. Did you have any special flags in /etc/make.conf ? As I know xml2cmp has problems with some flags. Debug output ? Pointers ? Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 13:23: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from moutvdomng1.kundenserver.de (moutvdomng1.kundenserver.de [212.227.126.181]) by hub.freebsd.org (Postfix) with ESMTP id 8EA0837B41E; Tue, 12 Mar 2002 13:22:24 -0800 (PST) Received: from [195.20.224.219] (helo=mrvdom03.kundenserver.de) by moutvdomng1.kundenserver.de with esmtp (Exim 3.22 #2) id 16ktiw-00074D-00; Tue, 12 Mar 2002 22:22:22 +0100 Received: from [217.1.114.213] (helo=pD90172D5.dip.t-dialin.net) by mrvdom03.kundenserver.de with esmtp (Exim 2.12 #2) id 16ktiw-0006I0-00; Tue, 12 Mar 2002 22:22:22 +0100 Date: Tue, 12 Mar 2002 22:23:00 +0000 (GMT) From: Peter Ulrich Kruppa To: Kenneth Culver Cc: Max Khon , Dmitry Sivachenko , David O'Brien , Martin Blapp , Martin Blapp , , Subject: Re: Openoffice workaround to build In-Reply-To: <20020312130724.H3871-100000@alpha.yumyumyum.org> Message-ID: <20020312222228.L1990-100000@pukruppa.de> 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, 12 Mar 2002, Kenneth Culver wrote: > Just a question, but I tried to build this, and for some reason, it fails > when it tries to find some executable "xml2cmp" > > Is this a known problem? Yes, I have seen that, too. Uli. > Ken > > On Tue, 12 Mar 2002, Max Khon wrote: > > > hi, there! > > > > On Tue, Mar 12, 2002 at 07:11:18AM +0300, Dmitry Sivachenko wrote: > > > > > > > Workaround: > > > > > ----------- > > > > > > > > > > cd /usr/ports/lang/gcc295 > > > > > make install > > > > > cd /usr/local/bin > > > > > ln -s /usr/local/bin/g++295 /usr/local/bin/g++ > > > > > ln -s /usr/local/bin/gcc295 /usr/local/bin/cc > > > > > ln -s /usr/local/bin/gcc295 /usr/local/bin/gcc > > > > > > > > I mentioned the correct way to do this: > > > > > > > > cd /usr/ports/lang/gcc295 > > > > make install > > > > cd /usr/ports/editors/openoffice > > > > make CC=gcc295 CXX=g++295 > > > > > > > > PLEASE NO ONE FOLLOW THE DIRECTIONS FOR MAKING THESE SYMLINKS !! > > > > > > What is the difference between gcc in -STABLE and in ports/lang/gcc295 ? > > > They both seems to be 2.95.3... > > > > AFAIK gcc 2.95.3 from ports uses DWARF2 unwinding info for exception > > handling. gcc from base system still uses sjlj method. > > > > /fjoe > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe cvs-all" in the body of the message > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message > *-----------------------------------* * Peter Ulrich Kruppa * * - Wuppertal - * * Germany * *-----------------------------------* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 13: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 8FA6637B4B5; Tue, 12 Mar 2002 13:23:33 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CLNXu85380; Tue, 12 Mar 2002 13:23:33 -0800 (PST) (envelope-from mbr) Message-Id: <200203122123.g2CLNXu85380@freefall.freebsd.org> From: Martin Blapp Date: Tue, 12 Mar 2002 13:23:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_frontpage 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 mbr 2002/03/12 13:23:33 PST Modified files: www/mod_frontpage pkg-descr Log: Remove old weblinks, since the author has no more time to work it. We moved the development to Sourceforge, so Jean Michel and I can work on it. Anybody interested can join. The new project name is: mirfak Revision Changes Path 1.5 +2 -3 ports/www/mod_frontpage/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 Mar 12 13:24:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by hub.freebsd.org (Postfix) with ESMTP id BAB9037B43E; Tue, 12 Mar 2002 13:23:53 -0800 (PST) Received: (from wkb@localhost) by freebie.xs4all.nl (8.11.6/8.11.6) id g2CLNr317515; Tue, 12 Mar 2002 22:23:53 +0100 (CET) (envelope-from wkb) Date: Tue, 12 Mar 2002 22:23:53 +0100 From: Wilko Bulte To: "Bruce A. Mah" Cc: Udo Erdelhoff , Udo Erdelhoff , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/release/doc/de_DE.ISO8859-1 Makefile src/release/doc/de_DE.ISO8859-1/errata Makefile article.sgml src/release/doc/de_DE.ISO8859-1/hardware Makefile Makefile.inc src/release/doc/de_DE.ISO8859-1/hardware/alpha Makefile article.sgml proc-alpha.sgml ... Message-ID: <20020312222352.B76071@freebie.xs4all.nl> References: <200203121835.g2CIZsH24547@freefall.freebsd.org> <200203121847.g2CIlN926130@bmah.dyndns.org> <20020312195511.H23882@nathan.ruhr.de> <200203121918.g2CJId926479@bmah.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200203121918.g2CJId926479@bmah.dyndns.org>; from bmah@FreeBSD.ORG on Tue, Mar 12, 2002 at 11:18:39AM -0800 X-OS: FreeBSD 4.5-STABLE X-PGP: finger wilko@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 Tue, Mar 12, 2002 at 11:18:39AM -0800, Bruce A. Mah wrote: > If memory serves me right, Udo Erdelhoff wrote: > > On Tue, Mar 12, 2002 at 10:47:23AM -0800, Bruce A. Mah wrote: > > > Yaaay! > > > > I hope this is a 'great stuff' Yaaay and not an 'Are you insane?' one. > > The former, but I bet if I had to read all of the release documentation > and do a translation of it, I'd probably be insane when I was done. :-) Yep.. same here. I just read a bit of the translated proc-alpha and it looks great. Wilko -- | / o / /_ _ wilko@FreeBSD.org |/|/ / / /( (_) Bulte Arnhem, the Netherlands To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 13:26: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from nala.dohd.org (a29150.upc-a.chello.nl [62.163.29.150]) by hub.freebsd.org (Postfix) with ESMTP id 324AF37B405; Tue, 12 Mar 2002 13:25:57 -0800 (PST) Received: by nala.dohd.org (Postfix, from userid 1008) id C2B95D916; Tue, 12 Mar 2002 22:25:55 +0100 (MET) Date: Tue, 12 Mar 2002 22:25:55 +0100 From: Mark Huizer To: Ernst de Haan Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/java/jdk13/files patch-common::Release.gmk Message-ID: <20020312212555.GA72531@eeyore.local.dohd.org> References: <200203111036.g2BAaR040250@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203111036.g2BAaR040250@freefall.freebsd.org> User-Agent: Mutt/1.3.24i Sender: owner-cvs-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, Mar 11, 2002 at 02:36:27AM -0800, Ernst de Haan wrote: > znerd 2002/03/11 02:36:27 PST > > Added files: > java/jdk13/files patch-common::Release.gmk > Log: > Fixes the problem that the source JAR is too small. > Shouldn't a bugfix give a portversion inc? So people get the bugfix installed? Mark -- Nice testing in little China... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 13:27: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 E82AC37B416; Tue, 12 Mar 2002 13:27:04 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CLR4I86485; Tue, 12 Mar 2002 13:27:04 -0800 (PST) (envelope-from ue) Message-Id: <200203122127.g2CLR4I86485@freefall.freebsd.org> From: Udo Erdelhoff Date: Tue, 12 Mar 2002 13:27:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1 Makefile src/release/doc/de_DE.ISO8859-1/errata Makefile article.sgml src/release/doc/de_DE.ISO8859-1/hardware Makefile Makefile.inc src/release/doc/de_DE.ISO8859-1/hardware/alpha Makefile article.sgml 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/03/12 13:27:04 PST Added files: (Branch: RELENG_4) release/doc/de_DE.ISO8859-1 Makefile release/doc/de_DE.ISO8859-1/errata Makefile article.sgml release/doc/de_DE.ISO8859-1/hardware Makefile Makefile.inc release/doc/de_DE.ISO8859-1/hardware/alpha Makefile article.sgml proc-alpha.sgml release/doc/de_DE.ISO8859-1/hardware/common artheader.sgml config.sgml dev.sgml hw.ent intro.sgml release/doc/de_DE.ISO8859-1/hardware/i386 Makefile article.sgml proc-i386.sgml release/doc/de_DE.ISO8859-1/installation Makefile Makefile.inc release/doc/de_DE.ISO8859-1/installation/alpha Makefile article.sgml release/doc/de_DE.ISO8859-1/installation/common abstract.sgml artheader.sgml install.ent install.sgml layout.sgml trouble.sgml upgrade.sgml release/doc/de_DE.ISO8859-1/installation/i386 Makefile article.sgml release/doc/de_DE.ISO8859-1/readme Makefile article.sgml release/doc/de_DE.ISO8859-1/relnotes Makefile Makefile.inc release/doc/de_DE.ISO8859-1/relnotes/alpha Makefile article.sgml release/doc/de_DE.ISO8859-1/relnotes/common new.sgml relnotes.ent release/doc/de_DE.ISO8859-1/relnotes/i386 Makefile article.sgml release/doc/de_DE.ISO8859-1/share/sgml catalog release.dsl release.ent Log: And here is the other half of the reason why I a) have bloody fingers b) need a new keyboard c) have this slightly insanse look For the humor impared: RELENG_4 Release Notes, German version Revision Changes Path 1.1.2.1 +16 -0 src/release/doc/de_DE.ISO8859-1/Makefile (new) 1.1.2.1 +22 -0 src/release/doc/de_DE.ISO8859-1/errata/Makefile (new) 1.1.2.1 +280 -0 src/release/doc/de_DE.ISO8859-1/errata/article.sgml (new) 1.1.2.1 +12 -0 src/release/doc/de_DE.ISO8859-1/hardware/Makefile (new) 1.1.2.1 +11 -0 src/release/doc/de_DE.ISO8859-1/hardware/Makefile.inc (new) 1.1.2.1 +24 -0 src/release/doc/de_DE.ISO8859-1/hardware/alpha/Makefile (new) 1.1.2.1 +33 -0 src/release/doc/de_DE.ISO8859-1/hardware/alpha/article.sgml (new) 1.1.2.1 +4057 -0 src/release/doc/de_DE.ISO8859-1/hardware/alpha/proc-alpha.sgml (new) 1.1.2.1 +30 -0 src/release/doc/de_DE.ISO8859-1/hardware/common/artheader.sgml (new) 1.1.2.1 +1133 -0 src/release/doc/de_DE.ISO8859-1/hardware/common/config.sgml (new) 1.1.2.1 +3061 -0 src/release/doc/de_DE.ISO8859-1/hardware/common/dev.sgml (new) 1.1.2.1 +18 -0 src/release/doc/de_DE.ISO8859-1/hardware/common/hw.ent (new) 1.1.2.1 +26 -0 src/release/doc/de_DE.ISO8859-1/hardware/common/intro.sgml (new) 1.1.2.1 +24 -0 src/release/doc/de_DE.ISO8859-1/hardware/i386/Makefile (new) 1.1.2.1 +31 -0 src/release/doc/de_DE.ISO8859-1/hardware/i386/article.sgml (new) 1.1.2.1 +52 -0 src/release/doc/de_DE.ISO8859-1/hardware/i386/proc-i386.sgml (new) 1.1.2.1 +12 -0 src/release/doc/de_DE.ISO8859-1/installation/Makefile (new) 1.1.2.1 +10 -0 src/release/doc/de_DE.ISO8859-1/installation/Makefile.inc (new) 1.1.2.1 +23 -0 src/release/doc/de_DE.ISO8859-1/installation/alpha/Makefile (new) 1.1.2.1 +32 -0 src/release/doc/de_DE.ISO8859-1/installation/alpha/article.sgml (new) 1.1.2.1 +14 -0 src/release/doc/de_DE.ISO8859-1/installation/common/abstract.sgml (new) 1.1.2.1 +26 -0 src/release/doc/de_DE.ISO8859-1/installation/common/artheader.sgml (new) 1.1.2.1 +20 -0 src/release/doc/de_DE.ISO8859-1/installation/common/install.ent (new) 1.1.2.1 +1046 -0 src/release/doc/de_DE.ISO8859-1/installation/common/install.sgml (new) 1.1.2.1 +178 -0 src/release/doc/de_DE.ISO8859-1/installation/common/layout.sgml (new) 1.1.2.1 +642 -0 src/release/doc/de_DE.ISO8859-1/installation/common/trouble.sgml (new) 1.1.2.1 +211 -0 src/release/doc/de_DE.ISO8859-1/installation/common/upgrade.sgml (new) 1.1.2.1 +23 -0 src/release/doc/de_DE.ISO8859-1/installation/i386/Makefile (new) 1.1.2.1 +33 -0 src/release/doc/de_DE.ISO8859-1/installation/i386/article.sgml (new) 1.1.2.1 +27 -0 src/release/doc/de_DE.ISO8859-1/readme/Makefile (new) 1.1.2.1 +470 -0 src/release/doc/de_DE.ISO8859-1/readme/article.sgml (new) 1.1.2.1 +12 -0 src/release/doc/de_DE.ISO8859-1/relnotes/Makefile (new) 1.1.2.1 +11 -0 src/release/doc/de_DE.ISO8859-1/relnotes/Makefile.inc (new) 1.1.2.1 +21 -0 src/release/doc/de_DE.ISO8859-1/relnotes/alpha/Makefile (new) 1.1.2.1 +28 -0 src/release/doc/de_DE.ISO8859-1/relnotes/alpha/article.sgml (new) 1.1.2.1 +387 -0 src/release/doc/de_DE.ISO8859-1/relnotes/common/new.sgml (new) 1.1.2.1 +21 -0 src/release/doc/de_DE.ISO8859-1/relnotes/common/relnotes.ent (new) 1.1.2.1 +21 -0 src/release/doc/de_DE.ISO8859-1/relnotes/i386/Makefile (new) 1.1.2.1 +28 -0 src/release/doc/de_DE.ISO8859-1/relnotes/i386/article.sgml (new) 1.1.2.1 +15 -0 src/release/doc/de_DE.ISO8859-1/share/sgml/catalog (new) 1.1.2.1 +84 -0 src/release/doc/de_DE.ISO8859-1/share/sgml/release.dsl (new) 1.1.2.1 +39 -0 src/release/doc/de_DE.ISO8859-1/share/sgml/release.ent (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 13:28:12 2002 Delivered-To: cvs-all@freebsd.org Received: from nala.dohd.org (a29150.upc-a.chello.nl [62.163.29.150]) by hub.freebsd.org (Postfix) with ESMTP id 05FC737B42C; Tue, 12 Mar 2002 13:27:26 -0800 (PST) Received: by nala.dohd.org (Postfix, from userid 1008) id 12F03D916; Tue, 12 Mar 2002 22:27:26 +0100 (MET) Date: Tue, 12 Mar 2002 22:27:25 +0100 From: Mark Huizer To: Mark Huizer Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/java/jdk13/files patch-common::Release.gmk Message-ID: <20020312212725.GB72531@eeyore.local.dohd.org> References: <200203111036.g2BAaR040250@freefall.freebsd.org> <20020312212555.GA72531@eeyore.local.dohd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020312212555.GA72531@eeyore.local.dohd.org> User-Agent: Mutt/1.3.24i Sender: owner-cvs-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, Mar 12, 2002 at 10:25:55PM +0100, Mark Huizer wrote: > On Mon, Mar 11, 2002 at 02:36:27AM -0800, Ernst de Haan wrote: > > znerd 2002/03/11 02:36:27 PST > > > > Added files: > > java/jdk13/files patch-common::Release.gmk > > Log: > > Fixes the problem that the source JAR is too small. > > > Shouldn't a bugfix give a portversion inc? So people get the bugfix > installed? > > Mark Oeps, ignore! I should read first :-) Then ask -- Nice testing in little China... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 13:42:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6DA4437B400; Tue, 12 Mar 2002 13:42:47 -0800 (PST) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CLglV88917; Tue, 12 Mar 2002 13:42:47 -0800 (PST) (envelope-from znerd) Message-Id: <200203122142.g2CLglV88917@freefall.freebsd.org> From: Ernst de Haan Date: Tue, 12 Mar 2002 13:42:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/orion/files orionctl.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/03/12 13:42:47 PST Modified files: www/orion/files orionctl.1 Log: Fixed the description for the /var/run/orion.pid file. It is now in accordance with reality. :-) Revision Changes Path 1.3 +3 -3 ports/www/orion/files/orionctl.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 13:44: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 6252B37B400; Tue, 12 Mar 2002 13:44:33 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CLiXd89220; Tue, 12 Mar 2002 13:44:33 -0800 (PST) (envelope-from rwatson) Message-Id: <200203122144.g2CLiXd89220@freefall.freebsd.org> From: Robert Watson Date: Tue, 12 Mar 2002 13:44:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/periodic/security 800.loginfail X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 13:44:33 PST Modified files: etc/periodic/security 800.loginfail Log: No need to explicitly check for both cases when using grep -i. Revision Changes Path 1.3 +2 -2 src/etc/periodic/security/800.loginfail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 13:47: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 5775F37B417; Tue, 12 Mar 2002 13:47:31 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CLlVC89832; Tue, 12 Mar 2002 13:47:31 -0800 (PST) (envelope-from rwatson) Message-Id: <200203122147.g2CLlVC89832@freefall.freebsd.org> From: Robert Watson Date: Tue, 12 Mar 2002 13:47:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc 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 rwatson 2002/03/12 13:47:31 PST Modified files: etc rc etc/defaults rc.conf Log: Allow LOMAC to be loaded as part of the boot scripts using "lomac_enable" setting in rc.conf. Extracted from the still clammy hands of: green Sponsored by: DARPA, NAI Labs Revision Changes Path 1.140 +2 -1 src/etc/defaults/rc.conf 1.299 +8 -1 src/etc/rc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 13:56: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 7997E37B404; Tue, 12 Mar 2002 13:56:07 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CLu7N91240; Tue, 12 Mar 2002 13:56:07 -0800 (PST) (envelope-from sobomax) Message-Id: <200203122156.g2CLu7N91240@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 12 Mar 2002 13:56:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/ORBit Makefile distinfo ports/devel/ORBit/files patch-ae patch-configure.in patch-libIDL::ltmain.sh patch-ltmain.sh patch-src::IIOP::giop-msg-buffer.c patch-src::ORBitutil::compat.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 13:56:07 PST Modified files: devel/ORBit Makefile distinfo devel/ORBit/files patch-ae patch-configure.in patch-libIDL::ltmain.sh patch-ltmain.sh patch-src::IIOP::giop-msg-buffer.c Removed files: devel/ORBit/files patch-src::ORBitutil::compat.c Log: Update to 0.5.14. Revision Changes Path 1.60 +4 -2 ports/devel/ORBit/Makefile 1.23 +1 -1 ports/devel/ORBit/distinfo 1.7 +50 -56 ports/devel/ORBit/files/patch-ae 1.4 +4 -5 ports/devel/ORBit/files/patch-configure.in 1.5 +23 -13 ports/devel/ORBit/files/patch-libIDL::ltmain.sh 1.7 +23 -13 ports/devel/ORBit/files/patch-ltmain.sh 1.5 +7 -26 ports/devel/ORBit/files/patch-src::IIOP::giop-msg-buffer.c 1.4 +0 -47 ports/devel/ORBit/files/patch-src::ORBitutil::compat.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 Mar 12 13: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 4A55A37B402; Tue, 12 Mar 2002 13:57:59 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CLvx991683; Tue, 12 Mar 2002 13:57:59 -0800 (PST) (envelope-from pat) Message-Id: <200203122157.g2CLvx991683@freefall.freebsd.org> From: Patrick Li Date: Tue, 12 Mar 2002 13:57:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/fluxbox Makefile ports/x11-wm/fluxbox/files patch-src::Screen.cc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/12 13:57:59 PST Modified files: x11-wm/fluxbox Makefile Added files: x11-wm/fluxbox/files patch-src::Screen.cc Log: Add patch released by author that fixes the withdrawn app bug and bump PORTREVISION. PR: 35814 Submitted by: maintainer Revision Changes Path 1.5 +1 -0 ports/x11-wm/fluxbox/Makefile 1.1 +13 -0 ports/x11-wm/fluxbox/files/patch-src::Screen.cc (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 14: 3:22 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 BEDF537B404; Tue, 12 Mar 2002 14:03:15 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 69CA95347; Tue, 12 Mar 2002 23:03:14 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: "Crist J. Clark" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc References: <200203122059.g2CKxZC75409@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 12 Mar 2002 23:03:13 +0100 In-Reply-To: <200203122059.g2CKxZC75409@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 "Crist J. Clark" writes: > Log: > Run dumpon(8) early so crashes during startup can be caught. In > addition, take out the checks on the $dumpdev. dumpon(8) behaves well > if given a non-existent filename. It gives a nice error message which > is better rather than the current silent failure. Thanks! MFC? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 14:13: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 66B3437B400; Tue, 12 Mar 2002 14:13:23 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CMDNC97533; Tue, 12 Mar 2002 14:13:23 -0800 (PST) (envelope-from pat) Message-Id: <200203122213.g2CMDNC97533@freefall.freebsd.org> From: Patrick Li Date: Tue, 12 Mar 2002 14:13:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/sylpheed-claws Makefile distinfo pkg-descr pkg-plist ports/mail/sylpheed-claws/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/03/12 14:13:23 PST Modified files: mail/sylpheed-claws Makefile distinfo pkg-descr pkg-plist mail/sylpheed-claws/files patch-configure Log: Update to 0.7.4 PR: 35825 Submitted by: maintainer Revision Changes Path 1.7 +12 -2 ports/mail/sylpheed-claws/Makefile 1.5 +2 -1 ports/mail/sylpheed-claws/distinfo 1.4 +7 -4 ports/mail/sylpheed-claws/files/patch-configure 1.4 +2 -1 ports/mail/sylpheed-claws/pkg-descr 1.4 +181 -53 ports/mail/sylpheed-claws/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 Mar 12 14:18: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 AFB0F37B400; Tue, 12 Mar 2002 14:18:23 -0800 (PST) Received: (from znerd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CMINa98294; Tue, 12 Mar 2002 14:18:23 -0800 (PST) (envelope-from znerd) Message-Id: <200203122218.g2CMINa98294@freefall.freebsd.org> From: Ernst de Haan Date: Tue, 12 Mar 2002 14:18:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/orion 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 znerd 2002/03/12 14:18:23 PST Modified files: www/orion Makefile pkg-plist Log: o Fixed potential security problem, by leaving the default accounts disabled. o Supporting WITH_JIKES=yes (lower-case) o Displaying stdout and stderr logfile settings during pre-install. o Displaying verbose messages instead of the commands being executed. o Deleting stdout and stderr logfiles at deinstall (added them to the pkg-plist). o Showing message "If a user should be able to use ${CONTROL_SCRIPT_NAME}, put it in the group ${GROUP}." at post-install. o Some small improvements to the Makefile. o Bumped PORTREVISION to 8. Revision Changes Path 1.28 +77 -67 ports/www/orion/Makefile 1.11 +2 -0 ports/www/orion/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 14:27:33 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A10237B402; Tue, 12 Mar 2002 14:27:30 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CMRUL99348; Tue, 12 Mar 2002 14:27:30 -0800 (PST) (envelope-from pat) Message-Id: <200203122227.g2CMRUL99348@freefall.freebsd.org> From: Patrick Li Date: Tue, 12 Mar 2002 14:27:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/twoftpd Makefile ports/ftp/twoftpd/files patch-socket::cork.c patch-socket::uncork.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 14:27:30 PST Modified files: ftp/twoftpd Makefile Added files: ftp/twoftpd/files patch-socket::cork.c patch-socket::uncork.c Log: Add patch to allow twoftpd compile again. There is no such socket level SOL_TCP and sys/types.h should be included first. PR: 35826 Submitted by: maintainer Revision Changes Path 1.3 +1 -0 ports/ftp/twoftpd/Makefile 1.1 +26 -0 ports/ftp/twoftpd/files/patch-socket::cork.c (new) 1.1 +29 -0 ports/ftp/twoftpd/files/patch-socket::uncork.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 Mar 12 14:37: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 EEF6937B404; Tue, 12 Mar 2002 14:37:25 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CMbPg00822; Tue, 12 Mar 2002 14:37:25 -0800 (PST) (envelope-from pat) Message-Id: <200203122237.g2CMbPg00822@freefall.freebsd.org> From: Patrick Li Date: Tue, 12 Mar 2002 14:37:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/ipa 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/03/12 14:37:25 PST Modified files: sysutils/ipa Makefile distinfo Log: Update to 1.2.4 PR: 35829 Submitted by: maintainer Revision Changes Path 1.17 +1 -1 ports/sysutils/ipa/Makefile 1.15 +1 -1 ports/sysutils/ipa/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 14:38: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 848A037B436; Tue, 12 Mar 2002 14:37:52 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CMbqu00944; Tue, 12 Mar 2002 14:37:52 -0800 (PST) (envelope-from ade) Message-Id: <200203122237.g2CMbqu00944@freefall.freebsd.org> From: Ade Lovett Date: Tue, 12 Mar 2002 14:37:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/pkgconfig Makefile ports/devel/pkgconfig/files patch-pkg.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 14:37:52 PST Modified files: devel/pkgconfig Makefile devel/pkgconfig/files patch-pkg.c Log: On -stable anyway, there is a problem getting "other" libs and cflags from dependency packages (for example, from gthread-2.0). This prevents ports like ORbit2 from compiling. It seems to be a pretty serious oversight on the pkgconfig folks, so I'm going to submit this patch to them. Basically, this patch adds recursive scanning capabilities to the other_cflags and other_libs functions. PR: 35831 Submitted by: Joe Clarke Revision Changes Path 1.11 +1 -0 ports/devel/pkgconfig/Makefile 1.4 +50 -11 ports/devel/pkgconfig/files/patch-pkg.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 14:39: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 8CCEE37B47F; Tue, 12 Mar 2002 14:38:47 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CMclV01212; Tue, 12 Mar 2002 14:38:47 -0800 (PST) (envelope-from knu) Message-Id: <200203122238.g2CMclV01212@freefall.freebsd.org> From: Akinori MUSHA Date: Tue, 12 Mar 2002 14:38:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gd Makefile ports/graphics/gd2 Makefile ports/graphics/libwmf Makefile 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 knu 2002/03/12 14:38:47 PST Modified files: graphics/gd Makefile graphics/gd2 Makefile graphics/libwmf Makefile graphics/ImageMagick Makefile Log: Bump PORTREVISION after the freetype2 shlib major update. Revision Changes Path 1.134 +1 -0 ports/graphics/ImageMagick/Makefile 1.50 +1 -1 ports/graphics/gd/Makefile 1.50 +1 -1 ports/graphics/gd2/Makefile 1.26 +1 -0 ports/graphics/libwmf/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 14:40:58 2002 Delivered-To: cvs-all@freebsd.org Received: from mailhub.yumyumyum.org (dsl092-171-091.wdc1.dsl.speakeasy.net [66.92.171.91]) by hub.freebsd.org (Postfix) with SMTP id 83DB337B4C3 for ; Tue, 12 Mar 2002 14:40:11 -0800 (PST) Received: (qmail 5804 invoked from network); 12 Mar 2002 22:40:09 -0000 Received: from dsl092-171-091.wdc1.dsl.speakeasy.net (66.92.171.91) by dsl092-171-091.wdc1.dsl.speakeasy.net with SMTP; 12 Mar 2002 22:40:09 -0000 Date: Tue, 12 Mar 2002 17:40:09 -0500 (EST) From: Kenneth Culver To: Martin Blapp Cc: Max Khon , Dmitry Sivachenko , David O'Brien , Martin Blapp , , Subject: Re: Openoffice workaround to build In-Reply-To: <20020312221417.F2573-100000@levais.imp.ch> Message-ID: <20020312173901.K5761-100000@alpha.yumyumyum.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 > Hi, > > > Just a question, but I tried to build this, and for some reason, it fails > > when it tries to find some executable "xml2cmp" > > > > Is this a known problem? > > No. Did you have any special flags in /etc/make.conf ? As I know xml2cmp > has problems with some flags. > I don't have anything in make.conf at all actually, I'll try building again and redirect the output of the build to a file, and post the file somewhere so you can see it... Ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 14:41: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6287E37B4D0; Tue, 12 Mar 2002 14:40:16 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CMeGM01636; Tue, 12 Mar 2002 14:40:16 -0800 (PST) (envelope-from pat) Message-Id: <200203122240.g2CMeGM01636@freefall.freebsd.org> From: Patrick Li Date: Tue, 12 Mar 2002 14:40:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/oops 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/03/12 14:40:16 PST Modified files: www/oops Makefile distinfo Log: Update to 1.5.22.20020312 PR: 35824 Submitted by: maintainer Revision Changes Path 1.12 +9 -1 ports/www/oops/Makefile 1.9 +1 -0 ports/www/oops/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 14:45:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6D79137B402; Tue, 12 Mar 2002 14:45:45 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CMjj102546; Tue, 12 Mar 2002 14:45:45 -0800 (PST) (envelope-from knu) Message-Id: <200203122245.g2CMjj102546@freefall.freebsd.org> From: Akinori MUSHA Date: Tue, 12 Mar 2002 14:45:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/ruby-gd 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/03/12 14:45:45 PST Modified files: graphics/ruby-gd Makefile Log: Bump PORTREVISION after a libfreetype2 major bump. Move the print/freetype2 dependency from BUILD_DEPENDS to LIB_DEPENDS while I'm here. Revision Changes Path 1.12 +4 -4 ports/graphics/ruby-gd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 14:51: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 6A84A37B400; Tue, 12 Mar 2002 14:51:02 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CMp2q03301; Tue, 12 Mar 2002 14:51:02 -0800 (PST) (envelope-from sobomax) Message-Id: <200203122251.g2CMp2q03301@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 12 Mar 2002 14:51:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/gnumeric Makefile distinfo pkg-plist ports/math/gnumeric/files patch-doc::Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/12 14:51:01 PST Modified files: math/gnumeric Makefile distinfo pkg-plist Added files: math/gnumeric/files patch-doc::Makefile.in Log: Update to 1.0.5. Revision Changes Path 1.80 +2 -2 ports/math/gnumeric/Makefile 1.45 +1 -1 ports/math/gnumeric/distinfo 1.1 +14 -0 ports/math/gnumeric/files/patch-doc::Makefile.in (new) 1.43 +1 -0 ports/math/gnumeric/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 14:54: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 2109537B402; Tue, 12 Mar 2002 14:54:13 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CMsDP04282; Tue, 12 Mar 2002 14:54:13 -0800 (PST) (envelope-from knu) Message-Id: <200203122254.g2CMsDP04282@freefall.freebsd.org> From: Akinori MUSHA Date: Tue, 12 Mar 2002 14:54:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/autotrace Makefile ports/graphics/graphviz Makefile ports/graphics/libafterimage Makefile ports/graphics/librsvg Makefile ports/graphics/sdl_ttf 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/03/12 14:54:13 PST Modified files: graphics/autotrace Makefile graphics/graphviz Makefile graphics/libafterimage Makefile graphics/librsvg Makefile graphics/sdl_ttf Makefile Log: Bump PORTREVISION after the freetype2 shlib major update. Revision Changes Path 1.10 +1 -0 ports/graphics/autotrace/Makefile 1.33 +1 -1 ports/graphics/graphviz/Makefile 1.6 +1 -0 ports/graphics/libafterimage/Makefile 1.10 +1 -0 ports/graphics/librsvg/Makefile 1.12 +1 -0 ports/graphics/sdl_ttf/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 15: 0: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 6DA7B37B417; Tue, 12 Mar 2002 14:58:40 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CMweX05075; Tue, 12 Mar 2002 14:58:40 -0800 (PST) (envelope-from knu) Message-Id: <200203122258.g2CMweX05075@freefall.freebsd.org> From: Akinori MUSHA Date: Tue, 12 Mar 2002 14:58:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/grass Makefile ports/print/pfaedit Makefile ports/textproc/p5-XML-LibRSVG Makefile ports/x11/XFree86-4-libraries 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/03/12 14:58:40 PST Modified files: databases/grass Makefile print/pfaedit Makefile textproc/p5-XML-LibRSVG Makefile x11/XFree86-4-libraries Makefile Log: Bump PORTREVISION after the freetype2 shlib major update. Revision Changes Path 1.10 +1 -0 ports/databases/grass/Makefile 1.11 +1 -0 ports/print/pfaedit/Makefile 1.4 +1 -0 ports/textproc/p5-XML-LibRSVG/Makefile 1.102 +1 -1 ports/x11/XFree86-4-libraries/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 15: 2: 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 4161137B419; Tue, 12 Mar 2002 15:01:55 -0800 (PST) Received: (from fjoe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CN1tB05571; Tue, 12 Mar 2002 15:01:55 -0800 (PST) (envelope-from fjoe) Message-Id: <200203122301.g2CN1tB05571@freefall.freebsd.org> From: Max Khon Date: Tue, 12 Mar 2002 15:01:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/licq-devel Makefile.inc distinfo pkg-plist ports/net/licq-qt-gui pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG fjoe 2002/03/12 15:01:55 PST Modified files: net/licq-devel Makefile.inc distinfo pkg-plist net/licq-qt-gui pkg-plist Log: update licq-devel port to 12 Mar 2002 CVS snapshot Revision Changes Path 1.5 +2 -2 ports/net/licq-devel/Makefile.inc 1.14 +1 -1 ports/net/licq-devel/distinfo 1.16 +0 -1 ports/net/licq-devel/pkg-plist 1.5 +0 -1 ports/net/licq-qt-gui/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 15: 7: 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 A0CDA37B404; Tue, 12 Mar 2002 15:06:53 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CN6rD09918; Tue, 12 Mar 2002 15:06:53 -0800 (PST) (envelope-from knu) Message-Id: <200203122306.g2CN6rD09918@freefall.freebsd.org> From: Akinori MUSHA Date: Tue, 12 Mar 2002 15:06:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/ruby-ldap 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/03/12 15:06:53 PST Modified files: net/ruby-ldap Makefile distinfo pkg-plist Log: Update to 0.6.0. Revision Changes Path 1.17 +1 -1 ports/net/ruby-ldap/Makefile 1.14 +1 -1 ports/net/ruby-ldap/distinfo 1.11 +4 -0 ports/net/ruby-ldap/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 Mar 12 15:12: 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 299B337B416; Tue, 12 Mar 2002 15:12:04 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CNC4q10565; Tue, 12 Mar 2002 15:12:04 -0800 (PST) (envelope-from knu) Message-Id: <200203122312.g2CNC4q10565@freefall.freebsd.org> From: Akinori MUSHA Date: Tue, 12 Mar 2002 15:12:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/biology/ruby-bio 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/03/12 15:12:04 PST Modified files: biology/ruby-bio Makefile distinfo pkg-plist Log: Update to 0.3.5. Revision Changes Path 1.4 +2 -2 ports/biology/ruby-bio/Makefile 1.4 +1 -1 ports/biology/ruby-bio/distinfo 1.4 +10 -0 ports/biology/ruby-bio/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 Mar 12 15:15: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 2C18937B404; Tue, 12 Mar 2002 15:15:51 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CNFpX11113; Tue, 12 Mar 2002 15:15:51 -0800 (PST) (envelope-from knu) Message-Id: <200203122315.g2CNFpX11113@freefall.freebsd.org> From: Akinori MUSHA Date: Tue, 12 Mar 2002 15:15:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/ruby-erb 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/03/12 15:15:51 PST Modified files: textproc/ruby-erb Makefile distinfo pkg-plist Log: Update to 1.4.0. Revision Changes Path 1.2 +5 -9 ports/textproc/ruby-erb/Makefile 1.2 +1 -1 ports/textproc/ruby-erb/distinfo 1.2 +2 -8 ports/textproc/ruby-erb/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 Mar 12 15:20: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 A153737B405; Tue, 12 Mar 2002 15:20:08 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2CNK8311662; Tue, 12 Mar 2002 15:20:08 -0800 (PST) (envelope-from knu) Message-Id: <200203122320.g2CNK8311662@freefall.freebsd.org> From: Akinori MUSHA Date: Tue, 12 Mar 2002 15:20:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/ruby-fltk 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/03/12 15:20:08 PST Modified files: x11-toolkits/ruby-fltk Makefile distinfo pkg-plist Log: Update to 0.6.0. Revision Changes Path 1.13 +1 -1 ports/x11-toolkits/ruby-fltk/Makefile 1.8 +1 -1 ports/x11-toolkits/ruby-fltk/distinfo 1.9 +1 -0 ports/x11-toolkits/ruby-fltk/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 Mar 12 16: 4: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 DED5337B405; Tue, 12 Mar 2002 16:04:53 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D04rR17728; Tue, 12 Mar 2002 16:04:53 -0800 (PST) (envelope-from rwatson) Message-Id: <200203130004.g2D04rR17728@freefall.freebsd.org> From: Robert Watson Date: Tue, 12 Mar 2002 16:04:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 bpf.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 rwatson 2002/03/12 16:04:53 PST Modified files: share/man/man4 bpf.4 Log: Add a bugs notice indicating that the SEESENT flag may behave incorrectly on interfaces with hardware loopback, and point-to-point interfaces (unclear why that is, may need to be tracked down). Revision Changes Path 1.35 +6 -1 src/share/man/man4/bpf.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 16: 5:56 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 984B737B405; Tue, 12 Mar 2002 16:05:50 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D05oq21477; Tue, 12 Mar 2002 16:05:50 -0800 (PST) (envelope-from ue) Message-Id: <200203130005.g2D05oq21477@freefall.freebsd.org> From: Udo Erdelhoff Date: Tue, 12 Mar 2002 16:05:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/share/images/callouts 1.png 10.png 2.png 3.png 4.png 5.png 6.png 7.png 8.png 9.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 ue 2002/03/12 16:05:50 PST Added files: de_DE.ISO8859-1/share/images/callouts 1.png 10.png 2.png 3.png 4.png 5.png 6.png 7.png 8.png 9.png Log: Add callout iamges Revision Changes Path 1.1 +3 -0 doc/de_DE.ISO8859-1/share/images/callouts/1.png (new) 1.1 +3 -0 doc/de_DE.ISO8859-1/share/images/callouts/10.png (new) 1.1 +4 -0 doc/de_DE.ISO8859-1/share/images/callouts/2.png (new) 1.1 +6 -0 doc/de_DE.ISO8859-1/share/images/callouts/3.png (new) 1.1 +4 -0 doc/de_DE.ISO8859-1/share/images/callouts/4.png (new) 1.1 +4 -0 doc/de_DE.ISO8859-1/share/images/callouts/5.png (new) 1.1 +6 -0 doc/de_DE.ISO8859-1/share/images/callouts/6.png (new) 1.1 +4 -0 doc/de_DE.ISO8859-1/share/images/callouts/7.png (new) 1.1 +5 -0 doc/de_DE.ISO8859-1/share/images/callouts/8.png (new) 1.1 +4 -0 doc/de_DE.ISO8859-1/share/images/callouts/9.png (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 16:25: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 C10E837B402; Tue, 12 Mar 2002 16:25:26 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D0PQ424359; Tue, 12 Mar 2002 16:25:26 -0800 (PST) (envelope-from ade) Message-Id: <200203130025.g2D0PQ424359@freefall.freebsd.org> From: Ade Lovett Date: Tue, 12 Mar 2002 16:25:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/libesmtp Makefile distinfo ports/mail/libesmtp/files patch-ntlm::ntlmstruct.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 16:25:26 PST Modified files: mail/libesmtp Makefile distinfo Removed files: mail/libesmtp/files patch-ntlm::ntlmstruct.c Log: Update to 0.8.11 PR: 35583 Submitted by: MAINTAINER Revision Changes Path 1.16 +1 -1 ports/mail/libesmtp/Makefile 1.9 +1 -1 ports/mail/libesmtp/distinfo 1.2 +0 -14 ports/mail/libesmtp/files/patch-ntlm::ntlmstruct.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 Mar 12 16:27: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 41DC337B405; Tue, 12 Mar 2002 16:27:30 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D0RU024798; Tue, 12 Mar 2002 16:27:30 -0800 (PST) (envelope-from ade) Message-Id: <200203130027.g2D0RU024798@freefall.freebsd.org> From: Ade Lovett Date: Tue, 12 Mar 2002 16:27:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_tsunami Makefile distinfo pkg-descr pkg-message pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ade 2002/03/12 16:27:30 PST Modified files: www/mod_tsunami Makefile distinfo pkg-descr pkg-plist Added files: www/mod_tsunami pkg-message Log: Update to 1.1 Submitter takes MAINTAINERSHIP from ports@FreeBSD.org PR: 35627 Submitted by: Alex Dupre (new MAINTAINER) Revision Changes Path 1.2 +15 -4 ports/www/mod_tsunami/Makefile 1.2 +1 -1 ports/www/mod_tsunami/distinfo 1.2 +3 -0 ports/www/mod_tsunami/pkg-descr 1.1 +13 -0 ports/www/mod_tsunami/pkg-message (new) 1.2 +6 -0 ports/www/mod_tsunami/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 Mar 12 16:30: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 B671937B400; Tue, 12 Mar 2002 16:30:40 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D0UeP25270; Tue, 12 Mar 2002 16:30:40 -0800 (PST) (envelope-from ade) Message-Id: <200203130030.g2D0UeP25270@freefall.freebsd.org> From: Ade Lovett Date: Tue, 12 Mar 2002 16:30:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/sword-modules 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/03/12 16:30:40 PST Modified files: misc/sword-modules Makefile Log: MAINTAINER has check module licenses, which are restrictive enough to imply NO_CDROM and NO_PACKAGE PR: 35626 Submitted by: MAINTAINER Revision Changes Path 1.4 +2 -0 ports/misc/sword-modules/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 16:35: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 79AAD37B404; Tue, 12 Mar 2002 16:35:29 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D0ZTh26283; Tue, 12 Mar 2002 16:35:29 -0800 (PST) (envelope-from ue) Message-Id: <200203130035.g2D0ZTh26283@freefall.freebsd.org> From: Udo Erdelhoff Date: Tue, 12 Mar 2002 16:35:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook/serialcomms 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 ue 2002/03/12 16:35:29 PST Added files: de_DE.ISO8859-1/books/handbook/serialcomms chapter.sgml Log: New translation: serial communications Obtained from: The FreeBSD German Documentation Project Revision Changes Path 1.1 +2763 -0 doc/de_DE.ISO8859-1/books/handbook/serialcomms/chapter.sgml (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 16:38: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 9B13737B405; Tue, 12 Mar 2002 16:38:27 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D0cR126627; Tue, 12 Mar 2002 16:38:27 -0800 (PST) (envelope-from ue) Message-Id: <200203130038.g2D0cR126627@freefall.freebsd.org> From: Udo Erdelhoff Date: Tue, 12 Mar 2002 16:38:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook/sound 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 ue 2002/03/12 16:38:27 PST Modified files: de_DE.ISO8859-1/books/handbook/sound chapter.sgml Log: MFen: 1.23->1.27 Obtained from: The FreeBSD German Documentation Project Revision Changes Path 1.5 +196 -211 doc/de_DE.ISO8859-1/books/handbook/sound/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 16:39: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 64CD737B4D5; Tue, 12 Mar 2002 16:39:25 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D0dPe26811; Tue, 12 Mar 2002 16:39:25 -0800 (PST) (envelope-from ue) Message-Id: <200203130039.g2D0dPe26811@freefall.freebsd.org> From: Udo Erdelhoff Date: Tue, 12 Mar 2002 16:39:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook/security 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 ue 2002/03/12 16:39:25 PST Modified files: de_DE.ISO8859-1/books/handbook/security chapter.sgml Log: MFen: 1.99 -> 1.102 Obtained from: The FreeBSD German Documentation Project Revision Changes Path 1.3 +84 -4 doc/de_DE.ISO8859-1/books/handbook/security/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 16:40: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 16D3C37B400; Tue, 12 Mar 2002 16:40:12 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D0eCj26969; Tue, 12 Mar 2002 16:40:12 -0800 (PST) (envelope-from ue) Message-Id: <200203130040.g2D0eCj26969@freefall.freebsd.org> From: Udo Erdelhoff Date: Tue, 12 Mar 2002 16:40:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook/kernelconfig 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 ue 2002/03/12 16:40:12 PST Modified files: de_DE.ISO8859-1/books/handbook/kernelconfig chapter.sgml Log: MFen 1.73->1.74 Obtained from: The FreeBSD German Documentation Project Revision Changes Path 1.2 +22 -11 doc/de_DE.ISO8859-1/books/handbook/kernelconfig/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 16: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 2383637B434; Tue, 12 Mar 2002 16:40:17 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D0eH926997; Tue, 12 Mar 2002 16:40:17 -0800 (PST) (envelope-from ade) Message-Id: <200203130040.g2D0eH926997@freefall.freebsd.org> From: Ade Lovett Date: Tue, 12 Mar 2002 16:40:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/libmcal Makefile ports/misc/libmcal/files patch-ag patch-aj patch-al X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ade 2002/03/12 16:40:17 PST Modified files: misc/libmcal Makefile misc/libmcal/files patch-ag patch-aj patch-al Log: Fix various warning errors from libmcal's CVS tree PR: 34089 Submitted by: MAINTAINER Revision Changes Path 1.4 +1 -1 ports/misc/libmcal/Makefile 1.2 +6 -5 ports/misc/libmcal/files/patch-ag 1.2 +17 -8 ports/misc/libmcal/files/patch-aj 1.2 +159 -51 ports/misc/libmcal/files/patch-al To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 16:40: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 75DBB37B405; Tue, 12 Mar 2002 16:40:47 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D0elL27137; Tue, 12 Mar 2002 16:40:47 -0800 (PST) (envelope-from ue) Message-Id: <200203130040.g2D0elL27137@freefall.freebsd.org> From: Udo Erdelhoff Date: Tue, 12 Mar 2002 16:40:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook/disks 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 ue 2002/03/12 16:40:47 PST Modified files: de_DE.ISO8859-1/books/handbook/disks chapter.sgml Log: MFen: 1.75->1.82 Obtained from: The FreeBSD German Documentation Project Revision Changes Path 1.6 +190 -35 doc/de_DE.ISO8859-1/books/handbook/disks/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 16:41: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 0534E37B417; Tue, 12 Mar 2002 16:41:31 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D0fUe27285; Tue, 12 Mar 2002 16:41:30 -0800 (PST) (envelope-from ue) Message-Id: <200203130041.g2D0fUe27285@freefall.freebsd.org> From: Udo Erdelhoff Date: Tue, 12 Mar 2002 16:41:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook/config 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 ue 2002/03/12 16:41:30 PST Modified files: de_DE.ISO8859-1/books/handbook/config chapter.sgml Log: MFen: 1.37->1.44 Obtained from: The FreeBSD German Documentation Project Revision Changes Path 1.5 +73 -70 doc/de_DE.ISO8859-1/books/handbook/config/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 16:42: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 AC46037B416; Tue, 12 Mar 2002 16:42:19 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D0gEZ27469; Tue, 12 Mar 2002 16:42:14 -0800 (PST) (envelope-from ue) Message-Id: <200203130042.g2D0gEZ27469@freefall.freebsd.org> From: Udo Erdelhoff Date: Tue, 12 Mar 2002 16:42:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook/boot 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 ue 2002/03/12 16:42:14 PST Modified files: de_DE.ISO8859-1/books/handbook/boot chapter.sgml Log: MFen: 1.30->1.33 Obtained from: The FreeBSD German Documentation Project Revision Changes Path 1.2 +42 -10 doc/de_DE.ISO8859-1/books/handbook/boot/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 16: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 83EB537B41C; Tue, 12 Mar 2002 16:43:10 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D0hAg27684; Tue, 12 Mar 2002 16:43:10 -0800 (PST) (envelope-from ue) Message-Id: <200203130043.g2D0hAg27684@freefall.freebsd.org> From: Udo Erdelhoff Date: Tue, 12 Mar 2002 16:43:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook/l10n 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 ue 2002/03/12 16:43:10 PST Added files: de_DE.ISO8859-1/books/handbook/l10n chapter.sgml Log: New translation: l10n/i18n Obtained from: The FreeBSD German Documentation Project Revision Changes Path 1.1 +959 -0 doc/de_DE.ISO8859-1/books/handbook/l10n/chapter.sgml (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 16:44: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 BDF9E37B439; Tue, 12 Mar 2002 16:44:20 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D0iKI28189; Tue, 12 Mar 2002 16:44:20 -0800 (PST) (envelope-from ue) Message-Id: <200203130044.g2D0iKI28189@freefall.freebsd.org> From: Udo Erdelhoff Date: Tue, 12 Mar 2002 16:44:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook Makefile book.sgml chapters.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 ue 2002/03/12 16:44:20 PST Modified files: de_DE.ISO8859-1/books/handbook Makefile book.sgml chapters.ent Log: And the neccessary glue to bring the new chapters into the build Obtained from: The FreeBSD German Documentation Project Revision Changes Path 1.14 +9 -1 doc/de_DE.ISO8859-1/books/handbook/Makefile 1.18 +5 -3 doc/de_DE.ISO8859-1/books/handbook/book.sgml 1.11 +2 -1 doc/de_DE.ISO8859-1/books/handbook/chapters.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 16:47: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 4B90F37B405; Tue, 12 Mar 2002 16:47:20 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D0lK528808; Tue, 12 Mar 2002 16:47:20 -0800 (PST) (envelope-from ade) Message-Id: <200203130047.g2D0lK528808@freefall.freebsd.org> From: Ade Lovett Date: Tue, 12 Mar 2002 16:47:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/french/xtel Makefile pkg-descr ports/french/xtel/files patch-Config.tmpl patch-README_IMINITEL.txt patch-iminitel patch-ip-down.iminitel patch-ip-up.iminitel patch-mdmdetect.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 16:47:20 PST Modified files: french/xtel Makefile pkg-descr french/xtel/files patch-Config.tmpl patch-mdmdetect.c Added files: french/xtel/files patch-README_IMINITEL.txt patch-iminitel patch-ip-down.iminitel patch-ip-up.iminitel Log: Cleanups to fix FORBIDDEN and other miscellaneous stuff. PR: 34313 Submitted by: MAINTAINER Revision Changes Path 1.12 +1 -3 ports/french/xtel/Makefile 1.2 +19 -2 ports/french/xtel/files/patch-Config.tmpl 1.1 +8 -0 ports/french/xtel/files/patch-README_IMINITEL.txt (new) 1.1 +10 -0 ports/french/xtel/files/patch-iminitel (new) 1.1 +8 -0 ports/french/xtel/files/patch-ip-down.iminitel (new) 1.1 +8 -0 ports/french/xtel/files/patch-ip-up.iminitel (new) 1.2 +50 -2 ports/french/xtel/files/patch-mdmdetect.c 1.2 +1 -1 ports/french/xtel/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 Mar 12 16:56: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 9927F37B41C; Tue, 12 Mar 2002 16:56:08 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D0u8Z30456; Tue, 12 Mar 2002 16:56:08 -0800 (PST) (envelope-from obrien) Message-Id: <200203130056.g2D0u8Z30456@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 12 Mar 2002 16:56:08 -0800 (PST) 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 obrien 2002/03/12 16:56:08 PST Modified files: Mk bsd.sites.mk Log: mirrors.rcn.net reorged. Revision Changes Path 1.77 +3 -3 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 Mar 12 17:23: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 B25C037B430; Tue, 12 Mar 2002 17:23:26 -0800 (PST) Received: (from naddy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D1NQI37648; Tue, 12 Mar 2002 17:23:26 -0800 (PST) (envelope-from naddy) Message-Id: <200203130123.g2D1NQI37648@freefall.freebsd.org> From: Christian Weisgerber Date: Tue, 12 Mar 2002 17:23:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/bison Makefile pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2002/03/12 17:23:26 PST Modified files: devel/bison Makefile pkg-plist Log: This requires ngettext(). XXX Explicitly build with included libintl for now. PR: 35653 Revision Changes Path 1.23 +7 -7 ports/devel/bison/Makefile 1.12 +2 -5 ports/devel/bison/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 Mar 12 17:41: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 B609A37B404; Tue, 12 Mar 2002 17:41:32 -0800 (PST) Received: (from archie@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D1fWS46568; Tue, 12 Mar 2002 17:41:32 -0800 (PST) (envelope-from archie) Message-Id: <200203130141.g2D1fWS46568@freefall.freebsd.org> From: Archie Cobbs Date: Tue, 12 Mar 2002 17:41:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys malloc.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 archie 2002/03/12 17:41:32 PST Modified files: sys/sys malloc.h Log: Add realloc() and reallocf(), and make free(NULL, ...) acceptable. Reviewed by: alfred Revision Changes Path 1.55 +5 -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 Tue Mar 12 17:42:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4199137B404; Tue, 12 Mar 2002 17:42:06 -0800 (PST) Received: (from archie@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D1g6646674; Tue, 12 Mar 2002 17:42:06 -0800 (PST) (envelope-from archie) Message-Id: <200203130142.g2D1g6646674@freefall.freebsd.org> From: Archie Cobbs Date: Tue, 12 Mar 2002 17:42:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_malloc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG archie 2002/03/12 17:42:06 PST Modified files: sys/kern kern_malloc.c Log: Add realloc() and reallocf(), and make free(NULL, ...) acceptable. Reviewed by: alfred Revision Changes Path 1.94 +75 -1 src/sys/kern/kern_malloc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 17:42: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 F32EB37B423; Tue, 12 Mar 2002 17:42:33 -0800 (PST) Received: (from archie@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D1gXr46727; Tue, 12 Mar 2002 17:42:33 -0800 (PST) (envelope-from archie) Message-Id: <200203130142.g2D1gXr46727@freefall.freebsd.org> From: Archie Cobbs Date: Tue, 12 Mar 2002 17:42:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 Makefile malloc.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 archie 2002/03/12 17:42:33 PST Modified files: share/man/man9 Makefile malloc.9 Log: Add realloc() and reallocf(), and make free(NULL, ...) acceptable. Reviewed by: alfred Revision Changes Path 1.154 +1 -0 src/share/man/man9/Makefile 1.22 +75 -12 src/share/man/man9/malloc.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 18:22: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 770C537B400; Tue, 12 Mar 2002 18:22:08 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D2M8856831; Tue, 12 Mar 2002 18:22:08 -0800 (PST) (envelope-from ade) Message-Id: <200203130222.g2D2M8856831@freefall.freebsd.org> From: Ade Lovett Date: Tue, 12 Mar 2002 18:22:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/miniscrib Makefile distinfo pkg-comment pkg-descr pkg-plist ports/graphics/miniscrib/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 ade 2002/03/12 18:22:08 PST Modified files: graphics Makefile Added files: graphics/miniscrib Makefile distinfo pkg-comment pkg-descr pkg-plist graphics/miniscrib/files patch-aa Log: Add miniscrib, a tiny drawing program suitable for use on handheld computers. PR: 33232 Submitted by: Bruce M Simpson Revision Changes Path 1.420 +1 -0 ports/graphics/Makefile 1.1 +29 -0 ports/graphics/miniscrib/Makefile (new) 1.1 +1 -0 ports/graphics/miniscrib/distinfo (new) 1.1 +23 -0 ports/graphics/miniscrib/files/patch-aa (new) 1.1 +1 -0 ports/graphics/miniscrib/pkg-comment (new) 1.1 +8 -0 ports/graphics/miniscrib/pkg-descr (new) 1.1 +1 -0 ports/graphics/miniscrib/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 18: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 22A8137B405; Tue, 12 Mar 2002 18:22:58 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D2Mw357017; Tue, 12 Mar 2002 18:22:58 -0800 (PST) (envelope-from ade) Message-Id: <200203130222.g2D2Mw357017@freefall.freebsd.org> From: Ade Lovett Date: Tue, 12 Mar 2002 18:22:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ade 2002/03/12 18:22:58 PST Modified files: . modules Log: miniscrib --> ports/graphics/miniscrib Revision Changes Path 1.4827 +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 Mar 12 18:26: 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 2F5A137B400; Tue, 12 Mar 2002 18:25:58 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D2PwG57453; Tue, 12 Mar 2002 18:25:58 -0800 (PST) (envelope-from ade) Message-Id: <200203130225.g2D2PwG57453@freefall.freebsd.org> From: Ade Lovett Date: Tue, 12 Mar 2002 18:25:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11 Makefile ports/x11/xmon 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 ade 2002/03/12 18:25:58 PST Modified files: x11 Makefile Added files: x11/xmon Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add xmon, which interactively monitors the byte-stream connections between an X server and a number of X clients. PR: 33232 Submitted by: Bruce M Simpson Revision Changes Path 1.348 +1 -0 ports/x11/Makefile 1.1 +21 -0 ports/x11/xmon/Makefile (new) 1.1 +1 -0 ports/x11/xmon/distinfo (new) 1.1 +1 -0 ports/x11/xmon/pkg-comment (new) 1.1 +19 -0 ports/x11/xmon/pkg-descr (new) 1.1 +2 -0 ports/x11/xmon/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 18:26: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 A5F9237B400; Tue, 12 Mar 2002 18:26:51 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D2QpT57543; Tue, 12 Mar 2002 18:26:51 -0800 (PST) (envelope-from ade) Message-Id: <200203130226.g2D2QpT57543@freefall.freebsd.org> From: Ade Lovett Date: Tue, 12 Mar 2002 18:26:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ade 2002/03/12 18:26:51 PST Modified files: . modules Log: xmon --> ports/x11/xmon Revision Changes Path 1.4828 +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 Mar 12 18:33:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B536D37B417; Tue, 12 Mar 2002 18:33:50 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D2Xo858753; Tue, 12 Mar 2002 18:33:50 -0800 (PST) (envelope-from ade) Message-Id: <200203130233.g2D2Xo858753@freefall.freebsd.org> From: Ade Lovett Date: Tue, 12 Mar 2002 18:33:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/xerces-c 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 ade 2002/03/12 18:33:50 PST Modified files: textproc Makefile Added files: textproc/xerces-c Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add xerces-c, an Apache XML Processor PR: 33313 Submitted by: Alex Kiesel Revision Changes Path 1.334 +1 -0 ports/textproc/Makefile 1.1 +41 -0 ports/textproc/xerces-c/Makefile (new) 1.1 +1 -0 ports/textproc/xerces-c/distinfo (new) 1.1 +1 -0 ports/textproc/xerces-c/pkg-comment (new) 1.1 +14 -0 ports/textproc/xerces-c/pkg-descr (new) 1.1 +371 -0 ports/textproc/xerces-c/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 18:34: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 0F1DC37B402; Tue, 12 Mar 2002 18:34:50 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D2Ynj58942; Tue, 12 Mar 2002 18:34:49 -0800 (PST) (envelope-from ade) Message-Id: <200203130234.g2D2Ynj58942@freefall.freebsd.org> From: Ade Lovett Date: Tue, 12 Mar 2002 18:34:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ade 2002/03/12 18:34:49 PST Modified files: . modules Log: xerces-c --> ports/textproc/xerces-c Revision Changes Path 1.4829 +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 Mar 12 18:41: 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 BB66137B416; Tue, 12 Mar 2002 18:40:40 -0800 (PST) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D2eeb60194; Tue, 12 Mar 2002 18:40:40 -0800 (PST) (envelope-from jake) Message-Id: <200203130240.g2D2eeb60194@freefall.freebsd.org> From: Jake Burkholder Date: Tue, 12 Mar 2002 18:40:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/rtld-elf/sparc64 Makefile.inc lockdflt.c reloc.c rtld_machdep.h rtld_start.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 jake 2002/03/12 18:40:40 PST Added files: libexec/rtld-elf/sparc64 Makefile.inc lockdflt.c reloc.c rtld_machdep.h rtld_start.S Log: rtld support for sparc64. Largely obtained from: netbsd Submitted by: jake, tmm Revision Changes Path 1.1 +1 -0 src/libexec/rtld-elf/sparc64/Makefile.inc (new) 1.1 +176 -0 src/libexec/rtld-elf/sparc64/lockdflt.c (new) 1.1 +693 -0 src/libexec/rtld-elf/sparc64/reloc.c (new) 1.1 +60 -0 src/libexec/rtld-elf/sparc64/rtld_machdep.h (new) 1.1 +143 -0 src/libexec/rtld-elf/sparc64/rtld_start.S (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 18:53: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 6766637B404; Tue, 12 Mar 2002 18:53:20 -0800 (PST) Received: (from jmz@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D2rK762306; Tue, 12 Mar 2002 18:53:20 -0800 (PST) (envelope-from jmz) Message-Id: <200203130253.g2D2rK762306@freefall.freebsd.org> From: Jean-Marc Zucconi Date: Tue, 12 Mar 2002 18:53:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/qwt Makefile distinfo pkg-comment pkg-descr pkg-plist ports/x11-toolkits/qwt/files patch-makefiles::freebsd-g++ X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jmz 2002/03/12 18:53:20 PST Modified files: x11-toolkits Makefile Added files: x11-toolkits/qwt Makefile distinfo pkg-comment pkg-descr pkg-plist x11-toolkits/qwt/files patch-makefiles::freebsd-g++ Log: Qwt widget library for technical purposes PR: ports/35834 Submitted by: Bob Bomar Revision Changes Path 1.164 +1 -0 ports/x11-toolkits/Makefile 1.1 +68 -0 ports/x11-toolkits/qwt/Makefile (new) 1.1 +1 -0 ports/x11-toolkits/qwt/distinfo (new) 1.1 +27 -0 ports/x11-toolkits/qwt/files/patch-makefiles::freebsd-g++ (new) 1.1 +1 -0 ports/x11-toolkits/qwt/pkg-comment (new) 1.1 +7 -0 ports/x11-toolkits/qwt/pkg-descr (new) 1.1 +33 -0 ports/x11-toolkits/qwt/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 18:53: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 3E85A37B400; Tue, 12 Mar 2002 18:53:23 -0800 (PST) Received: (from jmz@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D2rN662337; Tue, 12 Mar 2002 18:53:23 -0800 (PST) (envelope-from jmz) Message-Id: <200203130253.g2D2rN662337@freefall.freebsd.org> From: Jean-Marc Zucconi Date: Tue, 12 Mar 2002 18:53:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jmz 2002/03/12 18:53:23 PST Modified files: . modules Log: qwt --> ports/x11-toolkits/qwt Revision Changes Path 1.4830 +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 Mar 12 19: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 7E91937B416; Tue, 12 Mar 2002 19:17:29 -0800 (PST) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D3HTB69168; Tue, 12 Mar 2002 19:17:29 -0800 (PST) (envelope-from jake) Message-Id: <200203130317.g2D3HTB69168@freefall.freebsd.org> From: Jake Burkholder Date: Tue, 12 Mar 2002 19:17:29 -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 jake 2002/03/12 19:17:29 PST Modified files: sys/sys disklabel.h Log: LABELOFFSET is 128 for sparc64. Submitted by: tmm Forgotten by: obrien Revision Changes Path 1.67 +5 -0 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 Tue Mar 12 19:18: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 2C6EB37B417; Tue, 12 Mar 2002 19:18:41 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D3IfU69434; Tue, 12 Mar 2002 19:18:41 -0800 (PST) (envelope-from ijliao) Message-Id: <200203130318.g2D3IfU69434@freefall.freebsd.org> From: Ying-Chieh Liao Date: Tue, 12 Mar 2002 19:18:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/cln 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 ijliao 2002/03/12 19:18:41 PST Modified files: math/cln Makefile distinfo pkg-descr Log: upgrade to 1.1.4 drop maintainership Revision Changes Path 1.5 +10 -5 ports/math/cln/Makefile 1.4 +1 -1 ports/math/cln/distinfo 1.2 +1 -1 ports/math/cln/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 Mar 12 19:23:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 343E937B417; Tue, 12 Mar 2002 19:23:17 -0800 (PST) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D3NHY70110; Tue, 12 Mar 2002 19:23:17 -0800 (PST) (envelope-from jake) Message-Id: <200203130323.g2D3NHY70110@freefall.freebsd.org> From: Jake Burkholder Date: Tue, 12 Mar 2002 19:23:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf Makefile.sparc64 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jake 2002/03/12 19:23:17 PST Modified files: sys/conf Makefile.sparc64 Log: Use the deo hosted toolchain by default. Revision Changes Path 1.16 +14 -10 src/sys/conf/Makefile.sparc64 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 19:28: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 563BE37B400; Tue, 12 Mar 2002 19:28:48 -0800 (PST) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D3SmM70720; Tue, 12 Mar 2002 19:28:48 -0800 (PST) (envelope-from jake) Message-Id: <200203130328.g2D3SmM70720@freefall.freebsd.org> From: Jake Burkholder Date: Tue, 12 Mar 2002 19:28:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include asmacros.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/03/12 19:28:48 PST Modified files: sys/sparc64/include asmacros.h Log: Add an ATOMIC_CLEAR_INT macro. Submitted by: tmm Revision Changes Path 1.9 +13 -2 src/sys/sparc64/include/asmacros.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 19:43: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C036437B419; Tue, 12 Mar 2002 19:43:00 -0800 (PST) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D3h0T72674; Tue, 12 Mar 2002 19:43:00 -0800 (PST) (envelope-from jake) Message-Id: <200203130343.g2D3h0T72674@freefall.freebsd.org> From: Jake Burkholder Date: Tue, 12 Mar 2002 19:43:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include smp.h src/sys/sparc64/sparc64 genassym.c mp_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 jake 2002/03/12 19:43:00 PST Modified files: sys/sparc64/include smp.h sys/sparc64/sparc64 genassym.c mp_exception.s Log: Make IPI_WAIT use a bit mask of the cpus that a pmap is active on and only wait for those cpus, instead of all of them by using a count. Oops. Make the pointer to the mask that the primary cpu spins on volatile, so gcc doesn't optimize out an important load. Oops again. Activate tlb shootdown ipi synchronization now that it works. We have all involved cpus wait until all the others are done. This may not be necessary, it is mostly for sanity. Make the trigger level interrupt ipi handler work. Submitted by: tmm Revision Changes Path 1.9 +12 -18 src/sys/sparc64/include/smp.h 1.28 +2 -5 src/sys/sparc64/sparc64/genassym.c 1.3 +18 -10 src/sys/sparc64/sparc64/mp_exception.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 19:55: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 1305C37B417; Tue, 12 Mar 2002 19:55:29 -0800 (PST) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D3tTa74209; Tue, 12 Mar 2002 19:55:29 -0800 (PST) (envelope-from jake) Message-Id: <200203130355.g2D3tTa74209@freefall.freebsd.org> From: Jake Burkholder Date: Tue, 12 Mar 2002 19:55:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/sparc64 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 jake 2002/03/12 19:55:29 PST Modified files: sys/sparc64/sparc64 exception.s Log: White space. Revision Changes Path 1.30 +1 -1 src/sys/sparc64/sparc64/exception.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 20: 2: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 2B45B37B402; Tue, 12 Mar 2002 20:02:28 -0800 (PST) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D42Sn75480; Tue, 12 Mar 2002 20:02:28 -0800 (PST) (envelope-from jake) Message-Id: <200203130402.g2D42Sn75480@freefall.freebsd.org> From: Jake Burkholder Date: Tue, 12 Mar 2002 20:02:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/sparc64 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 jake 2002/03/12 20:02:28 PST Modified files: sys/sparc64/sparc64 exception.s Log: Fix a bug where the wrong number of windows were copied for a failed fill on return to user mode. We may not have frame pointers setup for more than 1 on return from exec. Revision Changes Path 1.31 +1 -1 src/sys/sparc64/sparc64/exception.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 20: 4:41 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B341137B419; Tue, 12 Mar 2002 20:04:28 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D44Sk75770; Tue, 12 Mar 2002 20:04:28 -0800 (PST) (envelope-from obrien) Message-Id: <200203130404.g2D44Sk75770@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 12 Mar 2002 20:04:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gcc31 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/03/12 20:04:28 PST Modified files: lang/gcc31 Makefile distinfo Log: Upgrade to the 11-March-2002 GCC 3.1 development snapshot. Revision Changes Path 1.114 +1 -1 ports/lang/gcc31/Makefile 1.61 +5 -5 ports/lang/gcc31/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 20: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 5CA2237B419; Tue, 12 Mar 2002 20:12:42 -0800 (PST) Received: (from luoqi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D4Cg080478; Tue, 12 Mar 2002 20:12:42 -0800 (PST) (envelope-from luoqi) Message-Id: <200203130412.g2D4Cg080478@freefall.freebsd.org> From: Luoqi Chen Date: Tue, 12 Mar 2002 20:12:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml luoqi.key pgpkeys.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG luoqi 2002/03/12 20:12:42 PST Modified files: en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml pgpkeys.ent Added files: en_US.ISO8859-1/books/handbook/pgpkeys luoqi.key Log: add my pgp key. Revision Changes Path 1.151 +5 -0 doc/en_US.ISO8859-1/books/handbook/pgpkeys/chapter.sgml 1.1 +43 -0 doc/en_US.ISO8859-1/books/handbook/pgpkeys/luoqi.key (new) 1.27 +1 -0 doc/en_US.ISO8859-1/books/handbook/pgpkeys/pgpkeys.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 20: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 CA3F137B435; Tue, 12 Mar 2002 20:14:15 -0800 (PST) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D4EFU80734; Tue, 12 Mar 2002 20:14:15 -0800 (PST) (envelope-from dwcjr) Message-Id: <200203130414.g2D4EFU80734@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Tue, 12 Mar 2002 20:14:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/samba 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 dwcjr 2002/03/12 20:14:15 PST Modified files: net/samba Makefile Log: Add support for ldap via openldap 2 Submitted by: Robin_Blanchard@gactr.uga.edu Revision Changes Path 1.74 +7 -0 ports/net/samba/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 20:38: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 5AC8137B400; Tue, 12 Mar 2002 20:38:36 -0800 (PST) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D4car83828; Tue, 12 Mar 2002 20:38:36 -0800 (PST) (envelope-from jake) Message-Id: <200203130438.g2D4car83828@freefall.freebsd.org> From: Jake Burkholder Date: Tue, 12 Mar 2002 20:38:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include tick.h src/sys/sparc64/sparc64 tick.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 20:38:33 PST Modified files: sys/sparc64/include tick.h sys/sparc64/sparc64 tick.c Log: Add support for driving the clocks on secondary cpus. Submitted by: tmm Revision Changes Path 1.2 +3 -0 src/sys/sparc64/include/tick.h 1.5 +49 -6 src/sys/sparc64/sparc64/tick.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 20:39:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 821D237B402; Tue, 12 Mar 2002 20:39:40 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D4ded83944; Tue, 12 Mar 2002 20:39:40 -0800 (PST) (envelope-from obrien) Message-Id: <200203130439.g2D4ded83944@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 12 Mar 2002 20:39:40 -0800 (PST) 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/03/12 20:39:40 PST Modified files: contrib/binutils/bfd elf.c Log: Remove bogon from bad merge. Revision Changes Path 1.13 +0 -2 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 Tue Mar 12 20:43:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B244337B405; Tue, 12 Mar 2002 20:43:45 -0800 (PST) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D4hj584622; Tue, 12 Mar 2002 20:43:45 -0800 (PST) (envelope-from jake) Message-Id: <200203130443.g2D4hj584622@freefall.freebsd.org> From: Jake Burkholder Date: Tue, 12 Mar 2002 20:43:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/sparc64 intr_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 jake 2002/03/12 20:43:45 PST Modified files: sys/sparc64/sparc64 intr_machdep.c Log: Use intr_disable/intr_restore instead of doing it manually. Submitted by: tmm Revision Changes Path 1.11 +2 -4 src/sys/sparc64/sparc64/intr_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 20:59: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 951CB37B400; Tue, 12 Mar 2002 20:59:01 -0800 (PST) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D4x1J86769; Tue, 12 Mar 2002 20:59:01 -0800 (PST) (envelope-from jake) Message-Id: <200203130459.g2D4x1J86769@freefall.freebsd.org> From: Jake Burkholder Date: Tue, 12 Mar 2002 20:59:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include ofw_machdep.h src/sys/sparc64/sparc64 db_interface.c 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 jake 2002/03/12 20:59:01 PST Modified files: sys/sparc64/include ofw_machdep.h sys/sparc64/sparc64 db_interface.c machdep.c mp_machdep.c Log: Add support for starting and stopping cpus with ipis. Stop the other cpus when shutting down or entering the debugger. Submitted by: tmm Revision Changes Path 1.2 +1 -1 src/sys/sparc64/include/ofw_machdep.h 1.9 +10 -1 src/sys/sparc64/sparc64/db_interface.c 1.42 +16 -3 src/sys/sparc64/sparc64/machdep.c 1.5 +66 -3 src/sys/sparc64/sparc64/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 Tue Mar 12 21: 8: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 A667E37B402; Tue, 12 Mar 2002 21:08:26 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D58Qm91728; Tue, 12 Mar 2002 21:08:26 -0800 (PST) (envelope-from obrien) Message-Id: <200203130508.g2D58Qm91728@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 12 Mar 2002 21:08:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gcc32 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/03/12 21:08:26 PST Modified files: lang/gcc32 Makefile distinfo Log: Upgrade to the 10-March-2002 GCC 3.2 in-development snapshot. Due to the lack of a real snapshot distfile, this has to use CVS as the fetch method. Revision Changes Path 1.113 +46 -36 ports/lang/gcc32/Makefile 1.59 +0 -5 ports/lang/gcc32/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 21:14:39 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DE17937B402; Tue, 12 Mar 2002 21:14:31 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D5EVa92981; Tue, 12 Mar 2002 21:14:31 -0800 (PST) (envelope-from obrien) Message-Id: <200203130514.g2D5EVa92981@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 12 Mar 2002 21:14:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils Makefile.inc src/gnu/usr.bin/binutils/addr2line Makefile src/gnu/usr.bin/binutils/as Makefile.inc0 src/gnu/usr.bin/binutils/gasp Makefile src/gnu/usr.bin/binutils/gdb Makefile src/gnu/usr.bin/binutils/gdbreplay 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/03/12 21:14:31 PST Modified files: gnu/usr.bin/binutils Makefile.inc gnu/usr.bin/binutils/addr2line Makefile gnu/usr.bin/binutils/as Makefile.inc0 gnu/usr.bin/binutils/gasp Makefile gnu/usr.bin/binutils/gdb Makefile gnu/usr.bin/binutils/gdbreplay Makefile gnu/usr.bin/binutils/gdbserver Makefile gnu/usr.bin/binutils/ld Makefile gnu/usr.bin/binutils/libbinutils Makefile gnu/usr.bin/binutils/libiberty Makefile gnu/usr.bin/binutils/nm Makefile gnu/usr.bin/binutils/objcopy Makefile gnu/usr.bin/binutils/objdump Makefile gnu/usr.bin/binutils/readelf Makefile gnu/usr.bin/binutils/size Makefile gnu/usr.bin/binutils/strings Makefile gnu/usr.bin/binutils/strip Makefile Log: Turn up WARNS as high as possible. Tested by: gcc31, gcc32, /usr/bin/cc Revision Changes Path 1.5 +1 -0 src/gnu/usr.bin/binutils/Makefile.inc 1.6 +1 -0 src/gnu/usr.bin/binutils/addr2line/Makefile 1.16 +1 -0 src/gnu/usr.bin/binutils/as/Makefile.inc0 1.10 +1 -0 src/gnu/usr.bin/binutils/gasp/Makefile 1.51 +2 -1 src/gnu/usr.bin/binutils/gdb/Makefile 1.8 +2 -1 src/gnu/usr.bin/binutils/gdbreplay/Makefile 1.9 +1 -0 src/gnu/usr.bin/binutils/gdbserver/Makefile 1.21 +1 -0 src/gnu/usr.bin/binutils/ld/Makefile 1.16 +1 -0 src/gnu/usr.bin/binutils/libbinutils/Makefile 1.15 +1 -0 src/gnu/usr.bin/binutils/libiberty/Makefile 1.7 +1 -0 src/gnu/usr.bin/binutils/nm/Makefile 1.7 +1 -0 src/gnu/usr.bin/binutils/objcopy/Makefile 1.9 +1 -0 src/gnu/usr.bin/binutils/objdump/Makefile 1.4 +1 -0 src/gnu/usr.bin/binutils/readelf/Makefile 1.7 +1 -0 src/gnu/usr.bin/binutils/size/Makefile 1.7 +1 -0 src/gnu/usr.bin/binutils/strings/Makefile 1.9 +1 -0 src/gnu/usr.bin/binutils/strip/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 21:38: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 E70C737B400; Tue, 12 Mar 2002 21:38:19 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D5cJe95956; Tue, 12 Mar 2002 21:38:19 -0800 (PST) (envelope-from imp) Message-Id: <200203130538.g2D5cJe95956@freefall.freebsd.org> From: Warner Losh Date: Tue, 12 Mar 2002 21:38:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/cardbus cardbus.c cardbus_cis.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/03/12 21:38:19 PST Modified files: sys/dev/cardbus cardbus.c cardbus_cis.c Log: Cleanup the recent cardbus cleanups. This fixes some of the panics that I introduced with -v. However, other problems still remain (including the loss of interrupts). Revision Changes Path 1.18 +11 -34 src/sys/dev/cardbus/cardbus.c 1.17 +20 -16 src/sys/dev/cardbus/cardbus_cis.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 21:41: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 2091437B416; Tue, 12 Mar 2002 21:41:42 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D5fgU96530; Tue, 12 Mar 2002 21:41:42 -0800 (PST) (envelope-from bmah) Message-Id: <200203130541.g2D5fgU96530@freefall.freebsd.org> From: "Bruce A. Mah" Date: Tue, 12 Mar 2002 21:41:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/03/12 21:41:42 PST Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release notes: sparc64 support and SMP (better late than never), via82c686 sound driver supports VIA VT8233, ich sound driver supports SiS 7012, libz 1.1.4. Belatedly note the MFC of the ich sound driver (also better late than never). Revision Changes Path 1.299 +18 -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 Mar 12 21:47: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 70C1237B405; Tue, 12 Mar 2002 21:47:23 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D5lNp97265; Tue, 12 Mar 2002 21:47:23 -0800 (PST) (envelope-from bmah) Message-Id: <200203130547.g2D5lNp97265@freefall.freebsd.org> From: "Bruce A. Mah" Date: Tue, 12 Mar 2002 21:47:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/03/12 21:47:23 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: VT8233 and SiS 7012 sound driver support. Revision Changes Path 1.22.2.208 +7 -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 Tue Mar 12 21:54: 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 1CC0837B41C; Tue, 12 Mar 2002 21:54:01 -0800 (PST) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D5s1D98116; Tue, 12 Mar 2002 21:54:01 -0800 (PST) (envelope-from jake) Message-Id: <200203130554.g2D5s1D98116@freefall.freebsd.org> From: Jake Burkholder Date: Tue, 12 Mar 2002 21:54:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/sparc64 mp_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 jake 2002/03/12 21:54:01 PST Modified files: sys/sparc64/sparc64 mp_exception.s Log: Fix braino. Revision Changes Path 1.4 +0 -3 src/sys/sparc64/sparc64/mp_exception.s To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 21: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 B15D337B416; Tue, 12 Mar 2002 21:58:45 -0800 (PST) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D5wjd98559; Tue, 12 Mar 2002 21:58:45 -0800 (PST) (envelope-from jake) Message-Id: <200203130558.g2D5wjd98559@freefall.freebsd.org> From: Jake Burkholder Date: Tue, 12 Mar 2002 21:58:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf options.sparc64 src/sys/sparc64/pci psycho.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/12 21:58:45 PST Modified files: sys/conf options.sparc64 sys/sparc64/pci psycho.c Log: Add a DEBUGGER_ON_POWERFAIL option. This makes the power button on ultra 10s work like an NMI button. Revision Changes Path 1.4 +1 -0 src/sys/conf/options.sparc64 1.5 +7 -0 src/sys/sparc64/pci/psycho.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 22: 3:50 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc54.attbi.com (rwcrmhc54.attbi.com [216.148.227.87]) by hub.freebsd.org (Postfix) with ESMTP id 7A1E837B402; Tue, 12 Mar 2002 22:03:47 -0800 (PST) Received: from blossom.cjclark.org ([12.234.91.48]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020313060347.ERVS1214.rwcrmhc54.attbi.com@blossom.cjclark.org>; Wed, 13 Mar 2002 06:03:47 +0000 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.6) id g2D63kr35400; Tue, 12 Mar 2002 22:03:46 -0800 (PST) (envelope-from cjc) Date: Tue, 12 Mar 2002 22:03:46 -0800 From: "Crist J. Clark" To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc Message-ID: <20020312220346.N29705@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <200203122059.g2CKxZC75409@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Tue, Mar 12, 2002 at 11:03:13PM +0100 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Mar 12, 2002 at 11:03:13PM +0100, Dag-Erling Smorgrav wrote: > "Crist J. Clark" writes: > > Log: > > Run dumpon(8) early so crashes during startup can be caught. In > > addition, take out the checks on the $dumpdev. dumpon(8) behaves well > > if given a non-existent filename. It gives a nice error message which > > is better rather than the current silent failure. > > Thanks! MFC? Sure. Let it sit two or three days. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 22: 4: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 6A85637B402; Tue, 12 Mar 2002 22:04:36 -0800 (PST) Received: (from jake@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D64aW99503; Tue, 12 Mar 2002 22:04:36 -0800 (PST) (envelope-from jake) Message-Id: <200203130604.g2D64aW99503@freefall.freebsd.org> From: Jake Burkholder Date: Tue, 12 Mar 2002 22:04:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sparc64/include asmacros.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/03/12 22:04:36 PST Modified files: sys/sparc64/include asmacros.h Log: Fix ifdef LOCORE protection. Revision Changes Path 1.10 +4 -4 src/sys/sparc64/include/asmacros.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 22:14:40 2002 Delivered-To: cvs-all@freebsd.org Received: from moutvdom00.kundenserver.de (moutvdom00.kundenserver.de [195.20.224.149]) by hub.freebsd.org (Postfix) with ESMTP id 6F22737B402; Tue, 12 Mar 2002 22:14:32 -0800 (PST) Received: from [172.19.20.63] (helo=mrvdomng2.kundenserver.de) by moutvdom00.kundenserver.de with esmtp (Exim 2.12 #2) id 16l21q-0006Rr-00; Wed, 13 Mar 2002 07:14:26 +0100 Received: from [217.1.114.213] (helo=pD90172D5.dip.t-dialin.net) by mrvdomng2.kundenserver.de with esmtp (Exim 3.22 #2) id 16l21q-0002Ta-00; Wed, 13 Mar 2002 07:14:26 +0100 Date: Wed, 13 Mar 2002 07:15:03 +0000 (GMT) From: Peter Ulrich Kruppa To: Kenneth Culver Cc: Martin Blapp , Max Khon , Dmitry Sivachenko , David O'Brien , Martin Blapp , , Subject: Re: Openoffice workaround to build In-Reply-To: <20020312173901.K5761-100000@alpha.yumyumyum.org> Message-ID: <20020313071021.O46162-100000@pukruppa.de> 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, 12 Mar 2002, Kenneth Culver wrote: > I don't have anything in make.conf at all actually, I'll try building > again and redirect the output of the build to a file, and post the file > somewhere so you can see it... > Ken Would that be of any help to the porters? My CPU is idle most of the day, it could do some building, too . Regards, Uli. *-----------------------------------* * Peter Ulrich Kruppa * * - Wuppertal - * * Germany * *-----------------------------------* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 22:33: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 56E6737B416; Tue, 12 Mar 2002 22:33:26 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D6XQx06344; Tue, 12 Mar 2002 22:33:26 -0800 (PST) (envelope-from murray) Message-Id: <200203130633.g2D6XQx06344@freefall.freebsd.org> From: Murray Stokely Date: Tue, 12 Mar 2002 22:33:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 Makefile release.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 murray 2002/03/12 22:33:26 PST Modified files: share/man/man7 Makefile Added files: share/man/man7 release.7 Log: Add a makefile to document the release building process. Specifically, this documents the available targets and relevant environment variables for "make release". LOCAL_PATCHES, RELEASEDISTFILES, RELEASENOUPDATE, etc.. are covered. A future commit should add more information about drivers.conf, boot_crunch.conf, and other less well-known aspects of the release build. Reviewed and history section added by: phk Revision Changes Path 1.20 +2 -2 src/share/man/man7/Makefile 1.1 +299 -0 src/share/man/man7/release.7 (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 22:36:21 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 2426637B400; Tue, 12 Mar 2002 22:36:02 -0800 (PST) Received: by mao.stokely.org (Postfix, from userid 2074) id F30EC4B65D; Tue, 12 Mar 2002 22:35:56 -0800 (PST) Date: Tue, 12 Mar 2002 22:35:56 -0800 From: Murray Stokely To: Murray Stokely Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man7 Makefile release.7 Message-ID: <20020313063556.GA7036@freebsdmall.com> References: <200203130633.g2D6XQx06344@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203130633.g2D6XQx06344@freefall.freebsd.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 Tue, Mar 12, 2002 at 10:33:26PM -0800, Murray Stokely wrote: > Add a makefile to document the release building process. uhh .. or man page even.. ;) - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 22:42:40 2002 Delivered-To: cvs-all@freebsd.org Received: from Terry.Dorm11.NCTU.edu.tw (Terry.Dorm11.NCTU.edu.tw [140.113.192.99]) by hub.freebsd.org (Postfix) with ESMTP id CE6C037B402; Tue, 12 Mar 2002 22:42:33 -0800 (PST) Received: from Terry.Dorm11.NCTU.edu.tw (ijliao@localhost [127.0.0.1]) by Terry.Dorm11.NCTU.edu.tw (8.12.2/8.12.2) with ESMTP id g2D6h5KG038853; Wed, 13 Mar 2002 14:43:09 +0800 (CST) (envelope-from ijliao@Terry.Dorm11.NCTU.edu.tw) Received: (from ijliao@localhost) by Terry.Dorm11.NCTU.edu.tw (8.12.2/8.12.2/Submit) id g2D6h5pF038852; Wed, 13 Mar 2002 14:43:05 +0800 (CST) Date: Wed, 13 Mar 2002 14:43:05 +0800 From: Ying-Chieh Liao To: Brian Feldman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libz - Imported sources Message-ID: <20020313064305.GA38664@terry.dragon2.net> References: <200203112230.g2BMU0I22657@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="T4sUOijqQbZv57TR" Content-Disposition: inline In-Reply-To: <200203112230.g2BMU0I22657@freefall.freebsd.org> User-Agent: Mutt/1.3.27i X-Operating-System: FreeBSD 5.0-CURRENT i386 X-PGP-Key-Location: http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=0x11C02382 X-PGP-Key-Fingerprint: 4E98 55CC 2866 7A90 EFD7 9DA5 ACC6 0165 11C0 2382 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --T4sUOijqQbZv57TR Content-Type: text/plain; charset=big5 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On =A4@, 3 11, 2002 at 14:30:00 -0800, Brian Feldman wrote: > src/lib/libz - Imported sources > Update of /home/ncvs/src/lib/libz > In directory freefall.freebsd.org:/d/home/green/HEAD/src/lib/zlib-1.1.4 > Log Message: > Import zlib 1.1.4 onto the vendor branch. MFC ? --=20 Allocate four digits for the year part of a date : a new millennium is comi= ng. --- David Huber --T4sUOijqQbZv57TR 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 iD8DBQE8jvT5rMYBZRHAI4IRAl5NAJ4g0p9LlyiQWn6OcRPQXOkT3+oayQCcDuqC vbfGFr1cGK7BYV8skR7w4oc= =uvbC -----END PGP SIGNATURE----- --T4sUOijqQbZv57TR-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 22:59: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 8A5DE37B405; Tue, 12 Mar 2002 22:59:39 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D6xdf10615; Tue, 12 Mar 2002 22:59:39 -0800 (PST) (envelope-from murray) Message-Id: <200203130659.g2D6xdf10615@freefall.freebsd.org> From: Murray Stokely Date: Tue, 12 Mar 2002 22:59:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 build.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 murray 2002/03/12 22:59:39 PST Modified files: share/man/man7 build.7 Log: Reference release(7) in SEE ALSO. Revision Changes Path 1.15 +2 -1 src/share/man/man7/build.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 23: 4: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 71CD137B400; Tue, 12 Mar 2002 23:04:12 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D74Ce11301; Tue, 12 Mar 2002 23:04:12 -0800 (PST) (envelope-from murray) Message-Id: <200203130704.g2D74Ce11301@freefall.freebsd.org> From: Murray Stokely Date: Tue, 12 Mar 2002 23:04:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/developers-handbook 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/03/12 23:04:12 PST Modified files: en_US.ISO8859-1/books/developers-handbook Makefile Log: Assume maintainership of the Developer's Handbook (was asmodai). I have by far made the most commits to this document, and I have some ideas about splitting out the kernel content into a seperate book. The scope of this document is too large. Revision Changes Path 1.13 +1 -1 doc/en_US.ISO8859-1/books/developers-handbook/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 23:16: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 246A937B404; Tue, 12 Mar 2002 23:16:05 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D7G4u16801; Tue, 12 Mar 2002 23:16:04 -0800 (PST) (envelope-from obrien) Message-Id: <200203130716.g2D7G4u16801@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 12 Mar 2002 23:16:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/binutils FREEBSD-upgrade X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/03/12 23:16:01 PST Modified files: contrib/binutils FREEBSD-upgrade Log: Add note about genscripts.sh. Revision Changes Path 1.10 +4 -0 src/contrib/binutils/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 Mar 12 23:28: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 CB0F537B41B; Tue, 12 Mar 2002 23:26:37 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D7QbI19952; Tue, 12 Mar 2002 23:26:37 -0800 (PST) (envelope-from sobomax) Message-Id: <200203130726.g2D7QbI19952@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 12 Mar 2002 23:26:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/gnome 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 sobomax 2002/03/12 23:26:37 PST Modified files: en/gnome news.xml Log: Add Mozilla 0.9.9 entry. Revision Changes Path 1.7 +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 Tue Mar 12 23:50: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 97D6337B400; Tue, 12 Mar 2002 23:50:44 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D7oiO38176; Tue, 12 Mar 2002 23:50:44 -0800 (PST) (envelope-from obrien) Message-Id: <200203130750.g2D7oiO38176@freefall.freebsd.org> From: "David E. O'Brien" Date: Tue, 12 Mar 2002 23:50:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/gcc32 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/03/12 23:50:44 PST Modified files: lang/gcc32 Makefile Log: Upgrade to a 12-March-2002 GCC 3.2 in-development checkout. Revision Changes Path 1.114 +2 -2 ports/lang/gcc32/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 12 23: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 9AC3337B417; Tue, 12 Mar 2002 23:57:24 -0800 (PST) Received: (from grog@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D7vOf42860; Tue, 12 Mar 2002 23:57:24 -0800 (PST) (envelope-from grog) Message-Id: <200203130757.g2D7vOf42860@freefall.freebsd.org> From: Greg Lehey Date: Tue, 12 Mar 2002 23:57:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/calendar/calendars calendar.history X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG grog 2002/03/12 23:57:24 PST Modified files: usr.bin/calendar/calendars calendar.history Log: Add encounter between Flinders and Baudin. Revision Changes Path 1.18 +2 -1 src/usr.bin/calendar/calendars/calendar.history To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 0: 5: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 616D437B404; Wed, 13 Mar 2002 00:05:24 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D85O649195; Wed, 13 Mar 2002 00:05:24 -0800 (PST) (envelope-from murray) Message-Id: <200203130805.g2D85O649195@freefall.freebsd.org> From: Murray Stokely Date: Wed, 13 Mar 2002 00:05:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/share/sgml mailing-lists.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 murray 2002/03/13 00:05:24 PST Modified files: en_US.ISO8859-1/share/sgml mailing-lists.ent Log: Add entity for bugbusters list. PR: docs/35821 Revision Changes Path 1.4 +3 -0 doc/en_US.ISO8859-1/share/sgml/mailing-lists.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 0: 9:58 2002 Delivered-To: cvs-all@freebsd.org Received: from freebsd.dk (fw-rl0.freebsd.dk [212.242.86.114]) by hub.freebsd.org (Postfix) with ESMTP id 32A1937B405; Wed, 13 Mar 2002 00:09:53 -0800 (PST) Received: (from sos@localhost) by freebsd.dk (8.11.6/8.11.6) id g2D89qu25345; Wed, 13 Mar 2002 09:09:52 +0100 (CET) (envelope-from sos) From: Søren Schmidt Message-Id: <200203130809.g2D89qu25345@freebsd.dk> Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-disk.c In-Reply-To: To: John Baldwin Date: Wed, 13 Mar 2002 09:09:52 +0100 (CET) Cc: SXren Schmidt , cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Reply-To: sos@freebsd.dk X-Mailer: ELM [version 2.4ME+ PL94b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG It seems John Baldwin wrote: > On 11-Mar-2002 SXren Schmidt wrote: > > sos 2002/03/11 13:04:32 PST > > > > Modified files: > > sys/dev/ata ata-all.c ata-all.h ata-disk.c ata-raid.c > > atapi-all.c atapi-cd.c atapi-fd.c > > atapi-tape.c > > Log: > > Add new support for locking an ATA channel and use that throughout > > the ATA/ATAPI driver. This solves the concurrency problem with > > the new GEOM code, and also cuts a good deal of the patch size > > in the upcoming MFC. > > Hmm, could you try using a mutex or sx lock instead of using atomic operations? > You aren't using any memory barriers, thus this won't work on SMP sparc64, > ia64, Pentium III+, or Alpha EV6+ machines. Also, the use of > ATA_FORCELOCK_CH()in ata_reinit() looks very evil as you are just assuming that > no threads on any other CPU's are messing with the channel at that point in > time. Hmm, this is (for now) just the interdevice locking broken out into a macro, the code does the same as it always has done. Anyhow the reasoning behind it is that it should be turned into "real" locking on current, but stay as it is on -stable. Having this as macros minimises my diff between stable & current. So I agree with your reasoning, I'm just not gotten that far yet :) And yes *FORCELOCK* looks evil, and it is and should be :) -Søren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 0:25:22 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 D8CE637B417; Wed, 13 Mar 2002 00:25:14 -0800 (PST) Received: (from ernst@localhost) by zaphod.euronet.nl (8.11.6/8.11.6) id g2D8PET14743; Wed, 13 Mar 2002 09:25:14 +0100 (CET) (envelope-from ernst) Message-Id: <200203130825.g2D8PET14743@zaphod.euronet.nl> Content-Type: text/plain; charset="iso-8859-1" From: Ernst de Haan To: Mark Huizer Subject: Re: cvs commit: ports/java/jdk13/files patch-common::Release.gmk Date: Wed, 13 Mar 2002 09:25:14 +0100 X-Mailer: KMail [version 1.3.2] Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200203111036.g2BAaR040250@freefall.freebsd.org> <20020312212555.GA72531@eeyore.local.dohd.org> In-Reply-To: <20020312212555.GA72531@eeyore.local.dohd.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 Hi Mark, See the commit log for Makefile at: http://www.freebsd.org/cgi/cvsweb.cgi/ports/java/jdk13/ It says: "Bumped PORTREVISION. Added a patch earlier today, and the port should be rebuilt for the patch to be applied. Now portupgrade should work as expected." :-) Ernst On Tuesday 12 March 2002 22:25, Mark Huizer wrote: > On Mon, Mar 11, 2002 at 02:36:27AM -0800, Ernst de Haan wrote: > > znerd 2002/03/11 02:36:27 PST > > > > Added files: > > java/jdk13/files patch-common::Release.gmk > > Log: > > Fixes the problem that the source JAR is too small. > > Shouldn't a bugfix give a portversion inc? So people get the bugfix > installed? > > Mark -- 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 Wed Mar 13 0:27:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C96F637B434; Wed, 13 Mar 2002 00:27:27 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D8RRw56214; Wed, 13 Mar 2002 00:27:27 -0800 (PST) (envelope-from murray) Message-Id: <200203130827.g2D8RRw56214@freefall.freebsd.org> From: Murray Stokely Date: Wed, 13 Mar 2002 00:27:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/mount_cd9660 mount_cd9660.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 murray 2002/03/13 00:27:27 PST Modified files: sbin/mount_cd9660 mount_cd9660.8 Log: Add information about multi-session CDs from the log message of r1.4. Also, add an examples section and show how to mount a Kodak Photo-CD. PR: docs/35206 Revision Changes Path 1.18 +10 -1 src/sbin/mount_cd9660/mount_cd9660.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 0:48: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 B8FAE37B405; Wed, 13 Mar 2002 00:48:07 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D8m7960191; Wed, 13 Mar 2002 00:48:07 -0800 (PST) (envelope-from murray) Message-Id: <200203130848.g2D8m7960191@freefall.freebsd.org> From: Murray Stokely Date: Wed, 13 Mar 2002 00:48:07 -0800 (PST) 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 murray 2002/03/13 00:48:07 PST Modified files: en_US.ISO8859-1/books/faq book.sgml Log: Add a Q/A about multi-session CDs to the disks section of the FAQ. Also, make two British -> American English spelling changes while I'm here. Revision Changes Path 1.414 +16 -2 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 Mar 13 0:55: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 9ACFA37B400; Wed, 13 Mar 2002 00:55:42 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D8tgT61400; Wed, 13 Mar 2002 00:55:42 -0800 (PST) (envelope-from pat) Message-Id: <200203130855.g2D8tgT61400@freefall.freebsd.org> From: Patrick Li Date: Wed, 13 Mar 2002 00:55:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/crystal 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 pat 2002/03/13 00:55:42 PST Modified files: devel/crystal Makefile pkg-plist Log: Make port PREFIX and LOCALBASE safe and use PTHREAD_LIBS Approved by: maintainer Revision Changes Path 1.3 +7 -0 ports/devel/crystal/Makefile 1.2 +1 -0 ports/devel/crystal/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 Mar 13 1: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 3A19C37B400; Wed, 13 Mar 2002 01:13:51 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D9DpN67562; Wed, 13 Mar 2002 01:13:51 -0800 (PST) (envelope-from pat) Message-Id: <200203130913.g2D9DpN67562@freefall.freebsd.org> From: Patrick Li Date: Wed, 13 Mar 2002 01:13:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/dylan Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/13 01:13:51 PST Modified files: lang/dylan Makefile distinfo pkg-plist Log: Update to 2.3.8 PR: 35828 Submitted by: maintainer Revision Changes Path 1.16 +24 -7 ports/lang/dylan/Makefile 1.5 +2 -2 ports/lang/dylan/distinfo 1.4 +215 -79 ports/lang/dylan/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 Mar 13 1: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 C728F37B423; Wed, 13 Mar 2002 01:23:11 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D9NBL68938; Wed, 13 Mar 2002 01:23:11 -0800 (PST) (envelope-from luigi) Message-Id: <200203130923.g2D9NBL68938@freefall.freebsd.org> From: Luigi Rizzo Date: Wed, 13 Mar 2002 01:23:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/nfsclient bootp_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 luigi 2002/03/13 01:23:11 PST Modified files: sys/nfsclient bootp_subr.c Log: Add a readonly sysctl variable of type string, kern.bootp_cookie, which is initialized with whatever string a dhcp/bootp server passes as vendor tag 134. There is no standard tag that I know with this information, and no vendor-defined tag that applies to FreeBSD that I could find doing the same thing. The intended use is to pass information to userland for run-time configuration of a diskless client without having to run a bootp/dhcp client for the third time (after the one in pxeboot/etherboot, and the one in the kernel bootp), also because these clients generally screwup the interface configuration, which is not exactly what you want when you have your disks nfs-mounted. Manpage update to follow soon. MFC-after: 3 days Revision Changes Path 1.36 +15 -0 src/sys/nfsclient/bootp_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 Mar 13 1:54: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 AA54137B402; Wed, 13 Mar 2002 01:54:31 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2D9sVv74343; Wed, 13 Mar 2002 01:54:31 -0800 (PST) (envelope-from murray) Message-Id: <200203130954.g2D9sVv74343@freefall.freebsd.org> From: Murray Stokely Date: Wed, 13 Mar 2002 01:54:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 release.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 murray 2002/03/13 01:54:31 PST Modified files: share/man/man7 release.7 Log: * Simplify the synopsis. * Remove trailing whitespace at EOL. * Various grammar cleanups. * Note that MAKE_ISOS is disabled by default. * Use more descriptive mdoc markup. * Use proper references for the online FDP documents. Submitted by: dd Revision Changes Path 1.2 +88 -68 src/share/man/man7/release.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 2: 1: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 1643A37B404; Wed, 13 Mar 2002 02:01:33 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DA1XG75459; Wed, 13 Mar 2002 02:01:33 -0800 (PST) (envelope-from sobomax) Message-Id: <200203131001.g2DA1XG75459@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 13 Mar 2002 02:01:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/galeon Makefile distinfo pkg-plist ports/www/galeon/files patch-configure patch-ltmain.sh patch-src::mozilla::TOCProtocolHandler.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 sobomax 2002/03/13 02:01:33 PST Modified files: www/galeon Makefile distinfo pkg-plist www/galeon/files patch-configure Added files: www/galeon/files patch-ltmain.sh Removed files: www/galeon/files patch-src::mozilla::TOCProtocolHandler.cpp Log: Update to 1.2.0. Revision Changes Path 1.59 +6 -4 ports/www/galeon/Makefile 1.36 +1 -1 ports/www/galeon/distinfo 1.7 +24 -24 ports/www/galeon/files/patch-configure 1.1 +45 -0 ports/www/galeon/files/patch-ltmain.sh (new) 1.5 +0 -24 ports/www/galeon/files/patch-src::mozilla::TOCProtocolHandler.cpp (dead) 1.31 +100 -29 ports/www/galeon/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 Mar 13 2: 9:43 2002 Delivered-To: cvs-all@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id ECBE337B402; Wed, 13 Mar 2002 02:09:34 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id MAA09411; Wed, 13 Mar 2002 12:09:27 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h198.229.dialup.iptcom.net [212.9.229.198]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id MAA69656; Wed, 13 Mar 2002 12:09:24 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id g2DA8qB88248; Wed, 13 Mar 2002 12:08:52 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C8F2570.44E35129@FreeBSD.org> Date: Wed, 13 Mar 2002 12:09:52 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Luigi Rizzo Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfsclient bootp_subr.c References: <200203130923.g2D9NBL68938@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 Luigi Rizzo wrote: > > luigi 2002/03/13 01:23:11 PST > > Modified files: > sys/nfsclient bootp_subr.c > Log: > Add a readonly sysctl variable of type string, kern.bootp_cookie, > which is initialized with whatever string a dhcp/bootp server passes > as vendor tag 134. > There is no standard tag that I know with this information, and > no vendor-defined tag that applies to FreeBSD that I could find > doing the same thing. > > The intended use is to pass information to userland for run-time > configuration of a diskless client without having to run a bootp/dhcp > client for the third time (after the one in pxeboot/etherboot, and > the one in the kernel bootp), also because these clients generally > screwup the interface configuration, which is not exactly what you > want when you have your disks nfs-mounted. > > Manpage update to follow soon. > > MFC-after: 3 days ^^^^^^^^^ You will not get a notification due superfluous hyphen. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 2:14:23 2002 Delivered-To: cvs-all@freebsd.org Received: from web21109.mail.yahoo.com (web21109.mail.yahoo.com [216.136.227.111]) by hub.freebsd.org (Postfix) with SMTP id AD64537B404 for ; Wed, 13 Mar 2002 02:14:16 -0800 (PST) Message-ID: <20020313101416.5915.qmail@web21109.mail.yahoo.com> Received: from [62.254.0.5] by web21109.mail.yahoo.com via HTTP; Wed, 13 Mar 2002 02:14:16 PST Date: Wed, 13 Mar 2002 02:14:16 -0800 (PST) From: Hiten Pandya Reply-To: hiten@uk.FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/developers-handbook Makefile To: Murray Stokely , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200203130704.g2D74Ce11301@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --- Murray Stokely wrote: > Assume maintainership of the Developer's Handbook (was asmodai). I > have by far made the most commits to this document, and I have some > ideas about splitting out the kernel content into a seperate book. > The scope of this document is too large. You are right, the document "will" get large, especially when my filesystems part is finished! ;) Is it possibly if you can have a look at PR: docs/35823, it is related to parting and cleaning up the filesystems part of the dev. handbook. Thanks, Regards, -- Hiten Pandya -- __________________________________________________ Do You Yahoo!? Try FREE Yahoo! Mail - the world's greatest free email! http://mail.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 Mar 13 2:16:58 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 241B237B417; Wed, 13 Mar 2002 02:16:53 -0800 (PST) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g2DAGSnp062660; Wed, 13 Mar 2002 11:16:29 +0100 (CET) (envelope-from phk@critter.freebsd.dk) To: Maxim Sobolev Cc: Luigi Rizzo , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfsclient bootp_subr.c In-Reply-To: Your message of "Wed, 13 Mar 2002 12:09:52 +0200." <3C8F2570.44E35129@FreeBSD.org> Date: Wed, 13 Mar 2002 11:16:28 +0100 Message-ID: <62659.1016014588@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 <3C8F2570.44E35129@FreeBSD.org>, Maxim Sobolev writes: >> luigi 2002/03/13 01:23:11 PST >> >> Modified files: >> sys/nfsclient bootp_subr.c >> Log: >> >> Manpage update to follow soon. >> >> MFC-after: 3 days > ^^^^^^^^^ You will not get a notification due superfluous hyphen. ... which it hopefully takes 11 days to realize so that the normal 2 week MFC period isn't violated. -- 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 Mar 13 2: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 D204E37B404; Wed, 13 Mar 2002 02:20:56 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DAKuH84609; Wed, 13 Mar 2002 02:20:56 -0800 (PST) (envelope-from pat) Message-Id: <200203131020.g2DAKuH84609@freefall.freebsd.org> From: Patrick Li Date: Wed, 13 Mar 2002 02:20:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/sylpheed-claws Makefile ports/mail/sylpheed-claws/files patch-src-send.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 02:20:56 PST Modified files: mail/sylpheed-claws Makefile Added files: mail/sylpheed-claws/files patch-src-send.c Log: Fix error check which cause problems with local mail delivery and bump PORTREVISION. PR: 35835 Submitted by: maintainer Revision Changes Path 1.8 +1 -0 ports/mail/sylpheed-claws/Makefile 1.1 +11 -0 ports/mail/sylpheed-claws/files/patch-src-send.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 Mar 13 2:21: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 46D3A37B405; Wed, 13 Mar 2002 02:21:19 -0800 (PST) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DALJI84788; Wed, 13 Mar 2002 02:21:19 -0800 (PST) (envelope-from brian) Message-Id: <200203131021.g2DALJI84788@freefall.freebsd.org> From: Brian Somers Date: Wed, 13 Mar 2002 02:21:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp mppe.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 02:21:19 PST Modified files: usr.sbin/ppp mppe.c Log: Use the return value from snprintf() to keep a track of the length of the display string in MPPEDispOpts. PR: 35836 MFC After: 2 weeks Revision Changes Path 1.14 +17 -16 src/usr.sbin/ppp/mppe.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 2: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 D9A2637B404; Wed, 13 Mar 2002 02:22:57 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DAMv284975; Wed, 13 Mar 2002 02:22:57 -0800 (PST) (envelope-from pat) Message-Id: <200203131022.g2DAMv284975@freefall.freebsd.org> From: Patrick Li Date: Wed, 13 Mar 2002 02:22:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/fwlogwatch Makefile ports/security/fwlogwatch/files patch-Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/13 02:22:57 PST Modified files: security/fwlogwatch Makefile security/fwlogwatch/files patch-Makefile Log: Fix installing translations to unbreak install Noticed by: bento Revision Changes Path 1.4 +6 -7 ports/security/fwlogwatch/Makefile 1.4 +32 -2 ports/security/fwlogwatch/files/patch-Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 2:23:27 2002 Delivered-To: cvs-all@freebsd.org Received: from iguana.icir.org (iguana.icir.org [192.150.187.36]) by hub.freebsd.org (Postfix) with ESMTP id 6B3B037B42F; Wed, 13 Mar 2002 02:23:14 -0800 (PST) Received: (from rizzo@localhost) by iguana.icir.org (8.11.6/8.11.3) id g2DAN0U64173; Wed, 13 Mar 2002 02:23:00 -0800 (PST) (envelope-from rizzo) Date: Wed, 13 Mar 2002 02:23:00 -0800 From: Luigi Rizzo To: Poul-Henning Kamp Cc: Maxim Sobolev , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfsclient bootp_subr.c Message-ID: <20020313022300.B63909@iguana.icir.org> References: <3C8F2570.44E35129@FreeBSD.org> <62659.1016014588@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <62659.1016014588@critter.freebsd.dk> User-Agent: Mutt/1.3.23i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Mar 13, 2002 at 11:16:28AM +0100, Poul-Henning Kamp wrote: > In message <3C8F2570.44E35129@FreeBSD.org>, Maxim Sobolev writes: ... > >> MFC-after: 3 days > > ^^^^^^^^^ You will not get a notification due superfluous hyphen. > > ... which it hopefully takes 11 days to realize so that the normal > 2 week MFC period isn't violated. wasn't it 3 days ? cheers luigi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 2:26: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5580537B402; Wed, 13 Mar 2002 02:25:58 -0800 (PST) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DAPwa85429; Wed, 13 Mar 2002 02:25:58 -0800 (PST) (envelope-from brian) Message-Id: <200203131025.g2DAPwa85429@freefall.freebsd.org> From: Brian Somers Date: Wed, 13 Mar 2002 02:25:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ppp mppe.c X-FreeBSD-CVS-Branch: NETGRAPH Sender: owner-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/03/13 02:25:58 PST Modified files: (Branch: NETGRAPH) usr.sbin/ppp mppe.c Log: MFC: Use the return value from snprintf() to keep a track of the length of the display string in MPPEDispOpts. Revision Changes Path 1.2.2.12 +18 -17 src/usr.sbin/ppp/mppe.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 2: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 3B33537B404; Wed, 13 Mar 2002 02:29:08 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DAT8o86683; Wed, 13 Mar 2002 02:29:08 -0800 (PST) (envelope-from obrien) Message-Id: <200203131029.g2DAT8o86683@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 13 Mar 2002 02:29:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/include/rpc rpcb_prot.x X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 02:29:07 PST Modified files: include/rpc rpcb_prot.x Log: Tokens after #endif are not strict ISO. Revision Changes Path 1.3 +2 -2 src/include/rpc/rpcb_prot.x To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 2:44:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0C15F37B422; Wed, 13 Mar 2002 02:44:10 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DAiAa90066; Wed, 13 Mar 2002 02:44:10 -0800 (PST) (envelope-from pat) Message-Id: <200203131044.g2DAiAa90066@freefall.freebsd.org> From: Patrick Li Date: Wed, 13 Mar 2002 02:44:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/plwm Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/13 02:44:09 PST Modified files: x11-wm/plwm Makefile distinfo pkg-plist Log: Update to 2.5 PR: 35810 Submitted by: maintainer Revision Changes Path 1.2 +3 -2 ports/x11-wm/plwm/Makefile 1.2 +1 -1 ports/x11-wm/plwm/distinfo 1.2 +12 -0 ports/x11-wm/plwm/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 Mar 13 2:52: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 8856B37B416; Wed, 13 Mar 2002 02:52:13 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DAqDB91558; Wed, 13 Mar 2002 02:52:13 -0800 (PST) (envelope-from sobomax) Message-Id: <200203131052.g2DAqDB91558@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 13 Mar 2002 02:52:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/gnucash Makefile distinfo pkg-plist ports/deskutils/gnucash/files 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 sobomax 2002/03/13 02:52:13 PST Modified files: deskutils/gnucash Makefile distinfo pkg-plist Added files: deskutils/gnucash/files patch-src::Makefile.in Log: Update to 1.6.6. Revision Changes Path 1.40 +1 -1 ports/deskutils/gnucash/Makefile 1.17 +1 -1 ports/deskutils/gnucash/distinfo 1.1 +15 -0 ports/deskutils/gnucash/files/patch-src::Makefile.in (new) 1.16 +64 -25 ports/deskutils/gnucash/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 Mar 13 2:55: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 83D2037B402; Wed, 13 Mar 2002 02:55:22 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DAtM991926; Wed, 13 Mar 2002 02:55:22 -0800 (PST) (envelope-from ru) Message-Id: <200203131055.g2DAtM991926@freefall.freebsd.org> From: Ruslan Ermilov Date: Wed, 13 Mar 2002 02:55:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/forth loader.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 ru 2002/03/13 02:55:22 PST Modified files: sys/boot/forth loader.conf.5 Log: Further document "console" (nullconsole). Revision Changes Path 1.15 +5 -2 src/sys/boot/forth/loader.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 Mar 13 3: 3: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 3B22737B405; Wed, 13 Mar 2002 03:03:24 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DB3O193554; Wed, 13 Mar 2002 03:03:24 -0800 (PST) (envelope-from pat) Message-Id: <200203131103.g2DB3O193554@freefall.freebsd.org> From: Patrick Li Date: Wed, 13 Mar 2002 03:03:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/moinmoin Makefile distinfo pkg-message pkg-plist ports/www/moinmoin/files patch-MoinMoin::parser::wiki.py patch-setup.py wrapper.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 03:03:24 PST Modified files: www/moinmoin Makefile distinfo pkg-plist www/moinmoin/files wrapper.c Added files: www/moinmoin pkg-message www/moinmoin/files patch-setup.py Removed files: www/moinmoin/files patch-MoinMoin::parser::wiki.py Log: Update to 0.11 PR: 35807 Submitted by: maintainer Revision Changes Path 1.5 +39 -33 ports/www/moinmoin/Makefile 1.3 +2 -1 ports/www/moinmoin/distinfo 1.2 +0 -11 ports/www/moinmoin/files/patch-MoinMoin::parser::wiki.py (dead) 1.1 +15 -0 ports/www/moinmoin/files/patch-setup.py (new) 1.3 +3 -2 ports/www/moinmoin/files/wrapper.c 1.1 +7 -0 ports/www/moinmoin/pkg-message (new) 1.3 +262 -167 ports/www/moinmoin/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 Mar 13 3: 3:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F07E037B422; Wed, 13 Mar 2002 03:03:36 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DB3aD93661; Wed, 13 Mar 2002 03:03:36 -0800 (PST) (envelope-from ru) Message-Id: <200203131103.g2DB3aD93661@freefall.freebsd.org> From: Ruslan Ermilov Date: Wed, 13 Mar 2002 03:03:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/i386/boot2 boot2.c src/sbin/reboot boot_i386.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 ru 2002/03/13 03:03:36 PST Modified files: sys/boot/i386/boot2 boot2.c sbin/reboot boot_i386.8 Log: Implement -m and -p loader(8) "boot" command options in boot2. (This is more useful for 4.x where boot blocks can still load kernels, modulo the PR kern/17422.) Revision Changes Path 1.34 +4 -2 src/sbin/reboot/boot_i386.8 1.37 +7 -3 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 Wed Mar 13 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 A41F537B404; Wed, 13 Mar 2002 03:09:56 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DB9uO98304; Wed, 13 Mar 2002 03:09:56 -0800 (PST) (envelope-from sobomax) Message-Id: <200203131109.g2DB9uO98304@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 13 Mar 2002 03:09:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/galeon Makefile ports/www/galeon/files patch-GNOME_Galeon_NautilusView.oaf.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/03/13 03:09:56 PST Modified files: www/galeon Makefile Added files: www/galeon/files patch-GNOME_Galeon_NautilusView.oaf.in Log: Whack iid of the Nautilus component to be the same as the iid of the defunct and disabled Mozilla components from the Nautilus package, so that user only needs to install Galeon to be able view html pages in Nautilus. Bump PORTREVISION. Revision Changes Path 1.60 +1 -0 ports/www/galeon/Makefile 1.1 +14 -0 ports/www/galeon/files/patch-GNOME_Galeon_NautilusView.oaf.in (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 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 2D5B037B400; Wed, 13 Mar 2002 03:30:24 -0800 (PST) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DBUO801588; Wed, 13 Mar 2002 03:30:24 -0800 (PST) (envelope-from brian) Message-Id: <200203131130.g2DBUO801588@freefall.freebsd.org> From: Brian Somers Date: Wed, 13 Mar 2002 03:30:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/pppoa 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 brian 2002/03/13 03:30:24 PST Modified files: net/pppoa Makefile Log: Change MAINTAINER from brian@Awfulhak.org to ports@freebsd-services.com Revision Changes Path 1.11 +1 -1 ports/net/pppoa/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 3:31: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 0D49837B48D; Wed, 13 Mar 2002 03:31:09 -0800 (PST) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DBV9W01729; Wed, 13 Mar 2002 03:31:09 -0800 (PST) (envelope-from brian) Message-Id: <200203131131.g2DBV9W01729@freefall.freebsd.org> From: Brian Somers Date: Wed, 13 Mar 2002 03:31:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/arpwatch Makefile ports/www/httptunnel Makefile ports/news/leafnode Makefile ports/graphics/vlc 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 brian 2002/03/13 03:31:08 PST Modified files: net/arpwatch Makefile www/httptunnel Makefile news/leafnode Makefile graphics/vlc Makefile Log: brian@Awfulhak.org => brian@FreeBSD.org Revision Changes Path 1.10 +2 -2 ports/graphics/vlc/Makefile 1.23 +3 -3 ports/net/arpwatch/Makefile 1.18 +3 -3 ports/news/leafnode/Makefile 1.10 +3 -3 ports/www/httptunnel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 4: 2:23 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 158A937B402; Wed, 13 Mar 2002 04:02:20 -0800 (PST) Received: (from vanilla@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DC2K712703; Wed, 13 Mar 2002 04:02:20 -0800 (PST) (envelope-from vanilla) Message-Id: <200203131202.g2DC2K712703@freefall.freebsd.org> From: "Vanilla I. Shu" Date: Wed, 13 Mar 2002 04:02:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/irssi 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/03/13 04:02:19 PST Modified files: irc/irssi Makefile distinfo pkg-plist Log: Upgrade to 0.8.4. Revision Changes Path 1.57 +3 -3 ports/irc/irssi/Makefile 1.38 +1 -1 ports/irc/irssi/distinfo 1.20 +11 -10 ports/irc/irssi/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 Mar 13 4: 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 A7C5A37B416; Wed, 13 Mar 2002 04:06:39 -0800 (PST) Received: (from vanilla@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DC6dX16895; Wed, 13 Mar 2002 04:06:39 -0800 (PST) (envelope-from vanilla) Message-Id: <200203131206.g2DC6dX16895@freefall.freebsd.org> From: "Vanilla I. Shu" Date: Wed, 13 Mar 2002 04:06:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/irssi/files patch-irssi.conf patch-src::fe-text::gui-entry.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 04:06:39 PST Modified files: chinese/irssi/files patch-irssi.conf patch-src::fe-text::gui-entry.c Log: Upgrade to 0.8.4. Revision Changes Path 1.2 +4 -12 ports/chinese/irssi/files/patch-irssi.conf 1.3 +13 -23 ports/chinese/irssi/files/patch-src::fe-text::gui-entry.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 4: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 E72B637B402; Wed, 13 Mar 2002 04:28:02 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DCS2j20016; Wed, 13 Mar 2002 04:28:02 -0800 (PST) (envelope-from ijliao) Message-Id: <200203131228.g2DCS2j20016@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 13 Mar 2002 04:28:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/sonice 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/03/13 04:28:02 PST Modified files: audio/sonice Makefile Log: fix typo when install Submitted by: Nathan Sharfi (author) Revision Changes Path 1.2 +1 -1 ports/audio/sonice/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 4:30: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 0214537B405; Wed, 13 Mar 2002 04:30:52 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DCUpc20587; Wed, 13 Mar 2002 04:30:51 -0800 (PST) (envelope-from ru) Message-Id: <200203131230.g2DCUpc20587@freefall.freebsd.org> From: Ruslan Ermilov Date: Wed, 13 Mar 2002 04:30:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/reboot boot_i386.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 ru 2002/03/13 04:30:51 PST Modified files: sbin/reboot boot_i386.8 Log: Document the "slice" syntax. Prodded by: ambrisko Revision Changes Path 1.35 +15 -4 src/sbin/reboot/boot_i386.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 4: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 13B4037B402; Wed, 13 Mar 2002 04:54:03 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DCs3V24113; Wed, 13 Mar 2002 04:54:03 -0800 (PST) (envelope-from maxim) Message-Id: <200203131254.g2DCs3V24113@freefall.freebsd.org> From: Maxim Konovalov Date: Wed, 13 Mar 2002 04:54:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern sysv_sem.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 maxim 2002/03/13 04:54:03 PST Modified files: (Branch: RELENG_4) sys/kern sysv_sem.c Log: MFC rev. 1.48: maximum semid is seminfo.semmni not seminfo.semmsl. Revision Changes Path 1.24.2.7 +3 -3 src/sys/kern/sysv_sem.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 5: 6:10 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 4B6CA37B419; Wed, 13 Mar 2002 05:06:01 -0800 (PST) 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 g2DD60i83657; Wed, 13 Mar 2002 08:06:00 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Wed, 13 Mar 2002 08:05:59 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Luigi Rizzo Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfsclient bootp_subr.c In-Reply-To: <200203130923.g2D9NBL68938@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, 13 Mar 2002, Luigi Rizzo wrote: > luigi 2002/03/13 01:23:11 PST > > Modified files: > sys/nfsclient bootp_subr.c > Log: > Add a readonly sysctl variable of type string, kern.bootp_cookie, > which is initialized with whatever string a dhcp/bootp server passes > as vendor tag 134. > There is no standard tag that I know with this information, and > no vendor-defined tag that applies to FreeBSD that I could find > doing the same thing. Hmm. This is in the private number range, I assume? Hopefully the handling is sufficiently robust that whatever comes back, bad things won't happen (be it a binary blob with lots of nulls, *'s, shell meta-characters, etc, when handled in userland?). > The intended use is to pass information to userland for run-time > configuration of a diskless client without having to run a bootp/dhcp > client for the third time (after the one in pxeboot/etherboot, and > the one in the kernel bootp), also because these clients generally > screwup the interface configuration, which is not exactly what you > want when you have your disks nfs-mounted. It seems to me that a slightly more useful incantation would actually expose all of the bootp options to userland via a more dimmensional sysctl mib. This would allow userland to inspect any other options that turned up, and avoid hard-coding use of this particular option number in kernel. 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 Mar 13 5: 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 A2E5E37B405; Wed, 13 Mar 2002 05:09:45 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DD9jJ29791; Wed, 13 Mar 2002 05:09:45 -0800 (PST) (envelope-from murray) Message-Id: <200203131309.g2DD9jJ29791@freefall.freebsd.org> From: Murray Stokely Date: Wed, 13 Mar 2002 05:09:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/share/mk web.site.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 murray 2002/03/13 05:09:45 PST Modified files: share/mk web.site.mk Log: Add a spellcheck target. Currently, this only works for english, but making this language neutral should be trivial. Revision Changes Path 1.42 +11 -1 www/share/mk/web.site.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 5:10:29 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A87037B416; Wed, 13 Mar 2002 05:10:23 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DDAMC29963; Wed, 13 Mar 2002 05:10:22 -0800 (PST) (envelope-from ue) Message-Id: <200203131310.g2DDAMC29963@freefall.freebsd.org> From: Udo Erdelhoff Date: Wed, 13 Mar 2002 05:10:22 -0800 (PST) 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: HEAD Sender: owner-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/03/13 05:10:22 PST Modified files: release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: Fix some of the worst sgml mistakes in this document: - paragraphs are closed with , not - for each opening tag, there should be a closing tag Not fixed (yet): block elements inside inline elements Noticed during translation, hunted down with suppe/slashexpand Revision Changes Path 1.36 +24 -20 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 Wed Mar 13 5:12: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 B1E8F37B402; Wed, 13 Mar 2002 05:12:20 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DDCKv30266; Wed, 13 Mar 2002 05:12:20 -0800 (PST) (envelope-from murray) Message-Id: <200203131312.g2DDCKv30266@freefall.freebsd.org> From: Murray Stokely Date: Wed, 13 Mar 2002 05:12:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/share/dict words X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 05:12:20 PST Added files: en/share/dict words Log: Add a local dictionary of words used on our web site, to reduce false positives for "make spellcheck". Revision Changes Path 1.1 +142 -0 www/en/share/dict/words (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 5:15: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 AFFAE37B405; Wed, 13 Mar 2002 05:15:34 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DDFYu30755; Wed, 13 Mar 2002 05:15:34 -0800 (PST) (envelope-from murray) Message-Id: <200203131315.g2DDFYu30755@freefall.freebsd.org> From: Murray Stokely Date: Wed, 13 Mar 2002 05:15:34 -0800 (PST) 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 murray 2002/03/13 05:15:34 PST Modified files: en/smp index.sgml Log: Spell 'probably' and 'obsolete' properly. Found by: "make spellcheck" Revision Changes Path 1.43 +3 -3 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 Wed Mar 13 5:17:26 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E27337B41B; Wed, 13 Mar 2002 05:17:22 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DDHMu34828; Wed, 13 Mar 2002 05:17:22 -0800 (PST) (envelope-from murray) Message-Id: <200203131317.g2DDHMu34828@freefall.freebsd.org> From: Murray Stokely Date: Wed, 13 Mar 2002 05:17:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/java newsflash.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/03/13 05:17:22 PST Modified files: en/java newsflash.sgml Log: Spell 'instructions' properly. Found by: "make spellcheck" Revision Changes Path 1.26 +2 -2 www/en/java/newsflash.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 5:18:45 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3EDC837B404; Wed, 13 Mar 2002 05:18:41 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DDIen35019; Wed, 13 Mar 2002 05:18:40 -0800 (PST) (envelope-from murray) Message-Id: <200203131318.g2DDIen35019@freefall.freebsd.org> From: Murray Stokely Date: Wed, 13 Mar 2002 05:18:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/platforms sparc.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/03/13 05:18:39 PST Modified files: en/platforms sparc.sgml Log: Spell 'causing' properly. Found by: "make spellcheck" Revision Changes Path 1.9 +3 -2 www/en/platforms/sparc.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 5:21: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 3D39937B41A; Wed, 13 Mar 2002 05:21:52 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DDLqQ35485; Wed, 13 Mar 2002 05:21:52 -0800 (PST) (envelope-from murray) Message-Id: <200203131321.g2DDLqQ35485@freefall.freebsd.org> From: Murray Stokely Date: Wed, 13 Mar 2002 05:21:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en docs.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/03/13 05:21:52 PST Modified files: en docs.sgml Log: Capitalize 'CVSup' consistently. Found by: "make spellcheck" Revision Changes Path 1.142 +2 -2 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 Mar 13 5:45: 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 37E8437B405; Wed, 13 Mar 2002 05:45:01 -0800 (PST) Received: (from nyan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DDj1p48170; Wed, 13 Mar 2002 05:45:01 -0800 (PST) (envelope-from nyan) Message-Id: <200203131345.g2DDj1p48170@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Wed, 13 Mar 2002 05:45:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/i386 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/03/13 05:45:01 PST Modified files: sys/pc98/i386 machdep.c Log: MFi386: revision 1.502 Revision Changes Path 1.264 +4 -0 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 Wed Mar 13 5:46: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 9C51137B425; Wed, 13 Mar 2002 05:45:54 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id ABD9A5346; Wed, 13 Mar 2002 14:45:52 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Robert Watson Cc: Luigi Rizzo , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfsclient bootp_subr.c References: From: Dag-Erling Smorgrav Date: 13 Mar 2002 14:45:52 +0100 In-Reply-To: Message-ID: Lines: 15 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Robert Watson writes: > On Wed, 13 Mar 2002, Luigi Rizzo wrote: > > Log: > > Add a readonly sysctl variable of type string, kern.bootp_cookie, > > which is initialized with whatever string a dhcp/bootp server passes > > as vendor tag 134. > Hmm. This is in the private number range, I assume? Well, technically 128-254 is reserved for site-local extensions, but it's commonly used for vendor extensions. I don't know if there's a reserved range for vendor extensions. See the dhcp-options man page. 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 Mar 13 5:47:31 2002 Delivered-To: cvs-all@freebsd.org Received: from iguana.icir.org (iguana.icir.org [192.150.187.36]) by hub.freebsd.org (Postfix) with ESMTP id 23ED737B41C; Wed, 13 Mar 2002 05:47:06 -0800 (PST) Received: (from rizzo@localhost) by iguana.icir.org (8.11.6/8.11.3) id g2DDl5R65506; Wed, 13 Mar 2002 05:47:05 -0800 (PST) (envelope-from rizzo) Date: Wed, 13 Mar 2002 05:47:05 -0800 From: Luigi Rizzo To: Robert Watson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfsclient bootp_subr.c Message-ID: <20020313054705.B65383@iguana.icir.org> References: <200203130923.g2D9NBL68938@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 Sender: owner-cvs-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, Mar 13, 2002 at 08:05:59AM -0500, Robert Watson wrote: ... > Hmm. This is in the private number range, I assume? Hopefully the of course yes. > handling is sufficiently robust that whatever comes back, bad things won't > happen (be it a binary blob with lots of nulls, *'s, shell > meta-characters, etc, when handled in userland?). I am not going, in the kernel, to escape characters which have special meaning for arbitrary userland programs -- that's their business. The kernel copies chars up to the first NUL and within the buffer size allocated for the purpose, and bootpc_tag() makes sure that there is actually a NUL in the source buffer when it returns. > > The intended use is to pass information to userland for run-time > > configuration of a diskless client without having to run a bootp/dhcp > > client for the third time (after the one in pxeboot/etherboot, and > > the one in the kernel bootp), also because these clients generally > > screwup the interface configuration, which is not exactly what you > > want when you have your disks nfs-mounted. > > It seems to me that a slightly more useful incantation would actually > expose all of the bootp options to userland via a more dimmensional sysctl > mib. This would allow userland to inspect any other options that turned Sure, i don't mind doing that using dynamic sysctls if people have no objections. I can create kern.bootp.tX (where X is the tag number) sysctl variables according to what came back from the server. Using names instead of numeric values is not going to work I am afraid, as half of the namespace is not standardized anyways. cheers luigi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 5:49: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from green.bikeshed.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B62037B417; Wed, 13 Mar 2002 05:48:35 -0800 (PST) Received: from localhost (green@localhost) by green.bikeshed.org (8.11.6/8.11.6) with ESMTP id g2DDmYc09238; Wed, 13 Mar 2002 08:48:34 -0500 (EST) (envelope-from green@green.bikeshed.org) Message-Id: <200203131348.g2DDmYc09238@green.bikeshed.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Ying-Chieh Liao Cc: Brian Feldman , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libz - Imported sources In-Reply-To: Your message of "Wed, 13 Mar 2002 14:43:05 +0800." <20020313064305.GA38664@terry.dragon2.net> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Date: Wed, 13 Mar 2002 08:48:34 -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 Ying-Chieh Liao wrote: > On =A4@, 3 11, 2002 at 14:30:00 -0800, Brian Feldman wrote: > > src/lib/libz - Imported sources > > Update of /home/ncvs/src/lib/libz > > In directory freefall.freebsd.org:/d/home/green/HEAD/src/lib/zlib-1= =2E1.4 > > Log Message: > > Import zlib 1.1.4 onto the vendor branch. > = > MFC ? I'll MFC to -STABLE today, but since it doesn't actually contain bugfixes= we = need more than before for security purposes, I don't think it's worth = merging to the release branches. Opinions? -- = Brian Fundakowski Feldman \'[ FreeBSD ]''''''''= ''\ <> green@FreeBSD.org <> bfeldman@tislabs.com \ The Power to Serv= e! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,= ,,,,\ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 5:50:29 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 0676837B44B; Wed, 13 Mar 2002 05:49:26 -0800 (PST) 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 g2DDnOi86022; Wed, 13 Mar 2002 08:49:24 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Wed, 13 Mar 2002 08:49:24 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Murray Stokely Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: www/share/mk web.site.mk In-Reply-To: <200203131309.g2DD9jJ29791@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 Wee. Our complex documentation build infrastructure catches up with 1980's word processing technology! Three cheers! :-) Robert N M Watson FreeBSD Core Team, TrustedBSD Project robert@fledge.watson.org NAI Labs, Safeport Network Services On Wed, 13 Mar 2002, Murray Stokely wrote: > murray 2002/03/13 05:09:45 PST > > Modified files: > share/mk web.site.mk > Log: > Add a spellcheck target. Currently, this only works for english, but > making this language neutral should be trivial. > > Revision Changes Path > 1.42 +11 -1 www/share/mk/web.site.mk > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 5:58: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 0826637B405; Wed, 13 Mar 2002 05:58:16 -0800 (PST) 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 g2DDwEi86413; Wed, 13 Mar 2002 08:58:14 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Wed, 13 Mar 2002 08:58:14 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Luigi Rizzo Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfsclient bootp_subr.c In-Reply-To: <20020313054705.B65383@iguana.icir.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, 13 Mar 2002, Luigi Rizzo wrote: > On Wed, Mar 13, 2002 at 08:05:59AM -0500, Robert Watson wrote: > ... > > Hmm. This is in the private number range, I assume? Hopefully the > > of course yes. > > > handling is sufficiently robust that whatever comes back, bad things won't > > happen (be it a binary blob with lots of nulls, *'s, shell > > meta-characters, etc, when handled in userland?). > > I am not going, in the kernel, to escape characters which have special > meaning for arbitrary userland programs -- that's their business. > > The kernel copies chars up to the first NUL and within the buffer size > allocated for the purpose, and bootpc_tag() makes sure that there is > actually a NUL in the source buffer when it returns. I was wondering if the better approach wouldn't be to export the data as SYSCTL_OPAQUE, since it really is just a binary blob. Otherwise it will pop out in sysctl -a (if represented as a string) and potential toast the terminal. I had no end of fun sending xterm resize and retitle escape codes during IETF a few years ago in Pittsburgh... Turns out everyone ran dsniff in an xterm without output filtering. For the general exporting case (see below), exporting is also more useful. > > It seems to me that a slightly more useful incantation would actually > > expose all of the bootp options to userland via a more dimmensional sysctl > > mib. This would allow userland to inspect any other options that turned > > Sure, i don't mind doing that using dynamic sysctls if people have no > objections. I can create kern.bootp.tX (where X is the tag number) > sysctl variables according to what came back from the server. Using > names instead of numeric values is not going to work I am afraid, as > half of the namespace is not standardized anyways. Sounds great. I was also interested in, for reference purposes, caching and exporting the interface name used to bootp (caching in case it's removed, since the ifnet will go away). What I have in mind is a userland utility to make use of the bootp options more generally following a diskless boot. I'm particularly interested in the bootp DNS-related fields, log server, and YP information fields. A lot of this would remove the local customization I have to do for rc.conf and /etc. 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 Mar 13 5:59:44 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 68FDB37B416; Wed, 13 Mar 2002 05:59:41 -0800 (PST) Received: (from nyan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DDxfg62014; Wed, 13 Mar 2002 05:59:41 -0800 (PST) (envelope-from nyan) Message-Id: <200203131359.g2DDxfg62014@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Wed, 13 Mar 2002 05:59:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/pc98 pcaudio.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/03/13 05:59:41 PST Modified files: sys/pc98/pc98 pcaudio.c Log: Use the dx register for the destination port address. A immediate port address of outb is only 8 bits. Submitted by: chi@bd.mbn.or.jp (Chiharu Shibata) MFC after: 3 days Revision Changes Path 1.40 +5 -2 src/sys/pc98/pc98/pcaudio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 6: 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 05C8837B400; Wed, 13 Mar 2002 06:01:58 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DE1vc62385; Wed, 13 Mar 2002 06:01:57 -0800 (PST) (envelope-from des) Message-Id: <200203131401.g2DE1vc62385@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 13 Mar 2002 06:01:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/gnats Makefile ports/databases/gnats/files gnats-edit-pr.patch X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 06:01:57 PST Modified files: databases/gnats Makefile databases/gnats/files gnats-edit-pr.patch Log: Remove two unnecessary messages in gnats-pr-edit. Bump PORTREVISION. Revision Changes Path 1.39 +1 -1 ports/databases/gnats/Makefile 1.5 +7 -7 ports/databases/gnats/files/gnats-edit-pr.patch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 6:28:35 2002 Delivered-To: cvs-all@freebsd.org Received: from iguana.icir.org (iguana.icir.org [192.150.187.36]) by hub.freebsd.org (Postfix) with ESMTP id 930EE37B405; Wed, 13 Mar 2002 06:28:32 -0800 (PST) Received: (from rizzo@localhost) by iguana.icir.org (8.11.6/8.11.3) id g2DESWH65843; Wed, 13 Mar 2002 06:28:32 -0800 (PST) (envelope-from rizzo) Date: Wed, 13 Mar 2002 06:28:32 -0800 From: Luigi Rizzo To: Robert Watson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/nfsclient bootp_subr.c Message-ID: <20020313062832.C65602@iguana.icir.org> References: <20020313054705.B65383@iguana.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.23i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, Mar 13, 2002 at 08:58:14AM -0500, Robert Watson wrote: ... > > I am not going, in the kernel, to escape characters which have special > > meaning for arbitrary userland programs -- that's their business. ... > I was wondering if the better approach wouldn't be to export the data as > SYSCTL_OPAQUE, since it really is just a binary blob. Otherwise it will in principle yes, though the goal is for this info to be easily usable in a resource-poor environment -- almost invariably, this parsing will be done in some shell script. So someone ultimately has to convert the binary blobs into a string of some sort. Whether this someone is "sysctl" or an external problem, I have no idea. I'd probably be inclined towards the former, which is useful anyways. cheers luigi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 6:34: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 30F3337B404; Wed, 13 Mar 2002 06:34:56 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DEYub80898; Wed, 13 Mar 2002 06:34:56 -0800 (PST) (envelope-from ijliao) Message-Id: <200203131434.g2DEYub80898@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 13 Mar 2002 06:34:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/sloccount Makefile distinfo pkg-comment pkg-plist ports/misc/sloccount/files patch-makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/13 06:34:56 PST Modified files: misc/sloccount Makefile distinfo pkg-comment pkg-plist misc/sloccount/files patch-makefile Log: ugprade to 2.11 take maintainership PR: 35854 Submitted by: Thomas Hurst (new maintainer) Revision Changes Path 1.5 +2 -2 ports/misc/sloccount/Makefile 1.5 +1 -1 ports/misc/sloccount/distinfo 1.5 +13 -5 ports/misc/sloccount/files/patch-makefile 1.2 +1 -1 ports/misc/sloccount/pkg-comment 1.5 +1 -0 ports/misc/sloccount/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 Mar 13 6:36: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 4C20D37B402; Wed, 13 Mar 2002 06:36:09 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DEa9r81219; Wed, 13 Mar 2002 06:36:09 -0800 (PST) (envelope-from ijliao) Message-Id: <200203131436.g2DEa9r81219@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 13 Mar 2002 06:36:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/mozilla-tclp Makefile distinfo pkg-message ports/chinese/mozilla-tclp/files installed-chrome.txt X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/13 06:36:09 PST Modified files: chinese/mozilla-tclp Makefile distinfo pkg-message chinese/mozilla-tclp/files installed-chrome.txt Log: upgrade to mozilla 0.9.9 PR: 35855 Submitted by: maintainer Revision Changes Path 1.10 +2 -4 ports/chinese/mozilla-tclp/Makefile 1.6 +1 -1 ports/chinese/mozilla-tclp/distinfo 1.6 +15 -17 ports/chinese/mozilla-tclp/files/installed-chrome.txt 1.2 +3 -2 ports/chinese/mozilla-tclp/pkg-message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 6: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 8F66937B404; Wed, 13 Mar 2002 06:42:32 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DEgWZ82850; Wed, 13 Mar 2002 06:42:32 -0800 (PST) (envelope-from ijliao) Message-Id: <200203131442.g2DEgWZ82850@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 13 Mar 2002 06:42:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/mziq Makefile pkg-descr ports/audio/mziq/files patch-aa patch-mziq X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 06:42:32 PST Modified files: audio/mziq Makefile pkg-descr Added files: audio/mziq/files patch-aa Removed files: audio/mziq/files patch-mziq Log: Fix patch problem and project homepage url PR: 35857 Submitted by: maintainer Revision Changes Path 1.3 +3 -5 ports/audio/mziq/Makefile 1.1 +11 -0 ports/audio/mziq/files/patch-aa (new) 1.2 +0 -11 ports/audio/mziq/files/patch-mziq (dead) 1.2 +1 -1 ports/audio/mziq/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 7: 0: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 ECCCB37B404; Wed, 13 Mar 2002 07:00:53 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DF0r385904; Wed, 13 Mar 2002 07:00:53 -0800 (PST) (envelope-from ijliao) Message-Id: <200203131500.g2DF0r385904@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 13 Mar 2002 07:00:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/yacas Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/13 07:00:53 PST Modified files: math/yacas Makefile distinfo pkg-plist Log: upgrade to 1.0.50 Revision Changes Path 1.6 +1 -1 ports/math/yacas/Makefile 1.5 +1 -1 ports/math/yacas/distinfo 1.5 +7 -2 ports/math/yacas/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 Mar 13 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 5799437B485; Wed, 13 Mar 2002 07:02:55 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DF2tc86252; Wed, 13 Mar 2002 07:02:55 -0800 (PST) (envelope-from ijliao) Message-Id: <200203131502.g2DF2tc86252@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 13 Mar 2002 07:02:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/help2man 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/03/13 07:02:55 PST Modified files: misc/help2man Makefile distinfo Log: upgrade to 1.26 Revision Changes Path 1.2 +1 -1 ports/misc/help2man/Makefile 1.2 +1 -1 ports/misc/help2man/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 7: 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 254D737B417; Wed, 13 Mar 2002 07:06:16 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DF6GL90383; Wed, 13 Mar 2002 07:06:16 -0800 (PST) (envelope-from sobomax) Message-Id: <200203131506.g2DF6GL90383@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 13 Mar 2002 07:06:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/jdk13 Makefile pkg-plist ports/java/jdk13/files patch-..::ext::plugin::build::solaris::GNUmakefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 07:06:16 PST Modified files: java/jdk13 Makefile pkg-plist Added files: java/jdk13/files patch-..::ext::plugin::build::solaris::GNUmakefile Log: Link Mozilla pligin with libXt to make it working with Mozilla-0.9.9. This resolves the following error when starting Mozilla: LoadPlugin: failed to initialize shared library /usr/local/jdk1.3.1/jre/plugin/i386/ns600/libjavaplugin_oji.so [/usr/local/jdk1.3.1/jre/plugin/i386/ns600/libjavaplugin_oji.so: Undefined symbol "XtShellStrings"] While I'm here add a tweak to prune empty directories before installing JDK, so that JDK installed from a pre-built package deinstalls properly. Bump PORTREVISION. Revision Changes Path 1.18 +9 -2 ports/java/jdk13/Makefile 1.1 +14 -0 ports/java/jdk13/files/patch-..::ext::plugin::build::solaris::GNUmakefile (new) 1.6 +0 -2 ports/java/jdk13/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 Mar 13 7: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 7C3D737B419; Wed, 13 Mar 2002 07:18:07 -0800 (PST) Received: (from sheldonh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DFI7w92663; Wed, 13 Mar 2002 07:18:07 -0800 (PST) (envelope-from sheldonh) Message-Id: <200203131518.g2DFI7w92663@freefall.freebsd.org> From: Sheldon Hearn Date: Wed, 13 Mar 2002 07:18:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/exim-devel Makefile ports/mail/exim-devel/files patch-src::configure.default X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 07:18:07 PST Modified files: mail/exim-devel Makefile mail/exim-devel/files patch-src::configure.default Log: Don't add user mailnull to the list of never_users, which exim-4 uses for more checks than exim-3 did. Bump PORTREVISION accordingly. Reported by: Suresh Ramasubramanian Revision Changes Path 1.112 +1 -0 ports/mail/exim-devel/Makefile 1.7 +5 -7 ports/mail/exim-devel/files/patch-src::configure.default To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 7:23:58 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 226E737B416; Wed, 13 Mar 2002 07:23:53 -0800 (PST) Received: from localhost (localhost [::1]) by castle.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) with ESMTP/inet6 id g2DFNqc74823; Thu, 14 Mar 2002 00:23:52 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200203121855.g2CItrq28077@freefall.freebsd.org> References: <200203121855.g2CItrq28077@freefall.freebsd.org> 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: 14 From: Makoto Matsushita To: des@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin Makefile Date: Thu, 14 Mar 2002 00:23:48 +0900 Message-Id: <20020314002348P.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 des> Modified files: des> usr.sbin Makefile des> Log: des> Don't try to cross-build sysinstall. Why? nyan's patch (posted to current@FreeBSD.org) wouldn't help you? This change may be unwelcomed to snapshots.pc98.jp.FreeBSD.org, a snapshots service of FreeBSD/pc98, which is an i386 box (same hardware of snapshots.jp.FreeBSD.org, btw :-). -- - 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 Wed Mar 13 7:28:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 88D8437B400; Wed, 13 Mar 2002 07:28:38 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DFSch94349; Wed, 13 Mar 2002 07:28:38 -0800 (PST) (envelope-from rwatson) Message-Id: <200203131528.g2DFSch94349@freefall.freebsd.org> From: Robert Watson Date: Wed, 13 Mar 2002 07:28:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 rc.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 rwatson 2002/03/13 07:28:38 PST Modified files: share/man/man5 rc.conf.5 Log: Document the "lomac_enable" rc.conf switch. Reminded by: Makoto Matsushita Revision Changes Path 1.155 +10 -0 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 7: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 5AFB737B400; Wed, 13 Mar 2002 07:29:52 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DFTqj94565; Wed, 13 Mar 2002 07:29:52 -0800 (PST) (envelope-from ue) Message-Id: <200203131529.g2DFTqj94565@freefall.freebsd.org> From: Udo Erdelhoff Date: Wed, 13 Mar 2002 07:29:52 -0800 (PST) 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: HEAD Sender: owner-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/03/13 07:29:52 PST Modified files: release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: SGML fixes, part2: block elements like lists do not belong into inline elements like paragraphs This is a markup-only commit (just like the last one) MFC after: 14 days Revision Changes Path 1.37 +69 -97 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 Wed Mar 13 7:44: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 AED8C37B405; Wed, 13 Mar 2002 07:44:41 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DFifU00583; Wed, 13 Mar 2002 07:44:41 -0800 (PST) (envelope-from sobomax) Message-Id: <200203131544.g2DFifU00583@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 13 Mar 2002 07:44:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mozilla Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/13 07:44:41 PST Modified files: www/mozilla Makefile Log: Quick'n'dirty hack to prevent freetype1 includes from beint picked instead of freetype2 ones. Reported by: many Revision Changes Path 1.84 +1 -0 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 Wed Mar 13 7:45: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 A0B5E37B417; Wed, 13 Mar 2002 07:45:37 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DFjbc00844; Wed, 13 Mar 2002 07:45:37 -0800 (PST) (envelope-from sobomax) Message-Id: <200203131545.g2DFjbc00844@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 13 Mar 2002 07:45:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mozilla Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/13 07:45:37 PST Modified files: www/mozilla Makefile Log: Fix a typo in previous commit. Revision Changes Path 1.85 +1 -1 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 Wed Mar 13 7:48:20 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 17FE237B405; Wed, 13 Mar 2002 07:48:15 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 0EC1C5346; Wed, 13 Mar 2002 16:48:11 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Makoto Matsushita Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin Makefile References: <200203121855.g2CItrq28077@freefall.freebsd.org> <20020314002348P.matusita@jp.FreeBSD.org> From: Dag-Erling Smorgrav Date: 13 Mar 2002 16:48:10 +0100 In-Reply-To: <20020314002348P.matusita@jp.FreeBSD.org> Message-ID: Lines: 20 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 Makoto Matsushita writes: > des> Log: > des> Don't try to cross-build sysinstall. > Why? Because it apparently breaks crossbuilding between Alpha and i386. > nyan's patch (posted to current@FreeBSD.org) wouldn't help you? I haven't seen them. > This change may be unwelcomed to snapshots.pc98.jp.FreeBSD.org, a > snapshots service of FreeBSD/pc98, which is an i386 box (same hardware > of snapshots.jp.FreeBSD.org, btw :-). So come up with something better :) 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 Mar 13 7:58: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 3A97137B405; Wed, 13 Mar 2002 07:58:21 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DFwL903502; Wed, 13 Mar 2002 07:58:21 -0800 (PST) (envelope-from trevor) Message-Id: <200203131558.g2DFwL903502@freefall.freebsd.org> From: Trevor Johnson Date: Wed, 13 Mar 2002 07:58:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/linux_base-62 Makefile ports/emulators/linux_base 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/03/13 07:58:21 PST Modified files: emulators/linux_base-62 Makefile emulators/linux_base Makefile Log: Bump PORTREVISION for the zlib update. Forgotten by: me Reported by: Mike Buchanon PR: 35860 Revision Changes Path 1.59 +1 -0 ports/emulators/linux_base-62/Makefile 1.59 +1 -0 ports/emulators/linux_base/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 8:10:59 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 65F8537B402; Wed, 13 Mar 2002 08:10:54 -0800 (PST) Received: from localhost (localhost [::1]) by castle.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) with ESMTP/inet6 id g2DGAlc86930; Thu, 14 Mar 2002 01:10:48 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: References: <200203121855.g2CItrq28077@freefall.freebsd.org> <20020314002348P.matusita@jp.FreeBSD.org> 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: des@ofug.org Subject: Re: cvs commit: src/usr.sbin Makefile Date: Thu, 14 Mar 2002 01:10:45 +0900 Message-Id: <20020314011045S.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 > nyan's patch (posted to current@FreeBSD.org) wouldn't help you? des> I haven't seen them. http://www.FreeBSD.org/cgi/getmsg.cgi?fetch=55656+60763+/usr/local/www/db/text/2001/freebsd-current/20010930.freebsd-current It also helps for non-cross build; current src/usr.sbin/sysinstall/Makefile assumes that bootblock files are sitting under /boot and that's not good. -- - 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 Wed Mar 13 8: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 4AE9237B41A; Wed, 13 Mar 2002 08:31:54 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DGVs813864; Wed, 13 Mar 2002 08:31:54 -0800 (PST) (envelope-from mbr) Message-Id: <200203131631.g2DGVs813864@freefall.freebsd.org> From: Martin Blapp Date: Wed, 13 Mar 2002 08:31:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-external::dt::dtpatch.sh patch-external::expat::expatpatch.sh patch-external::jpeg::jpegpatch.sh patch-external::npsdk::npsdkpatch.sh patch-external::zlib::zlibpatch.sh ports/editors/openoffice-devel/files patch-external::dt::dtpatch.sh patch-external::expat::expatpatch.sh patch-external::jpeg::jpegpatch.sh patch-external::npsdk::npsdkpatch.sh patch-external::zlib::zlibpatch.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 mbr 2002/03/13 08:31:53 PST Added files: editors/openoffice/files patch-external::dt::dtpatch.sh patch-external::expat::expatpatch.sh patch-external::jpeg::jpegpatch.sh patch-external::npsdk::npsdkpatch.sh patch-external::zlib::zlibpatch.sh editors/openoffice-devel/files patch-external::dt::dtpatch.sh patch-external::expat::expatpatch.sh patch-external::jpeg::jpegpatch.sh patch-external::npsdk::npsdkpatch.sh patch-external::zlib::zlibpatch.sh Log: Fix breakage with "patch -i" which is missing in STABLE. For some strange reason it exists in recent CURRENT, but is not documented. Revision Changes Path 1.1 +11 -0 ports/editors/openoffice-devel/files/patch-external::dt::dtpatch.sh (new) 1.1 +11 -0 ports/editors/openoffice-devel/files/patch-external::expat::expatpatch.sh (new) 1.1 +11 -0 ports/editors/openoffice-devel/files/patch-external::jpeg::jpegpatch.sh (new) 1.1 +11 -0 ports/editors/openoffice-devel/files/patch-external::npsdk::npsdkpatch.sh (new) 1.1 +11 -0 ports/editors/openoffice-devel/files/patch-external::zlib::zlibpatch.sh (new) 1.1 +11 -0 ports/editors/openoffice/files/patch-external::dt::dtpatch.sh (new) 1.1 +11 -0 ports/editors/openoffice/files/patch-external::expat::expatpatch.sh (new) 1.1 +11 -0 ports/editors/openoffice/files/patch-external::jpeg::jpegpatch.sh (new) 1.1 +11 -0 ports/editors/openoffice/files/patch-external::npsdk::npsdkpatch.sh (new) 1.1 +11 -0 ports/editors/openoffice/files/patch-external::zlib::zlibpatch.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 Mar 13 8:32: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 EEF0837B404; Wed, 13 Mar 2002 08:32:11 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DGWBH13925; Wed, 13 Mar 2002 08:32:11 -0800 (PST) (envelope-from imp) Message-Id: <200203131632.g2DGWBH13925@freefall.freebsd.org> From: Warner Losh Date: Wed, 13 Mar 2002 08:32:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/pci pci.c pci_private.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/03/13 08:32:11 PST Modified files: sys/dev/pci pci.c pci_private.h Log: Add 5th parameter to pci_read_device specifying the size of the object to create. Revision Changes Path 1.188 +4 -5 src/sys/dev/pci/pci.c 1.2 +2 -1 src/sys/dev/pci/pci_private.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 8:34: 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 BCF1337B402; Wed, 13 Mar 2002 08:33:57 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DGXvc14279; Wed, 13 Mar 2002 08:33:57 -0800 (PST) (envelope-from mbr) Message-Id: <200203131633.g2DGXvc14279@freefall.freebsd.org> From: Martin Blapp Date: Wed, 13 Mar 2002 08:33:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mbr 2002/03/13 08:33:57 PST Modified files: editors Makefile Log: Add missing openoffice-devel Revision Changes Path 1.188 +1 -0 ports/editors/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 8:36: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 56CA737B400; Wed, 13 Mar 2002 08:36:54 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DGase14828; Wed, 13 Mar 2002 08:36:54 -0800 (PST) (envelope-from des) Message-Id: <200203131636.g2DGase14828@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 13 Mar 2002 08:36:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/gnats/files patch-ad X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/13 08:36:54 PST Added files: databases/gnats/files patch-ad Log: Do not ignore return code from 'pr-edit --lock'. Revision Changes Path 1.1 +20 -0 ports/databases/gnats/files/patch-ad (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 8: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 CA02537B400; Wed, 13 Mar 2002 08:38:13 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DGcDK15045; Wed, 13 Mar 2002 08:38:13 -0800 (PST) (envelope-from des) Message-Id: <200203131638.g2DGcDK15045@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 13 Mar 2002 08:38:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/gnats 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 des 2002/03/13 08:38:13 PST Modified files: databases/gnats Makefile pkg-plist Log: Make things easier for admins@: move aside gnats-db and symlink it to /home/gnats. Bump PORTREVISION. Revision Changes Path 1.40 +7 -1 ports/databases/gnats/Makefile 1.16 +15 -14 ports/databases/gnats/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 Mar 13 8:43: 6 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 0DC1437B404; Wed, 13 Mar 2002 08:42:59 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g2DGgqi29637; Wed, 13 Mar 2002 09:42:52 -0700 (MST) (envelope-from imp@village.org) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id g2DGgkL41102; Wed, 13 Mar 2002 09:42:47 -0700 (MST) (envelope-from imp@village.org) Date: Wed, 13 Mar 2002 09:42:22 -0700 (MST) Message-Id: <20020313.094222.68306321.imp@village.org> To: matusita@jp.FreeBSD.org Cc: des@ofug.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin Makefile From: "M. Warner Losh" In-Reply-To: <20020314011045S.matusita@jp.FreeBSD.org> References: <20020314002348P.matusita@jp.FreeBSD.org> <20020314011045S.matusita@jp.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 This looks like a good start at fixing the problem... Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 8:44: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 59C7C37B405; Wed, 13 Mar 2002 08:44:46 -0800 (PST) Received: (from jeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DGike25812; Wed, 13 Mar 2002 08:44:46 -0800 (PST) (envelope-from jeh) Message-Id: <200203131644.g2DGike25812@freefall.freebsd.org> From: "James E. Housley" Date: Wed, 13 Mar 2002 08:44:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/apache13-modssl Makefile ports/www/apache13-modssl/files FreeBSD.layout X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 08:44:46 PST Modified files: www/apache13-modssl Makefile Removed files: www/apache13-modssl/files FreeBSD.layout Log: Small sync with apache13 - The standard apache distribution now comes with a FreeBSD layout that is the same as the one that was in files/FreeBSD.layout Revision Changes Path 1.97 +1 -1 ports/www/apache13-modssl/Makefile 1.4 +0 -20 ports/www/apache13-modssl/files/FreeBSD.layout (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 8:49:27 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id 0D18737B404; Wed, 13 Mar 2002 08:49:22 -0800 (PST) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.11.6/8.11.6) with ESMTP id g2DGnHA59724; Wed, 13 Mar 2002 17:49:17 +0100 (CET) Date: Wed, 13 Mar 2002 17:51:31 +0100 (CET) From: Martin Blapp To: Peter Ulrich Kruppa Cc: Kenneth Culver , Max Khon , Dmitry Sivachenko , "David O'Brien" , Martin Blapp , , Subject: Re: Openoffice workaround to build In-Reply-To: <20020312222228.L1990-100000@pukruppa.de> Message-ID: <20020313175048.G7707-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > Just a question, but I tried to build this, and for some reason, it fails > > when it tries to find some executable "xml2cmp" Just fixed that. It was due tue the "patch -i" problem, so bootstrap was skipped where xml2cmp was initially made. Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 8: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 104C437B402; Wed, 13 Mar 2002 08:58:14 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DGwE935766; Wed, 13 Mar 2002 08:58:14 -0800 (PST) (envelope-from knu) Message-Id: <200203131658.g2DGwE935766@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 13 Mar 2002 08:58:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/portupgrade 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/03/13 08:58:14 PST Modified files: sysutils/portupgrade Makefile Log: Define PATCH_SITE_SUBDIR to make use of the PATCH_SITES properly. Submitted by: Dan Peterson Revision Changes Path 1.129 +1 -0 ports/sysutils/portupgrade/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 8:59: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 C0E9537B405; Wed, 13 Mar 2002 08:59:54 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DGxsE36256; Wed, 13 Mar 2002 08:59:54 -0800 (PST) (envelope-from bmah) Message-Id: <200203131659.g2DGxsE36256@freefall.freebsd.org> From: "Bruce A. Mah" Date: Wed, 13 Mar 2002 08:59:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/share/sgml mailing-lists.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 bmah 2002/03/13 08:59:54 PST Modified files: en_US.ISO8859-1/share/sgml mailing-lists.ent Log: Remove the article ("The") from the recently-added a.bugbusters entry to make it consistent with the rest of the entries. (This avoids odd-looking output in sentences of the form "Joe sent email to &a.bugbusters;."). Revision Changes Path 1.5 +1 -1 doc/en_US.ISO8859-1/share/sgml/mailing-lists.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 9:59:50 2002 Delivered-To: cvs-all@freebsd.org Received: from finntroll.newgold.net (durham-ar1-175-175.durham.dsl.gtei.net [4.40.175.175]) by hub.freebsd.org (Postfix) with SMTP id 5D94E37B423 for ; Wed, 13 Mar 2002 09:59:25 -0800 (PST) Received: (qmail 7030 invoked by uid 1001); 13 Mar 2002 18:06:34 -0000 Date: Wed, 13 Mar 2002 18:06:34 +0000 From: "J. Mallett" To: Martin Blapp Cc: Peter Ulrich Kruppa , Kenneth Culver , Max Khon , Dmitry Sivachenko , David O'Brien , Martin Blapp , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: Openoffice workaround to build Message-ID: <20020313180633.GA3415@FreeBSD.ORG> References: <20020312222228.L1990-100000@pukruppa.de> <20020313175048.G7707-100000@levais.imp.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020313175048.G7707-100000@levais.imp.ch> 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 Wed, Mar 13, 2002 at 05:51:31PM +0100, Martin Blapp wrote: > > > Just a question, but I tried to build this, and for some reason, it fails > > > when it tries to find some executable "xml2cmp" > > Just fixed that. It was due tue the "patch -i" problem, so bootstrap > was skipped where xml2cmp was initially made. What's the matter with -i? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 10: 6:44 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id 342D837B41A; Wed, 13 Mar 2002 10:06:41 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.12.2/8.12.2) with ESMTP id g2DI6o3b087697; Wed, 13 Mar 2002 13:06:55 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200203131806.g2DI6o3b087697@aldan.algebra.com> Date: Wed, 13 Mar 2002 13:06:50 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml To: ue@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200203131310.g2DDAMC29963@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 13 Mar, Udo Erdelhoff wrote: > ue 2002/03/13 05:10:22 PST > > Modified files: > release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml > Log: > Fix some of the worst sgml mistakes in this document: ^^^^ [...] > - for each opening tag, there should be a closing tag My understanding was, the SGML does not require this. XML does... Is that wrong? -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 10: 8: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 D258437B41A; Wed, 13 Mar 2002 10:08:33 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DI8XG77614; Wed, 13 Mar 2002 10:08:33 -0800 (PST) (envelope-from rwatson) Message-Id: <200203131808.g2DI8XG77614@freefall.freebsd.org> From: Robert Watson Date: Wed, 13 Mar 2002 10:08:33 -0800 (PST) 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 rwatson 2002/03/13 10:08:33 PST Modified files: share/sgml man-refs.ent Log: Add tentities for sx(9), sx_slock(9), and sx_xlock(9). Reviewed by: asmodai, chris Revision Changes Path 1.123 +3 -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 Wed Mar 13 10:13: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 E33C437B41A; Wed, 13 Mar 2002 10:13:16 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DIDGD79020; Wed, 13 Mar 2002 10:13:16 -0800 (PST) (envelope-from luigi) Message-Id: <200203131813.g2DIDGD79020@freefall.freebsd.org> From: Luigi Rizzo Date: Wed, 13 Mar 2002 10:13:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/bridge 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 luigi 2002/03/13 10:13:16 PST Modified files: (Branch: RELENG_4) release/picobsd/bridge crunch.conf Log: Add "sleep" and "basename" in case we need them, we have a few spare bytes on the disk... Not applicable to -current, ENOSPACE... Revision Changes Path 1.1.2.4 +2 -1 src/release/picobsd/bridge/crunch.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 10:15: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 32E0237B419; Wed, 13 Mar 2002 10:15:52 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DIFqp79483; Wed, 13 Mar 2002 10:15:52 -0800 (PST) (envelope-from luigi) Message-Id: <200203131815.g2DIFqp79483@freefall.freebsd.org> From: Luigi Rizzo Date: Wed, 13 Mar 2002 10:15:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/mfs_tree/etc rc src/release/picobsd/mfs_tree/stand update 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/03/13 10:15:52 PST Modified files: (Branch: RELENG_4) release/picobsd/mfs_tree/etc rc release/picobsd/mfs_tree/stand update Log: MFC: the variable with the info from the bootloader is [will be] machdep.guessed_bootdev, the relevant kernel code will be committed in a couple of days. Revision Changes Path 1.2.2.7 +2 -2 src/release/picobsd/mfs_tree/etc/rc 1.2.2.3 +3 -3 src/release/picobsd/mfs_tree/stand/update To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 10: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 E703B37B400; Wed, 13 Mar 2002 10:16:53 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DIGrs79671; Wed, 13 Mar 2002 10:16:53 -0800 (PST) (envelope-from luigi) Message-Id: <200203131816.g2DIGrs79671@freefall.freebsd.org> From: Luigi Rizzo Date: Wed, 13 Mar 2002 10:16:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/router PICOBSD 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/03/13 10:16:53 PST Modified files: (Branch: RELENG_4) release/picobsd/router PICOBSD Log: Make this compile, but the image still does not boot properly due to a missing init. Revision Changes Path 1.6.2.3 +3 -2 src/release/picobsd/router/PICOBSD To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 10:27: 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 00F9237B416; Wed, 13 Mar 2002 10:27:00 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DIQx880758; Wed, 13 Mar 2002 10:26:59 -0800 (PST) (envelope-from obrien) Message-Id: <200203131826.g2DIQx880758@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 13 Mar 2002 10:26:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/ld Makefile.alpha Makefile.i386 Makefile.ia64 Makefile.powerpc Makefile.sparc64 genscripts.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/03/13 10:26:59 PST Modified files: gnu/usr.bin/binutils/ld Makefile.alpha Makefile.i386 Makefile.ia64 Makefile.powerpc Makefile.sparc64 genscripts.sh Log: Support linking with -z combreloc (combine and sort reloc sections) and with --shared -z combreloc (shared library, combine & sort relocs) Submitted by: peter Bribed by: peter Fixes: IA-64, Kaffe, and QT Doesn't fix ports by: kris Tested on: make(1) release w/docproj Desired for: 5.0-DP#1 Approved by: murray Seconded by: jhb Revision Changes Path 1.15 +1 -1 src/gnu/usr.bin/binutils/ld/Makefile.alpha 1.16 +1 -1 src/gnu/usr.bin/binutils/ld/Makefile.i386 1.3 +1 -1 src/gnu/usr.bin/binutils/ld/Makefile.ia64 1.9 +13 -1 src/gnu/usr.bin/binutils/ld/Makefile.powerpc 1.9 +2 -2 src/gnu/usr.bin/binutils/ld/Makefile.sparc64 1.4 +60 -13 src/gnu/usr.bin/binutils/ld/genscripts.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 10:30: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.ruhr.de (in-ruhr4.ruhr.de [212.23.134.2]) by hub.freebsd.org (Postfix) with SMTP id D63B937B402 for ; Wed, 13 Mar 2002 10:29:52 -0800 (PST) Received: (qmail 23079 invoked by uid 10); 13 Mar 2002 18:29:52 -0000 Received: (from ue@localhost) by nathan.ruhr.de (8.11.6/8.11.2) id g2DIMcY83887; Wed, 13 Mar 2002 19:22:38 +0100 (CET) (envelope-from ue) Date: Wed, 13 Mar 2002 19:22:38 +0100 From: Udo Erdelhoff To: freebsd-doc@freebsd.org Cc: Mikhail Teterin Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Message-ID: <20020313182237.GC90154@nathan.ruhr.de> Reply-To: freebsd-doc@freebsd.org Mail-Followup-To: freebsd-doc@freebsd.org, Mikhail Teterin References: <200203131310.g2DDAMC29963@freefall.freebsd.org> <200203131806.g2DI6o3b087697@aldan.algebra.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203131806.g2DI6o3b087697@aldan.algebra.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, Mar 13, 2002 at 01:06:50PM -0500, Mikhail Teterin wrote: > > - for each opening tag, there should be a closing tag > > My understanding was, the SGML does not require this. XML does... Is > that wrong? That depends on your definition of depends ;-) If you mean depend as in 'does it compile' then the answer is no, it does not need this. In this context (FreeBSD docs), the answer is yes. We do not use minimized closing tags (i.e. ), either. And once you had to track down a 'Why does this thing look so strange?' problem in an sgml document, you know why. /s/Udo -- In a world without fences, who needs Gates? In a world without walls, who needs Windows? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 10:37: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 F2BD737B400; Wed, 13 Mar 2002 10:37:41 -0800 (PST) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DIbfF83203; Wed, 13 Mar 2002 10:37:41 -0800 (PST) (envelope-from keramida) Message-Id: <200203131837.g2DIbfF83203@freefall.freebsd.org> From: Giorgos Keramidas Date: Wed, 13 Mar 2002 10:37:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 divert.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 keramida 2002/03/13 10:37:41 PST Modified files: share/man/man4 divert.4 Log: Fix syntax error. Revision Changes Path 1.26 +2 -2 src/share/man/man4/divert.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 10:38: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 6566637B416; Wed, 13 Mar 2002 10:38:44 -0800 (PST) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DIcia83470; Wed, 13 Mar 2002 10:38:44 -0800 (PST) (envelope-from keramida) Message-Id: <200203131838.g2DIcia83470@freefall.freebsd.org> From: Giorgos Keramidas Date: Wed, 13 Mar 2002 10:38:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 divert.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 keramida 2002/03/13 10:38:44 PST Modified files: (Branch: RELENG_4) share/man/man4 divert.4 Log: MFC: 1.26: Fix syntax error. Revision Changes Path 1.15.2.7 +1 -1 src/share/man/man4/divert.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 10: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 1994A37B402; Wed, 13 Mar 2002 10:45:34 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DIjYf84950; Wed, 13 Mar 2002 10:45:34 -0800 (PST) (envelope-from des) Message-Id: <200203131845.g2DIjYf84950@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 13 Mar 2002 10:45:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/login login.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/13 10:45:34 PST Modified files: (Branch: RELENG_4) usr.bin/login login.c Log: Avoid bogus log messages when logging in without a tty. PR: bin/31997 Revision Changes Path 1.51.2.13 +4 -4 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 Wed Mar 13 10:49: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 345CC37B400; Wed, 13 Mar 2002 10:49:52 -0800 (PST) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DInqj85756; Wed, 13 Mar 2002 10:49:52 -0800 (PST) (envelope-from dwcjr) Message-Id: <200203131849.g2DInqj85756@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Wed, 13 Mar 2002 10:49:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/samba Makefile ports/net/samba/files patch-ba X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 10:49:52 PST Modified files: net/samba Makefile net/samba/files patch-ba Log: Fix ldap support Add SSL support Add Syslog support Submitted by: U.Drolshagen@t-online.de, rehsack@liwing.de, rolnas@takas.lt Revision Changes Path 1.75 +8 -0 ports/net/samba/Makefile 1.5 +12 -3 ports/net/samba/files/patch-ba To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 11: 0: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 1650C37B417; Wed, 13 Mar 2002 11:00:20 -0800 (PST) Received: (from rnordier@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DJ0KG87685; Wed, 13 Mar 2002 11:00:20 -0800 (PST) (envelope-from rnordier) Message-Id: <200203131900.g2DJ0KG87685@freefall.freebsd.org> From: Robert Nordier Date: Wed, 13 Mar 2002 11:00:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/reboot boot_i386.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 rnordier 2002/03/13 11:00:19 PST Modified files: sbin/reboot boot_i386.8 Log: Clarify the cylinder > 1023 issue, now that EDD support is automatic. Also drop a note about undocumented features that was intended to cover the since-documented slice-selection syntax. Revision Changes Path 1.36 +3 -5 src/sbin/reboot/boot_i386.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 11: 8:32 2002 Delivered-To: cvs-all@freebsd.org Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by hub.freebsd.org (Postfix) with ESMTP id D9F4837B419; Wed, 13 Mar 2002 11:08:19 -0800 (PST) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.11.6/8.11.4) id g2DJ8JZ41583; Wed, 13 Mar 2002 11:08:19 -0800 (PST) (envelope-from sgk) Date: Wed, 13 Mar 2002 11:08:19 -0800 From: Steve Kargl To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/gnu/usr.bin/binutils/ld Makefile.alpha Makefile.i386 Makefile.ia64 Makefile.powerpc Makefile.sparc64 genscripts.sh Message-ID: <20020313110819.A91001@troutmask.apl.washington.edu> References: <200203131826.g2DIQx880758@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: <200203131826.g2DIQx880758@freefall.freebsd.org>; from obrien@FreeBSD.ORG on Wed, Mar 13, 2002 at 10:26:59AM -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 On Wed, Mar 13, 2002 at 10:26:59AM -0800, David E. O'Brien wrote: > > Submitted by: peter > Bribed by: peter > Fixes: IA-64, Kaffe, and QT > Doesn't fix ports by: kris > Tested on: make(1) release w/docproj > Desired for: 5.0-DP#1 > Approved by: murray > Seconded by: jhb CMA[1]: obrien [1] CMA == Covered My Ass ;-) :-O Seriously, thanks for dealing with toolchain issues. -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 11:12:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4A46437B421; Wed, 13 Mar 2002 11:12:31 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DJCVF93343; Wed, 13 Mar 2002 11:12:31 -0800 (PST) (envelope-from des) Message-Id: <200203131912.g2DJCVF93343@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 13 Mar 2002 11:12:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/13 11:12:31 PST Modified files: sys/alpha/alpha machdep.c Log: Remove a bogus cast that breaks the Alpha kernel build due to -Werror. Revision Changes Path 1.165 +0 -1 src/sys/alpha/alpha/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 11:12:42 2002 Delivered-To: cvs-all@freebsd.org Received: from mailout10.sul.t-online.com (mailout10.sul.t-online.com [194.25.134.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E7FA37B42B; Wed, 13 Mar 2002 11:12:23 -0800 (PST) Received: from fwd06.sul.t-online.de by mailout10.sul.t-online.com with smtp id 16lEAg-0004zT-02; Wed, 13 Mar 2002 20:12:22 +0100 Received: from Magelan.Leidinger.net (520065502893-0001@[217.83.31.59]) by fmrl06.sul.t-online.com with esmtp id 16lEAW-1E9zpwC; Wed, 13 Mar 2002 20:12:12 +0100 Received: from Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.2/8.12.2) with ESMTP id g2DJBw5D000513; Wed, 13 Mar 2002 20:12:02 +0100 (CET) (envelope-from netchild@Leidinger.net) Message-Id: <200203131912.g2DJBw5D000513@Magelan.Leidinger.net> Date: Wed, 13 Mar 2002 20:11:58 +0100 (CET) From: Alexander Leidinger Subject: Re: Openoffice workaround to build To: mb@imp.ch Cc: fjoe@FreeBSD.ORG, demon@FreeBSD.ORG, obrien@FreeBSD.ORG, mbr@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-Reply-To: <20020312173505.N2573-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8BIT 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 12 Mär, Martin Blapp wrote: > >> At least for -current: >> WANT_DWARF2_UNWIND=YES in /etc/make.conf > > Be there, done that. To be sure: on -current? > I made world. I reinstalled the STLport, I run the > tests and was no more happy, since it still coredumps. > > It is definitly not WANT_DWARF2_UNWIND You need to rebuild every installed C++ lib too. Bye, Alexander. -- To boldly go where I surely don't belong. 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 Mar 13 11:13: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 33BDB37B423; Wed, 13 Mar 2002 11:13:41 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DJDfK93583; Wed, 13 Mar 2002 11:13:41 -0800 (PST) (envelope-from des) Message-Id: <200203131913.g2DJDfK93583@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 13 Mar 2002 11:13:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/13 11:13:41 PST Modified files: sys/alpha/alpha machdep.c Log: Back out previous commit, it was the wrong patch! Revision Changes Path 1.166 +1 -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 Wed Mar 13 11:16:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E95D037B405; Wed, 13 Mar 2002 11:16:41 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DJGfR94308; Wed, 13 Mar 2002 11:16:41 -0800 (PST) (envelope-from des) Message-Id: <200203131916.g2DJGfR94308@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Wed, 13 Mar 2002 11:16:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/13 11:16:41 PST Modified files: sys/alpha/alpha machdep.c Log: Remove a bogus cast and deconstification that broke the Alpha kernel build. Revision Changes Path 1.167 +3 -2 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 Wed Mar 13 11: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 55CB437B423; Wed, 13 Mar 2002 11:19:41 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DJJfi94980; Wed, 13 Mar 2002 11:19:41 -0800 (PST) (envelope-from mbr) Message-Id: <200203131919.g2DJJfi94980@freefall.freebsd.org> From: Martin Blapp Date: Wed, 13 Mar 2002 11:19:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice Makefile ports/editors/openoffice-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 mbr 2002/03/13 11:19:41 PST Modified files: editors/openoffice Makefile editors/openoffice-devel Makefile Log: Make portlint happy. Add USE_XLIB Submitted by: demon Revision Changes Path 1.43 +12 -10 ports/editors/openoffice-devel/Makefile 1.42 +11 -10 ports/editors/openoffice/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 11:23: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 26A0A37B402; Wed, 13 Mar 2002 11:23:33 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DJNXh96173; Wed, 13 Mar 2002 11:23:33 -0800 (PST) (envelope-from mbr) Message-Id: <200203131923.g2DJNXh96173@freefall.freebsd.org> From: Martin Blapp Date: Wed, 13 Mar 2002 11:23:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice-devel Makefile ports/editors/openoffice-devel/files patch-set_soenv.1 patch-solenv::inc::unxfbsdi.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 mbr 2002/03/13 11:23:33 PST Modified files: editors/openoffice-devel Makefile editors/openoffice-devel/files patch-set_soenv.1 patch-solenv::inc::unxfbsdi.mk Log: Use CXX and CC, so we can specify cc295 and g++295 from ports. More commits will follow. Revision Changes Path 1.44 +4 -1 ports/editors/openoffice-devel/Makefile 1.12 +30 -10 ports/editors/openoffice-devel/files/patch-set_soenv.1 1.5 +3 -3 ports/editors/openoffice-devel/files/patch-solenv::inc::unxfbsdi.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 11:29: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 636E337B402; Wed, 13 Mar 2002 11:29:10 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DJTA297058; Wed, 13 Mar 2002 11:29:10 -0800 (PST) (envelope-from mbr) Message-Id: <200203131929.g2DJTA297058@freefall.freebsd.org> From: Martin Blapp Date: Wed, 13 Mar 2002 11:29:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice-devel/files patch-config_office::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 mbr 2002/03/13 11:29:10 PST Modified files: editors/openoffice-devel/files patch-config_office::configure.in Log: Add $CC and $CXX here too Revision Changes Path 1.4 +3 -3 ports/editors/openoffice-devel/files/patch-config_office::configure.in To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 11: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 ED7EB37B400; Wed, 13 Mar 2002 11:34:39 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DJYd899509; Wed, 13 Mar 2002 11:34:39 -0800 (PST) (envelope-from knu) Message-Id: <200203131934.g2DJYd899509@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 13 Mar 2002 11:34:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/bison 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/03/13 11:34:39 PST Modified files: devel/bison Makefile Log: Bump PORTREVISION for the last fix. Revision Changes Path 1.24 +1 -0 ports/devel/bison/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 11:49: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 3F73137B41F; Wed, 13 Mar 2002 11:49:05 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DJn5n02052; Wed, 13 Mar 2002 11:49:05 -0800 (PST) (envelope-from mbr) Message-Id: <200203131949.g2DJn5n02052@freefall.freebsd.org> From: Martin Blapp Date: Wed, 13 Mar 2002 11:49:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice-devel/files patch-dmake::unix::linux::gnu::make.sh patch-solenv::inc::settings.mk patch-solenv::inc::tg_shl.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 mbr 2002/03/13 11:49:05 PST Added files: editors/openoffice-devel/files patch-dmake::unix::linux::gnu::make.sh patch-solenv::inc::settings.mk patch-solenv::inc::tg_shl.mk Log: gcc/cc -> $(CC) fixes Do remove empty defines CC/CXX variables which did overwrite the SOLENV environment. Revision Changes Path 1.1 +244 -0 ports/editors/openoffice-devel/files/patch-dmake::unix::linux::gnu::make.sh (new) 1.1 +24 -0 ports/editors/openoffice-devel/files/patch-solenv::inc::settings.mk (new) 1.1 +14 -0 ports/editors/openoffice-devel/files/patch-solenv::inc::tg_shl.mk (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 11:59: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by hub.freebsd.org (Postfix) with ESMTP id 8BED537B404; Wed, 13 Mar 2002 11:58:58 -0800 (PST) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by sasami.jurai.net (8.11.6/8.11.6) with ESMTP id g2DJwvX11046; Wed, 13 Mar 2002 14:58:57 -0500 (EST) (envelope-from winter@jurai.net) Date: Wed, 13 Mar 2002 14:58:57 -0500 (EST) From: "Matthew N. Dodd" To: "James E. Housley" Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: ports/www/apache13-modssl Makefile ports/www/apache13-modssl/files FreeBSD.layout In-Reply-To: <200203131644.g2DGike25812@freefall.freebsd.org> Message-ID: <20020313145809.V14697-100000@sasami.jurai.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 13 Mar 2002, James E. Housley wrote: > jeh 2002/03/13 08:44:46 PST > > Modified files: > www/apache13-modssl Makefile > Removed files: > www/apache13-modssl/files FreeBSD.layout > Log: > Small sync with apache13 > - The standard apache distribution now comes with a FreeBSD layout > that is the same as the one that was in files/FreeBSD.layout Can we please just creat mod_ssl and have done with apacheXX-modssl? -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 11:59: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 B742537B416; Wed, 13 Mar 2002 11:59:25 -0800 (PST) Received: (from jesper@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DJxPv03344; Wed, 13 Mar 2002 11:59:25 -0800 (PST) (envelope-from jesper) Message-Id: <200203131959.g2DJxPv03344@freefall.freebsd.org> From: Jesper Skriver Date: Wed, 13 Mar 2002 11:59:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/p5-Math-Pari 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/03/13 11:59:25 PST Modified files: math/p5-Math-Pari Makefile distinfo Log: Upgrade to 2.010201 Approved by: mharo Revision Changes Path 1.2 +1 -1 ports/math/p5-Math-Pari/Makefile 1.2 +1 -1 ports/math/p5-Math-Pari/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 12: 0: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 47A0D37B416; Wed, 13 Mar 2002 12:00:11 -0800 (PST) Received: (from jesper@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DK0BM03515; Wed, 13 Mar 2002 12:00:11 -0800 (PST) (envelope-from jesper) Message-Id: <200203132000.g2DK0BM03515@freefall.freebsd.org> From: Jesper Skriver Date: Wed, 13 Mar 2002 12:00:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/converters/p5-Convert-PEM 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/03/13 12:00:11 PST Modified files: converters/p5-Convert-PEM Makefile distinfo Log: Upgrade to 0.06 Approved by: mharo Revision Changes Path 1.2 +1 -1 ports/converters/p5-Convert-PEM/Makefile 1.2 +1 -1 ports/converters/p5-Convert-PEM/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 12:11:46 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 0BD8F37B402; Wed, 13 Mar 2002 12:11:42 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 1ED9B9B08; Wed, 13 Mar 2002 15:11:24 -0500 (EST) Date: Wed, 13 Mar 2002 15:11:24 -0500 From: Will Andrews To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/databases/gnats Makefile pkg-plist Message-ID: <20020313201123.GL53073@squall.waterspout.com> Mail-Followup-To: Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200203131638.g2DGcDK15045@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203131638.g2DGcDK15045@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, Mar 13, 2002 at 08:38:13AM -0800, Dag-Erling Smorgrav wrote: > Log: > Make things easier for admins@: move aside gnats-db and symlink it to > /home/gnats. Bump PORTREVISION. Umm.. freefall-specific stuff in ports is evil. Please remove this code from the repository. Thanks, -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 12: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 4527437B41C; Wed, 13 Mar 2002 12:18:22 -0800 (PST) Received: (from demon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DKIMH11525; Wed, 13 Mar 2002 12:18:22 -0800 (PST) (envelope-from demon) Message-Id: <200203132018.g2DKIMH11525@freefall.freebsd.org> From: Dmitry Sivachenko Date: Wed, 13 Mar 2002 12:18:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_php4/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 demon 2002/03/13 12:18:22 PST Modified files: www/mod_php4/scripts configure.php Log: Add YAZ support (optional, off by default). MAINTAINER timeout. Revision Changes Path 1.158 +6 -1 ports/www/mod_php4/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 Wed Mar 13 12:23: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 7AA1537B4D3; Wed, 13 Mar 2002 12:21:13 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2DKLDlv012997; Wed, 13 Mar 2002 12:21:13 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2DKJurl012956; Wed, 13 Mar 2002 12:19:56 -0800 (PST) Date: Wed, 13 Mar 2002 12:19:56 -0800 From: "David O'Brien" To: Sheldon Hearn Cc: Michael Smith , cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/share/misc pci_vendors Message-ID: <20020313121956.A12641@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <200203080122.g281Met01159@mass.dis.org> <30168.1015835916@axl.seasidesoftware.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <30168.1015835916@axl.seasidesoftware.co.za>; from sheldonh@starjuice.net on Mon, Mar 11, 2002 at 10:38:36AM +0200 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Mar 11, 2002 at 10:38:36AM +0200, Sheldon Hearn wrote: > I'll wait a week for the next regen to give David time to submit the new > entry to Craig Hart, as per: > > http://members.hyperlink.com.au/~chart/formail.htm thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 12:29:51 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 91CA937B404; Wed, 13 Mar 2002 12:29:46 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 0A2B55347; Wed, 13 Mar 2002 21:29:44 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Mikhail Teterin Cc: ue@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml References: <200203131806.g2DI6o3b087697@aldan.algebra.com> From: Dag-Erling Smorgrav Date: 13 Mar 2002 21:29:43 +0100 In-Reply-To: <200203131806.g2DI6o3b087697@aldan.algebra.com> Message-ID: Lines: 17 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 Mikhail Teterin writes: > On 13 Mar, Udo Erdelhoff wrote: > > - for each opening tag, there should be a closing tag > My understanding was, the SGML does not require this. XML does... Is > that wrong? Depends on the DTD and the element in question. Some tags (like
in HTML) don't need a closing tag, some (like in HTML) do. In XML, all elements need a closing tag, unless the element is empty, in which case you can use the short form, like
- note that the space is required by the specification, though not all XML parsers will complain if it's missing. 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 Mar 13 12:31: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 270C237B417; Wed, 13 Mar 2002 12:31:23 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DKVNN15068; Wed, 13 Mar 2002 12:31:23 -0800 (PST) (envelope-from knu) Message-Id: <200203132031.g2DKVNN15068@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 13 Mar 2002 12:31:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/archivers/ruby-zlib 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/03/13 12:31:22 PST Modified files: archivers/ruby-zlib Makefile distinfo Log: Update to 0.5.1. Revision Changes Path 1.14 +1 -1 ports/archivers/ruby-zlib/Makefile 1.6 +1 -1 ports/archivers/ruby-zlib/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 12:34:14 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 285B937B404; Wed, 13 Mar 2002 12:34:11 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id C175E5346; Wed, 13 Mar 2002 21:34:09 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Robert Watson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/share/sgml man-refs.ent References: <200203131808.g2DI8XG77614@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 13 Mar 2002 21:34:09 +0100 In-Reply-To: <200203131808.g2DI8XG77614@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 Robert Watson writes: > Log: > Add tentities for sx(9), sx_slock(9), and sx_xlock(9). Shouldn't this be automated? I use the following to generate a similar file in my private document tree: find /usr/share/man/man* -name '*gz' | perl -n -e 'next unless (m,^(.*/)([\w\._-]+)\.(\d)\.gz$,); print "$2$3\">";' >manpages.ent 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 Mar 13 12: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 7390637B41C; Wed, 13 Mar 2002 12:34:16 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DKYGH15810; Wed, 13 Mar 2002 12:34:16 -0800 (PST) (envelope-from knu) Message-Id: <200203132034.g2DKYGH15810@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 13 Mar 2002 12:34:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/ruby-format 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/03/13 12:34:16 PST Modified files: textproc/ruby-format Makefile distinfo pkg-plist Log: Update to 1.04. Revision Changes Path 1.6 +2 -2 ports/textproc/ruby-format/Makefile 1.6 +1 -1 ports/textproc/ruby-format/distinfo 1.4 +1 -0 ports/textproc/ruby-format/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 Mar 13 12:36: 7 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 36E0537B404; Wed, 13 Mar 2002 12:36:05 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id CF1955346; Wed, 13 Mar 2002 21:36:03 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: cvs-committers@FreeBSD.org Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/alpha/alpha machdep.c References: <200203131913.g2DJDfK93583@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 13 Mar 2002 21:36:03 +0100 In-Reply-To: <200203131913.g2DJDfK93583@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: > Back out previous commit, it was the wrong patch! (wasn't that embarassing...) 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 Mar 13 12:42: 2 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 05BCA37B404; Wed, 13 Mar 2002 12:41:50 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 1A22B5348; Wed, 13 Mar 2002 21:41:48 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Will Andrews Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/databases/gnats Makefile pkg-plist References: <200203131638.g2DGcDK15045@freefall.freebsd.org> <20020313201123.GL53073@squall.waterspout.com> From: Dag-Erling Smorgrav Date: 13 Mar 2002 21:41:47 +0100 In-Reply-To: <20020313201123.GL53073@squall.waterspout.com> Message-ID: Lines: 13 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Will Andrews writes: > Umm.. freefall-specific stuff in ports is evil. Please remove > this code from the repository. Umm, no. This port has had freefall-specific patches for ages, hidden behind WANT_FREEFALL_CFG, just like this code. And this isn't just for freefall, but for anyone who cvsups the gnats collection and places it in /home/gnats (which is the default location when you use the cvsup-mirror port) 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 Mar 13 12:53: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 7229937B404; Wed, 13 Mar 2002 12:53:08 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DKr8j19014; Wed, 13 Mar 2002 12:53:08 -0800 (PST) (envelope-from lioux) Message-Id: <200203132053.g2DKr8j19014@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Wed, 13 Mar 2002 12:53:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/dctc 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/03/13 12:53:08 PST Modified files: net/dctc Makefile Log: Chase glib20 repo copy from glib13 (later removed). This was overlooked by the glib20 sweep group :) Revision Changes Path 1.11 +5 -2 ports/net/dctc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 12:57: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 2591737B400; Wed, 13 Mar 2002 12:57:37 -0800 (PST) Received: (from jim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DKvbf20023; Wed, 13 Mar 2002 12:57:37 -0800 (PST) (envelope-from jim) Message-Id: <200203132057.g2DKvbf20023@freefall.freebsd.org> From: Jim Mock Date: Wed, 13 Mar 2002 12:57:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/mutt-devel Makefile distinfo pkg-plist ports/mail/mutt-devel/files extra-patch-inews patch-14 X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 12:57:36 PST Modified files: mail/mutt-devel Makefile distinfo pkg-plist Removed files: mail/mutt-devel/files extra-patch-inews patch-14 Log: Update to version 1.3.28. PR: 35866 Submitted by: maintainer Revision Changes Path 1.160 +16 -118 ports/mail/mutt-devel/Makefile 1.70 +5 -6 ports/mail/mutt-devel/distinfo 1.4 +0 -11 ports/mail/mutt-devel/files/extra-patch-inews (dead) 1.4 +0 -74 ports/mail/mutt-devel/files/patch-14 (dead) 1.46 +36 -29 ports/mail/mutt-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 Wed Mar 13 12:58: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by hub.freebsd.org (Postfix) with ESMTP id 16AD537B420; Wed, 13 Mar 2002 12:57:52 -0800 (PST) Received: (from wkb@localhost) by freebie.xs4all.nl (8.11.6/8.11.6) id g2DIsT346912; Wed, 13 Mar 2002 19:54:29 +0100 (CET) (envelope-from wkb) Date: Wed, 13 Mar 2002 19:54:29 +0100 From: Wilko Bulte To: Udo Erdelhoff Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Message-ID: <20020313195429.A46869@freebie.xs4all.nl> References: <200203131310.g2DDAMC29963@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: <200203131310.g2DDAMC29963@freefall.freebsd.org>; from ue@FreeBSD.ORG on Wed, Mar 13, 2002 at 05:10:22AM -0800 X-OS: FreeBSD 4.5-STABLE X-PGP: finger wilko@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 Wed, Mar 13, 2002 at 05:10:22AM -0800, Udo Erdelhoff wrote: > ue 2002/03/13 05:10:22 PST > > Modified files: > release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml > Log: > Fix some of the worst sgml mistakes in this document: > - paragraphs are closed with
, not > - for each opening tag, there should be a closing tag > > Not fixed (yet): block elements inside inline elements > Noticed during translation, hunted down with suppe/slashexpand Why doesn't 'make lint' catch this? That is what I use to check things, not all sorts of (to me) obscure tools ;) -- | / o / /_ _ wilko@FreeBSD.org |/|/ / / /( (_) Bulte Arnhem, the Netherlands To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 13: 2:56 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CC08F37B416; Wed, 13 Mar 2002 13:02:53 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DL2rt20890; Wed, 13 Mar 2002 13:02:53 -0800 (PST) (envelope-from ade) Message-Id: <200203132102.g2DL2rt20890@freefall.freebsd.org> From: Ade Lovett Date: Wed, 13 Mar 2002 13:02:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/samefile 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/03/13 13:02:53 PST Modified files: sysutils/samefile Makefile Log: Change MAINTAINER to more appropriate @FreeBSD.org address Approved by: schweikh (MAINTAINER) Revision Changes Path 1.2 +1 -1 ports/sysutils/samefile/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 13: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 E019D37B402; Wed, 13 Mar 2002 13:14:18 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DLEIM26362; Wed, 13 Mar 2002 13:14:18 -0800 (PST) (envelope-from sobomax) Message-Id: <200203132114.g2DLEIM26362@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 13 Mar 2002 13:14:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/galeon Makefile ports/www/galeon/files patch-hairy X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 13:14:18 PST Modified files: www/galeon Makefile Added files: www/galeon/files patch-hairy Log: Use some black'n'hairy magick to resolve chiken'n'egg problem at hand: we need Galeon for Nautilus, but we need Nautilus to build Galeon with Nautilus support. This allows the same Galeon binary not explicitly linked with Nautilus work with and without Nautilus. Nautilus is no longer in (LIB,RUN)_DEPENDS. Bump PORTREVISION. Requested by: Richard Kuhns Revision Changes Path 1.61 +8 -7 ports/www/galeon/Makefile 1.1 +749 -0 ports/www/galeon/files/patch-hairy (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 13:16: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 390C237B402; Wed, 13 Mar 2002 13:16:33 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DLGXI26651; Wed, 13 Mar 2002 13:16:33 -0800 (PST) (envelope-from sobomax) Message-Id: <200203132116.g2DLGXI26651@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 13 Mar 2002 13:16:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-fm/nautilus 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/03/13 13:16:33 PST Modified files: x11-fm/nautilus Makefile Log: Add galeon into RUN_DEPENDS - we need it for HTML rendering. Revision Changes Path 1.45 +1 -0 ports/x11-fm/nautilus/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 13:20: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 E5D0B37B405; Wed, 13 Mar 2002 13:20:10 -0800 (PST) Received: (from jesper@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DLKAZ27118; Wed, 13 Mar 2002 13:20:10 -0800 (PST) (envelope-from jesper) Message-Id: <200203132120.g2DLKAZ27118@freefall.freebsd.org> From: Jesper Skriver Date: Wed, 13 Mar 2002 13:20:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/gtk-doc 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/03/13 13:20:10 PST Modified files: textproc/gtk-doc Makefile distinfo Log: Update to 0.9 Take Maintainership Approved by: fenner Revision Changes Path 1.2 +2 -2 ports/textproc/gtk-doc/Makefile 1.2 +1 -1 ports/textproc/gtk-doc/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 13:26: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 9518137B400; Wed, 13 Mar 2002 13:26:23 -0800 (PST) Received: (from demon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DLQNd28113; Wed, 13 Mar 2002 13:26:23 -0800 (PST) (envelope-from demon) Message-Id: <200203132126.g2DLQNd28113@freefall.freebsd.org> From: Dmitry Sivachenko Date: Wed, 13 Mar 2002 13:26:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/netsaint Makefile distinfo pkg-plist ports/net/netsaint/files 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 demon 2002/03/13 13:26:23 PST Modified files: net/netsaint Makefile distinfo pkg-plist net/netsaint/files patch-aj Log: Upgrade to version 0.0.7 PR: 35844 Submitted by: MAINTAINER Bump PORTEPOCH due to malformed previous PORTVERSION (0.0.7b8 > 0.0.7) Revision Changes Path 1.15 +2 -1 ports/net/netsaint/Makefile 1.9 +1 -1 ports/net/netsaint/distinfo 1.2 +4 -11 ports/net/netsaint/files/patch-aj 1.9 +1 -0 ports/net/netsaint/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 Mar 13 13:37:17 2002 Delivered-To: cvs-all@freebsd.org Received: from thehousleys.net (frenchknot.ne.client2.attbi.com [66.31.234.148]) by hub.freebsd.org (Postfix) with ESMTP id 1CBA637B402; Wed, 13 Mar 2002 13:37:11 -0800 (PST) Received: (from root@localhost) by thehousleys.net (8.11.6/8.11.6) id g2DLb5j64497; Wed, 13 Mar 2002 16:37:05 -0500 (EST) (envelope-from jeh@FreeBSD.org) Received: from FreeBSD.org (baby.int.thehousleys.net [192.168.0.125]) (authenticated) by thehousleys.net (8.11.6/8.11.6) with ESMTP id g2DLaxh64488; Wed, 13 Mar 2002 16:37:03 -0500 (EST) (envelope-from jeh@FreeBSD.org) Message-ID: <3C8FC67B.DF19FC86@FreeBSD.org> Date: Wed, 13 Mar 2002 16:36:59 -0500 From: "James E. Housley" Organization: FreeBSD X-Mailer: Mozilla 4.79 [en] (X11; U; Linux 2.4.2 i386) X-Accept-Language: en MIME-Version: 1.0 To: "Matthew N. Dodd" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/apache13-modssl Makefileports/www/apache13-modssl/files FreeBSD.layout References: <20020313145809.V14697-100000@sasami.jurai.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit 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 "Matthew N. Dodd" wrote: > > On Wed, 13 Mar 2002, James E. Housley wrote: > > jeh 2002/03/13 08:44:46 PST > > > > Modified files: > > www/apache13-modssl Makefile > > Removed files: > > www/apache13-modssl/files FreeBSD.layout > > Log: > > Small sync with apache13 > > - The standard apache distribution now comes with a FreeBSD layout > > that is the same as the one that was in files/FreeBSD.layout > > Can we please just creat mod_ssl and have done with apacheXX-modssl? > That would be nice, but we have to change the default compile options on all the possible base apache ports IIRC to enable EAPI, or similar, for the modssl. IFF that is done, then apacheXX-modssl could become mod_ssl. That is my understanding and I maybe wrong. Jim -- /"\ ASCII Ribbon Campaign . \ / - NO HTML/RTF in e-mail . X - NO Word docs in e-mail . / \ ----------------------------------------------------------------- jeh@FreeBSD.org http://www.FreeBSD.org The Power to Serve jim@TheHousleys.Net http://www.TheHousleys.net jhousley@SimTel.Net http://www.SimTel.Net --------------------------------------------------------------------- A Microsoft Certified Systems Engineer is to computing what a McDonalds Certified Food Specialist is to fine cuisine. -- Jack O'Neill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 13:41: 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 3701237B402; Wed, 13 Mar 2002 13:40:58 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DLewI30461; Wed, 13 Mar 2002 13:40:58 -0800 (PST) (envelope-from lioux) Message-Id: <200203132140.g2DLewI30461@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Wed, 13 Mar 2002 13:40:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/dctc Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2002/03/13 13:40:58 PST Modified files: net/dctc Makefile distinfo Log: Update to 0.74 Revision Changes Path 1.12 +1 -1 ports/net/dctc/Makefile 1.9 +1 -1 ports/net/dctc/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 13:42: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 C40AE37B416; Wed, 13 Mar 2002 13:42:04 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DLg4K30613; Wed, 13 Mar 2002 13:42:04 -0800 (PST) (envelope-from mbr) Message-Id: <200203132142.g2DLg4K30613@freefall.freebsd.org> From: Martin Blapp Date: Wed, 13 Mar 2002 13:42:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice-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 mbr 2002/03/13 13:42:04 PST Modified files: editors/openoffice-devel Makefile Log: Add CC and CFLAGS to gmake environment Revision Changes Path 1.45 +2 -0 ports/editors/openoffice-devel/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 13:43:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D21637B428; Wed, 13 Mar 2002 13:42:25 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DLgPL30693; Wed, 13 Mar 2002 13:42:25 -0800 (PST) (envelope-from lioux) Message-Id: <200203132142.g2DLgPL30693@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Wed, 13 Mar 2002 13:42:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/dctc-gui Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2002/03/13 13:42:25 PST Modified files: net/dctc-gui Makefile distinfo Log: Update to 0.48 Revision Changes Path 1.11 +5 -3 ports/net/dctc-gui/Makefile 1.9 +1 -1 ports/net/dctc-gui/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 13: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 AC0E537B422; Wed, 13 Mar 2002 13:43:15 -0800 (PST) Received: (from jeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DLhF231084; Wed, 13 Mar 2002 13:43:15 -0800 (PST) (envelope-from jeh) Message-Id: <200203132143.g2DLhF231084@freefall.freebsd.org> From: "James E. Housley" Date: Wed, 13 Mar 2002 13:43:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/uvscan-dat Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeh 2002/03/13 13:43:15 PST Modified files: security/uvscan-dat Makefile distinfo Log: Upgrade to 4190 Revision Changes Path 1.84 +1 -1 ports/security/uvscan-dat/Makefile 1.82 +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 Mar 13 13:44: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by hub.freebsd.org (Postfix) with ESMTP id 1642337B41E; Wed, 13 Mar 2002 13:43:39 -0800 (PST) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by sasami.jurai.net (8.11.6/8.11.6) with ESMTP id g2DLhcX15548; Wed, 13 Mar 2002 16:43:38 -0500 (EST) (envelope-from winter@jurai.net) Date: Wed, 13 Mar 2002 16:43:37 -0500 (EST) From: "Matthew N. Dodd" To: "James E. Housley" Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: ports/www/apache13-modssl Makefileports/www/apache13-modssl/files FreeBSD.layout In-Reply-To: <3C8FC67B.DF19FC86@FreeBSD.org> Message-ID: <20020313163817.Y12166-100000@sasami.jurai.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 13 Mar 2002, James E. Housley wrote: > That would be nice, but we have to change the default compile options on > all the possible base apache ports IIRC to enable EAPI, or similar, for > the modssl. IFF that is done, then apacheXX-modssl could become > mod_ssl. That is my understanding and I maybe wrong. Yes, just add the EAPI patch to the apache13/files/ and have done with it. I proposed this in -ports a year and a half ago and provided modified ports that did the right thing. And while you're at it you can blow away apache-fp since it looks like we've got a mod_frontpage. Sorry if I'm coming off as frusterated; I've been waiting for this issue to get sorted out after all sorts of handwaving and I'd really like to get apache-IPv6 working with mod_ssl and mod_php[34]. The way things are currently setup makes this very difficult. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 13:44:14 2002 Delivered-To: cvs-all@freebsd.org Received: from obsecurity.dyndns.org (adsl-64-165-226-239.dsl.lsan03.pacbell.net [64.165.226.239]) by hub.freebsd.org (Postfix) with ESMTP id 4A26837B491; Wed, 13 Mar 2002 13:43:42 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 6213666C76; Wed, 13 Mar 2002 13:43:41 -0800 (PST) Date: Wed, 13 Mar 2002 13:43:41 -0800 From: Kris Kennaway To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/binutils/ld Makefile.alpha Makefile.i386 Makefile.ia64 Makefile.powerpc Makefile.sparc64 genscripts.sh Message-ID: <20020313134341.D5942@xor.obsecurity.org> References: <200203131826.g2DIQx880758@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="AbQceqfdZEv+FvjW" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200203131826.g2DIQx880758@freefall.freebsd.org>; from obrien@FreeBSD.org on Wed, Mar 13, 2002 at 10:26:59AM -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 --AbQceqfdZEv+FvjW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Mar 13, 2002 at 10:26:59AM -0800, David E. O'Brien wrote: > obrien 2002/03/13 10:26:59 PST >=20 > Modified files: > gnu/usr.bin/binutils/ld Makefile.alpha Makefile.i386=20 > Makefile.ia64 Makefile.powerpc=20 > Makefile.sparc64 genscripts.sh=20 > Log: > Support linking with -z combreloc (combine and sort reloc sections) and= with > --shared -z combreloc (shared library, combine & sort relocs) > =20 > Submitted by: peter > Bribed by: peter > Fixes: IA-64, Kaffe, and QT Unfortunately it doesn't seem to have fixed QT2: http://bento.freebsd.org/errorlogs/5-latest/qt-2.3.1_1.log This is from a 5.0 package run using this patch, including a full 5.0 make world with it in place. Kris --AbQceqfdZEv+FvjW 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 iD8DBQE8j8gMWry0BWjoQKURAjBdAJwKfmJ8trgn5qAaUO6a+ajgXFUukQCg8j1m GMxqTof8bOZtoQIh2DpksB4= =kG4f -----END PGP SIGNATURE----- --AbQceqfdZEv+FvjW-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 13: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 2ABFF37B484; Wed, 13 Mar 2002 13:43:49 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DLhnq31166; Wed, 13 Mar 2002 13:43:49 -0800 (PST) (envelope-from mbr) Message-Id: <200203132143.g2DLhnq31166@freefall.freebsd.org> From: Martin Blapp Date: Wed, 13 Mar 2002 13:43:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice-devel/files patch-dmake::unix::linux::gnu::make.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 mbr 2002/03/13 13:43:49 PST Modified files: editors/openoffice-devel/files patch-dmake::unix::linux::gnu::make.sh Log: Add CFLAGS too, and make correct {} Revision Changes Path 1.2 +53 -53 ports/editors/openoffice-devel/files/patch-dmake::unix::linux::gnu::make.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 13:51:12 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by hub.freebsd.org (Postfix) with ESMTP id 8F2E137B400; Wed, 13 Mar 2002 13:51:05 -0800 (PST) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by mail.imp.ch (8.11.6/8.11.6) with ESMTP id g2DLp2A95979; Wed, 13 Mar 2002 22:51:02 +0100 (CET) Date: Wed, 13 Mar 2002 22:53:15 +0100 (CET) From: Martin Blapp To: "Matthew N. Dodd" Cc: "James E. Housley" , , Subject: Re: cvs commit: ports/www/apache13-modssl Makefileports/www/apache13-modssl/files FreeBSD.layout In-Reply-To: <20020313163817.Y12166-100000@sasami.jurai.net> Message-ID: <20020313225159.Q7707-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, > And while you're at it you can blow away apache-fp since it looks like > we've got a mod_frontpage. No. apache-fp is completly from microsoft and modifies the apache headers, so it is not possible to build it without makeing a megaport. mod_frontpage is a free implementation which is a real DSO port. Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 13:53:54 2002 Delivered-To: cvs-all@freebsd.org Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by hub.freebsd.org (Postfix) with ESMTP id 7B99237B416; Wed, 13 Mar 2002 13:53:50 -0800 (PST) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by sasami.jurai.net (8.11.6/8.11.6) with ESMTP id g2DLrmX16080; Wed, 13 Mar 2002 16:53:48 -0500 (EST) (envelope-from winter@jurai.net) Date: Wed, 13 Mar 2002 16:53:48 -0500 (EST) From: "Matthew N. Dodd" To: Martin Blapp Cc: "James E. Housley" , , Subject: Re: cvs commit: ports/www/apache13-modssl Makefileports/www/apache13-modssl/files FreeBSD.layout In-Reply-To: <20020313225159.Q7707-100000@levais.imp.ch> Message-ID: <20020313165138.C12166-100000@sasami.jurai.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 13 Mar 2002, Martin Blapp wrote: > > And while you're at it you can blow away apache-fp since it looks like > > we've got a mod_frontpage. > > apache-fp is completly from microsoft and modifies the apache headers, > so it is not possible to build it without makeing a megaport. Wrong, because I made it a module a year and a half ago. The changes it made weren't intrusive so pathing the source code in the main port was the way to go, just like EAPI. > mod_frontpage is a free implementation which is a real DSO > port. Ah, so we'd have a 'mod_fp' and a 'mod_frontpage'. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 13:59:54 2002 Delivered-To: cvs-all@freebsd.org Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by hub.freebsd.org (Postfix) with ESMTP id C209E37B402; Wed, 13 Mar 2002 13:59:50 -0800 (PST) Received: from aldan.algebra.com (localhost [127.0.0.1]) by aldan.algebra.com (8.12.2/8.12.2) with ESMTP id g2DM013b088744; Wed, 13 Mar 2002 17:00:05 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200203132200.g2DM013b088744@aldan.algebra.com> Date: Wed, 13 Mar 2002 17:00:01 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml To: des@ofug.org Cc: ue@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 13 Mar, Dag-Erling Smorgrav wrote: > Mikhail Teterin writes: >> On 13 Mar, Udo Erdelhoff wrote: >> > - for each opening tag, there should be a closing tag >> My understanding was, the SGML does not require this. XML does... Is >> that wrong? > > Depends on the DTD and the element in question. Some tags (like
> in HTML) don't need a closing tag, some (like in HTML) do. So, was it neccessary for our DTD? > In XML, all elements need a closing tag, unless the element is empty, > in which case you can use the short form, like
- note that the > space is required by the specification, though not all XML parsers > will complain if it's missing. Thanks for the detailed answer. -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 14: 2:21 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 6B5DB37B402; Wed, 13 Mar 2002 14:02:16 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 176069B19; Wed, 13 Mar 2002 17:02:02 -0500 (EST) Date: Wed, 13 Mar 2002 17:02:02 -0500 From: Will Andrews To: "Matthew N. Dodd" Cc: "James E. Housley" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/apache13-modssl Makefileports/www/apache13-modssl/files FreeBSD.layout Message-ID: <20020313220201.GN53073@squall.waterspout.com> Mail-Followup-To: "Matthew N. Dodd" , "James E. Housley" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <3C8FC67B.DF19FC86@FreeBSD.org> <20020313163817.Y12166-100000@sasami.jurai.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020313163817.Y12166-100000@sasami.jurai.net> 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, Mar 13, 2002 at 04:43:37PM -0500, Matthew N. Dodd wrote: > I proposed this in -ports a year and a half ago and provided modified > ports that did the right thing. apache13 + mod_ssl != apache-modssl. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 14: 3: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 D06B837B417; Wed, 13 Mar 2002 14:03:37 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 08C885346; Wed, 13 Mar 2002 23:03:35 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Mikhail Teterin Cc: ue@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml References: <200203132200.g2DM013b088744@aldan.algebra.com> From: Dag-Erling Smorgrav Date: 13 Mar 2002 23:03:35 +0100 In-Reply-To: <200203132200.g2DM013b088744@aldan.algebra.com> 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 Mikhail Teterin writes: > On 13 Mar, Dag-Erling Smorgrav wrote: > > Depends on the DTD and the element in question. Some tags (like
> > in HTML) don't need a closing tag, some (like in HTML) do. > So, was it neccessary for our DTD? For DocBook? Yes, provided the SGML processor enforces it. 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 Mar 13 14: 5:52 2002 Delivered-To: cvs-all@freebsd.org Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by hub.freebsd.org (Postfix) with ESMTP id C29E037B48C; Wed, 13 Mar 2002 14:05:21 -0800 (PST) Received: from sasami.jurai.net (sasami.jurai.net [66.92.160.223]) by sasami.jurai.net (8.11.6/8.11.6) with ESMTP id g2DM56X16584; Wed, 13 Mar 2002 17:05:11 -0500 (EST) (envelope-from winter@jurai.net) Date: Wed, 13 Mar 2002 17:05:06 -0500 (EST) From: "Matthew N. Dodd" To: Will Andrews Cc: "James E. Housley" , , Subject: Re: cvs commit: ports/www/apache13-modssl Makefileports/www/apache13-modssl/files FreeBSD.layout In-Reply-To: <20020313220201.GN53073@squall.waterspout.com> Message-ID: <20020313170259.N12166-100000@sasami.jurai.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Wed, 13 Mar 2002, Will Andrews wrote: > On Wed, Mar 13, 2002 at 04:43:37PM -0500, Matthew N. Dodd wrote: > > I proposed this in -ports a year and a half ago and provided modified > > ports that did the right thing. > > apache13 + mod_ssl != apache-modssl. Sure it is. You may be thinking of apache13-ssl. apache13-ssl is another candidate for being rm'ed since its so out of date. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | For Great Justice! | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 14:29: 7 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 B123337B404; Wed, 13 Mar 2002 14:29:03 -0800 (PST) Received: (from chris@localhost) by lion-around.at.yiff.net (8.11.6/8.11.6) id g2DMSQH59049; Wed, 13 Mar 2002 17:28:26 -0500 (EST) (envelope-from chris@netmonger.net) X-Authentication-Warning: lion-around.at.yiff.net: chris set sender to chris@netmonger.net using -f Date: Wed, 13 Mar 2002 17:28:26 -0500 From: Christopher Masto To: Dag-Erling Smorgrav Cc: Mikhail Teterin , ue@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Message-ID: <20020313222826.GA764@netmonger.net> References: <200203131806.g2DI6o3b087697@aldan.algebra.com> 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 On Wed, Mar 13, 2002 at 09:29:43PM +0100, Dag-Erling Smorgrav wrote: > In XML, all elements need a closing tag, unless the element is empty, > in which case you can use the short form, like
- note that the > space is required by the specification Not true. Production 44: [44] EmptyElemTag ::= '<' Name (S Attribute)* S? '/>' http://www.w3.org/TR/2000/REC-xml-20001006#NT-EmptyElemTag Note the '?'. You may be thinking of XHTML, where the space is added for backward compatibility with XML-unaware browsers. -- 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 Wed Mar 13 14: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 70F3037B402; Wed, 13 Mar 2002 14:33:40 -0800 (PST) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DMXem42548; Wed, 13 Mar 2002 14:33:40 -0800 (PST) (envelope-from ache) Message-Id: <200203132233.g2DMXem42548@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Wed, 13 Mar 2002 14:33:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/screen Makefile ports/misc/screen/files patch-ah X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 14:33:40 PST Modified files: misc/screen Makefile Added files: misc/screen/files patch-ah Log: Fixes a bug regarding the `(def)encoding' directive that NUL characters are all discarded if you use it. Submitted by: "Akinori MUSHA" Obtained from: Michael Schroeder Revision Changes Path 1.37 +1 -0 ports/misc/screen/Makefile 1.1 +49 -0 ports/misc/screen/files/patch-ah (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 14:54:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D996F37B400; Wed, 13 Mar 2002 14:54:33 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DMsXJ46468; Wed, 13 Mar 2002 14:54:33 -0800 (PST) (envelope-from pat) Message-Id: <200203132254.g2DMsXJ46468@freefall.freebsd.org> From: Patrick Li Date: Wed, 13 Mar 2002 14:54:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/p5-Net-Server Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/13 14:54:33 PST Modified files: net/p5-Net-Server Makefile distinfo pkg-plist Log: Update to 0.82 PR: 35852 Submitted by: maintainer Revision Changes Path 1.2 +11 -3 ports/net/p5-Net-Server/Makefile 1.2 +1 -1 ports/net/p5-Net-Server/distinfo 1.2 +10 -0 ports/net/p5-Net-Server/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 Mar 13 14:55: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 6881C37B404; Wed, 13 Mar 2002 14:55:23 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DMtNm46853; Wed, 13 Mar 2002 14:55:23 -0800 (PST) (envelope-from rwatson) Message-Id: <200203132255.g2DMtNm46853@freefall.freebsd.org> From: Robert Watson Date: Wed, 13 Mar 2002 14:55:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/security/lomac kernel_interface.c kernel_interface.h kernel_lkm.c kernel_log.c kernel_log.h kernel_mediate.c kernel_mediate.h kernel_mmap.c kernel_monitor.c kernel_monitor.h kernel_pipe.c kernel_pipe.h kernel_plm.c kernel_plm.h ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/03/13 14:55:21 PST Modified files: sys/security/lomac kernel_interface.c kernel_interface.h kernel_lkm.c kernel_log.c kernel_log.h kernel_mediate.c kernel_mediate.h kernel_mmap.c kernel_monitor.c kernel_monitor.h kernel_pipe.c kernel_pipe.h kernel_plm.c kernel_plm.h kernel_socket.c kernel_socket.h kernel_util.c kernel_util.h lomac.h lomacfs.h lomacfs_subr.c lomacfs_vfsops.c lomacfs_vnops.c lomacio.h policy_plm.h syscall_gate.c syscall_gate.h Log: DBA update: pick the right DBA for various LOMAC copyrights. Revision Changes Path 1.2 +1 -1 src/sys/security/lomac/kernel_interface.c 1.2 +1 -1 src/sys/security/lomac/kernel_interface.h 1.2 +1 -1 src/sys/security/lomac/kernel_lkm.c 1.2 +1 -1 src/sys/security/lomac/kernel_log.c 1.2 +1 -1 src/sys/security/lomac/kernel_log.h 1.2 +1 -1 src/sys/security/lomac/kernel_mediate.c 1.2 +1 -1 src/sys/security/lomac/kernel_mediate.h 1.4 +1 -1 src/sys/security/lomac/kernel_mmap.c 1.2 +1 -1 src/sys/security/lomac/kernel_monitor.c 1.2 +1 -1 src/sys/security/lomac/kernel_monitor.h 1.2 +1 -1 src/sys/security/lomac/kernel_pipe.c 1.2 +1 -1 src/sys/security/lomac/kernel_pipe.h 1.2 +1 -1 src/sys/security/lomac/kernel_plm.c 1.2 +1 -1 src/sys/security/lomac/kernel_plm.h 1.7 +1 -1 src/sys/security/lomac/kernel_socket.c 1.2 +1 -1 src/sys/security/lomac/kernel_socket.h 1.4 +1 -1 src/sys/security/lomac/kernel_util.c 1.2 +1 -1 src/sys/security/lomac/kernel_util.h 1.2 +1 -1 src/sys/security/lomac/lomac.h 1.2 +1 -1 src/sys/security/lomac/lomacfs.h 1.2 +1 -1 src/sys/security/lomac/lomacfs_subr.c 1.2 +1 -1 src/sys/security/lomac/lomacfs_vfsops.c 1.4 +1 -1 src/sys/security/lomac/lomacfs_vnops.c 1.2 +1 -1 src/sys/security/lomac/lomacio.h 1.2 +1 -1 src/sys/security/lomac/policy_plm.h 1.2 +1 -1 src/sys/security/lomac/syscall_gate.c 1.2 +1 -1 src/sys/security/lomac/syscall_gate.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 14:57: 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 04BE237B400; Wed, 13 Mar 2002 14:57:04 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DMv3747565; Wed, 13 Mar 2002 14:57:03 -0800 (PST) (envelope-from pat) Message-Id: <200203132257.g2DMv3747565@freefall.freebsd.org> From: Patrick Li Date: Wed, 13 Mar 2002 14:57:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/p5-Log-Agent Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/13 14:57:03 PST Modified files: devel/p5-Log-Agent Makefile distinfo pkg-plist Log: Update to 0.300 PR: 35851 Submitted by: maintainer Revision Changes Path 1.2 +6 -5 ports/devel/p5-Log-Agent/Makefile 1.2 +1 -1 ports/devel/p5-Log-Agent/distinfo 1.2 +1 -0 ports/devel/p5-Log-Agent/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 Mar 13 14:57: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 1208C37B421; Wed, 13 Mar 2002 14:57:20 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DMvKW47701; Wed, 13 Mar 2002 14:57:20 -0800 (PST) (envelope-from knu) Message-Id: <200203132257.g2DMvKW47701@freefall.freebsd.org> From: Akinori MUSHA Date: Wed, 13 Mar 2002 14:57:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Mk bsd.ruby.mk ports/lang/ruby 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/03/13 14:57:20 PST Modified files: Mk bsd.ruby.mk lang/ruby Makefile distinfo Log: Update to the latest stable snapshot as of 2002.03.13. Add a WITH_ONIGURUMA knob that enables the Oni Guruma regex engine that's currently under development that will eventually replace the stock one that's derived from LGPL'd GNU regex. [experimental] Revision Changes Path 1.73 +3 -3 ports/Mk/bsd.ruby.mk 1.83 +23 -4 ports/lang/ruby/Makefile 1.63 +2 -0 ports/lang/ruby/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 15: 2:23 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E22E337B436; Wed, 13 Mar 2002 15:01:50 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DN1oA57410; Wed, 13 Mar 2002 15:01:50 -0800 (PST) (envelope-from pat) Message-Id: <200203132301.g2DN1oA57410@freefall.freebsd.org> From: Patrick Li Date: Wed, 13 Mar 2002 15:01:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-fm/gentoo 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/03/13 15:01:50 PST Modified files: x11-fm/gentoo Makefile distinfo Log: Update to 0.11.22 PR: 35848 Submitted by: maintainer Revision Changes Path 1.8 +1 -1 ports/x11-fm/gentoo/Makefile 1.6 +1 -1 ports/x11-fm/gentoo/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 15:27: 9 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 1BCB037B416; Wed, 13 Mar 2002 15:27:01 -0800 (PST) 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 g2DNQti30402; Wed, 13 Mar 2002 18:26:55 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Wed, 13 Mar 2002 18:26:54 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/share/sgml man-refs.ent In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 13 Mar 2002, Dag-Erling Smorgrav wrote: > Robert Watson writes: > > Log: > > Add tentities for sx(9), sx_slock(9), and sx_xlock(9). > > Shouldn't this be automated? I use the following to generate a > similar file in my private document tree: > > find /usr/share/man/man* -name '*gz' | perl -n -e 'next unless (m,^(.*/)([\w\._-]+)\.(\d)\.gz$,); print "$2$3\">";' >manpages.ent As I told Michael Lucas in another forum: I'm just a poor kernel developer, these doc tree things are too confusing and complicated for me. :-) I just hack a bit and hope no one shoots me on sight. 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 Mar 13 15:34: 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 15C4737B404; Wed, 13 Mar 2002 15:34:04 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DNY4T08131; Wed, 13 Mar 2002 15:34:04 -0800 (PST) (envelope-from sobomax) Message-Id: <200203132334.g2DNY4T08131@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 13 Mar 2002 15:34:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-fm/nautilus/files patch-nautilus-config.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/03/13 15:34:03 PST Added files: x11-fm/nautilus/files patch-nautilus-config.in Log: Use correct location of nautilusConf.sh. Submitted by: Joe Marcus Clarke Revision Changes Path 1.1 +14 -0 ports/x11-fm/nautilus/files/patch-nautilus-config.in (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 15:48: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 0DD0537B435; Wed, 13 Mar 2002 15:48:11 -0800 (PST) Received: (from green@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2DNmAE12640; Wed, 13 Mar 2002 15:48:10 -0800 (PST) (envelope-from green) Message-Id: <200203132348.g2DNmAE12640@freefall.freebsd.org> From: Brian Feldman Date: Wed, 13 Mar 2002 15:48:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_mtxpool.c src/sys/sys kernel.h src/sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h vm_pageout.c vm_zone.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG green 2002/03/13 15:48:08 PST Modified files: sys/kern kern_mtxpool.c sys/sys kernel.h sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h vm_pageout.c vm_zone.c Log: Rename SI_SUB_MUTEX to SI_SUB_MTX_POOL to make the name at all accurate. While doing this, move it earlier in the sysinit boot process so that the VM system can use it. After that, the system is now able to use sx locks instead of lockmgr locks in the VM system. To accomplish this, some of the more questionable uses of the locks (such as testing whether they are owned or not, as well as allowing shared+exclusive recursion) are removed, and simpler logic throughout is used so locks should also be easier to understand. This has been tested on my laptop for months, and has not shown any problems on SMP systems, either, so appears quite safe. One more user of lockmgr down, many more to go :) Revision Changes Path 1.4 +1 -1 src/sys/kern/kern_mtxpool.c 1.100 +1 -1 src/sys/sys/kernel.h 1.130 +7 -5 src/sys/vm/vm_fault.c 1.128 +1 -3 src/sys/vm/vm_glue.c 1.215 +60 -58 src/sys/vm/vm_map.c 1.71 +20 -10 src/sys/vm/vm_map.h 1.191 +1 -2 src/sys/vm/vm_pageout.c 1.52 +6 -6 src/sys/vm/vm_zone.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 16: 7: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 BCB8237B400; Wed, 13 Mar 2002 16:07:41 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E07fx20941; Wed, 13 Mar 2002 16:07:41 -0800 (PST) (envelope-from sobomax) Message-Id: <200203140007.g2E07fx20941@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 13 Mar 2002 16:07:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/gdm Makefile distinfo pkg-plist ports/x11/gdm/files patch-at patch-configure patch-docs::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/03/13 16:07:41 PST Modified files: x11/gdm Makefile distinfo pkg-plist x11/gdm/files patch-at patch-configure Added files: x11/gdm/files patch-docs::Makefile.in Log: Update to 2.2.5.5. Revision Changes Path 1.28 +3 -2 ports/x11/gdm/Makefile 1.11 +1 -1 ports/x11/gdm/distinfo 1.2 +13 -9 ports/x11/gdm/files/patch-at 1.2 +43 -46 ports/x11/gdm/files/patch-configure 1.1 +14 -0 ports/x11/gdm/files/patch-docs::Makefile.in (new) 1.9 +65 -9 ports/x11/gdm/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 Mar 13 16:10: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 906FA37B405; Wed, 13 Mar 2002 16:10:43 -0800 (PST) Received: (from deischen@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E0Ah621670; Wed, 13 Mar 2002 16:10:43 -0800 (PST) (envelope-from deischen) Message-Id: <200203140010.g2E0Ah621670@freefall.freebsd.org> From: Daniel Eischen Date: Wed, 13 Mar 2002 16:10:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread uthread_cancel.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 deischen 2002/03/13 16:10:43 PST Modified files: (Branch: RELENG_4) lib/libc_r/uthread uthread_cancel.c Log: MFC - Don't detach a canceled thread. Revision Changes Path 1.3.2.5 +1 -3 src/lib/libc_r/uthread/uthread_cancel.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 16: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 B128737B402; Wed, 13 Mar 2002 16:11:40 -0800 (PST) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E0Bec22080; Wed, 13 Mar 2002 16:11:40 -0800 (PST) (envelope-from anders) Message-Id: <200203140011.g2E0Bec22080@freefall.freebsd.org> From: Anders Nordby Date: Wed, 13 Mar 2002 16:11:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms/gnokii Makefile ports/ftp/oftpd Makefile ports/mail/cclient Makefile ports/mail/drac Makefile ports/mail/imap-uw Makefile ports/mail/mboxgrep Makefile ports/mail/tlb Makefile 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/03/13 16:11:40 PST Modified files: comms/gnokii Makefile ftp/oftpd Makefile mail/cclient Makefile mail/drac Makefile mail/imap-uw Makefile mail/mboxgrep Makefile mail/tlb Makefile security/pam-mysql Makefile www/mod_sqlinclude Makefile Log: Correct MAINTAINER e-mail address for ports I maintain. Revision Changes Path 1.8 +1 -1 ports/comms/gnokii/Makefile 1.6 +2 -2 ports/ftp/oftpd/Makefile 1.17 +1 -1 ports/mail/cclient/Makefile 1.6 +1 -1 ports/mail/drac/Makefile 1.62 +1 -1 ports/mail/imap-uw/Makefile 1.3 +1 -1 ports/mail/mboxgrep/Makefile 1.2 +1 -1 ports/mail/tlb/Makefile 1.4 +2 -2 ports/security/pam-mysql/Makefile 1.2 +1 -1 ports/www/mod_sqlinclude/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 16: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 B9AEF37B419; Wed, 13 Mar 2002 16:12:35 -0800 (PST) Received: (from deischen@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E0CZl22313; Wed, 13 Mar 2002 16:12:35 -0800 (PST) (envelope-from deischen) Message-Id: <200203140012.g2E0CZl22313@freefall.freebsd.org> From: Daniel Eischen Date: Wed, 13 Mar 2002 16:12:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread uthread_cancel.c uthread_detach.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 deischen 2002/03/13 16:12:35 PST Modified files: (Branch: RELENG_4) lib/libc_r/uthread uthread_cancel.c uthread_detach.c Log: MFC - Properly clear the status of a join for a canceled thread or if the joinee is detached. Tested in -stable by: mbr Revision Changes Path 1.3.2.6 +4 -2 src/lib/libc_r/uthread/uthread_cancel.c 1.11.2.3 +4 -2 src/lib/libc_r/uthread/uthread_detach.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 16:28: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 B9B5237B419; Wed, 13 Mar 2002 16:28:10 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E0SA128384; Wed, 13 Mar 2002 16:28:10 -0800 (PST) (envelope-from dfr) Message-Id: <200203140028.g2E0SA128384@freefall.freebsd.org> From: Doug Rabson Date: Wed, 13 Mar 2002 16:28:10 -0800 (PST) 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/03/13 16:28:10 PST Modified files: sys/ia64/ia64 exception.s Log: Don't restore r13 when returning to kernel mode. We may have migrated to a different cpu since the exception_save and r13 needs to point at the current cpu's pcpu structure. Revision Changes Path 1.31 +4 -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 Mar 13 16:50:23 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 7AA0937B405; Wed, 13 Mar 2002 16:50:18 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 53111AE1FC; Wed, 13 Mar 2002 16:50:18 -0800 (PST) Date: Wed, 13 Mar 2002 16:50:18 -0800 From: Alfred Perlstein To: Brian Feldman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_mtxpool.c src/sys/sys kernel.h src/sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h vm_pageout.c vm_zone.c Message-ID: <20020314005018.GC74829@elvis.mu.org> References: <200203132348.g2DNmAE12640@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203132348.g2DNmAE12640@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 * Brian Feldman [020313 15:53] wrote: > > After that, the system is now able to use sx locks instead of lockmgr > locks in the VM system. To accomplish this, some of the more > questionable uses of the locks (such as testing whether they are > owned or not, as well as allowing shared+exclusive recursion) are > removed, and simpler logic throughout is used so locks should also be > easier to understand. So simple that you couldn't explain to me what you did a couple of weeks ago when you asked me to commit this? You seem to have turned a binary state into a trinary one but you offer absolutely zero in terms of explaining what you've changed other than "getting rid of lockmgr". So what exactly have you done here? -- -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 Mar 13 17:21: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 2CF0237B405; Wed, 13 Mar 2002 17:21:14 -0800 (PST) Received: (from mckusick@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E1LEm54189; Wed, 13 Mar 2002 17:21:14 -0800 (PST) (envelope-from mckusick) Message-Id: <200203140121.g2E1LEm54189@freefall.freebsd.org> From: Kirk McKusick Date: Wed, 13 Mar 2002 17:21:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ffs ffs_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 mckusick 2002/03/13 17:21:14 PST Modified files: sys/ufs/ffs ffs_vnops.c Log: This corrects the first of two known deadlock conditions that come from the presence of a snapshot file. Revision Changes Path 1.81 +2 -13 src/sys/ufs/ffs/ffs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 17:29: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 3CA6237B402; Wed, 13 Mar 2002 17:29:32 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E1TWS64988; Wed, 13 Mar 2002 17:29:32 -0800 (PST) (envelope-from bmah) Message-Id: <200203140129.g2E1TWS64988@freefall.freebsd.org> From: "Bruce A. Mah" Date: Wed, 13 Mar 2002 17:29:32 -0800 (PST) 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 bmah 2002/03/13 17:29:32 PST Modified files: release/doc/en_US.ISO8859-1/installation/sparc64 install.sgml Log: Add a warning that URLs in this document are subject to change (in fact, they're incorrect right now). Point readers to the list archives for current locations. Revision Changes Path 1.6 +8 -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 Wed Mar 13 17: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 A7CB237B400; Wed, 13 Mar 2002 17:32:31 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E1WVl65776; Wed, 13 Mar 2002 17:32:31 -0800 (PST) (envelope-from alfred) Message-Id: <200203140132.g2E1WVl65776@freefall.freebsd.org> From: Alfred Perlstein Date: Wed, 13 Mar 2002 17:32:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/bktr bktr_core.c src/sys/dev/kbd kbd.c src/sys/dev/snp snp.c src/sys/dev/sound/midi midibuf.c src/sys/dev/sound/pcm channel.c src/sys/dev/usb ums.c src/sys/i386/isa asc.c pcaudio.c src/sys/isa psm.c src/sys/kern ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 17:32:31 PST Modified files: sys/dev/bktr bktr_core.c sys/dev/kbd kbd.c sys/dev/snp snp.c sys/dev/sound/midi midibuf.c sys/dev/sound/pcm channel.c sys/dev/usb ums.c sys/i386/isa asc.c pcaudio.c sys/isa psm.c sys/kern sys_generic.c tty.c sys/sys proc.h selinfo.h systm.h Log: Fixes to make select/poll mpsafe. Problem: selwakeup required calling pfind which would cause lock order reversals with the allproc_lock and the per-process filedesc lock. Solution: Instead of recording the pid of the select()'ing process into the selinfo structure, actually record a pointer to the thread. To avoid dereferencing a bad address all the selinfo structures that are in use by a thread are kept in a list hung off the thread (protected by sellock). When a selwakeup occurs the selinfo is removed from that threads list, it is also removed on the way out of select or poll where the thread will traverse its list removing all the selinfos from its own list. Problem: Previously the PROC_LOCK was used to provide the mutual exclusion needed to ensure proper locking, this couldn't work because there was a single condvar used for select and poll and condvars can only be used with a single mutex. Solution: Introduce a global mutex 'sellock' which is used to provide mutual exclusion when recording events to wait on as well as performing notification when an event occurs. Interesting note: schedlock is required to manipulate the per-thread TDF_SELECT flag, however if given its own field it would not need schedlock, also because TDF_SELECT is only manipulated under sellock one doesn't actually use schedlock for syncronization, only to protect against corruption. Proc locks are no longer used in select/poll. Portions contributed by: davidc Revision Changes Path 1.118 +2 -2 src/sys/dev/bktr/bktr_core.c 1.28 +1 -3 src/sys/dev/kbd/kbd.c 1.71 +0 -2 src/sys/dev/snp/snp.c 1.6 +2 -2 src/sys/dev/sound/midi/midibuf.c 1.82 +1 -1 src/sys/dev/sound/pcm/channel.c 1.50 +2 -0 src/sys/dev/usb/ums.c 1.52 +1 -4 src/sys/i386/isa/asc.c 1.65 +2 -5 src/sys/i386/isa/pcaudio.c 1.45 +0 -2 src/sys/isa/psm.c 1.93 +112 -114 src/sys/kern/sys_generic.c 1.167 +2 -2 src/sys/kern/tty.c 1.207 +3 -0 src/sys/sys/proc.h 1.13 +8 -3 src/sys/sys/selinfo.h 1.163 +2 -0 src/sys/sys/systm.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 17:34: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 7C3B037B404; Wed, 13 Mar 2002 17:34:26 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E1YQl70283; Wed, 13 Mar 2002 17:34:26 -0800 (PST) (envelope-from bmah) Message-Id: <200203140134.g2E1YQl70283@freefall.freebsd.org> From: "Bruce A. Mah" Date: Wed, 13 Mar 2002 17:34:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/sparc64 article.sgml src/release/doc/en_US.ISO8859-1/installation/sparc64 article.sgml src/release/doc/en_US.ISO8859-1/relnotes/sparc64 article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/03/13 17:34:26 PST Modified files: release/doc/en_US.ISO8859-1/hardware/sparc64 article.sgml release/doc/en_US.ISO8859-1/installation/sparc64 article.sgml release/doc/en_US.ISO8859-1/relnotes/sparc64 article.sgml Log: s/Sparc/SPARC/ Revision Changes Path 1.2 +2 -2 src/release/doc/en_US.ISO8859-1/hardware/sparc64/article.sgml 1.3 +2 -2 src/release/doc/en_US.ISO8859-1/installation/sparc64/article.sgml 1.3 +2 -2 src/release/doc/en_US.ISO8859-1/relnotes/sparc64/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 Mar 13 17:34: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 DBCF637B404; Wed, 13 Mar 2002 17:34:43 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E1Yh471409; Wed, 13 Mar 2002 17:34:43 -0800 (PST) (envelope-from bmah) Message-Id: <200203140134.g2E1Yh471409@freefall.freebsd.org> From: "Bruce A. Mah" Date: Wed, 13 Mar 2002 17:34:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/share/sgml mailing-lists.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 bmah 2002/03/13 17:34:43 PST Modified files: en_US.ISO8859-1/share/sgml mailing-lists.ent Log: s/Sparc/SPARC/ Revision Changes Path 1.6 +1 -1 doc/en_US.ISO8859-1/share/sgml/mailing-lists.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 17: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 BA1AB37B402; Wed, 13 Mar 2002 17:40:47 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E1elm78551; Wed, 13 Mar 2002 17:40:47 -0800 (PST) (envelope-from bmah) Message-Id: <200203140140.g2E1elm78551@freefall.freebsd.org> From: "Bruce A. Mah" Date: Wed, 13 Mar 2002 17:40:47 -0800 (PST) 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 bmah 2002/03/13 17:40:47 PST Modified files: release/doc/en_US.ISO8859-1/installation/sparc64 install.sgml Log: Whitespace, no content or markup changes. Revision Changes Path 1.7 +100 -88 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 Wed Mar 13 17:48: 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 38BF437B419; Wed, 13 Mar 2002 17:47:56 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E1luE85838; Wed, 13 Mar 2002 17:47:56 -0800 (PST) (envelope-from bmah) Message-Id: <200203140147.g2E1luE85838@freefall.freebsd.org> From: "Bruce A. Mah" Date: Wed, 13 Mar 2002 17:47:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/installation Makefile src/release/doc/share/examples Makefile.relnotesng X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 17:47:56 PST Modified files: release/doc/en_US.ISO8859-1/installation Makefile release/doc/share/examples Makefile.relnotesng Log: Activate the sparc64 installation document. Revision Changes Path 1.3 +2 -1 src/release/doc/en_US.ISO8859-1/installation/Makefile 1.4 +2 -2 src/release/doc/share/examples/Makefile.relnotesng To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 18: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 24D8B37B416; Wed, 13 Mar 2002 18:10:15 -0800 (PST) Received: (from green@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E2AFF08670; Wed, 13 Mar 2002 18:10:15 -0800 (PST) (envelope-from green) Message-Id: <200203140210.g2E2AFF08670@freefall.freebsd.org> From: Brian Feldman Date: Wed, 13 Mar 2002 18:10:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm vm_fault.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG green 2002/03/13 18:10:15 PST Modified files: sys/vm vm_fault.c Log: Document faultstate.lookup_still_valid more than none. Requested by: alfred Revision Changes Path 1.131 +14 -10 src/sys/vm/vm_fault.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 18:24: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 A5A9A37B404; Wed, 13 Mar 2002 18:24:25 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E2OPD23540; Wed, 13 Mar 2002 18:24:25 -0800 (PST) (envelope-from obrien) Message-Id: <200203140224.g2E2OPD23540@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 13 Mar 2002 18:24:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils Makefile.inc0 src/gnu/usr.bin/binutils/as Makefile.inc0 src/gnu/usr.bin/binutils/gdbreplay Makefile src/gnu/usr.bin/binutils/libbfd Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/03/13 18:24:25 PST Modified files: gnu/usr.bin/binutils Makefile.inc0 gnu/usr.bin/binutils/as Makefile.inc0 gnu/usr.bin/binutils/gdbreplay Makefile gnu/usr.bin/binutils/libbfd Makefile Log: Tune WARNS for Alpha. Revision Changes Path 1.25 +3 -1 src/gnu/usr.bin/binutils/Makefile.inc0 1.17 +4 -0 src/gnu/usr.bin/binutils/as/Makefile.inc0 1.9 +4 -0 src/gnu/usr.bin/binutils/gdbreplay/Makefile 1.18 +3 -0 src/gnu/usr.bin/binutils/libbfd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 19:16:33 2002 Delivered-To: cvs-all@freebsd.org Received: from nothing-going-on.demon.co.uk (pc-62-31-42-140-hy.blueyonder.co.uk [62.31.42.140]) by hub.freebsd.org (Postfix) with ESMTP id 30C3037B404; Wed, 13 Mar 2002 19:16:25 -0800 (PST) Received: (from nik@localhost) by nothing-going-on.demon.co.uk (8.11.3/8.11.3) id g2DLMFv91945; Wed, 13 Mar 2002 21:22:15 GMT (envelope-from nik) Date: Wed, 13 Mar 2002 21:22:14 +0000 From: Nik Clayton To: Dag-Erling Smorgrav Cc: Mikhail Teterin , ue@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Message-ID: <20020313212214.A91882@canyon.nothing-going-on.org> References: <200203131806.g2DI6o3b087697@aldan.algebra.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="rwEMma7ioTxnRzrJ" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from des@ofug.org on Wed, Mar 13, 2002 at 09:29:43PM +0100 Organization: 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 --rwEMma7ioTxnRzrJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Mar 13, 2002 at 09:29:43PM +0100, Dag-Erling Smorgrav wrote: > In XML, all elements need a closing tag, unless the element is empty, > in which case you can use the short form, like
- note that the > space is required by the specification, though not all XML parsers > will complain if it's missing. You sure about that? Empty elements are 'supposed'[1] to be indicated as
. The "
" hack is for older HTML parsers that might encounter XHTML and get confused. See http://www.ucc.ie/xml/ and search for " />". N [1] In quotes because of course it's still valid XML, and when it gets down to it it's a question of personal preference. --=20 FreeBSD: The Power to Serve http://www.freebsd.org/ (__) FreeBSD Documentation Project http://www.freebsd.org/docproj/ \\\'',) \/ \= ^ --- 15B8 3FFC DDB4 34B0 AA5F 94B7 93A8 0764 2C37 E375 --- .\._/= _) --rwEMma7ioTxnRzrJ 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 iEYEARECAAYFAjyPwwYACgkQk6gHZCw343Ul+gCgj8Io7+1b9D9F40PuUL3PQa88 zaUAnj5rnKsxhmMxlpBp2Ruq3icWt/G0 =l5mr -----END PGP SIGNATURE----- --rwEMma7ioTxnRzrJ-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 19:29: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 7AFB137B404; Wed, 13 Mar 2002 19:29:44 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E3Tie91572; Wed, 13 Mar 2002 19:29:44 -0800 (PST) (envelope-from obrien) Message-Id: <200203140329.g2E3Tie91572@freefall.freebsd.org> From: "David E. O'Brien" Date: Wed, 13 Mar 2002 19:29:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/arm-elf-binutils 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 obrien 2002/03/13 19:29:44 PST Modified files: devel/arm-elf-binutils Makefile distinfo pkg-plist Log: Upgrade to Binutils 2.12.0. Revision Changes Path 1.5 +1 -1 ports/devel/arm-elf-binutils/Makefile 1.4 +1 -1 ports/devel/arm-elf-binutils/distinfo 1.2 +3 -1 ports/devel/arm-elf-binutils/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 Mar 13 19: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 EF8DB37B404; Wed, 13 Mar 2002 19:33:42 -0800 (PST) Received: (from ambrisko@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E3Xgq93855; Wed, 13 Mar 2002 19:33:42 -0800 (PST) (envelope-from ambrisko) Message-Id: <200203140333.g2E3Xgq93855@freefall.freebsd.org> From: Doug Ambrisko Date: Wed, 13 Mar 2002 19:33:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ambrisko 2002/03/13 19:33:42 PST Modified files: . modules Log: airoflash --> ports/misc/airoflash Revision Changes Path 1.4831 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 19: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 0C80637B400; Wed, 13 Mar 2002 19:33:41 -0800 (PST) Received: (from ambrisko@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E3Xfk93812; Wed, 13 Mar 2002 19:33:41 -0800 (PST) (envelope-from ambrisko) Message-Id: <200203140333.g2E3Xfk93812@freefall.freebsd.org> From: Doug Ambrisko Date: Wed, 13 Mar 2002 19:33:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc Makefile ports/misc/airoflash Makefile distinfo pkg-comment pkg-descr pkg-plist ports/misc/airoflash/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 ambrisko 2002/03/13 19:33:40 PST Modified files: misc Makefile Added files: misc/airoflash Makefile distinfo pkg-comment pkg-descr pkg-plist misc/airoflash/files patch-aa Log: A utility to update firmware in Cisco/Aironet 802.11 wireless cards PR: ports/31712 Reviewed by: archie Revision Changes Path 1.428 +1 -0 ports/misc/Makefile 1.1 +26 -0 ports/misc/airoflash/Makefile (new) 1.1 +1 -0 ports/misc/airoflash/distinfo (new) 1.1 +8 -0 ports/misc/airoflash/files/patch-aa (new) 1.1 +1 -0 ports/misc/airoflash/pkg-comment (new) 1.1 +3 -0 ports/misc/airoflash/pkg-descr (new) 1.1 +1 -0 ports/misc/airoflash/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 19: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 2677C37B405; Wed, 13 Mar 2002 19:50:13 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E3oDm08675; Wed, 13 Mar 2002 19:50:13 -0800 (PST) (envelope-from ijliao) Message-Id: <200203140350.g2E3oDm08675@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 13 Mar 2002 19:50:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/p5-libnet 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/03/13 19:50:13 PST Modified files: net Makefile Added files: net/p5-libnet Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add p5-libnet 1.10 Perl5 interface to various protocols used in the internet community PR: 35867 Submitted by: jesper Revision Changes Path 1.726 +1 -0 ports/net/Makefile 1.1 +30 -0 ports/net/p5-libnet/Makefile (new) 1.1 +1 -0 ports/net/p5-libnet/distinfo (new) 1.1 +1 -0 ports/net/p5-libnet/pkg-comment (new) 1.1 +19 -0 ports/net/p5-libnet/pkg-descr (new) 1.1 +16 -0 ports/net/p5-libnet/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 19:50: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 A7D2837B419; Wed, 13 Mar 2002 19:50:15 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E3oF408822; Wed, 13 Mar 2002 19:50:15 -0800 (PST) (envelope-from ijliao) Message-Id: <200203140350.g2E3oF408822@freefall.freebsd.org> From: Ying-Chieh Liao Date: Wed, 13 Mar 2002 19:50:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/13 19:50:15 PST Modified files: . modules Log: p5-libnet --> ports/net/p5-libnet Revision Changes Path 1.4832 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 19:58:25 2002 Delivered-To: cvs-all@freebsd.org Received: from watery.cc.kogakuin.ac.jp (watery.cc.kogakuin.ac.jp [133.80.152.80]) by hub.freebsd.org (Postfix) with ESMTP id 6763237B419; Wed, 13 Mar 2002 19:58:19 -0800 (PST) Received: from localhost (localhost [::1]) by watery.cc.kogakuin.ac.jp (8.11.6/8.11.6) with ESMTP id g2E3vcu49460; Thu, 14 Mar 2002 12:57:39 +0900 (JST) (envelope-from nyan@jp.FreeBSD.org) Date: Thu, 14 Mar 2002 12:57:11 +0900 (JST) Message-Id: <20020314.125711.74694319.nyan@jp.FreeBSD.org> To: imp@village.org Cc: matusita@jp.FreeBSD.org, des@ofug.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin Makefile From: Takahashi Yoshihiro In-Reply-To: <20020313.094222.68306321.imp@village.org> References: <20020314011045S.matusita@jp.FreeBSD.org> <20020313.094222.68306321.imp@village.org> X-Mailer: Mew version 2.2 on Emacs 20.7 / Mule 4.0 =?iso-2022-jp?B?KBskQjJWMWMbKEIp?= 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 article <20020313.094222.68306321.imp@village.org> "M. Warner Losh" writes: > This looks like a good start at fixing the problem... This does not have a effect for pc98. At 'make buildworld' for pc98, MACHINE pc98 MACHINE_ARCH i386 TARGET pc98 TARGET_ARCH i386 --- TAKAHASHI Yoshihiro THE CENTER for INFORMATION SCIENCE, Kogakuin Univ. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 20: 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 94CFD37B400; Wed, 13 Mar 2002 20:09:09 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E499d26293; Wed, 13 Mar 2002 20:09:09 -0800 (PST) (envelope-from pat) Message-Id: <200203140409.g2E499d26293@freefall.freebsd.org> From: Patrick Li Date: Wed, 13 Mar 2002 20:09:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/wmbattery 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/03/13 20:09:09 PST Modified files: sysutils/wmbattery Makefile Log: Fix MASTER_SITES Revision Changes Path 1.17 +1 -2 ports/sysutils/wmbattery/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 20: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 82CF237B404; Wed, 13 Mar 2002 20:21:50 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E4Lox29765; Wed, 13 Mar 2002 20:21:50 -0800 (PST) (envelope-from murray) Message-Id: <200203140421.g2E4Lox29765@freefall.freebsd.org> From: Murray Stokely Date: Wed, 13 Mar 2002 20:21:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 release.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 murray 2002/03/13 20:21:50 PST Modified files: share/man/man7 release.7 Log: Various mdoc fixes. Submitted by: ru Revision Changes Path 1.3 +58 -47 src/share/man/man7/release.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 20:47: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 9146737B41A; Wed, 13 Mar 2002 20:47:08 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E4l8149054; Wed, 13 Mar 2002 20:47:08 -0800 (PST) (envelope-from alfred) Message-Id: <200203140447.g2E4l8149054@freefall.freebsd.org> From: Alfred Perlstein Date: Wed, 13 Mar 2002 20:47:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net bpf.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 20:47:08 PST Modified files: sys/net bpf.c Log: Missed this file for select SMP fixes associated with rev 1.93 of kern/sys_generic.c Revision Changes Path 1.87 +0 -2 src/sys/net/bpf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 21: 7: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 0FDA437B402; Wed, 13 Mar 2002 21:07:43 -0800 (PST) Received: (from clive@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E57hZ62400; Wed, 13 Mar 2002 21:07:43 -0800 (PST) (envelope-from clive) Message-Id: <200203140507.g2E57hZ62400@freefall.freebsd.org> From: Clive Lin Date: Wed, 13 Mar 2002 21:07:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/mutt distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG clive 2002/03/13 21:07:42 PST Modified files: chinese/mutt distinfo Log: Chasing mail/mutt-devel update. Revision Changes Path 1.16 +6 -7 ports/chinese/mutt/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 21: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 9A5E537B417; Wed, 13 Mar 2002 21:16:18 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E5GIv70566; Wed, 13 Mar 2002 21:16:18 -0800 (PST) (envelope-from alfred) Message-Id: <200203140516.g2E5GIv70566@freefall.freebsd.org> From: Alfred Perlstein Date: Wed, 13 Mar 2002 21:16:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netsmb smb_trantcp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/13 21:16:18 PST Modified files: sys/netsmb smb_trantcp.c Log: Missed this file for select SMP fixes associated with rev 1.93 of kern/sys_generic.c Revision Changes Path 1.8 +24 -27 src/sys/netsmb/smb_trantcp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 21: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 D7C9D37B402; Wed, 13 Mar 2002 21:58:51 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E5wpq90332; Wed, 13 Mar 2002 21:58:51 -0800 (PST) (envelope-from pat) Message-Id: <200203140558.g2E5wpq90332@freefall.freebsd.org> From: Patrick Li Date: Wed, 13 Mar 2002 21:58:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/freeamp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/13 21:58:51 PST Modified files: audio/freeamp Makefile Log: Depend on freetype2 libs and fix ORBit detection PR: 35881, 35845 Submitted by: maintainer, Steve Wills Revision Changes Path 1.16 +5 -2 ports/audio/freeamp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 22:19: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 3228837B404; Wed, 13 Mar 2002 22:19:43 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E6Jhd09784; Wed, 13 Mar 2002 22:19:43 -0800 (PST) (envelope-from pat) Message-Id: <200203140619.g2E6Jhd09784@freefall.freebsd.org> From: Patrick Li Date: Wed, 13 Mar 2002 22:19:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gnu-radius Makefile Makefile.inc ports/net/gnu-radius/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 pat 2002/03/13 22:19:43 PST Modified files: net/gnu-radius Makefile net/gnu-radius/scripts configure Removed files: net/gnu-radius Makefile.inc Log: Correct include and lib paths PR: 35847 Submitted by: maintainer Revision Changes Path 1.2 +2 -1 ports/net/gnu-radius/Makefile 1.3 +0 -5 ports/net/gnu-radius/Makefile.inc (dead) 1.2 +2 -0 ports/net/gnu-radius/scripts/configure To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 22:31: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 584F037B402; Wed, 13 Mar 2002 22:31:21 -0800 (PST) Received: (from clive@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E6VLC13018; Wed, 13 Mar 2002 22:31:21 -0800 (PST) (envelope-from clive) Message-Id: <200203140631.g2E6VLC13018@freefall.freebsd.org> From: Clive Lin Date: Wed, 13 Mar 2002 22:31:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/mutt Makefile 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 clive 2002/03/13 22:31:21 PST Modified files: chinese/mutt Makefile pkg-message Log: Fix PORTREVISION. Turn on Outlook compatibility by default. Revision Changes Path 1.15 +1 -1 ports/chinese/mutt/Makefile 1.4 +5 -0 ports/chinese/mutt/pkg-message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 22: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 B8B3137B421; Wed, 13 Mar 2002 22:56:08 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E6u8M25418; Wed, 13 Mar 2002 22:56:08 -0800 (PST) (envelope-from pat) Message-Id: <200203140656.g2E6u8M25418@freefall.freebsd.org> From: Patrick Li Date: Wed, 13 Mar 2002 22:56:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/grip Makefile distinfo pkg-message pkg-plist ports/audio/grip/files patch-aa patch-cddb.c patch-grip.c patch-grip.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 pat 2002/03/13 22:56:08 PST Modified files: audio/grip Makefile distinfo pkg-plist Added files: audio/grip pkg-message Removed files: audio/grip/files patch-aa patch-cddb.c patch-grip.c patch-grip.h Log: Update to 2.99.0 PR: 35863 Submitted by: maintainer Revision Changes Path 1.11 +28 -17 ports/audio/grip/Makefile 1.6 +1 -1 ports/audio/grip/distinfo 1.6 +0 -38 ports/audio/grip/files/patch-aa (dead) 1.2 +0 -160 ports/audio/grip/files/patch-cddb.c (dead) 1.2 +0 -99 ports/audio/grip/files/patch-grip.c (dead) 1.2 +0 -18 ports/audio/grip/files/patch-grip.h (dead) 1.1 +24 -0 ports/audio/grip/pkg-message (new) 1.4 +75 -6 ports/audio/grip/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 Mar 13 22:57: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 D8AAE37B419; Wed, 13 Mar 2002 22:57:35 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E6vYb26347; Wed, 13 Mar 2002 22:57:34 -0800 (PST) (envelope-from luigi) Message-Id: <200203140657.g2E6vYb26347@freefall.freebsd.org> From: Luigi Rizzo Date: Wed, 13 Mar 2002 22:57:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/etherboot/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 luigi 2002/03/13 22:57:34 PST Added files: net/etherboot/files patch-ab Log: Try to implement something similar to a window protocol in terms of response to losses. This makes etherboot work much smoother when nfs-loading kernels in presence of a small amount of losses. A similar patch will be committed shortly for tftp loads (in the process of testing that, Doug Ambrisko and I found a bug in FreeBSD's tftpd!). These patches are being submitted to the etheboot developers for integration in future releases of etherboot. Revision Changes Path 1.6 +42 -0 ports/net/etherboot/files/patch-ab (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 23:30: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 845FA37B405; Wed, 13 Mar 2002 23:30:39 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E7Udi47900; Wed, 13 Mar 2002 23:30:39 -0800 (PST) (envelope-from sobomax) Message-Id: <200203140730.g2E7Udi47900@freefall.freebsd.org> From: Maxim Sobolev Date: Wed, 13 Mar 2002 23:30:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/libuta Makefile ports/graphics/py-gd Makefile ports/graphics/py-paint Makefile ports/math/gnuplot+ Makefile ports/print/py-freetype Makefile ports/print/ttftot42 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/03/13 23:30:39 PST Modified files: devel/libuta Makefile graphics/py-gd Makefile graphics/py-paint Makefile math/gnuplot+ Makefile print/py-freetype Makefile print/ttftot42 Makefile Log: LIB_DEPENDS=ttf.4[...] --> USE_FREETYPE=yes Revision Changes Path 1.5 +3 -3 ports/devel/libuta/Makefile 1.2 +2 -2 ports/graphics/py-gd/Makefile 1.5 +2 -2 ports/graphics/py-paint/Makefile 1.18 +2 -2 ports/math/gnuplot+/Makefile 1.3 +1 -2 ports/print/py-freetype/Makefile 1.3 +2 -3 ports/print/ttftot42/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Wed Mar 13 23:39: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 0C52637B402; Wed, 13 Mar 2002 23:39:57 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E7dvY54527; Wed, 13 Mar 2002 23:39:57 -0800 (PST) (envelope-from pat) Message-Id: <200203140739.g2E7dvY54527@freefall.freebsd.org> From: Patrick Li Date: Wed, 13 Mar 2002 23:39:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/tree Makefile distinfo ports/sysutils/tree/files patch-Makefile patch-tree.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/13 23:39:56 PST Modified files: sysutils/tree Makefile distinfo sysutils/tree/files patch-Makefile patch-tree.c Log: Chase checksum and bump PORTREVISION - author fix command line parsing and symlink bug PR: 35811 Submitted by: maintainer Revision Changes Path 1.2 +1 -0 ports/sysutils/tree/Makefile 1.2 +1 -1 ports/sysutils/tree/distinfo 1.2 +7 -11 ports/sysutils/tree/files/patch-Makefile 1.2 +10 -10 ports/sysutils/tree/files/patch-tree.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 0:30: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 03C0137B416; Thu, 14 Mar 2002 00:30:18 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E8UHD79840; Thu, 14 Mar 2002 00:30:17 -0800 (PST) (envelope-from sobomax) Message-Id: <200203140830.g2E8UHD79840@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 14 Mar 2002 00:30:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/yudit 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/03/14 00:30:17 PST Modified files: editors/yudit Makefile Log: This port doesn't really USE_FREETYPE. Revision Changes Path 1.19 +0 -1 ports/editors/yudit/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 0:59: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 7620137B41A; Thu, 14 Mar 2002 00:59:38 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E8xco88076; Thu, 14 Mar 2002 00:59:38 -0800 (PST) (envelope-from sobomax) Message-Id: <200203140859.g2E8xco88076@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 14 Mar 2002 00:59:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/py-gd 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/03/14 00:59:38 PST Modified files: graphics/py-gd Makefile Log: This port doesn't really need USE_FREETYPE. Revision Changes Path 1.3 +2 -2 ports/graphics/py-gd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 1:13: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 1821937B405; Thu, 14 Mar 2002 01:13:06 -0800 (PST) Received: (from hanai@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E9D6o98541; Thu, 14 Mar 2002 01:13:06 -0800 (PST) (envelope-from hanai) Message-Id: <200203140913.g2E9D6o98541@freefall.freebsd.org> From: Hiroyuki Hanai Date: Thu, 14 Mar 2002 01:13:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ja/releases/2.1.5R notes.sgml www/ja/releases/2.1.6R notes.sgml security.sgml www/ja/releases/2.1.7R notes.sgml www/ja/releases/2.2.1R notes.sgml www/ja/releases/2.2.2R errata.sgml notes.sgml www/ja/releases/2.2.5R 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 hanai 2002/03/14 01:13:06 PST Modified files: ja/releases/2.1.5R notes.sgml ja/releases/2.1.6R notes.sgml security.sgml ja/releases/2.1.7R notes.sgml ja/releases/2.2.1R notes.sgml ja/releases/2.2.2R errata.sgml notes.sgml ja/releases/2.2.5R announce.sgml errata.sgml notes.sgml ja/releases/2.2.6R announce.sgml errata.sgml notes.sgml ja/releases/2.2.7R announce.sgml errata.sgml notes.sgml ja/releases/2.2.8R announce.sgml errata.sgml notes.sgml ja/releases/2.2R announce.sgml install-media.sgml notes.sgml Log: use japanese chars for punctuations and quotations. Submitted by: rio@tokyoalley.net Revision Changes Path 1.8 +205 -205 www/ja/releases/2.1.5R/notes.sgml 1.8 +202 -202 www/ja/releases/2.1.6R/notes.sgml 1.8 +8 -8 www/ja/releases/2.1.6R/security.sgml 1.9 +23 -23 www/ja/releases/2.1.7R/notes.sgml 1.8 +239 -239 www/ja/releases/2.2.1R/notes.sgml 1.10 +48 -48 www/ja/releases/2.2.2R/errata.sgml 1.8 +246 -246 www/ja/releases/2.2.2R/notes.sgml 1.11 +31 -31 www/ja/releases/2.2.5R/announce.sgml 1.15 +52 -52 www/ja/releases/2.2.5R/errata.sgml 1.10 +182 -182 www/ja/releases/2.2.5R/notes.sgml 1.12 +26 -26 www/ja/releases/2.2.6R/announce.sgml 1.15 +50 -50 www/ja/releases/2.2.6R/errata.sgml 1.9 +5 -5 www/ja/releases/2.2.6R/notes.sgml 1.12 +40 -40 www/ja/releases/2.2.7R/announce.sgml 1.13 +28 -28 www/ja/releases/2.2.7R/errata.sgml 1.10 +5 -5 www/ja/releases/2.2.7R/notes.sgml 1.8 +36 -36 www/ja/releases/2.2.8R/announce.sgml 1.12 +28 -28 www/ja/releases/2.2.8R/errata.sgml 1.7 +136 -136 www/ja/releases/2.2.8R/notes.sgml 1.11 +9 -9 www/ja/releases/2.2R/announce.sgml 1.7 +21 -21 www/ja/releases/2.2R/install-media.sgml 1.8 +224 -224 www/ja/releases/2.2R/notes.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 1:16: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 A0BFE37B419; Thu, 14 Mar 2002 01:16:39 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E9GdL00543; Thu, 14 Mar 2002 01:16:39 -0800 (PST) (envelope-from ijliao) Message-Id: <200203140916.g2E9GdL00543@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 01:16:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/py-log4py 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/03/14 01:16:39 PST Modified files: devel Makefile Added files: devel/py-log4py Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add py-log4py 0.7.1 A python logging module Revision Changes Path 1.776 +1 -0 ports/devel/Makefile 1.1 +32 -0 ports/devel/py-log4py/Makefile (new) 1.1 +1 -0 ports/devel/py-log4py/distinfo (new) 1.1 +1 -0 ports/devel/py-log4py/pkg-comment (new) 1.1 +3 -0 ports/devel/py-log4py/pkg-descr (new) 1.1 +13 -0 ports/devel/py-log4py/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 Mar 14 1:16:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C05CB37B41A; Thu, 14 Mar 2002 01:16:42 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E9GgE00587; Thu, 14 Mar 2002 01:16:42 -0800 (PST) (envelope-from ijliao) Message-Id: <200203140916.g2E9GgE00587@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 01:16:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/14 01:16:42 PST Modified files: . modules Log: py-log4py --> ports/devel/py-log4py Revision Changes Path 1.4833 +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 Mar 14 1:20: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3031837B417; Thu, 14 Mar 2002 01:20:07 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E9K7b02808; Thu, 14 Mar 2002 01:20:07 -0800 (PST) (envelope-from dfr) Message-Id: <200203140920.g2E9K7b02808@freefall.freebsd.org> From: Doug Rabson Date: Thu, 14 Mar 2002 01:20:07 -0800 (PST) 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 dfr 2002/03/14 01:20:07 PST Modified files: sys/ia64/ia64 machdep.c Log: Move the call to pmap_bootstrap to after the initialisation of thread0. This allows us to use mutexes in pmap safely. Also initialise fpcurthread for cpu0 so that ia64_fpstate_check doesn't barf during boot. Revision Changes Path 1.79 +9 -6 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 Mar 14 1: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 DCDDB37B420; Thu, 14 Mar 2002 01:28:05 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E9S5K06336; Thu, 14 Mar 2002 01:28:05 -0800 (PST) (envelope-from dfr) Message-Id: <200203140928.g2E9S5K06336@freefall.freebsd.org> From: Doug Rabson Date: Thu, 14 Mar 2002 01:28:05 -0800 (PST) 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/03/14 01:28:05 PST Modified files: sys/ia64/ia64 pmap.c Log: * Use a mutex to protect the RID allocator. * Use ptc.g instead of ptc.l so that TLB shootdowns are broadcast to the coherence domain. * Use smp_rendezvous for pmap_invalidate_all to ensure it happens on all cpus. * Dike out a DIAGNOSTIC printf which didn't compile. * Protect the internals of pmap_install with cpu_critical_enter/exit. Revision Changes Path 1.45 +40 -16 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 Thu Mar 14 1: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 9349637B405; Thu, 14 Mar 2002 01:38:24 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E9cO111102; Thu, 14 Mar 2002 01:38:24 -0800 (PST) (envelope-from murray) Message-Id: <200203140938.g2E9cO111102@freefall.freebsd.org> From: Murray Stokely Date: Thu, 14 Mar 2002 01:38:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 build.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 murray 2002/03/14 01:38:24 PST Modified files: share/man/man7 build.7 Log: Add an ENVIRONMENT section, and document TARGET_ARCH and NO_WERROR. Add a cross-build example. Revision Changes Path 1.16 +16 -0 src/share/man/man7/build.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 1:53: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 8743337B405; Thu, 14 Mar 2002 01:53:19 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2E9rJ218024; Thu, 14 Mar 2002 01:53:19 -0800 (PST) (envelope-from murray) Message-Id: <200203140953.g2E9rJ218024@freefall.freebsd.org> From: Murray Stokely Date: Thu, 14 Mar 2002 01:53:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 Makefile release.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 murray 2002/03/14 01:53:19 PST Modified files: (Branch: RELENG_4) share/man/man7 Makefile Added files: (Branch: RELENG_4) share/man/man7 release.7 Log: MFC: r1.1-r1.3 of release.7, a new man page describing the release build infrastructure. Revision Changes Path 1.10.2.5 +2 -2 src/share/man/man7/Makefile 1.3.2.1 +330 -0 src/share/man/man7/release.7 (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 2: 3: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 944F737B41C; Thu, 14 Mar 2002 02:03:11 -0800 (PST) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EA3BB22807; Thu, 14 Mar 2002 02:03:11 -0800 (PST) (envelope-from brian) Message-Id: <200203141003.g2EA3BB22807@freefall.freebsd.org> From: Brian Somers Date: Thu, 14 Mar 2002 02:03:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/arpwatch/files arpwatch.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 brian 2002/03/14 02:03:11 PST Modified files: net/arpwatch/files arpwatch.sh Log: Fix a typo Submitted by: AMAKAWA Shuhei Revision Changes Path 1.6 +1 -1 ports/net/arpwatch/files/arpwatch.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 2: 9: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 389F537B404; Thu, 14 Mar 2002 02:09:19 -0800 (PST) Received: (from billf@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EA9J428633; Thu, 14 Mar 2002 02:09:19 -0800 (PST) (envelope-from billf) Message-Id: <200203141009.g2EA9J428633@freefall.freebsd.org> From: Bill Fumerola Date: Thu, 14 Mar 2002 02:09:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/nos-tun nos-tun.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 billf 2002/03/14 02:09:19 PST Modified files: sbin/nos-tun nos-tun.8 Log: minor grammar fixes Revision Changes Path 1.13 +3 -3 src/sbin/nos-tun/nos-tun.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 2:17: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 D7C5937B437; Thu, 14 Mar 2002 02:16:58 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EAGwJ29807; Thu, 14 Mar 2002 02:16:58 -0800 (PST) (envelope-from murray) Message-Id: <200203141016.g2EAGwJ29807@freefall.freebsd.org> From: Murray Stokely Date: Thu, 14 Mar 2002 02:16:58 -0800 (PST) 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 murray 2002/03/14 02:16:58 PST Modified files: share/sgml man-refs.ent Log: Add an entry for release(7). Revision Changes Path 1.124 +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 Mar 14 2: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 39AF137B442; Thu, 14 Mar 2002 02:17:08 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EAH8829884; Thu, 14 Mar 2002 02:17:08 -0800 (PST) (envelope-from dfr) Message-Id: <200203141017.g2EAH8829884@freefall.freebsd.org> From: Doug Rabson Date: Thu, 14 Mar 2002 02:17:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/include sapicvar.h src/sys/ia64/ia64 sapic.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/14 02:17:08 PST Modified files: sys/ia64/include sapicvar.h sys/ia64/ia64 sapic.c Log: Add debug code to print SAPIC registers. Revision Changes Path 1.3 +30 -1 src/sys/ia64/ia64/sapic.c 1.2 +3 -0 src/sys/ia64/include/sapicvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 2:18: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 859FC37B417; Thu, 14 Mar 2002 02:18:08 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EAI8W30052; Thu, 14 Mar 2002 02:18:08 -0800 (PST) (envelope-from murray) Message-Id: <200203141018.g2EAI8W30052@freefall.freebsd.org> From: Murray Stokely Date: Thu, 14 Mar 2002 02:18:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/releng article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2002/03/14 02:18:08 PST Modified files: en_US.ISO8859-1/articles/releng article.sgml Log: Point to release(7) for more details about the targets and options available for src/release/Makefile. While I'm here, correct the spelling of 'separate'. Revision Changes Path 1.17 +5 -1 doc/en_US.ISO8859-1/articles/releng/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 2:24: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D52E837B402; Thu, 14 Mar 2002 02:24:00 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EAO0o30984; Thu, 14 Mar 2002 02:24:00 -0800 (PST) (envelope-from dfr) Message-Id: <200203141024.g2EAO0o30984@freefall.freebsd.org> From: Doug Rabson Date: Thu, 14 Mar 2002 02:24:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 interrupt.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dfr 2002/03/14 02:24:00 PST Modified files: sys/ia64/ia64 interrupt.c Log: * Add some KTR messages for IPIs. * Don't call ast() from interrupt() - if we switch, then we will miss writing cr.eoi which will prevent the current cpu from receiving interrupts until the current thread is resumed. The call to ast() happens magically in exception_restore where it is safe. * Add DDB 'show irq' command to examine interrupt hardware state. Revision Changes Path 1.22 +35 -3 src/sys/ia64/ia64/interrupt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 2:38: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 A371937B400; Thu, 14 Mar 2002 02:38:53 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EAcrB32981; Thu, 14 Mar 2002 02:38:53 -0800 (PST) (envelope-from kuriyama) Message-Id: <200203141038.g2EAcrB32981@freefall.freebsd.org> From: Jun Kuriyama Date: Thu, 14 Mar 2002 02:38:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en publish.sgml 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 kuriyama 2002/03/14 02:38:53 PST Modified files: en publish.sgml support.sgml Log: Remove obsoleted link to register.html. Register.html should be removed after links in translated pages are also removed. Revision Changes Path 1.50 +1 -7 www/en/publish.sgml 1.253 +1 -7 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 Thu Mar 14 3: 2: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 27FE837B419; Thu, 14 Mar 2002 03:02:36 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EB2aH36889; Thu, 14 Mar 2002 03:02:36 -0800 (PST) (envelope-from maxim) Message-Id: <200203141102.g2EB2aH36889@freefall.freebsd.org> From: Maxim Konovalov Date: Thu, 14 Mar 2002 03:02:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys fcntl.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 maxim 2002/03/14 03:02:35 PST Modified files: lib/libc/sys fcntl.2 Log: Clarify fcntl(2) and flock(2) interoperability. PR: docs/23353 Reviewed by: ru, dillon Approved by: ru MFC after: 3 days Revision Changes Path 1.36 +7 -1 src/lib/libc/sys/fcntl.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 3: 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 5373437B404; Thu, 14 Mar 2002 03:04:23 -0800 (PST) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EB4Nf37253; Thu, 14 Mar 2002 03:04:23 -0800 (PST) (envelope-from olgeni) Message-Id: <200203141104.g2EB4Nf37253@freefall.freebsd.org> From: Jimmy Olgeni Date: Thu, 14 Mar 2002 03:04:23 -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/03/14 03:04:23 PST Modified files: sysutils/webmin Makefile distinfo Log: Update modules: file, bind8. Revision Changes Path 1.92 +3 -2 ports/sysutils/webmin/Makefile 1.65 +2 -1 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 Thu Mar 14 3:15: 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 EDC5137B405; Thu, 14 Mar 2002 03:15:03 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EBF3c42351; Thu, 14 Mar 2002 03:15:03 -0800 (PST) (envelope-from sobomax) Message-Id: <200203141115.g2EBF3c42351@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 14 Mar 2002 03:15:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print/freetype Makefile pkg-plist ports/print/freetype/files patch-lib::arch::unix::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/03/14 03:15:03 PST Modified files: print/freetype Makefile pkg-plist Added files: print/freetype/files patch-lib::arch::unix::Makefile.in Log: Install includes into ${PREFIX}/include/freetype1/freetype instead of ${PREFIX}/include/freetype, so that ports that want freetype2 but don't pay particular attention to the order of `-I' directives won't be screwed if freetype1 is occasionally installed on the same system. This should fix recent problems with Mozilla. Bump PORTREVISION. Revision Changes Path 1.25 +2 -2 ports/print/freetype/Makefile 1.1 +18 -0 ports/print/freetype/files/patch-lib::arch::unix::Makefile.in (new) 1.14 +16 -15 ports/print/freetype/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 Mar 14 3:15: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 A872237B434; Thu, 14 Mar 2002 03:15:36 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EBFaw42540; Thu, 14 Mar 2002 03:15:36 -0800 (PST) (envelope-from kuriyama) Message-Id: <200203141115.g2EBFaw42540@freefall.freebsd.org> From: Jun Kuriyama Date: Thu, 14 Mar 2002 03:15:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/ja index.xsl relnotes.sgml www/ja/internal developer.sgml www/ja/java newsflash.sgml www/ja/platforms ia64.sgml www/ja/ports ports.inc www/ja/releases 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 kuriyama 2002/03/14 03:15:36 PST Modified files: ja index.xsl relnotes.sgml ja/internal developer.sgml ja/java newsflash.sgml ja/platforms ia64.sgml ja/ports ports.inc ja/releases index.sgml Log: MFen. Revision Changes Path 1.13 +7 -4 www/ja/index.xsl 1.22 +4 -2 www/ja/internal/developer.sgml 1.12 +3 -3 www/ja/java/newsflash.sgml 1.6 +5 -2 www/ja/platforms/ia64.sgml 1.23 +4 -4 www/ja/ports/ports.inc 1.52 +5 -5 www/ja/releases/index.sgml 1.3 +4 -3 www/ja/relnotes.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 3:16: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 524F237B400; Thu, 14 Mar 2002 03:16:45 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EBGjh43059; Thu, 14 Mar 2002 03:16:45 -0800 (PST) (envelope-from sobomax) Message-Id: <200203141116.g2EBGjh43059@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 14 Mar 2002 03:16:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/bg5ps/files patch-aa ports/chinese/ttfm/files patch-Makefile ports/chinese/vflib Makefile ports/devel/libuta Makefile ports/devel/libuta/files patch-aa ports/games/adgali Makefile ports/games/powerpak/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 sobomax 2002/03/14 03:16:45 PST Modified files: chinese/bg5ps/files patch-aa chinese/vflib Makefile devel/libuta Makefile devel/libuta/files patch-aa games/adgali Makefile games/powerpak/files Makefile.FreeBSD graphics/imlib2 Makefile graphics/p5-Imager Makefile graphics/py-paint Makefile graphics/xpdf Makefile japanese/vflib Makefile korean/ftghostscript5/files patch-aa korean/ghostscript55httf/files patch-aa print/gfontview Makefile print/perlftlib/files patch-ac print/py-freetype/files patch-Setup.w32 print/ttftot42 Makefile x11-fonts/ttmkfdir Makefile x11-fonts/xmbdfed/files patch-aa x11-servers/XttXF86srv-common/files Imakefile x11-wm/enlightenment Makefile Added files: chinese/ttfm/files patch-Makefile misc/magicpoint/files patch-configure Log: Adjust in accordance with the new location of freetype1 includes (${PREFIX}/include/freetype1/freetype, not ${PREFIX}/include/freetype). Revision Changes Path 1.5 +6 -3 ports/chinese/bg5ps/files/patch-aa 1.1 +12 -0 ports/chinese/ttfm/files/patch-Makefile (new) 1.3 +2 -2 ports/chinese/vflib/Makefile 1.6 +1 -0 ports/devel/libuta/Makefile 1.4 +12 -20 ports/devel/libuta/files/patch-aa 1.4 +2 -1 ports/games/adgali/Makefile 1.2 +1 -1 ports/games/powerpak/files/Makefile.FreeBSD 1.81 +2 -1 ports/graphics/imlib2/Makefile 1.5 +2 -1 ports/graphics/p5-Imager/Makefile 1.6 +1 -1 ports/graphics/py-paint/Makefile 1.41 +1 -1 ports/graphics/xpdf/Makefile 1.35 +2 -2 ports/japanese/vflib/Makefile 1.5 +1 -1 ports/korean/ftghostscript5/files/patch-aa 1.5 +1 -1 ports/korean/ghostscript55httf/files/patch-aa 1.1 +16 -0 ports/misc/magicpoint/files/patch-configure (new) 1.4 +2 -1 ports/print/gfontview/Makefile 1.2 +1 -1 ports/print/perlftlib/files/patch-ac 1.2 +2 -2 ports/print/py-freetype/files/patch-Setup.w32 1.4 +1 -1 ports/print/ttftot42/Makefile 1.13 +2 -2 ports/x11-fonts/ttmkfdir/Makefile 1.9 +1 -1 ports/x11-fonts/xmbdfed/files/patch-aa 1.10 +1 -1 ports/x11-servers/XttXF86srv-common/files/Imakefile 1.66 +3 -2 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 Thu Mar 14 3: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 7247C37B419; Thu, 14 Mar 2002 03:18:42 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EBIgN43617; Thu, 14 Mar 2002 03:18:42 -0800 (PST) (envelope-from maxim) Message-Id: <200203141118.g2EBIgN43617@freefall.freebsd.org> From: Maxim Konovalov Date: Thu, 14 Mar 2002 03:18:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/devfs devfs_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 maxim 2002/03/14 03:18:42 PST Modified files: sys/fs/devfs devfs_vnops.c Log: Be consistent with UFS in a way how devfs_setattr() checks credentials for chmod(2), chown(2) and utimes(2) with respect to jail(2). Reviewed by: rwatson, ru Not objected by: phk Approved by: ru Revision Changes Path 1.34 +5 -4 src/sys/fs/devfs/devfs_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 3:23: 7 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 A946937B416; Thu, 14 Mar 2002 03:23:02 -0800 (PST) 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 g2EBN1Q7477453; Thu, 14 Mar 2002 14:23:01 +0300 (MSK) Date: Thu, 14 Mar 2002 14:23:01 +0300 (MSK) From: Maxim Konovalov To: Maxim Konovalov Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: src/sys/fs/devfs devfs_vnops.c In-Reply-To: <200203141118.g2EBIgN43617@freefall.freebsd.org> Message-ID: <20020314142055.B69007-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 03:18-0800, Mar 14, 2002, Maxim Konovalov wrote: > maxim 2002/03/14 03:18:42 PST > > Modified files: > sys/fs/devfs devfs_vnops.c > Log: > Be consistent with UFS in a way how devfs_setattr() checks credentials > for chmod(2), chown(2) and utimes(2) with respect to jail(2). This commit unbreaks sshd(8) in jail(8) with devfs(5). -- Maxim Konovalov, MAcomnet, Internet-Intranet 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 Thu Mar 14 4:29: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 E4FA037B41B; Thu, 14 Mar 2002 04:29:55 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ECTtw63698; Thu, 14 Mar 2002 04:29:55 -0800 (PST) (envelope-from dfr) Message-Id: <200203141229.g2ECTtw63698@freefall.freebsd.org> From: Doug Rabson Date: Thu, 14 Mar 2002 04:29:55 -0800 (PST) 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/03/14 04:29:55 PST Modified files: sys/ia64/include ia64_cpu.h Log: Add ia64_sync_i(), ia64_get_tpr() and ia64_set_tpr(). Revision Changes Path 1.14 +29 -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 Thu Mar 14 5: 6: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 CAB9637B416; Thu, 14 Mar 2002 05:06:19 -0800 (PST) Received: (from jeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ED6JT73346; Thu, 14 Mar 2002 05:06:19 -0800 (PST) (envelope-from jeh) Message-Id: <200203141306.g2ED6JT73346@freefall.freebsd.org> From: "James E. Housley" Date: Thu, 14 Mar 2002 05:06:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/uvscan-dat Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeh 2002/03/14 05:06:19 PST Modified files: security/uvscan-dat Makefile distinfo Log: Update to 4191 4191 Emergency Dat release due to W32/Fbound.c@MM Revision Changes Path 1.85 +1 -1 ports/security/uvscan-dat/Makefile 1.83 +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 Thu Mar 14 5:29: 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 941F437B405; Thu, 14 Mar 2002 05:29:00 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EDT0x76939; Thu, 14 Mar 2002 05:29:00 -0800 (PST) (envelope-from knu) Message-Id: <200203141329.g2EDT0x76939@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 14 Mar 2002 05:29:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/autoconf 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/03/14 05:29:00 PST Modified files: devel/autoconf Makefile distinfo pkg-plist Log: Update to 2.53, which fixes many bugs. Use the bzip2 tarball. Approved by: portmgr (will) Revision Changes Path 1.30 +22 -6 ports/devel/autoconf/Makefile 1.11 +1 -1 ports/devel/autoconf/distinfo 1.10 +43 -18 ports/devel/autoconf/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 Mar 14 5:34:41 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 79B5237B405; Thu, 14 Mar 2002 05:34:20 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g2EDYEK17947; Thu, 14 Mar 2002 15:34:14 +0200 (EET) (envelope-from ru) Date: Thu, 14 Mar 2002 15:34:14 +0200 From: Ruslan Ermilov To: Murray Stokely Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man7 build.7 Message-ID: <20020314133414.GF97674@sunbay.com> References: <200203140938.g2E9cO111102@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203140938.g2E9cO111102@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 Thu, Mar 14, 2002 at 01:38:24AM -0800, Murray Stokely wrote: > murray 2002/03/14 01:38:24 PST > > Modified files: > share/man/man7 build.7 > Log: > Add an ENVIRONMENT section, and document TARGET_ARCH and NO_WERROR. > Add a cross-build example. > > Revision Changes Path > 1.16 +16 -0 src/share/man/man7/build.7 > In certain cases, specifying TARGET_ARCH may be not enough and you have to specify TARGET as well. For example, to build pc98 on alpha, you need to "make buildworld TARGET_ARCH=i386 TARGET=pc98". TARGET_ARCH is analogous to the ``uname -p'' output, and TARGET is analogous to the ``uname -m'' output. Also, -DNO_WERROR=1 in the example sets the "NO_WERROR=1" variable to "1", not the intended NO_WERROR (-DNO_WERROR). But it's not actually necessary to specify NO_WERROR to cross-build alpha world on i386, it builds just fine without it. Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 6:14:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B988337B416; Thu, 14 Mar 2002 06:14:10 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EEEAH07128; Thu, 14 Mar 2002 06:14:10 -0800 (PST) (envelope-from dinoex) Message-Id: <200203141414.g2EEEAH07128@freefall.freebsd.org> From: Dirk Meyer Date: Thu, 14 Mar 2002 06:14:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/tcl84 Makefile ports/lang/tcl84/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 dinoex 2002/03/14 06:14:10 PST Modified files: lang/tcl84 Makefile lang/tcl84/files patch-aa Log: Create an extra link for tclPlatDecls.h PR: 35817 Submitted by: brandt@fokus.gmd.de Revision Changes Path 1.56 +1 -0 ports/lang/tcl84/Makefile 1.23 +13 -12 ports/lang/tcl84/files/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 6:24: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 28E9D37B405; Thu, 14 Mar 2002 06:24:24 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EEOO209246; Thu, 14 Mar 2002 06:24:24 -0800 (PST) (envelope-from sobomax) Message-Id: <200203141424.g2EEOO209246@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 14 Mar 2002 06:24:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/guppi Makefile ports/math/guppi/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/03/14 06:24:24 PST Modified files: math/guppi Makefile math/guppi/files patch-configure Log: Remove Gnumeric from RUN_DEPENDS. It is still needed at the build phase, but only to take few files from the distribution. For example, this should allow to use Gnucash without installing Gnumeric as well as to use Guppi in Gnumeric's RUN_DEPENDS to make graph plotting features working OOB. Bump PORTREVISION. Revision Changes Path 1.9 +4 -3 ports/math/guppi/Makefile 1.4 +19 -2 ports/math/guppi/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 Thu Mar 14 6:28: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 7148237B419; Thu, 14 Mar 2002 06:28:22 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EESMA09712; Thu, 14 Mar 2002 06:28:22 -0800 (PST) (envelope-from sobomax) Message-Id: <200203141428.g2EESMA09712@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 14 Mar 2002 06:28:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/gnumeric 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/03/14 06:28:22 PST Modified files: math/gnumeric Makefile Log: Add Guppi into RUN_DEPENDS, so that user gets graph plotting features right OOB. Revision Changes Path 1.81 +1 -0 ports/math/gnumeric/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 6:35: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 8DE5637B404; Thu, 14 Mar 2002 06:35:12 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EEZC411125; Thu, 14 Mar 2002 06:35:12 -0800 (PST) (envelope-from ijliao) Message-Id: <200203141435.g2EEZC411125@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 06:35:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc Makefile ports/misc/flyway 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/03/14 06:35:12 PST Modified files: misc Makefile Added files: misc/flyway Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add flyway 0.2.2 A VFR/IFR Route Planner for Pilots Revision Changes Path 1.429 +1 -0 ports/misc/Makefile 1.1 +32 -0 ports/misc/flyway/Makefile (new) 1.1 +1 -0 ports/misc/flyway/distinfo (new) 1.1 +1 -0 ports/misc/flyway/pkg-comment (new) 1.1 +8 -0 ports/misc/flyway/pkg-descr (new) 1.1 +19 -0 ports/misc/flyway/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 Mar 14 6:35: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 C34F937B417; Thu, 14 Mar 2002 06:35:14 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EEZEQ11160; Thu, 14 Mar 2002 06:35:14 -0800 (PST) (envelope-from ijliao) Message-Id: <200203141435.g2EEZEQ11160@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 06:35:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/14 06:35:14 PST Modified files: . modules Log: flyway --> ports/misc/flyway Revision Changes Path 1.4834 +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 Mar 14 6:52: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 9239937B400; Thu, 14 Mar 2002 06:52:37 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EEqb013967; Thu, 14 Mar 2002 06:52:37 -0800 (PST) (envelope-from knu) Message-Id: <200203141452.g2EEqb013967@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 14 Mar 2002 06:52:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/autoconf 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/03/14 06:52:37 PST Modified files: devel/autoconf pkg-plist Log: Install the info files properly. Submitted by: "James E. Flemer" Revision Changes Path 1.11 +4 -0 ports/devel/autoconf/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 Mar 14 6:56:43 2002 Delivered-To: cvs-all@freebsd.org Received: from eudoramail.com (netturbo3.cscoms.com [202.183.214.4]) by hub.freebsd.org (Postfix) with SMTP id 5F3C637B42C for ; Thu, 14 Mar 2002 06:53:45 -0800 (PST) From: "Moissanite" To: Subject: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Thu, 14 Mar 2002 21:57:33 +0700 Reply-To: "Moissanite" Content-Transfer-Encoding: 8bit Message-Id: <20020314145345.5F3C637B42C@hub.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 Moissanite: More Fire and Brilliance
The Truth About Moissanite
 
Fact - Moissanite delivers more
fire, brilliance and luster than any other hard jewel on Earth.
This unretouched photograph supports the adage that "a picture is worth a thousand words". Here, a light source over a similar sized moissanite and diamond placed in shallow water clearly shows the superior fire and brilliance of this unique new jewel. And the picture is supported by measurable facts: the GIA publishes the dispersion (fire) of created moissanite at 0.104, refractive index (brilliance) at 2.65 to 2.69, and luster at 20.4%. No other hard jewel measures up, not even a fine diamond. And only moissanite and diamond are over 9 on the Mohs hardness scale. Moissanite jewels created by Charles & Colvard are available in all popular shapes and sizes. 

www.moissanitesource.com is the place to buy moissanite jewelry on the internet. Buy with confidence at the best prices in the world. 

 

Moissanite Created By Charles &
Colvard
 

Moissanite created by Charles & Colvard is a unique jewel, not a synthetic diamond.

Moissanite Source is an authorized distributor of Moissanite.

 

If you wish to stop receiving these occasional mailings, simply reply to this email with the word "REMOVE" in
the subject line and we will remove your name and email address from our database.

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 6:57:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B9A437B4BF; Thu, 14 Mar 2002 06:55:22 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EEtMD14908; Thu, 14 Mar 2002 06:55:22 -0800 (PST) (envelope-from ijliao) Message-Id: <200203141455.g2EEtMD14908@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 06:55:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/14 06:55:22 PST Modified files: . modules Log: p5-Digest-BubbleBabble --> ports/security/p5-Digest-BubbleBabble Revision Changes Path 1.4835 +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 Mar 14 6: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 91AA637B4A7; Thu, 14 Mar 2002 06:55:14 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EEtEE14810; Thu, 14 Mar 2002 06:55:14 -0800 (PST) (envelope-from ijliao) Message-Id: <200203141455.g2EEtEE14810@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 06:55:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile ports/security/p5-Digest-BubbleBabble 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/03/14 06:55:14 PST Modified files: security Makefile Added files: security/p5-Digest-BubbleBabble Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add p5-Digest-BubbleBabble 0.0.1 Perl5 interface to a fingerprint in "bubble babble" format PR: 35889 Submitted by: jesper Revision Changes Path 1.278 +1 -0 ports/security/Makefile 1.1 +22 -0 ports/security/p5-Digest-BubbleBabble/Makefile (new) 1.1 +1 -0 ports/security/p5-Digest-BubbleBabble/distinfo (new) 1.1 +1 -0 ports/security/p5-Digest-BubbleBabble/pkg-comment (new) 1.1 +14 -0 ports/security/p5-Digest-BubbleBabble/pkg-descr (new) 1.1 +1 -0 ports/security/p5-Digest-BubbleBabble/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 Mar 14 7: 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 C04DD37B42B; Thu, 14 Mar 2002 06:57:58 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EEvwA15567; Thu, 14 Mar 2002 06:57:58 -0800 (PST) (envelope-from rwatson) Message-Id: <200203141457.g2EEvwA15567@freefall.freebsd.org> From: Robert Watson Date: Thu, 14 Mar 2002 06:57:58 -0800 (PST) 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 rwatson 2002/03/14 06:57:58 PST Modified files: en/smp index.sgml Log: Document the definition of the "date" field for different task statuses. Document the sort order of the task list. Requested by: arr Revision Changes Path 1.44 +10 -1 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 Thu Mar 14 7: 1:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C1FE237B627; Thu, 14 Mar 2002 06:58:35 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EEwZQ15727; Thu, 14 Mar 2002 06:58:35 -0800 (PST) (envelope-from ijliao) Message-Id: <200203141458.g2EEwZQ15727@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 06:58:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile ports/security/p5-Crypt-DH 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/03/14 06:58:35 PST Modified files: security Makefile Added files: security/p5-Crypt-DH Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add p5-Crypt-DH 0.03 Perl5 interface to a Diffie-Hellman key exchange system PR: 35890 Submitted by: jesper Revision Changes Path 1.279 +1 -0 ports/security/Makefile 1.1 +26 -0 ports/security/p5-Crypt-DH/Makefile (new) 1.1 +1 -0 ports/security/p5-Crypt-DH/distinfo (new) 1.1 +1 -0 ports/security/p5-Crypt-DH/pkg-comment (new) 1.1 +6 -0 ports/security/p5-Crypt-DH/pkg-descr (new) 1.1 +1 -0 ports/security/p5-Crypt-DH/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 Mar 14 7: 2: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 AB44537B47A; Thu, 14 Mar 2002 06:58:37 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EEwbe15758; Thu, 14 Mar 2002 06:58:37 -0800 (PST) (envelope-from ijliao) Message-Id: <200203141458.g2EEwbe15758@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 06:58:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/14 06:58:37 PST Modified files: . modules Log: p5-Crypt-DH --> ports/security/p5-Crypt-DH Revision Changes Path 1.4836 +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 Mar 14 7: 3: 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 DCB6C37B4CC; Thu, 14 Mar 2002 07:00:57 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EF0vi16432; Thu, 14 Mar 2002 07:00:57 -0800 (PST) (envelope-from ijliao) Message-Id: <200203141500.g2EF0vi16432@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 07:00:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile ports/security/p5-Crypt-DES_EDE3 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/03/14 07:00:57 PST Modified files: security Makefile Added files: security/p5-Crypt-DES_EDE3 Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add p5-Crypt-DES_EDE3 0.01 Perl5 interface to a implementing 3-DES EDE encryption and decryption PR: 35891 Submitted by: jesper Revision Changes Path 1.280 +1 -0 ports/security/Makefile 1.1 +25 -0 ports/security/p5-Crypt-DES_EDE3/Makefile (new) 1.1 +1 -0 ports/security/p5-Crypt-DES_EDE3/distinfo (new) 1.1 +1 -0 ports/security/p5-Crypt-DES_EDE3/pkg-comment (new) 1.1 +6 -0 ports/security/p5-Crypt-DES_EDE3/pkg-descr (new) 1.1 +1 -0 ports/security/p5-Crypt-DES_EDE3/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 Mar 14 7: 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 BCA7437B69B; Thu, 14 Mar 2002 07:01:01 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EF11G16483; Thu, 14 Mar 2002 07:01:01 -0800 (PST) (envelope-from ijliao) Message-Id: <200203141501.g2EF11G16483@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 07:01:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/14 07:01:01 PST Modified files: . modules Log: p5-Crypt-DES_EDE3 --> ports/security/p5-Crypt-DES_EDE3 Revision Changes Path 1.4837 +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 Mar 14 7:11: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 D9EF737B400; Thu, 14 Mar 2002 07:11:40 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EFBe222436; Thu, 14 Mar 2002 07:11:40 -0800 (PST) (envelope-from sobomax) Message-Id: <200203141511.g2EFBe222436@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 14 Mar 2002 07:11:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gconf2 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/03/14 07:11:40 PST Modified files: devel/gconf2 Makefile Log: - Correct LIB_DEPENDS (gtk13 --> gtk20); - use the same MASTER_SITE_SUBDIR and other GNOME2 beta2 ports. Submitted by: Stephen L. Palmer Revision Changes Path 1.30 +2 -2 ports/devel/gconf2/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 7:34: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 6A12037B404; Thu, 14 Mar 2002 07:34:36 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EFYaN27697; Thu, 14 Mar 2002 07:34:36 -0800 (PST) (envelope-from dinoex) Message-Id: <200203141534.g2EFYaN27697@freefall.freebsd.org> From: Dirk Meyer Date: Thu, 14 Mar 2002 07:34:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/zircon 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 dinoex 2002/03/14 07:34:36 PST Modified files: irc/zircon Makefile distinfo Log: Update to in 1.18.255 ChangLog in tarball. Revision Changes Path 1.58 +1 -1 ports/irc/zircon/Makefile 1.35 +1 -1 ports/irc/zircon/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 8: 3: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 0599237B405; Thu, 14 Mar 2002 08:03:16 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EG3GG32241; Thu, 14 Mar 2002 08:03:16 -0800 (PST) (envelope-from mbr) Message-Id: <200203141603.g2EG3GG32241@freefall.freebsd.org> From: Martin Blapp Date: Thu, 14 Mar 2002 08:03:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice Makefile ports/editors/openoffice-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 mbr 2002/03/14 08:03:15 PST Modified files: editors/openoffice Makefile editors/openoffice-devel Makefile Log: Add pth directory for LIB_DEPENDS Revision Changes Path 1.46 +1 -1 ports/editors/openoffice-devel/Makefile 1.43 +1 -1 ports/editors/openoffice/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 8: 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 7002F37B400; Thu, 14 Mar 2002 08:05:06 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EG56i33069; Thu, 14 Mar 2002 08:05:06 -0800 (PST) (envelope-from maxim) Message-Id: <200203141605.g2EG56i33069@freefall.freebsd.org> From: Maxim Konovalov Date: Thu, 14 Mar 2002 08:05:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/ftpd ftpcmd.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 maxim 2002/03/14 08:05:06 PST Modified files: libexec/ftpd ftpcmd.y Log: Teach REST how to restart a file transfer after 2^31 bytes: now yylex() returns off_t in yylval.u.o. REST is the only user of yylval.u.o at the moment. NB: seems lukemftpd has the same bug. PR: misc/28629 Reviewed by: ru Approved by: ru MFC after: 1 month Revision Changes Path 1.33 +33 -25 src/libexec/ftpd/ftpcmd.y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 8: 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 C73DB37B400; Thu, 14 Mar 2002 08:05:31 -0800 (PST) Received: (from naddy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EG5VV36406; Thu, 14 Mar 2002 08:05:31 -0800 (PST) (envelope-from naddy) Message-Id: <200203141605.g2EG5VV36406@freefall.freebsd.org> From: Christian Weisgerber Date: Thu, 14 Mar 2002 08:05:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/bison Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG naddy 2002/03/14 08:05:31 PST Modified files: devel/bison Makefile Log: Limit s/iconv/giconv/ to the actually used files in order to avoid triggering an auto* build cascade. Revision Changes Path 1.25 +2 -2 ports/devel/bison/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 8:19: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 E196E37B480; Thu, 14 Mar 2002 08:18:50 -0800 (PST) Received: (from joerg@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EGImK38925; Thu, 14 Mar 2002 08:18:48 -0800 (PST) (envelope-from joerg) Message-Id: <200203141618.g2EGImK38925@freefall.freebsd.org> From: Joerg Wunsch Date: Thu, 14 Mar 2002 08:18:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/misc scsi_modes 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 joerg 2002/03/14 08:18:48 PST Modified files: (Branch: RELENG_4) share/misc scsi_modes Log: MFC 1.11: mode page 0x2a "CD capabilities and mechanical status page". Revision Changes Path 1.6.6.4 +52 -0 src/share/misc/scsi_modes To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 8:19: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 B35FF37B41B; Thu, 14 Mar 2002 08:19:33 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EGJXe39100; Thu, 14 Mar 2002 08:19:33 -0800 (PST) (envelope-from rwatson) Message-Id: <200203141619.g2EGJXe39100@freefall.freebsd.org> From: Robert Watson Date: Thu, 14 Mar 2002 08:19:33 -0800 (PST) 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 rwatson 2002/03/14 08:19:33 PST Modified files: en/smp index.sgml Log: green has now moved vm from using lockmgr to sx locks; update the status entry to "Done", and clarify a bit more what the task was about. Revision Changes Path 1.45 +11 -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 Thu Mar 14 8:30: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 330EB37B417; Thu, 14 Mar 2002 08:29:57 -0800 (PST) Received: (from jesper@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EGTvU41281; Thu, 14 Mar 2002 08:29:57 -0800 (PST) (envelope-from jesper) Message-Id: <200203141629.g2EGTvU41281@freefall.freebsd.org> From: Jesper Skriver Date: Thu, 14 Mar 2002 08:29:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/converters/p5-Convert-PEM 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/03/14 08:29:57 PST Modified files: converters/p5-Convert-PEM Makefile Log: Add extra dependency of ports/security/p5-Crypt-DES_EDE3 Approved by: mharo Revision Changes Path 1.3 +1 -0 ports/converters/p5-Convert-PEM/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 8: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 8CFF237B41B; Thu, 14 Mar 2002 08:31:33 -0800 (PST) Received: (from jesper@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EGVXq41744; Thu, 14 Mar 2002 08:31:33 -0800 (PST) (envelope-from jesper) Message-Id: <200203141631.g2EGVXq41744@freefall.freebsd.org> From: Jesper Skriver Date: Thu, 14 Mar 2002 08:31:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/p5-Math-Pari/files patch-makefile ports/math/pari Makefile distinfo ports/math/pari/files patch-af X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/14 08:31:33 PST Modified files: math/p5-Math-Pari/files patch-makefile math/pari Makefile distinfo math/pari/files patch-af Log: Update ports/math/pari to 1.1.3 Update ports/math/p5-Math-Pari so it works with pari 1.1.3 Approved by: mharo, Yoshiaki Uchikawa Revision Changes Path 1.2 +11 -1 ports/math/p5-Math-Pari/files/patch-makefile 1.23 +2 -2 ports/math/pari/Makefile 1.8 +1 -1 ports/math/pari/distinfo 1.6 +10 -10 ports/math/pari/files/patch-af To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 8:36: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 0001637B400; Thu, 14 Mar 2002 08:36:22 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EGaMD42926; Thu, 14 Mar 2002 08:36:22 -0800 (PST) (envelope-from rwatson) Message-Id: <200203141636.g2EGaMD42926@freefall.freebsd.org> From: Robert Watson Date: Thu, 14 Mar 2002 08:36:22 -0800 (PST) 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 rwatson 2002/03/14 08:36:22 PST Modified files: en/smp index.sgml Log: Alfred and Chad have now finished the work to push the select related structures behind a 'sellock' to prevent lock order reversals relating the processes in the select() code. Update the task entry to move it to the Done section as of today. Revision Changes Path 1.46 +9 -9 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 Thu Mar 14 8:39: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 147A737B405; Thu, 14 Mar 2002 08:39:27 -0800 (PST) Received: (from roberto@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EGdR943964; Thu, 14 Mar 2002 08:39:27 -0800 (PST) (envelope-from roberto) Message-Id: <200203141639.g2EGdR943964@freefall.freebsd.org> From: Ollivier Robert Date: Thu, 14 Mar 2002 08:39:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/apr-devel Makefile distinfo pkg-comment 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 roberto 2002/03/14 08:39:26 PST Modified files: devel Makefile Added files: devel/apr-devel Makefile distinfo pkg-comment pkg-descr pkg-install pkg-plist Log: New port of apr-devel: The Apache Portable Runtime is a library of C data structures and routines, forming a system portability layer that covers as many operating systems as possible, including Unices, Win32, BeOS, and OS/2. This port also includes the APR-Util package, which contains some useful utilities built on top of APR. There is no apr port as it is still in development. Submitted by: Garrett Rooney Revision Changes Path 1.777 +1 -0 ports/devel/Makefile 1.1 +43 -0 ports/devel/apr-devel/Makefile (new) 1.1 +2 -0 ports/devel/apr-devel/distinfo (new) 1.1 +1 -0 ports/devel/apr-devel/pkg-comment (new) 1.1 +8 -0 ports/devel/apr-devel/pkg-descr (new) 1.1 +15 -0 ports/devel/apr-devel/pkg-install (new) 1.1 +64 -0 ports/devel/apr-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 Thu Mar 14 8: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 0F8A637B400; Thu, 14 Mar 2002 08:40:25 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EGePe44210; Thu, 14 Mar 2002 08:40:25 -0800 (PST) (envelope-from sobomax) Message-Id: <200203141640.g2EGePe44210@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 14 Mar 2002 08:40:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/guppi 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/03/14 08:40:25 PST Modified files: math/guppi Makefile Log: Manually invoke `${MAKE} patch' for Gnumeric, because puting it into BUILD_DEPEDS creates short circuit when make clean is invoked either for Gnumeric port or for Guppi port. Perhaps our bsd.port.mk should be fixed to avoid such problems. Submitted by: John Merryweather Cooper Revision Changes Path 1.10 +6 -1 ports/math/guppi/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 8: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 C694637B41B; Thu, 14 Mar 2002 08:41:41 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EGffD44555; Thu, 14 Mar 2002 08:41:41 -0800 (PST) (envelope-from markm) Message-Id: <200203141641.g2EGffD44555@freefall.freebsd.org> From: Mark Murray Date: Thu, 14 Mar 2002 08:41:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG markm 2002/03/14 08:41:39 PST Modified files: lib/libpam/modules/pam_unix pam_unix.c Log: Remove the use of random(3), and encapsulate the salt-generation in its own function. The use of arc4random(3) is hopeless overkill here, but that does not hurt anything. Requested by: ache Revision Changes Path 1.24 +33 -30 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 Thu Mar 14 8:42: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 7584837B43B; Thu, 14 Mar 2002 08:42:10 -0800 (PST) Received: (from roberto@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EGgAW44709; Thu, 14 Mar 2002 08:42:10 -0800 (PST) (envelope-from roberto) Message-Id: <200203141642.g2EGgAW44709@freefall.freebsd.org> From: Ollivier Robert Date: Thu, 14 Mar 2002 08:42:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/apr-devel/files patch-apr-config patch-apu-config X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/14 08:42:10 PST Added files: devel/apr-devel/files patch-apr-config patch-apu-config Log: These two files are part of the apr-devel port and should have been committed along the rest. Revision Changes Path 1.1 +17 -0 ports/devel/apr-devel/files/patch-apr-config (new) 1.1 +17 -0 ports/devel/apr-devel/files/patch-apu-config (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 8:52: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 348F737B417; Thu, 14 Mar 2002 08:52:42 -0800 (PST) Received: (from roberto@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EGqgx48074; Thu, 14 Mar 2002 08:52:42 -0800 (PST) (envelope-from roberto) Message-Id: <200203141652.g2EGqgx48074@freefall.freebsd.org> From: Ollivier Robert Date: Thu, 14 Mar 2002 08:52:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/subversion Makefile distinfo pkg-plist ports/devel/subversion/files patch-build.conf patch-configure patch-subversion::libsvn_ra_dav::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 roberto 2002/03/14 08:52:42 PST Modified files: devel/subversion Makefile distinfo pkg-plist Added files: devel/subversion/files patch-build.conf patch-configure Removed files: devel/subversion/files patch-subversion::libsvn_ra_dav::session.c Log: Subversion r1467. Uses the newly added apr-devel port. Submitted by: Garrett Rooney (MAINTAINER) Revision Changes Path 1.4 +22 -7 ports/devel/subversion/Makefile 1.2 +1 -1 ports/devel/subversion/distinfo 1.1 +226 -0 ports/devel/subversion/files/patch-build.conf (new) 1.1 +11 -0 ports/devel/subversion/files/patch-configure (new) 1.2 +0 -46 ports/devel/subversion/files/patch-subversion::libsvn_ra_dav::session.c (dead) 1.4 +18 -0 ports/devel/subversion/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 Mar 14 8:53: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 2F49D37B417; Thu, 14 Mar 2002 08:53:21 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EGrL248423; Thu, 14 Mar 2002 08:53:21 -0800 (PST) (envelope-from mbr) Message-Id: <200203141653.g2EGrL248423@freefall.freebsd.org> From: Martin Blapp Date: Thu, 14 Mar 2002 08:53:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice-devel/files patch-solenv::inc::_tg_shl.mk patch-solenv::inc::pstrules.mk patch-solenv::inc::rules.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 mbr 2002/03/14 08:53:20 PST Added files: editors/openoffice-devel/files patch-solenv::inc::_tg_shl.mk patch-solenv::inc::pstrules.mk patch-solenv::inc::rules.mk Log: Remove $cc and $CC defines from unxfbsd.mk, and do the changes for $CC -> $CXX $cc -> $CC everywhere. The compile seems to work again now. Revision Changes Path 1.1 +282 -0 ports/editors/openoffice-devel/files/patch-solenv::inc::_tg_shl.mk (new) 1.1 +141 -0 ports/editors/openoffice-devel/files/patch-solenv::inc::pstrules.mk (new) 1.1 +212 -0 ports/editors/openoffice-devel/files/patch-solenv::inc::rules.mk (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 8: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 1B28537B427; Thu, 14 Mar 2002 08:53:40 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EGre748611; Thu, 14 Mar 2002 08:53:40 -0800 (PST) (envelope-from rwatson) Message-Id: <200203141653.g2EGre748611@freefall.freebsd.org> From: Robert Watson Date: Thu, 14 Mar 2002 08:53:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netinet tcp_syncache.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/14 08:53:40 PST Modified files: sys/netinet tcp_syncache.c Log: NAI DBA update Revision Changes Path 1.14 +1 -1 src/sys/netinet/tcp_syncache.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 8:53: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 C39EE37B41C; Thu, 14 Mar 2002 08:53:43 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EGrh848669; Thu, 14 Mar 2002 08:53:43 -0800 (PST) (envelope-from mbr) Message-Id: <200203141653.g2EGrh848669@freefall.freebsd.org> From: Martin Blapp Date: Thu, 14 Mar 2002 08:53:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice-devel/files patch-solenv::inc::unxfbsdi.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 mbr 2002/03/14 08:53:43 PST Modified files: editors/openoffice-devel/files patch-solenv::inc::unxfbsdi.mk Log: Remove hardcoded $cc and $CC Revision Changes Path 1.6 +7 -13 ports/editors/openoffice-devel/files/patch-solenv::inc::unxfbsdi.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 8: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 C36E837B402; Thu, 14 Mar 2002 08:57:52 -0800 (PST) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EGvqN50208; Thu, 14 Mar 2002 08:57:52 -0800 (PST) (envelope-from keramida) Message-Id: <200203141657.g2EGvqN50208@freefall.freebsd.org> From: Giorgos Keramidas Date: Thu, 14 Mar 2002 08:57:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/pw pw.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/03/14 08:57:52 PST Modified files: (Branch: RELENG_4) usr.sbin/pw pw.8 Log: MFC: 1.26: Merg a duplicate description of the -L option into the first one. Revision Changes Path 1.19.2.8 +3 -11 src/usr.sbin/pw/pw.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 9: 0: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 2D53F37B404; Thu, 14 Mar 2002 09:00:41 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EH0fT51180; Thu, 14 Mar 2002 09:00:41 -0800 (PST) (envelope-from rwatson) Message-Id: <200203141700.g2EH0fT51180@freefall.freebsd.org> From: Robert Watson Date: Thu, 14 Mar 2002 09:00:41 -0800 (PST) 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 rwatson 2002/03/14 09:00:41 PST Modified files: en/smp index.sgml Log: Remove the 'cmpxchgl on 80386' task entry, which jake had owned and was listed as stalled. Requested by: jake Revision Changes Path 1.47 +1 -9 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 Thu Mar 14 9: 1: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 9B23C37B404; Thu, 14 Mar 2002 09:01:39 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EH1dT51602; Thu, 14 Mar 2002 09:01:39 -0800 (PST) (envelope-from rwatson) Message-Id: <200203141701.g2EH1dT51602@freefall.freebsd.org> From: Robert Watson Date: Thu, 14 Mar 2002 09:01:39 -0800 (PST) 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 rwatson 2002/03/14 09:01:39 PST Modified files: en/smp index.sgml Log: Modify ICU spinlock task: ICU spinlocks are required for Ia64, but are *not* required for sparc64, so don't have a task for that. Requested by: jake Revision Changes Path 1.48 +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 Thu Mar 14 9:14: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 965AB37B400; Thu, 14 Mar 2002 09:14:46 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EHEkk58771; Thu, 14 Mar 2002 09:14:46 -0800 (PST) (envelope-from sobomax) Message-Id: <200203141714.g2EHEkk58771@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 14 Mar 2002 09:14:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/compat3x 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/03/14 09:14:46 PST Modified files: misc/compat3x pkg-plist Log: Add missed libperl. Revision Changes Path 1.4 +1 -0 ports/misc/compat3x/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 Mar 14 9:15:50 2002 Delivered-To: cvs-all@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id F058437B422; Thu, 14 Mar 2002 09:15:39 -0800 (PST) Received: from caddis.yogotech.com (caddis.yogotech.com [206.127.123.130]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id KAA27624; Thu, 14 Mar 2002 10:15:37 -0700 (MST) (envelope-from nate@yogotech.com) Received: (from nate@localhost) by caddis.yogotech.com (8.11.6/8.11.6) id g2EHFb339522; Thu, 14 Mar 2002 10:15:37 -0700 (MST) (envelope-from nate) From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15504.55992.920711.622088@caddis.yogotech.com> Date: Thu, 14 Mar 2002 10:15:36 -0700 To: Mark Murray Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix pam_unix.c In-Reply-To: <200203141641.g2EGffD44555@freefall.freebsd.org> References: <200203141641.g2EGffD44555@freefall.freebsd.org> X-Mailer: VM 6.96 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > markm 2002/03/14 08:41:39 PST > > Modified files: > lib/libpam/modules/pam_unix pam_unix.c > Log: > Remove the use of random(3), and encapsulate the salt-generation in > its own function. The use of arc4random(3) is hopeless overkill here, > but that does not hurt anything. Thanks! Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 9:17: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 D337137B400; Thu, 14 Mar 2002 09:17:32 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EHHWw59970; Thu, 14 Mar 2002 09:17:32 -0800 (PST) (envelope-from roam) Message-Id: <200203141717.g2EHHWw59970@freefall.freebsd.org> From: Peter Pentchev Date: Thu, 14 Mar 2002 09:17:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/djbdns 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/03/14 09:17:32 PST Modified files: net/djbdns Makefile distinfo Log: Add Florent Guillaume's patch for dnscache make the cache persistent across restarts, conditional on the WITH_DNSCACHE_DUMPCACHE knob. Add a pre-fetch target describing the available makevar knobs. PR: 35483 Submitted by: Joe Barbish Revision Changes Path 1.10 +21 -3 ports/net/djbdns/Makefile 1.7 +1 -0 ports/net/djbdns/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 9:54: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 AC32A37B417; Thu, 14 Mar 2002 09:54:47 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EHsll67348; Thu, 14 Mar 2002 09:54:47 -0800 (PST) (envelope-from ue) Message-Id: <200203141754.g2EHsll67348@freefall.freebsd.org> From: Udo Erdelhoff Date: Thu, 14 Mar 2002 09:54:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/share/sgml mailing-lists.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 ue 2002/03/14 09:54:47 PST Modified files: de_DE.ISO8859-1/share/sgml mailing-lists.ent Log: Add FreeBSD/sparc Revision Changes Path 1.2 +4 -1 doc/de_DE.ISO8859-1/share/sgml/mailing-lists.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 10: 1: 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 6E52737B428; Thu, 14 Mar 2002 10:00:59 -0800 (PST) Received: (from jim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EI0xj68464; Thu, 14 Mar 2002 10:00:59 -0800 (PST) (envelope-from jim) Message-Id: <200203141800.g2EI0xj68464@freefall.freebsd.org> From: Jim Mock Date: Thu, 14 Mar 2002 10:00:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/comms/ltmdm 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 jim 2002/03/14 10:00:59 PST Modified files: comms/ltmdm Makefile distinfo pkg-descr pkg-plist Log: Update to version 1.4. PR: 35885 Submitted by: maintainer Revision Changes Path 1.4 +25 -6 ports/comms/ltmdm/Makefile 1.4 +1 -1 ports/comms/ltmdm/distinfo 1.3 +2 -2 ports/comms/ltmdm/pkg-descr 1.3 +6 -4 ports/comms/ltmdm/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 Mar 14 10:18: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 E554437B423; Thu, 14 Mar 2002 10:18:08 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EII8I74893; Thu, 14 Mar 2002 10:18:08 -0800 (PST) (envelope-from obrien) Message-Id: <200203141818.g2EII8I74893@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 14 Mar 2002 10:18:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/nmap 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 obrien 2002/03/14 10:18:08 PST Modified files: security/nmap pkg-descr Log: Spelling error and whitespace changes. PR: 35888 Submitted by: Peter J. Avalos Revision Changes Path 1.4 +4 -4 ports/security/nmap/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 10:21: 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 AE7C837B420; Thu, 14 Mar 2002 10:20:52 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EIKqp75314; Thu, 14 Mar 2002 10:20:52 -0800 (PST) (envelope-from obrien) Message-Id: <200203141820.g2EIKqp75314@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 14 Mar 2002 10:20:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/03/14 10:20:52 PST Modified files: . modules Log: repo copy to ports/devel/arm-elf-gcc31 Revision Changes Path 1.4838 +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 Mar 14 10:32: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 93C7437B41E; Thu, 14 Mar 2002 10:32:27 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EIWRs77181; Thu, 14 Mar 2002 10:32:27 -0800 (PST) (envelope-from ue) Message-Id: <200203141832.g2EIWRs77181@freefall.freebsd.org> From: Udo Erdelhoff Date: Thu, 14 Mar 2002 10:32:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/installation Makefile src/release/doc/de_DE.ISO8859-1/installation/sparc64 Makefile article.sgml 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/03/14 10:32:27 PST Modified files: release/doc/de_DE.ISO8859-1/installation Makefile Added files: release/doc/de_DE.ISO8859-1/installation/sparc64 Makefile article.sgml install.sgml Log: FreeBSD/sparc64 installation documentation, German version Revision Changes Path 1.2 +3 -2 src/release/doc/de_DE.ISO8859-1/installation/Makefile 1.1 +20 -0 src/release/doc/de_DE.ISO8859-1/installation/sparc64/Makefile (new) 1.1 +38 -0 src/release/doc/de_DE.ISO8859-1/installation/sparc64/article.sgml (new) 1.1 +619 -0 src/release/doc/de_DE.ISO8859-1/installation/sparc64/install.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 Mar 14 10: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 DE68737B404; Thu, 14 Mar 2002 10:34:46 -0800 (PST) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EIYkL77593; Thu, 14 Mar 2002 10:34:46 -0800 (PST) (envelope-from schweikh) Message-Id: <200203141834.g2EIYkL77593@freefall.freebsd.org> From: Jens Schweikhardt Date: Thu, 14 Mar 2002 10:34:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 route.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 schweikh 2002/03/14 10:34:46 PST Modified files: share/man/man4 route.4 Log: Typo; s/lister/listener/ MFC after: 3 days Revision Changes Path 1.15 +1 -1 src/share/man/man4/route.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 10:43:16 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B6EE37B402; Thu, 14 Mar 2002 10:43:10 -0800 (PST) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EIhAC78967; Thu, 14 Mar 2002 10:43:10 -0800 (PST) (envelope-from schweikh) Message-Id: <200203141843.g2EIhAC78967@freefall.freebsd.org> From: Jens Schweikhardt Date: Thu, 14 Mar 2002 10:43:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 rtentry.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 schweikh 2002/03/14 10:43:10 PST Modified files: share/man/man9 rtentry.9 Log: Grammar bogon: s/structure a route/structure of a route/ MFC after: 3 days Revision Changes Path 1.17 +2 -2 src/share/man/man9/rtentry.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 11: 1: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 15F5B37B400; Thu, 14 Mar 2002 11:01:12 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EJ1Cw82403; Thu, 14 Mar 2002 11:01:12 -0800 (PST) (envelope-from ijliao) Message-Id: <200203141901.g2EJ1Cw82403@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 11:01:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/print Makefile ports/print/scribus 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/03/14 11:01:12 PST Modified files: print Makefile Added files: print/scribus Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add scribus 0.5 A Layout program Revision Changes Path 1.196 +1 -0 ports/print/Makefile 1.1 +19 -0 ports/print/scribus/Makefile (new) 1.1 +1 -0 ports/print/scribus/distinfo (new) 1.1 +1 -0 ports/print/scribus/pkg-comment (new) 1.1 +3 -0 ports/print/scribus/pkg-descr (new) 1.1 +268 -0 ports/print/scribus/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 Mar 14 11: 1: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 2980037B405; Thu, 14 Mar 2002 11:01:15 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EJ1FI82487; Thu, 14 Mar 2002 11:01:15 -0800 (PST) (envelope-from ijliao) Message-Id: <200203141901.g2EJ1FI82487@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 11:01:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/14 11:01:15 PST Modified files: . modules Log: scribus --> ports/print/scribus Revision Changes Path 1.4839 +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 Mar 14 11: 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 6FE1037B405; Thu, 14 Mar 2002 11:04:24 -0800 (PST) Received: (from roberto@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EJ4OF83105; Thu, 14 Mar 2002 11:04:24 -0800 (PST) (envelope-from roberto) Message-Id: <200203141904.g2EJ4OF83105@freefall.freebsd.org> From: Ollivier Robert Date: Thu, 14 Mar 2002 11:04:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roberto 2002/03/14 11:04:24 PST Modified files: . modules Log: apr-devel --> ports/devel/apr-devel Revision Changes Path 1.4840 +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 Mar 14 11: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 E87DF37B402; Thu, 14 Mar 2002 11:19:49 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EJJnq88961; Thu, 14 Mar 2002 11:19:49 -0800 (PST) (envelope-from dfr) Message-Id: <200203141919.g2EJJnq88961@freefall.freebsd.org> From: Doug Rabson Date: Thu, 14 Mar 2002 11:19:49 -0800 (PST) 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/03/14 11:19:49 PST Modified files: sys/ia64/include pcb.h Log: Add a field to hold the current pmap of a thread. Revision Changes Path 1.6 +2 -1 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 Thu Mar 14 11:20: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 3761637B404; Thu, 14 Mar 2002 11:20:24 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EJKOo89082; Thu, 14 Mar 2002 11:20:24 -0800 (PST) (envelope-from dfr) Message-Id: <200203141920.g2EJKOo89082@freefall.freebsd.org> From: Doug Rabson Date: Thu, 14 Mar 2002 11:20:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 genassym.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dfr 2002/03/14 11:20:24 PST Modified files: sys/ia64/ia64 genassym.c Log: Add pcpu.pc_current_pmap and pcb.pcb_pmap. Revision Changes Path 1.27 +2 -0 src/sys/ia64/ia64/genassym.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 11:23:10 2002 Delivered-To: cvs-all@freebsd.org Received: from isris.pair.com (isris.pair.com [209.68.2.39]) by hub.freebsd.org (Postfix) with SMTP id 0654E37B400 for ; Thu, 14 Mar 2002 11:22:55 -0800 (PST) Received: (qmail 52676 invoked by uid 3130); 14 Mar 2002 19:22:54 -0000 Date: Thu, 14 Mar 2002 14:22:54 -0500 From: Garrett Rooney To: Ollivier Robert Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/devel/subversion Makefile distinfo pkg-plist ports/devel/subversion/files patch-build.conf patch-configure patch-subversion::libsvn_ra_dav::session.c Message-ID: <20020314192253.GA49952@electricjellyfish.net> References: <200203141652.g2EGqgx48074@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203141652.g2EGqgx48074@freefall.freebsd.org> User-Agent: Mutt/1.3.25i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Mar 14, 2002 at 08:52:42AM -0800, Ollivier Robert wrote: > roberto 2002/03/14 08:52:42 PST > > Modified files: > devel/subversion Makefile distinfo pkg-plist > Added files: > devel/subversion/files patch-build.conf patch-configure > Removed files: > devel/subversion/files > patch-subversion::libsvn_ra_dav::session.c > Log: > Subversion r1467. Uses the newly added apr-devel port. > > Submitted by: Garrett Rooney (MAINTAINER) I almost forgot. The on disk repostitory format has changed since the previous release of this port, so any repositories that you have lying around will need to be updated to the new format with the enable-dupkeys script, available here: http://svn.collab.net/repos/svn/trunk/tools/enable-dupkeys.sh The perils of pre-1.0 software... -garrett -- garrett rooney Unix was not designed to stop you from rooneg@electricjellyfish.net doing stupid things, because that would http://electricjellyfish.net/ stop you from doing clever things. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 11:25: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 2565437B400; Thu, 14 Mar 2002 11:25:33 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EJPXT89988; Thu, 14 Mar 2002 11:25:33 -0800 (PST) (envelope-from obrien) Message-Id: <200203141925.g2EJPXT89988@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 14 Mar 2002 11:25:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/lukemftpd - Imported sources X-FreeBSD-CVS-Branch: LUKEM Sender: owner-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/03/14 11:25:33 PST src/contrib/lukemftpd - Imported sources Update of /home/ncvs/src/contrib/lukemftpd In directory freefall.freebsd.org:/c/tmp/cvs-serv89922 Log Message: Import of LukeM's ftpd version 1.2 Beta 1. Status: Vendor Tag: LUKEM Release Tags: v1_2_beta1 U src/contrib/lukemftpd/COPYING U src/contrib/lukemftpd/ChangeLog U src/contrib/lukemftpd/INSTALL U src/contrib/lukemftpd/Makefile.in U src/contrib/lukemftpd/NEWS U src/contrib/lukemftpd/README U src/contrib/lukemftpd/THANKS U src/contrib/lukemftpd/acconfig.h U src/contrib/lukemftpd/aclocal.m4 U src/contrib/lukemftpd/config.h.in U src/contrib/lukemftpd/configure U src/contrib/lukemftpd/configure.in U src/contrib/lukemftpd/install-sh U src/contrib/lukemftpd/lukemftpd.h U src/contrib/lukemftpd/todo U src/contrib/lukemftpd/src/Makefile.in U src/contrib/lukemftpd/src/arpaftp.h U src/contrib/lukemftpd/src/cmds.c U src/contrib/lukemftpd/src/conf.c U src/contrib/lukemftpd/src/extern.h U src/contrib/lukemftpd/src/ftpcmd.y U src/contrib/lukemftpd/src/ftpd.8 U src/contrib/lukemftpd/src/ftpd.c U src/contrib/lukemftpd/src/ftpd.conf.5 U src/contrib/lukemftpd/src/ftpusers.5 U src/contrib/lukemftpd/src/logutmp.c U src/contrib/lukemftpd/src/logwtmp.c U src/contrib/lukemftpd/src/pathnames.h U src/contrib/lukemftpd/src/popen.c U src/contrib/lukemftpd/src/version.h 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 Thu Mar 14 11:26:14 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 1DEC237B405; Thu, 14 Mar 2002 11:26:09 -0800 (PST) Received: (from jake@localhost) by k6.locore.ca (8.11.6/8.11.6) id g2EJWf257879; Thu, 14 Mar 2002 14:32:41 -0500 (EST) (envelope-from jake) Date: Thu, 14 Mar 2002 14:32:40 -0500 From: Jake Burkholder To: Doug Rabson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ia64/include pcb.h Message-ID: <20020314143240.D52298@locore.ca> References: <200203141919.g2EJJnq88961@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: <200203141919.g2EJJnq88961@freefall.freebsd.org>; from dfr@FreeBSD.org on Thu, Mar 14, 2002 at 11:19:49AM -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 Apparently, On Thu, Mar 14, 2002 at 11:19:49AM -0800, Doug Rabson said words to the effect of; > dfr 2002/03/14 11:19:49 PST > > Modified files: > sys/ia64/include pcb.h > Log: > Add a field to hold the current pmap of a thread. Isn't this just &td->td_proc->p_vmspace.vm_pmap? > > Revision Changes Path > 1.6 +2 -1 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 Thu Mar 14 11:33: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 C26DC37B400; Thu, 14 Mar 2002 11:33:05 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EJX5591335; Thu, 14 Mar 2002 11:33:05 -0800 (PST) (envelope-from dfr) Message-Id: <200203141933.g2EJX5591335@freefall.freebsd.org> From: Doug Rabson Date: Thu, 14 Mar 2002 11:33:05 -0800 (PST) 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/03/14 11:33:05 PST Modified files: sys/ia64/ia64 swtch.s Log: * Save and restore PCPU_GET(current_pmap) in pcb_pmap so that we don't lose if a process is preempted while pmap is temporarily switched to another pmap. * For SMP, drop the high-fp state when a thread is switched away from so that if another cpu resumes that thread, it doesn't have to play games with IPI to get ahold of the correct register values. Revision Changes Path 1.18 +23 -11 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 Thu Mar 14 11:34: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 DA87A37B400; Thu, 14 Mar 2002 11:34:50 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EJYoF92747; Thu, 14 Mar 2002 11:34:50 -0800 (PST) (envelope-from dfr) Message-Id: <200203141934.g2EJYoF92747@freefall.freebsd.org> From: Doug Rabson Date: Thu, 14 Mar 2002 11:34:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 vm_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/03/14 11:34:50 PST Modified files: sys/ia64/ia64 vm_machdep.c Log: * Initialise pcb_pmap for new threads. * Add support for forking new threads from &thread0 as well as curthread. Revision Changes Path 1.36 +40 -21 src/sys/ia64/ia64/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 Thu Mar 14 11:37: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 1A65937B402; Thu, 14 Mar 2002 11:37:37 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EJbbP97597; Thu, 14 Mar 2002 11:37:37 -0800 (PST) (envelope-from dfr) Message-Id: <200203141937.g2EJbbP97597@freefall.freebsd.org> From: Doug Rabson Date: Thu, 14 Mar 2002 11:37:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 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/03/14 11:37:37 PST Modified files: sys/ia64/ia64 mp_machdep.c Log: Tweak the AP startup code somewhat. With all the other recent changes, this now works pretty well for two processors at least. Submitted by: marcel, mostly. Revision Changes Path 1.31 +41 -8 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 Thu Mar 14 11: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 5B36E37B417; Thu, 14 Mar 2002 11:46:36 -0800 (PST) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EJkam98877; Thu, 14 Mar 2002 11:46:36 -0800 (PST) (envelope-from dwcjr) Message-Id: <200203141946.g2EJkam98877@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Thu, 14 Mar 2002 11:46:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/samba 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 dwcjr 2002/03/14 11:46:36 PST Modified files: net/samba Makefile Log: Fix typo in ldap's lib_depend Allow cups to work with ldap Submitted by: rolnas@takas.lt Revision Changes Path 1.76 +2 -2 ports/net/samba/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 11:56: 8 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 E3C5937B419; Thu, 14 Mar 2002 11:56:02 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 02CF35346; Thu, 14 Mar 2002 20:56:00 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Alfred Perlstein Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/bktr bktr_core.c src/sys/dev/kbd kbd.c src/sys/dev/snp snp.c src/sys/dev/sound/midi midibuf.c src/sys/dev/sound/pcm channel.c src/sys/dev/usb ums.c src/sys/i386/isa asc.c pcaudio.c src/sys/isa psm.c src/sys/kern ... References: <200203140132.g2E1WVl65776@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 14 Mar 2002 20:56:00 +0100 In-Reply-To: <200203140132.g2E1WVl65776@freefall.freebsd.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 Alfred Perlstein writes: > Log: > Fixes to make select/poll mpsafe. > [...] Excellent log message! DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 12: 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 9808937B402; Thu, 14 Mar 2002 12:08:51 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EK8pN05888; Thu, 14 Mar 2002 12:08:51 -0800 (PST) (envelope-from rwatson) Message-Id: <200203142008.g2EK8pN05888@freefall.freebsd.org> From: Robert Watson Date: Thu, 14 Mar 2002 12:08:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/regression/security/access testaccess.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/14 12:08:51 PST Modified files: tools/regression/security/access testaccess.c Log: NAI DBA update. Revision Changes Path 1.3 +2 -2 src/tools/regression/security/access/testaccess.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 12:21: 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 1D60037B416; Thu, 14 Mar 2002 12:21:06 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EKL6q07845; Thu, 14 Mar 2002 12:21:06 -0800 (PST) (envelope-from sobomax) Message-Id: <200203142021.g2EKL6q07845@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 14 Mar 2002 12:21:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mozilla Makefile pkg-plist ports/www/mozilla/files patch-modules::libpref::src::unix::unix.js X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/14 12:21:06 PST Modified files: www/mozilla Makefile pkg-plist Added files: www/mozilla/files patch-modules::libpref::src::unix::unix.js Log: - Re-enable Chatzilla; - remove non-working freetype workaround; - correct name of the freetype library, so that it is easier to get AA fonts working. Bump PORTREVISION. Revision Changes Path 1.86 +2 -2 ports/www/mozilla/Makefile 1.1 +14 -0 ports/www/mozilla/files/patch-modules::libpref::src::unix::unix.js (new) 1.52 +15 -0 ports/www/mozilla/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 12: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 39A4C37B41F; Thu, 14 Mar 2002 12:27:37 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EKRbh08919; Thu, 14 Mar 2002 12:27:37 -0800 (PST) (envelope-from sobomax) Message-Id: <200203142027.g2EKRbh08919@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 14 Mar 2002 12:27:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mozilla-headers pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/14 12:27:37 PST Modified files: www/mozilla-headers pkg-plist Log: Sync with latest www/mozilla. Revision Changes Path 1.19 +10 -0 ports/www/mozilla-headers/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 Mar 14 12: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 0EAD237B42F; Thu, 14 Mar 2002 12:32:14 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EKWDr10039; Thu, 14 Mar 2002 12:32:13 -0800 (PST) (envelope-from sobomax) Message-Id: <200203142032.g2EKWDr10039@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 14 Mar 2002 12:32:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mozilla-headers pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/14 12:32:13 PST Modified files: www/mozilla-headers pkg-plist Log: Add @dirrm missed in the previous commit. Revision Changes Path 1.20 +1 -0 ports/www/mozilla-headers/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 Mar 14 12:36:49 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 21D9937B41F; Thu, 14 Mar 2002 12:36:44 -0800 (PST) Received: (from chris@localhost) by lion-around.at.yiff.net (8.11.6/8.11.6) id g2EKaVO71175; Thu, 14 Mar 2002 15:36:31 -0500 (EST) (envelope-from chris@netmonger.net) X-Authentication-Warning: lion-around.at.yiff.net: chris set sender to chris@netmonger.net using -f Date: Thu, 14 Mar 2002 15:36:31 -0500 From: Christopher Masto To: Maxim Sobolev Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/www/mozilla Makefile pkg-plist ports/www/mozilla/files patch-modules::libpref::src::unix::unix.js Message-ID: <20020314203631.GA70960@netmonger.net> References: <200203142021.g2EKL6q07845@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203142021.g2EKL6q07845@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 Thu, Mar 14, 2002 at 12:21:06PM -0800, Maxim Sobolev wrote: > - correct name of the freetype library, so that it is easier to > get AA fonts working. One still needs to edit the unix.js file to turn truetype on and set the font paths. While I was in there, I changed a few other settings that looked interesting. I wonder, is there a way to override those settings without modifying a port-managed file? -- 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 Mar 14 12:42: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 DAA1237B404; Thu, 14 Mar 2002 12:42:13 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EKg8C11388; Thu, 14 Mar 2002 12:42:08 -0800 (PST) (envelope-from des) Message-Id: <200203142042.g2EKg8C11388@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 14 Mar 2002 12:42:08 -0800 (PST) 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/03/14 12:42:08 PST src/contrib/openpam - Imported sources Update of /home/ncvs/src/contrib/openpam In directory freefall.freebsd.org:/c/tmp/cvs-serv11193 Log Message: Vendor import of OpenPAM Centaury. Status: Vendor Tag: OPENPAM Release Tags: OPENPAM_CENTAURY 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 Thu Mar 14 12:50: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 03E6337B41E; Thu, 14 Mar 2002 12:50:15 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EKoEJ12580; Thu, 14 Mar 2002 12:50:14 -0800 (PST) (envelope-from knu) Message-Id: <200203142050.g2EKoEJ12580@freefall.freebsd.org> From: Akinori MUSHA Date: Thu, 14 Mar 2002 12:50:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/ruby-erb 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/03/14 12:50:14 PST Modified files: textproc/ruby-erb Makefile distinfo Log: Update to 1.4.1. Revision Changes Path 1.3 +1 -1 ports/textproc/ruby-erb/Makefile 1.3 +1 -1 ports/textproc/ruby-erb/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 12:56: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 B2EFC37B402; Thu, 14 Mar 2002 12:56:41 -0800 (PST) Received: (from ambrisko@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2EKufs13588; Thu, 14 Mar 2002 12:56:41 -0800 (PST) (envelope-from ambrisko) Message-Id: <200203142056.g2EKufs13588@freefall.freebsd.org> From: Doug Ambrisko Date: Thu, 14 Mar 2002 12:56:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/an if_an.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/14 12:56:41 PST Modified files: sys/dev/an if_an.c Log: Only allow super user to perform the Linux compatible ioctls since some of the things they do, shouldn't be done by normal users. MFC after: 2 days Revision Changes Path 1.32 +4 -0 src/sys/dev/an/if_an.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 12:59:35 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 BBA7637B400; Thu, 14 Mar 2002 12:59:29 -0800 (PST) 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 16lcJs-00026x-0a; Thu, 14 Mar 2002 20:59:28 +0000 Received: from salmon.nlsystems.com (salmon [10.0.0.3]) by herring.nlsystems.com (8.11.2/8.11.2) with ESMTP id g2EKwC984305; Thu, 14 Mar 2002 20:58:12 GMT (envelope-from dfr@nlsystems.com) Date: Thu, 14 Mar 2002 20:55:00 +0000 (GMT) From: Doug Rabson To: Jake Burkholder Cc: Doug Rabson , , Subject: Re: cvs commit: src/sys/ia64/include pcb.h In-Reply-To: <20020314143240.D52298@locore.ca> Message-ID: <20020314205405.A504-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 Thu, 14 Mar 2002, Jake Burkholder wrote: > Apparently, On Thu, Mar 14, 2002 at 11:19:49AM -0800, > Doug Rabson said words to the effect of; > > > dfr 2002/03/14 11:19:49 PST > > > > Modified files: > > sys/ia64/include pcb.h > > Log: > > Add a field to hold the current pmap of a thread. > > Isn't this just &td->td_proc->p_vmspace.vm_pmap? The ia64 pmap temporarily switches current_pmap when it is forced to work on a non-current pmap. Not sure how often this happens in practice. -- 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 Mar 14 13:36: 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 F0D2337B402; Thu, 14 Mar 2002 13:35:55 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ELZtP22403; Thu, 14 Mar 2002 13:35:55 -0800 (PST) (envelope-from sos) Message-Id: <200203142135.g2ELZtP22403@freefall.freebsd.org> From: Søren Schmidt Date: Thu, 14 Mar 2002 13:35:55 -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: HEAD Sender: owner-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/03/14 13:35:55 PST Modified files: sys/dev/ata ata-all.c Log: Unbreak the probing of some CDROM drives. Revision Changes Path 1.138 +3 -3 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 Thu Mar 14 13:40:58 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7238A37B402; Thu, 14 Mar 2002 13:40:53 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ELerV23095; Thu, 14 Mar 2002 13:40:53 -0800 (PST) (envelope-from pat) Message-Id: <200203142140.g2ELerV23095@freefall.freebsd.org> From: Patrick Li Date: Thu, 14 Mar 2002 13:40:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/freeamp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/14 13:40:53 PST Modified files: audio/freeamp Makefile Log: Depend on freetype again PR: 35895 Submitted by: maintainer Revision Changes Path 1.17 +1 -1 ports/audio/freeamp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 13: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 4D12837B400; Thu, 14 Mar 2002 13:49:07 -0800 (PST) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ELn7B24702; Thu, 14 Mar 2002 13:49:07 -0800 (PST) (envelope-from jhb) Message-Id: <200203142149.g2ELn7B24702@freefall.freebsd.org> From: John Baldwin Date: Thu, 14 Mar 2002 13:49:07 -0800 (PST) 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 jhb 2002/03/14 13:49:07 PST Modified files: share/sgml man-refs.ent Log: Add entities for the rest of the critical section API. Revision Changes Path 1.125 +3 -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 Mar 14 13:51: 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 62C8B37B402; Thu, 14 Mar 2002 13:51:00 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ELp0525112; Thu, 14 Mar 2002 13:51:00 -0800 (PST) (envelope-from rwatson) Message-Id: <200203142151.g2ELp0525112@freefall.freebsd.org> From: Robert Watson Date: Thu, 14 Mar 2002 13:51:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/ps lomac.c lomac.h src/bin/ls lomac.c lomac.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/03/14 13:51:00 PST Modified files: bin/ps lomac.c lomac.h bin/ls lomac.c lomac.h Log: NAI DBA update. Revision Changes Path 1.6 +1 -1 src/bin/ls/lomac.c 1.2 +1 -1 src/bin/ls/lomac.h 1.5 +1 -1 src/bin/ps/lomac.c 1.3 +1 -1 src/bin/ps/lomac.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 13:52: 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 946D737B417; Thu, 14 Mar 2002 13:52:01 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ELq1R25246; Thu, 14 Mar 2002 13:52:01 -0800 (PST) (envelope-from bmah) Message-Id: <200203142152.g2ELq1R25246@freefall.freebsd.org> From: "Bruce A. Mah" Date: Thu, 14 Mar 2002 13:52:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/14 13:52:01 PST Modified files: release/doc/en_US.ISO8859-1/errata article.sgml Log: Whitespace only change to reduce diffs to RELENG_4 version of this file. Revision Changes Path 1.9 +37 -38 src/release/doc/en_US.ISO8859-1/errata/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 13:56: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 994A537B417; Thu, 14 Mar 2002 13:56:16 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ELuGn25938; Thu, 14 Mar 2002 13:56:16 -0800 (PST) (envelope-from rwatson) Message-Id: <200203142156.g2ELuGn25938@freefall.freebsd.org> From: Robert Watson Date: Thu, 14 Mar 2002 13:56:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 lomac.4 src/share/man/man7 ffs.7 src/share/man/man9 VOP_REVOKE.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/03/14 13:56:16 PST Modified files: share/man/man4 lomac.4 share/man/man7 ffs.7 share/man/man9 VOP_REVOKE.9 Log: NAI DBA update. Revision Changes Path 1.3 +1 -1 src/share/man/man4/lomac.4 1.7 +1 -1 src/share/man/man7/ffs.7 1.4 +1 -1 src/share/man/man9/VOP_REVOKE.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 13:59: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 4199337B41B; Thu, 14 Mar 2002 13:58:59 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ELwxT26446; Thu, 14 Mar 2002 13:58:59 -0800 (PST) (envelope-from rwatson) Message-Id: <200203142158.g2ELwxT26446@freefall.freebsd.org> From: Robert Watson Date: Thu, 14 Mar 2002 13:58:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/getextattr getextattr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/03/14 13:58:59 PST Modified files: usr.sbin/getextattr getextattr.c Log: NAI DBA update. Revision Changes Path 1.10 +1 -1 src/usr.sbin/getextattr/getextattr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 14: 5:25 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by hub.freebsd.org (Postfix) with ESMTP id 8D9CA37B417; Thu, 14 Mar 2002 14:05:10 -0800 (PST) Received: from blossom.cjclark.org ([12.234.91.48]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020314220510.CQYG2626.rwcrmhc51.attbi.com@blossom.cjclark.org>; Thu, 14 Mar 2002 22:05:10 +0000 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.6) id g2EM5AN41650; Thu, 14 Mar 2002 14:05:10 -0800 (PST) (envelope-from cjc) Date: Thu, 14 Mar 2002 14:05:10 -0800 From: "Crist J. Clark" To: Robert Watson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/ps lomac.c lomac.h src/bin/ls lomac.c lomac.h Message-ID: <20020314140510.I29705@blossom.cjclark.org> References: <200203142151.g2ELp0525112@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: <200203142151.g2ELp0525112@freefall.freebsd.org>; from rwatson@FreeBSD.org on Thu, Mar 14, 2002 at 01:51:00PM -0800 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Mar 14, 2002 at 01:51:00PM -0800, Robert Watson wrote: > rwatson 2002/03/14 13:51:00 PST > > Modified files: > bin/ps lomac.c lomac.h > bin/ls lomac.c lomac.h > Log: > NAI DBA update. Sorry. I read, "Network Associates Inc." "Database Administrator" update. But my guess is that one of those is not right. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 14:18: 5 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 1C20037B487; Thu, 14 Mar 2002 14:17:48 -0800 (PST) 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 g2EMHkF03049; Thu, 14 Mar 2002 17:17:46 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Thu, 14 Mar 2002 17:17:45 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: "Crist J. Clark" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/ps lomac.c lomac.h src/bin/ls lomac.c lomac.h In-Reply-To: <20020314140510.I29705@blossom.cjclark.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, 14 Mar 2002, Crist J. Clark wrote: > On Thu, Mar 14, 2002 at 01:51:00PM -0800, Robert Watson wrote: > > rwatson 2002/03/14 13:51:00 PST > > > > Modified files: > > bin/ps lomac.c lomac.h > > bin/ls lomac.c lomac.h > > Log: > > NAI DBA update. > > Sorry. I read, > > "Network Associates Inc." "Database Administrator" update. > > But my guess is that one of those is not right. In the US, 'DBA' sometimes stands for 'Doing Business As' -- permits a company to legally act using a name that isn't the incorporated name. It turns out that NAI (Network Associates, Inc) is a DBA for Networks Associates Technology, Inc. As may be Network Associates Technologies, Inc... Long story involving my picking the wrong DBA for the copyright. :-) 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 Thu Mar 14 14:19: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 8A98837B402; Thu, 14 Mar 2002 14:19:10 -0800 (PST) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.6/8.11.6) with ESMTP id g2EMJ4588967; Thu, 14 Mar 2002 22:19:04 GMT (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 g2EMJ2vJ015954; Thu, 14 Mar 2002 22:19:02 GMT (envelope-from brian@freebsd-services.com) Message-Id: <200203142219.g2EMJ2vJ015954@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Max Khon Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/databases/p5-DBD-Pg Makefile In-Reply-To: Message from Max Khon of "Tue, 12 Mar 2002 12:29:25 PST." <200203122029.g2CKTPN67558@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 14 Mar 2002 22:19:02 +0000 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 > fjoe 2002/03/12 12:29:25 PST > > Modified files: > databases/p5-DBD-Pg Makefile > Log: > - allow this port to be built with PostgreSQL 7.1 port (use pg_config) > - grab maintainership > > Revision Changes Path > 1.38 +14 -4 ports/databases/p5-DBD-Pg/Makefile Hmm, this undoes my ``grabbing'' of maintainership in the previous commit. -- 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 Mar 14 14:41:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by hub.freebsd.org (Postfix) with ESMTP id 4C78F37B402; Thu, 14 Mar 2002 14:41:31 -0800 (PST) Received: (from wkb@localhost) by freebie.xs4all.nl (8.11.6/8.11.6) id g2EMfUa07102; Thu, 14 Mar 2002 23:41:30 +0100 (CET) (envelope-from wkb) Date: Thu, 14 Mar 2002 23:41:30 +0100 From: Wilko Bulte To: John Baldwin Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.c Message-ID: <20020314234130.A7084@freebie.xs4all.nl> References: <200203111935.g2BJZAp83523@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: <200203111935.g2BJZAp83523@freefall.freebsd.org>; from jhb@FreeBSD.ORG on Mon, Mar 11, 2002 at 11:35:10AM -0800 X-OS: FreeBSD 4.5-STABLE X-PGP: finger wilko@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 Mon, Mar 11, 2002 at 11:35:10AM -0800, John Baldwin wrote: > jhb 2002/03/11 11:35:10 PST > > Modified files: > sys/alpha/alpha interrupt.c > Log: > Grrr, turn preemption back off on the alpha again. It is still not stable. > > Noticed by: wilko, mjacob, jhb, peter, and others Sorry it took some time, but at least after this commit I can: + LC_ALL=C TZ=GMT date + echo >>> make release finished on Thu Mar 14 21:22:45 GMT 2002 >>> make release finished on Thu Mar 14 21:22:45 GMT 2002 8-) I still see: ds10#Mar 14 23:39:49 ds10 kernel: lock order reversal Mar 14 23:39:49 ds10 kernel: lock order reversal Mar 14 23:39:49 ds10 kernel: 1st 0xfffffe0001a0cd80 pipe mutex @ /usr/src/sys/kern/sys_pipe.c:992 Mar 14 23:39:49 ds10 kernel: 1st 0xfffffe0001a0cd80 pipe mutex @ /usr/src/sys/kern/sys_pipe.c:992 Mar 14 23:39:49 ds10 kernel: 2nd 0xfffffc00005ad048 allproc @ /usr/src/sys/kern/kern_proc.c:273 Mar 14 23:39:49 ds10 kernel: 2nd 0xfffffc00005ad048 allproc @ /usr/src/sys/kern/kern_proc.c:273 W/ -- | / o / /_ _ wilko@FreeBSD.org |/|/ / / /( (_) Bulte Arnhem, the Netherlands To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 14:44: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from mail5.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by hub.freebsd.org (Postfix) with ESMTP id 5E1C537B423 for ; Thu, 14 Mar 2002 14:43:36 -0800 (PST) Received: (qmail 19726 invoked from network); 14 Mar 2002 22:43:34 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail5.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 14 Mar 2002 22:43:34 -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 g2EMi0v37193; Thu, 14 Mar 2002 17:44:00 -0500 (EST) (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: <20020314234130.A7084@freebie.xs4all.nl> Date: Thu, 14 Mar 2002 17:43:36 -0500 (EST) From: John Baldwin To: Wilko Bulte Subject: Re: cvs commit: src/sys/alpha/alpha interrupt.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 14-Mar-2002 Wilko Bulte wrote: > On Mon, Mar 11, 2002 at 11:35:10AM -0800, John Baldwin wrote: >> jhb 2002/03/11 11:35:10 PST >> >> Modified files: >> sys/alpha/alpha interrupt.c >> Log: >> Grrr, turn preemption back off on the alpha again. It is still not >> stable. >> >> Noticed by: wilko, mjacob, jhb, peter, and others > > Sorry it took some time, but at least after this commit I can: > > + LC_ALL=C TZ=GMT date > + echo >>> make release finished on Thu Mar 14 21:22:45 GMT 2002 >>>> make release finished on Thu Mar 14 21:22:45 GMT 2002 > > 8-) > > I still see: > > ds10#Mar 14 23:39:49 ds10 kernel: lock order reversal > Mar 14 23:39:49 ds10 kernel: lock order reversal > Mar 14 23:39:49 ds10 kernel: 1st 0xfffffe0001a0cd80 pipe mutex @ > /usr/src/sys/kern/sys_pipe.c:992 > Mar 14 23:39:49 ds10 kernel: 1st 0xfffffe0001a0cd80 pipe mutex @ > /usr/src/sys/kern/sys_pipe.c:992 > Mar 14 23:39:49 ds10 kernel: 2nd 0xfffffc00005ad048 allproc @ > /usr/src/sys/kern/kern_proc.c:273 > Mar 14 23:39:49 ds10 kernel: 2nd 0xfffffc00005ad048 allproc @ > /usr/src/sys/kern/kern_proc.c:273 Alfred's recent select fixes might fix this. -- 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 Mar 14 14:50: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.ruhr.de (in-ruhr4.ruhr.de [212.23.134.2]) by hub.freebsd.org (Postfix) with SMTP id 3897B37B41B for ; Thu, 14 Mar 2002 14:49:53 -0800 (PST) Received: (qmail 19989 invoked by uid 10); 14 Mar 2002 22:49:52 -0000 Received: (from ue@localhost) by nathan.ruhr.de (8.11.6/8.11.2) id g2EMkuU22446; Thu, 14 Mar 2002 23:46:56 +0100 (CET) (envelope-from ue) Date: Thu, 14 Mar 2002 23:46:55 +0100 From: Udo Erdelhoff To: Wilko Bulte Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Message-ID: <20020314224655.GW90154@nathan.ruhr.de> Mail-Followup-To: Wilko Bulte , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200203122050.g2CKo7S72963@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203122050.g2CKo7S72963@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 Tue, Mar 12, 2002 at 12:50:07PM -0800, Wilko Bulte wrote: > wilko 2002/03/12 12:50:07 PST > > Modified files: > release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml > Log: > TGA and TGA2 clarification > AS500 onboard sound. > > Revision Changes Path > 1.35 +3 -4 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml Is it just me or should these changes have gone into the RELENG_4 version? -- Windows is not the answer, Windows is the question. No is the answer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 15: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 F291A37B400; Thu, 14 Mar 2002 15:27:59 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ENRxG45146; Thu, 14 Mar 2002 15:27:59 -0800 (PST) (envelope-from des) Message-Id: <200203142327.g2ENRxG45146@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Thu, 14 Mar 2002 15:27:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/libpam Makefile src/lib/libpam/modules/pam_ftp pam_ftp.c src/lib/libpam/modules/pam_lastlog pam_lastlog.8 pam_lastlog.c src/lib/libpam/modules/pam_login_access pam_login_access.8 pam_login_access.c pam_login_access.h src/lib/libpam/modules/pam_nologin ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/14 15:27:59 PST Modified files: lib/libpam/libpam Makefile lib/libpam/modules/pam_ftp pam_ftp.c lib/libpam/modules/pam_lastlog pam_lastlog.8 pam_lastlog.c lib/libpam/modules/pam_login_access pam_login_access.8 pam_login_access.c pam_login_access.h lib/libpam/modules/pam_nologin pam_nologin.c lib/libpam/modules/pam_opie pam_opie.8 pam_opie.c lib/libpam/modules/pam_opieaccess pam_opieaccess.8 pam_opieaccess.c lib/libpam/modules/pam_radius pam_radius.c lib/libpam/modules/pam_rootok pam_rootok.c lib/libpam/modules/pam_securetty pam_securetty.8 pam_securetty.c lib/libpam/modules/pam_self pam_self.8 pam_self.c lib/libpam/modules/pam_ssh pam_ssh.8 pam_ssh.c lib/libpam/modules/pam_tacplus pam_tacplus.c lib/libpam/modules/pam_unix pam_unix.8 pam_unix.c lib/libpam/modules/pam_wheel pam_wheel.c Log: NAI DBA update. Revision Changes Path 1.30 +1 -1 src/lib/libpam/libpam/Makefile 1.10 +1 -1 src/lib/libpam/modules/pam_ftp/pam_ftp.c 1.3 +1 -1 src/lib/libpam/modules/pam_lastlog/pam_lastlog.8 1.9 +1 -1 src/lib/libpam/modules/pam_lastlog/pam_lastlog.c 1.3 +1 -1 src/lib/libpam/modules/pam_login_access/pam_login_access.8 1.7 +1 -1 src/lib/libpam/modules/pam_login_access/pam_login_access.c 1.2 +1 -1 src/lib/libpam/modules/pam_login_access/pam_login_access.h 1.9 +1 -1 src/lib/libpam/modules/pam_nologin/pam_nologin.c 1.7 +1 -1 src/lib/libpam/modules/pam_opie/pam_opie.8 1.20 +2 -2 src/lib/libpam/modules/pam_opie/pam_opie.c 1.3 +1 -1 src/lib/libpam/modules/pam_opieaccess/pam_opieaccess.8 1.7 +1 -1 src/lib/libpam/modules/pam_opieaccess/pam_opieaccess.c 1.10 +1 -1 src/lib/libpam/modules/pam_radius/pam_radius.c 1.7 +1 -1 src/lib/libpam/modules/pam_rootok/pam_rootok.c 1.6 +1 -1 src/lib/libpam/modules/pam_securetty/pam_securetty.8 1.10 +1 -1 src/lib/libpam/modules/pam_securetty/pam_securetty.c 1.6 +1 -1 src/lib/libpam/modules/pam_self/pam_self.8 1.6 +1 -1 src/lib/libpam/modules/pam_self/pam_self.c 1.8 +1 -1 src/lib/libpam/modules/pam_ssh/pam_ssh.8 1.28 +1 -1 src/lib/libpam/modules/pam_ssh/pam_ssh.c 1.10 +1 -1 src/lib/libpam/modules/pam_tacplus/pam_tacplus.c 1.8 +1 -1 src/lib/libpam/modules/pam_unix/pam_unix.8 1.25 +1 -1 src/lib/libpam/modules/pam_unix/pam_unix.c 1.10 +1 -1 src/lib/libpam/modules/pam_wheel/pam_wheel.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 16: 0:12 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id EDA2437B417; Thu, 14 Mar 2002 16:00:02 -0800 (PST) Received: from blossom.cjclark.org ([12.234.91.48]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020315000001.VXQO2951.rwcrmhc53.attbi.com@blossom.cjclark.org>; Fri, 15 Mar 2002 00:00:01 +0000 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.6) id g2F000Y41968; Thu, 14 Mar 2002 16:00:00 -0800 (PST) (envelope-from cjc) Date: Thu, 14 Mar 2002 16:00:00 -0800 From: "Crist J. Clark" To: Robert Watson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/ps lomac.c lomac.h src/bin/ls lomac.c lomac.h Message-ID: <20020314160000.J29705@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <20020314140510.I29705@blossom.cjclark.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 rwatson@FreeBSD.org on Thu, Mar 14, 2002 at 05:17:45PM -0500 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Mar 14, 2002 at 05:17:45PM -0500, Robert Watson wrote: > > On Thu, 14 Mar 2002, Crist J. Clark wrote: > > > On Thu, Mar 14, 2002 at 01:51:00PM -0800, Robert Watson wrote: > > > rwatson 2002/03/14 13:51:00 PST > > > > > > Modified files: > > > bin/ps lomac.c lomac.h > > > bin/ls lomac.c lomac.h > > > Log: > > > NAI DBA update. > > > > Sorry. I read, > > > > "Network Associates Inc." "Database Administrator" update. > > > > But my guess is that one of those is not right. > > In the US, 'DBA' sometimes stands for 'Doing Business As' -- permits a > company to legally act using a name that isn't the incorporated name. It > turns out that NAI (Network Associates, Inc) is a DBA for Networks > Associates Technology, Inc. As may be Network Associates Technologies, > Inc... > > Long story involving my picking the wrong DBA for the copyright. :-) Ah, well, I would have probably figured that out on my own if I had actually looked at the right revision numbers when I cvs diff'ed. :/ Thanks. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 16:27: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 5ECA037B404; Thu, 14 Mar 2002 16:27:53 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F0RrB56420; Thu, 14 Mar 2002 16:27:53 -0800 (PST) (envelope-from trevor) Message-Id: <200203150027.g2F0RrB56420@freefall.freebsd.org> From: Trevor Johnson Date: Thu, 14 Mar 2002 16:27:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm Makefile ports/x11-wm/clementine Makefile distinfo pkg-comment pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2002/03/14 16:27:53 PST Modified files: x11-wm Makefile Added files: x11-wm/clementine Makefile distinfo pkg-comment pkg-descr Log: Add new port of the Clementine window manager. Revision Changes Path 1.77 +1 -0 ports/x11-wm/Makefile 1.1 +63 -0 ports/x11-wm/clementine/Makefile (new) 1.1 +1 -0 ports/x11-wm/clementine/distinfo (new) 1.1 +1 -0 ports/x11-wm/clementine/pkg-comment (new) 1.1 +2 -0 ports/x11-wm/clementine/pkg-descr (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 16:28: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 B5FA837B41B; Thu, 14 Mar 2002 16:27:57 -0800 (PST) Received: (from trevor@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F0Rv056461; Thu, 14 Mar 2002 16:27:57 -0800 (PST) (envelope-from trevor) Message-Id: <200203150027.g2F0Rv056461@freefall.freebsd.org> From: Trevor Johnson Date: Thu, 14 Mar 2002 16:27:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG trevor 2002/03/14 16:27:57 PST Modified files: . modules Log: clementine --> ports/x11-wm/clementine Revision Changes Path 1.4841 +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 Mar 14 16: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 7829837B417; Thu, 14 Mar 2002 16:31:55 -0800 (PST) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F0Vtb57191; Thu, 14 Mar 2002 16:31:55 -0800 (PST) (envelope-from anders) Message-Id: <200203150031.g2F0Vtb57191@freefall.freebsd.org> From: Anders Nordby Date: Thu, 14 Mar 2002 16:31:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/fcplay Makefile ports/audio/xmms-tfmx Makefile ports/databases/mdbtools Makefile ports/deskutils/zorro Makefile ports/ftp/oftpd Makefile ports/graphics/hppsmtools Makefile ports/mail/drac Makefile ports/net/dante 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/03/14 16:31:55 PST Modified files: audio/fcplay Makefile audio/xmms-tfmx Makefile databases/mdbtools Makefile deskutils/zorro Makefile ftp/oftpd Makefile graphics/hppsmtools Makefile mail/drac Makefile net/dante Makefile security/pam-mysql Makefile security/vpnd Makefile www/mod_auth_pam Makefile www/mod_extract_forwarded Makefile www/mod_proxy_add_forward Makefile www/mod_throttle Makefile www/thttpd Makefile x11-clocks/wmfishtime Makefile Log: Master site updates: www.freenix.no => atreides.freenix.no for these files. Revision Changes Path 1.6 +2 -2 ports/audio/fcplay/Makefile 1.8 +1 -1 ports/audio/xmms-tfmx/Makefile 1.3 +2 -2 ports/databases/mdbtools/Makefile 1.22 +1 -1 ports/deskutils/zorro/Makefile 1.7 +1 -1 ports/ftp/oftpd/Makefile 1.8 +2 -2 ports/graphics/hppsmtools/Makefile 1.7 +1 -1 ports/mail/drac/Makefile 1.15 +1 -1 ports/net/dante/Makefile 1.5 +1 -1 ports/security/pam-mysql/Makefile 1.4 +1 -1 ports/security/vpnd/Makefile 1.3 +2 -2 ports/www/mod_auth_pam/Makefile 1.3 +2 -2 ports/www/mod_extract_forwarded/Makefile 1.3 +2 -2 ports/www/mod_proxy_add_forward/Makefile 1.3 +2 -2 ports/www/mod_throttle/Makefile 1.28 +1 -1 ports/www/thttpd/Makefile 1.6 +2 -2 ports/x11-clocks/wmfishtime/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 16:42:38 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 4FC0A37B404; Thu, 14 Mar 2002 16:42:17 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2F0gClv079388; Thu, 14 Mar 2002 16:42:12 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2F0euCC079351; Thu, 14 Mar 2002 16:40:56 -0800 (PST) Date: Thu, 14 Mar 2002 16:40:56 -0800 From: "David O'Brien" To: Robert Watson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/ps lomac.c lomac.h src/bin/ls lomac.c lomac.h Message-ID: <20020314164056.C79213@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20020314140510.I29705@blossom.cjclark.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 rwatson@FreeBSD.org on Thu, Mar 14, 2002 at 05:17:45PM -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 Thu, Mar 14, 2002 at 05:17:45PM -0500, Robert Watson wrote: > > In the US, 'DBA' sometimes stands for 'Doing Business As' -- permits a I have never heard this acronym in all my Beltway-Bandit days. I think maybe it is a NA-specific one? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 16:48:26 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 638B937B419; Thu, 14 Mar 2002 16:48:22 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 11F5E5346; Fri, 15 Mar 2002 01:48:17 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: obrien@FreeBSD.org Cc: Robert Watson , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/ps lomac.c lomac.h src/bin/ls lomac.c lomac.h References: <20020314140510.I29705@blossom.cjclark.org> <20020314164056.C79213@dragon.nuxi.com> From: Dag-Erling Smorgrav Date: 15 Mar 2002 01:48:16 +0100 In-Reply-To: <20020314164056.C79213@dragon.nuxi.com> 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 "David O'Brien" writes: > On Thu, Mar 14, 2002 at 05:17:45PM -0500, Robert Watson wrote: > > In the US, 'DBA' sometimes stands for 'Doing Business As' -- permits a > I have never heard this acronym in all my Beltway-Bandit days. > I think maybe it is a NA-specific one? http://www.thecontractorsgroup.com/dba.htm 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 Mar 14 16:58:22 2002 Delivered-To: cvs-all@freebsd.org Received: from bast.unixathome.org (bast.unixathome.org [216.187.105.150]) by hub.freebsd.org (Postfix) with ESMTP id 1830437B41B; Thu, 14 Mar 2002 16:58:18 -0800 (PST) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 2C1D03F55; Thu, 14 Mar 2002 19:58:17 -0500 (EST) From: "Dan Langille" Organization: DVL Software Limited To: Anders Nordby Date: Thu, 14 Mar 2002 19:58:15 -0500 MIME-Version: 1.0 Subject: Re: cvs commit: ports/audio/fcplay Makefile ports/audio/xmms-tfmx Makefile ports/databases/mdbtools Makefile ports/deskutils/zo Reply-To: dan@langille.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: <200203150031.g2F0Vtb57191@freefall.freebsd.org> X-mailer: Pegasus Mail for Windows (v4.01) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body Message-Id: <20020315005817.2C1D03F55@bast.unixathome.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 14 Mar 2002 at 16:31, Anders Nordby wrote: > anders 2002/03/14 16:31:55 PST > > mail/drac Makefile That one needs :: for pre-everything. $ sudo make -V PORTVERSION Password: "Makefile", line 34: Inconsistent operator for pre-everything make: fatal errors encountered -- cannot continue Search cvs-all archives for my name and pre-everything if you want some background on this one. cheers. -- Dan Langille The FreeBSD Diary - http://freebsddiary.org/ - practical examples To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 16:58:43 2002 Delivered-To: cvs-all@freebsd.org Received: from fasterix.frmug.org (fasterix.enst.fr [137.194.24.200]) by hub.freebsd.org (Postfix) with ESMTP id 1817337B400; Thu, 14 Mar 2002 16:58:37 -0800 (PST) Received: from fasterix.frmug.org (localhost [127.0.0.1]) by fasterix.frmug.org (8.12.2/8.12.2) with ESMTP id g2F0wY1e000553 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 15 Mar 2002 01:58:34 +0100 (CET) (envelope-from pb@fasterix.frmug.org) Received: (from pb@localhost) by fasterix.frmug.org (8.12.2/8.12.2/Submit) id g2F0wXaF000552; Fri, 15 Mar 2002 01:58:33 +0100 (CET) Message-ID: <20020315015833.A447@fasterix.frmug.org> Date: Fri, 15 Mar 2002 01:58:33 +0100 From: Pierre Beyssac To: Ruslan Ermilov , cvs-all@FreeBSD.org, thomas@cuivre.fr.eu.org Subject: Re: cvs commit: src/sys/boot/i386/boot2 boot2.c src/sbin/reboot boot_i386.8 References: <200203131103.g2DB3aD93661@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.92.8i In-Reply-To: <200203131103.g2DB3aD93661@freefall.freebsd.org>; from Ruslan Ermilov on Wed, Mar 13, 2002 at 03:03:36AM -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 On Wed, Mar 13, 2002 at 03:03:36AM -0800, Ruslan Ermilov wrote: > Modified files: > sys/boot/i386/boot2 boot2.c > sbin/reboot boot_i386.8 > Log: > Implement -m and -p loader(8) "boot" command options in boot2. > (This is more useful for 4.x where boot blocks can still load > kernels, modulo the PR kern/17422.) BTW, I am currently testing a set of patches to boot2 written by Thomas Quinot after we discussed the matter, adding a '-n' option to boot2 to ignore keypresses (and doing some code cleanup at the same time). It is meant for 'secure' setups where you want to stop anyone at the console from diverting the boot process, and it would be sooo handy to have that in the stock installation... I'll send the patches for review once I have tested these. Pierre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 17: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 CCAA837B405; Thu, 14 Mar 2002 17:18:01 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F1I1r67215; Thu, 14 Mar 2002 17:18:01 -0800 (PST) (envelope-from kris) Message-Id: <200203150118.g2F1I1r67215@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 14 Mar 2002 17:18:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gopher Makefile distinfo pkg-plist ports/net/gopher/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 kris 2002/03/14 17:18:01 PST Modified files: net/gopher Makefile distinfo pkg-plist Removed files: net/gopher/files patch-aa patch-ab patch-ac Log: Update to gopher-3.0.3 Revision Changes Path 1.19 +1 -1 ports/net/gopher/Makefile 1.6 +1 -1 ports/net/gopher/distinfo 1.6 +0 -10 ports/net/gopher/files/patch-aa (dead) 1.5 +0 -31 ports/net/gopher/files/patch-ab (dead) 1.5 +0 -11 ports/net/gopher/files/patch-ac (dead) 1.7 +4 -0 ports/net/gopher/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 Mar 14 17:22: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by hub.freebsd.org (Postfix) with ESMTP id 97C8D37B402; Thu, 14 Mar 2002 17:22:04 -0800 (PST) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.9.3/8.9.3) with ESMTP id UAA08079; Thu, 14 Mar 2002 20:22:04 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id g2F1LX445098; Thu, 14 Mar 2002 20:21:33 -0500 (EST) (envelope-from gallatin@cs.duke.edu) Date: Thu, 14 Mar 2002 20:21:33 -0500 From: Andrew Gallatin To: Orion Hodson Cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/sound/pci neomagic.c Message-ID: <20020314202133.A45073@grasshopper.cs.duke.edu> References: <200203070320.g273Kgo21599@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: <200203070320.g273Kgo21599@freefall.freebsd.org>; from orion@FreeBSD.org on Wed, Mar 06, 2002 at 07:20:42PM -0800 X-Operating-System: FreeBSD 4.4-RELEASE on an i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Orion Hodson [orion@FreeBSD.org] wrote: > orion 2002/03/06 19:20:42 PST > > Modified files: (Branch: RELENG_4) > sys/dev/sound/pci neomagic.c > Log: > MFC of delta's between 1.26 and 1.27 > Suspend and resume related patches. > > PR: kern/35484, kern/35230 > Submitted by: Toshikazu Ichinoseki > > Revision Changes Path > 1.7.2.10 +85 -12 src/sys/dev/sound/pci/neomagic.c Hurray! All use Neomagic owners thank you! Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 17:41: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 24D5C37B448; Thu, 14 Mar 2002 17:40:15 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F1e9q74897; Thu, 14 Mar 2002 17:40:09 -0800 (PST) (envelope-from kris) Message-Id: <200203150140.g2F1e9q74897@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 14 Mar 2002 17:40:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice Makefile ports/editors/openoffice-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 kris 2002/03/14 17:40:07 PST Modified files: editors/openoffice Makefile editors/openoffice-devel Makefile Log: Correct invalid syntax in LIB_DEPENDS Submitted by: bento Revision Changes Path 1.47 +1 -1 ports/editors/openoffice-devel/Makefile 1.44 +1 -1 ports/editors/openoffice/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 18: 3:33 2002 Delivered-To: cvs-all@freebsd.org Received: from titan.cc.wwu.edu (titan.cc.wwu.edu [140.160.240.18]) by hub.freebsd.org (Postfix) with ESMTP id 4773537B402; Thu, 14 Mar 2002 18:03:28 -0800 (PST) Received: from ws609.fx.reshall.wwu.edu (ws609.fx.reshall.wwu.edu [63.229.43.164]) by titan.cc.wwu.edu (8.10.2+Sun/8.9.1) with ESMTP id g2F23H929149; Thu, 14 Mar 2002 18:03:17 -0800 (PST) Subject: Re: cvs commit: ports/www/mozilla Makefile pkg-plist ports/www/mozilla/files patch-modules::libpref::src::unix::unix.js From: Michael J Estes To: Christopher Masto Cc: Maxim Sobolev , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG In-Reply-To: <20020314203631.GA70960@netmonger.net> References: <200203142021.g2EKL6q07845@freefall.freebsd.org> <20020314203631.GA70960@netmonger.net> Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/1.0.2 Date: 14 Mar 2002 18:03:21 -0800 Message-Id: <1016157801.98704.2.camel@estes.2y.net> 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 I put the following prefs in my ~/.mozilla/default/XXXXXXXX.slt/prefs.js user_pref("font.FreeType2.autohinted", true); user_pref("font.FreeType2.enable", true); user_pref("font.directory.truetype.1","/usr/X11R6/lib/X11/fonts/Type1"); user_pref("font.directory.truetype.2","/usr/X11R6/lib/X11/fonts/webfonts"); user_pref("font.directory.truetype.3","/usr/X11R6/lib/X11/fonts/truetype"); user_pref("font.freetype2.shared-library", "libfreetype.so.9"); and I get freetype fonts in mozilla -Mike Estes On Thu, 2002-03-14 at 12:36, Christopher Masto wrote: > On Thu, Mar 14, 2002 at 12:21:06PM -0800, Maxim Sobolev wrote: > > - correct name of the freetype library, so that it is easier to > > get AA fonts working. > > One still needs to edit the unix.js file to turn truetype on and > set the font paths. While I was in there, I changed a few other > settings that looked interesting. > > I wonder, is there a way to override those settings without modifying > a port-managed file? > -- > 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 18:14:23 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 E42B237B419; Thu, 14 Mar 2002 18:14:18 -0800 (PST) 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 g2F2EHF06381; Thu, 14 Mar 2002 21:14:17 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Thu, 14 Mar 2002 21:14:17 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: "David O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/ps lomac.c lomac.h src/bin/ls lomac.c lomac.h In-Reply-To: <20020314164056.C79213@dragon.nuxi.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 Thu, 14 Mar 2002, David O'Brien wrote: > On Thu, Mar 14, 2002 at 05:17:45PM -0500, Robert Watson wrote: > > > > In the US, 'DBA' sometimes stands for 'Doing Business As' -- permits a > > I have never heard this acronym in all my Beltway-Bandit days. > I think maybe it is a NA-specific one? I've heard it used by a number of companies in the DC area. My understanding was that it was a relatively standard business term. I could be wrong. :-) 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 Thu Mar 14 18:31: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 5CC2E37B402; Thu, 14 Mar 2002 18:31:14 -0800 (PST) Received: (from archie@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F2VE386660; Thu, 14 Mar 2002 18:31:14 -0800 (PST) (envelope-from archie) Message-Id: <200203150231.g2F2VE386660@freefall.freebsd.org> From: Archie Cobbs Date: Thu, 14 Mar 2002 18:31:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/netgraph ng_ppp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG archie 2002/03/14 18:31:14 PST Modified files: sys/netgraph ng_ppp.c Log: Fix bugs where the ng_ppp node could transmit PPP frames whose length exceeded the peer's configured MRU or MRRU. MFC after: 1 week Revision Changes Path 1.38 +18 -4 src/sys/netgraph/ng_ppp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 18:45:10 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id B7DBE37B420; Thu, 14 Mar 2002 18:44:57 -0800 (PST) Received: from peter3.wemm.org ([12.232.27.13]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020315024456.BPKW2951.rwcrmhc53.attbi.com@peter3.wemm.org>; Fri, 15 Mar 2002 02:44:56 +0000 Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id g2F2ius43229; Thu, 14 Mar 2002 18:44:56 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id F294F38CC; Thu, 14 Mar 2002 18:44:55 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Doug Rabson Cc: Jake Burkholder , Doug Rabson , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ia64/include pcb.h In-Reply-To: <20020314205405.A504-100000@salmon.nlsystems.com> Date: Thu, 14 Mar 2002 18:44:55 -0800 From: Peter Wemm Message-Id: <20020315024455.F294F38CC@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 Doug Rabson wrote: > On Thu, 14 Mar 2002, Jake Burkholder wrote: > > > Apparently, On Thu, Mar 14, 2002 at 11:19:49AM -0800, > > Doug Rabson said words to the effect of; > > > > > dfr 2002/03/14 11:19:49 PST > > > > > > Modified files: > > > sys/ia64/include pcb.h > > > Log: > > > Add a field to hold the current pmap of a thread. > > > > Isn't this just &td->td_proc->p_vmspace.vm_pmap? > > The ia64 pmap temporarily switches current_pmap when it is forced to work > on a non-current pmap. Not sure how often this happens in practice. This would mostly be for ptrace() and procfs /proc/*/mem support. There are very few other cases when this happens. 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 Mar 14 19: 0: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 7072F37B416; Thu, 14 Mar 2002 19:00:16 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F30GZ90138; Thu, 14 Mar 2002 19:00:16 -0800 (PST) (envelope-from kris) Message-Id: <200203150300.g2F30GZ90138@freefall.freebsd.org> From: Kris Kennaway Date: Thu, 14 Mar 2002 19:00:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/asfrecorder 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/03/14 19:00:16 PST Modified files: net/asfrecorder Makefile distinfo Log: Update to latest version of ASFRecorder. Since the distfile isn't versioned call it 1.1.20001218 which is the date of the most recent changes in the file. Approved by: maintainer timeout Revision Changes Path 1.2 +2 -3 ports/net/asfrecorder/Makefile 1.2 +1 -1 ports/net/asfrecorder/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 19:29: 7 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 CFA6237B404; Thu, 14 Mar 2002 19:29:03 -0800 (PST) Received: by leviathan.inethouston.net (Postfix, from userid 1001) id 7E6A4319BD6; Thu, 14 Mar 2002 21:29:04 -0600 (CST) Date: Thu, 14 Mar 2002 21:29:04 -0600 From: "David W. Chapman Jr." To: David O'Brien Cc: Robert Watson , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/ps lomac.c lomac.h src/bin/ls lomac.c lomac.h Message-ID: <20020315032904.GB22079@leviathan.inethouston.net> Reply-To: "David W. Chapman Jr." Mail-Followup-To: David O'Brien , Robert Watson , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <20020314140510.I29705@blossom.cjclark.org> <20020314164056.C79213@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020314164056.C79213@dragon.nuxi.com> User-Agent: Mutt/1.3.27i X-Operating-System: FreeBSD 4.5-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Thu, Mar 14, 2002 at 04:40:56PM -0800, David O'Brien wrote: > On Thu, Mar 14, 2002 at 05:17:45PM -0500, Robert Watson wrote: > > > > In the US, 'DBA' sometimes stands for 'Doing Business As' -- permits a > > I have never heard this acronym in all my Beltway-Bandit days. > I think maybe it is a NA-specific one? > Before I got incorporated, I got my DBA as Raintree Network Services. But Unlike an incorporation the DBA is only county wide or state at most. -- 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 Thu Mar 14 19:29:55 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 0316737B416; Thu, 14 Mar 2002 19:29:49 -0800 (PST) Received: by leviathan.inethouston.net (Postfix, from userid 1001) id DB662319BD5; Thu, 14 Mar 2002 21:29:54 -0600 (CST) Date: Thu, 14 Mar 2002 21:29:54 -0600 From: "David W. Chapman Jr." To: Robert Watson Cc: David O'Brien , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/ps lomac.c lomac.h src/bin/ls lomac.c lomac.h Message-ID: <20020315032954.GC22079@leviathan.inethouston.net> Reply-To: "David W. Chapman Jr." Mail-Followup-To: Robert Watson , David O'Brien , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <20020314164056.C79213@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.27i X-Operating-System: FreeBSD 4.5-STABLE i386 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > I have never heard this acronym in all my Beltway-Bandit days. > > I think maybe it is a NA-specific one? > > I've heard it used by a number of companies in the DC area. My > understanding was that it was a relatively standard business term. I > could be wrong. :-) > I would have to agree with you, its pretty common among small businesses that don't want to incorporate. I'm not sure that its used in bigger companies. -- 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 Thu Mar 14 19:37: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 6DDB437B400; Thu, 14 Mar 2002 19:37:33 -0800 (PST) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F3bXm98566; Thu, 14 Mar 2002 19:37:33 -0800 (PST) (envelope-from ache) Message-Id: <200203150337.g2F3bXm98566@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 14 Mar 2002 19:37:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/WebMagick Makefile ports/www/WebMagick/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 ache 2002/03/14 19:37:33 PST Modified files: www/WebMagick Makefile Added files: www/WebMagick/files patch-aa Log: Fix wrong prev link from the first picture on the last page. Revision Changes Path 1.26 +1 -0 ports/www/WebMagick/Makefile 1.24 +11 -0 ports/www/WebMagick/files/patch-aa (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 19:53: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 83E0B37B41A; Thu, 14 Mar 2002 19:53:15 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F3rFj01074; Thu, 14 Mar 2002 19:53:15 -0800 (PST) (envelope-from ijliao) Message-Id: <200203150353.g2F3rFj01074@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 19:53:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math Makefile ports/math/atlas Makefile distinfo pkg-comment pkg-descr pkg-plist ports/math/atlas/files answer 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 ijliao 2002/03/14 19:53:15 PST Modified files: math Makefile Added files: math/atlas Makefile distinfo pkg-comment pkg-descr pkg-plist math/atlas/files answer patch-aa Log: add atlas 3.3.14 Automatically Tuned Linear Algebra Software (ATLAS) PR: 35908 Submitted by: Nakata Maho Revision Changes Path 1.164 +1 -0 ports/math/Makefile 1.1 +44 -0 ports/math/atlas/Makefile (new) 1.1 +1 -0 ports/math/atlas/distinfo (new) 1.1 +9 -0 ports/math/atlas/files/answer (new) 1.1 +10 -0 ports/math/atlas/files/patch-aa (new) 1.1 +1 -0 ports/math/atlas/pkg-comment (new) 1.1 +22 -0 ports/math/atlas/pkg-descr (new) 1.1 +21 -0 ports/math/atlas/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 Mar 14 19:57:17 2002 Delivered-To: cvs-all@freebsd.org Received: from wensleydale.netmonger.net (wensleydale.netmonger.net [167.206.208.3]) by hub.freebsd.org (Postfix) with ESMTP id 3EA4A37B405; Thu, 14 Mar 2002 19:57:12 -0800 (PST) Received: from dna.masto.com (ool-18b84ad7.dyn.optonline.net [24.184.74.215]) (AUTH: LOGIN chris@retardix.com, TLS: TLSv1/SSLv3,168bits,DES-CBC3-SHA) by wensleydale.netmonger.net with esmtp; Thu, 14 Mar 2002 22:54:21 -0500 Received: (from chris@localhost) by dna.masto.com (8.11.5/8.11.4) id g2F3rA176537; Thu, 14 Mar 2002 22:53:10 -0500 (EST) (envelope-from chris@masto.com) X-Authentication-Warning: dna.masto.com: chris set sender to chris@masto.com using -f Date: Thu, 14 Mar 2002 22:53:10 -0500 From: Christopher Masto To: Michael J Estes Cc: Maxim Sobolev , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/www/mozilla Makefile pkg-plist ports/www/mozilla/files patch-modules::libpref::src::unix::unix.js Message-ID: <20020315035309.GA76524@masto.com> References: <200203142021.g2EKL6q07845@freefall.freebsd.org> <20020314203631.GA70960@netmonger.net> <1016157801.98704.2.camel@estes.2y.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline In-Reply-To: <1016157801.98704.2.camel@estes.2y.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 Thu, Mar 14, 2002 at 06:03:21PM -0800, Michael J Estes wrote: > I put the following prefs in my ~/.mozilla/default/XXXXXXXX.slt/prefs.js D'oh. I know I tried that first, but I must have made a mistake and thought they didn't work there. -- "Contemplate the mangled bodies of your countrymen, and then say, What should be the reward of such sacrifices? ... If ye love wealth better than liberty, the tranquillity of servitude than the animating contest of freedom -- go from us in peace. Crouch down and lick the hands which feed you. May your chains sit lightly upon you." -- Samuel Adams, 1776 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 Mar 14 20: 6: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 130B737B402; Thu, 14 Mar 2002 20:06:11 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F46Bw06312; Thu, 14 Mar 2002 20:06:11 -0800 (PST) (envelope-from obrien) Message-Id: <200203150406.g2F46Bw06312@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 14 Mar 2002 20:06:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ffs ffs_softdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/03/14 20:06:11 PST Modified files: sys/ufs/ffs ffs_softdep.c Log: Quiet a warning on the Alpha. Revision Changes Path 1.109 +5 -1 src/sys/ufs/ffs/ffs_softdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 20: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 7919E37B400; Thu, 14 Mar 2002 20:13:23 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F4DNT07562; Thu, 14 Mar 2002 20:13:23 -0800 (PST) (envelope-from ijliao) Message-Id: <200203150413.g2F4DNT07562@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 20:13:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/doxygen Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/14 20:13:23 PST Modified files: devel/doxygen Makefile distinfo pkg-plist Log: upgrade to 1.2.14 PR: 35911 Submitted by: maintainer Revision Changes Path 1.17 +5 -2 ports/devel/doxygen/Makefile 1.9 +1 -1 ports/devel/doxygen/distinfo 1.7 +3 -4 ports/devel/doxygen/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 Mar 14 20:20: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 3E1AF37B416; Thu, 14 Mar 2002 20:20:16 -0800 (PST) Received: (from brooks@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F4KGO08593; Thu, 14 Mar 2002 20:20:16 -0800 (PST) (envelope-from brooks) Message-Id: <200203150420.g2F4KGO08593@freefall.freebsd.org> From: Brooks Davis Date: Thu, 14 Mar 2002 20:20:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/isa if_wi.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 brooks 2002/03/14 20:20:16 PST Modified files: (Branch: RELENG_4) sys/i386/isa if_wi.c Log: Add some missing spls which stop stop the once a minute wi_cmd timeout messages and accompanying .5sec hangs on Lucent cards. Not an MFC because there are no spls in current. Submitted by: Tod McQuillin Revision Changes Path 1.18.2.17 +8 -0 src/sys/i386/isa/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 Mar 14 20:32:17 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.22.40]) by hub.freebsd.org (Postfix) with ESMTP id 08B8B37B405; Thu, 14 Mar 2002 20:32:02 -0800 (PST) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.12.1/8.12.1) with ESMTP id g2F4W0t7132296; Thu, 14 Mar 2002 23:32:00 -0500 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <20020314164056.C79213@dragon.nuxi.com> References: <20020314140510.I29705@blossom.cjclark.org> <20020314164056.C79213@dragon.nuxi.com> Date: Thu, 14 Mar 2002 23:31:59 -0500 To: obrien@FreeBSD.org, Robert Watson From: Garance A Drosihn Subject: Re: cvs commit: src/bin/ps lomac.c lomac.h src/bin/ls lomac.c lomac.h Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Scanned-By: MIMEDefang 2.3 (www dot roaringpenguin dot com slash mimedefang) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 4:40 PM -0800 3/14/02, David O'Brien wrote: >On Thu, Mar 14, 2002 at 05:17:45PM -0500, Robert Watson wrote: >> >> In the US, 'DBA' sometimes stands for 'Doing Business As' -- permits a > >I have never heard this acronym in all my Beltway-Bandit >days. I think maybe it is a NA-specific one? Seems pretty common to me. I've received packages from a number of mail-order companies which were "So and So, Inc, d/b/a Much Fancier-Sounding Business". -- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 21: 8: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 9F9FD37B402; Thu, 14 Mar 2002 21:08:53 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F58rQ18733; Thu, 14 Mar 2002 21:08:53 -0800 (PST) (envelope-from ijliao) Message-Id: <200203150508.g2F58rQ18733@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 21:08:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/p5-Date-Pcalc 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/03/14 21:08:53 PST Modified files: devel/p5-Date-Pcalc Makefile Log: Add MASTER_SITE_SUBDIR for CPAN PR: 35912 Submitted by: Kimura Fuyuki Revision Changes Path 1.2 +1 -0 ports/devel/p5-Date-Pcalc/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 21:10:29 2002 Delivered-To: cvs-all@freebsd.org Received: from charter.net (dhcp-8-15.slidell.charter-ala.com [24.158.214.244]) by hub.freebsd.org (Postfix) with ESMTP id EF87337B402; Thu, 14 Mar 2002 21:10:24 -0800 (PST) Received: (from glenn@localhost) by charter.net (8.11.6/8.11.6) id g2F59vC44069; Thu, 14 Mar 2002 23:09:57 -0600 (CST) (envelope-from glenn) From: Glenn Johnson Date: Thu, 14 Mar 2002 23:09:56 -0600 To: Michael J Estes Cc: Christopher Masto , Maxim Sobolev , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/www/mozilla Makefile pkg-plist ports/www/mozilla/files patch-modules::libpref::src::unix::unix.js Message-ID: <20020315050956.GA43971@gforce.johnson.home> Mail-Followup-To: glenn@FreeBSD.ORG, Michael J Estes , Christopher Masto , Maxim Sobolev , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200203142021.g2EKL6q07845@freefall.freebsd.org> <20020314203631.GA70960@netmonger.net> <1016157801.98704.2.camel@estes.2y.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1016157801.98704.2.camel@estes.2y.net> 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, Mar 14, 2002 at 06:03:21PM -0800, Michael J Estes wrote: > I put the following prefs in my > ~/.mozilla/default/XXXXXXXX.slt/prefs.js > > user_pref("font.FreeType2.autohinted", true); > user_pref("font.FreeType2.enable", true); > user_pref("font.directory.truetype.1","/usr/X11R6/lib/X11/fonts/Type1"); > user_pref("font.directory.truetype.2","/usr/X11R6/lib/X11/fonts/webfonts"); > user_pref("font.directory.truetype.3","/usr/X11R6/lib/X11/fonts/truetype"); > user_pref("font.freetype2.shared-library", "libfreetype.so.9"); > > and I get freetype fonts in mozilla Do you find that the fonts are not as good looking when the above is done? On my system, the fonts look heavier and have an "out of focus" look when they are anti-aliased. -- Glenn Johnson glennpj@charter.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 21:10: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 5FD3B37B488; Thu, 14 Mar 2002 21:10:46 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F5AkH19128; Thu, 14 Mar 2002 21:10:46 -0800 (PST) (envelope-from pat) Message-Id: <200203150510.g2F5AkH19128@freefall.freebsd.org> From: Patrick Li Date: Thu, 14 Mar 2002 21:10:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/p5-Net-Patricia 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/03/14 21:10:46 PST Modified files: net/p5-Net-Patricia Makefile Log: Add CPAN as primary site to download tarball PR: 35914 Submitted by: Kimura Fuyuki Revision Changes Path 1.2 +3 -1 ports/net/p5-Net-Patricia/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 21: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 056A137B41A; Thu, 14 Mar 2002 21:12:39 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F5CcS19608; Thu, 14 Mar 2002 21:12:38 -0800 (PST) (envelope-from pat) Message-Id: <200203150512.g2F5CcS19608@freefall.freebsd.org> From: Patrick Li Date: Thu, 14 Mar 2002 21:12:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/neon pkg-plist ports/www/neon/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 pat 2002/03/14 21:12:38 PST Modified files: www/neon pkg-plist www/neon/files patch-ltmain.sh Log: Do not install .la files again PR: 35910 Submitted by: maintainer Revision Changes Path 1.3 +13 -3 ports/www/neon/files/patch-ltmain.sh 1.10 +0 -1 ports/www/neon/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 Mar 14 21: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 7452137B41B; Thu, 14 Mar 2002 21:16:19 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F5GJ720632; Thu, 14 Mar 2002 21:16:19 -0800 (PST) (envelope-from ijliao) Message-Id: <200203150516.g2F5GJ720632@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 21:16:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www Makefile ports/www/phpSysInfo Makefile distinfo pkg-comment pkg-descr pkg-plist ports/www/phpSysInfo/files patch-includes-os-class.BSD.common.inc.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 ijliao 2002/03/14 21:16:19 PST Modified files: www Makefile Added files: www/phpSysInfo Makefile distinfo pkg-comment pkg-descr pkg-plist www/phpSysInfo/files patch-includes-os-class.BSD.common.inc.php Log: add phpSysInfo 2.0 A php script that displays info about the host being accessed PR: 35581 Submitted by: Bob Bomar Revision Changes Path 1.477 +1 -0 ports/www/Makefile 1.1 +33 -0 ports/www/phpSysInfo/Makefile (new) 1.1 +1 -0 ports/www/phpSysInfo/distinfo (new) 1.1 +27 -0 ports/www/phpSysInfo/files/patch-includes-os-class.BSD.common.inc.php (new) 1.1 +1 -0 ports/www/phpSysInfo/pkg-comment (new) 1.1 +7 -0 ports/www/phpSysInfo/pkg-descr (new) 1.1 +141 -0 ports/www/phpSysInfo/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 Mar 14 21:16:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE1DA37B419; Thu, 14 Mar 2002 21:16:21 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F5GLf20663; Thu, 14 Mar 2002 21:16:21 -0800 (PST) (envelope-from ijliao) Message-Id: <200203150516.g2F5GLf20663@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 21:16:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/14 21:16:21 PST Modified files: . modules Log: phpSysInfo --> ports/www/phpSysInfo Revision Changes Path 1.4842 +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 Mar 14 21:24:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F14CD37B400; Thu, 14 Mar 2002 21:24:22 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F5OMc21650; Thu, 14 Mar 2002 21:24:22 -0800 (PST) (envelope-from pat) Message-Id: <200203150524.g2F5OMc21650@freefall.freebsd.org> From: Patrick Li Date: Thu, 14 Mar 2002 21:24:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/freeamp Makefile pkg-plist ports/audio/freeamp/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 pat 2002/03/14 21:24:22 PST Modified files: audio/freeamp Makefile pkg-plist audio/freeamp/files patch-aa Log: Remove unnecessary ORBit dependency that installs an experimental UI plugin and unbreaks build if ORBit is not installed. Bump PORTREVISION. PR: 35915 Submitted by: maintainer Noticed by: kris Revision Changes Path 1.18 +2 -5 ports/audio/freeamp/Makefile 1.4 +27 -16 ports/audio/freeamp/files/patch-aa 1.5 +0 -1 ports/audio/freeamp/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 Mar 14 21:41:20 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 660D437B400; Thu, 14 Mar 2002 21:41:13 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 3894EAE1D0; Thu, 14 Mar 2002 21:41:13 -0800 (PST) Date: Thu, 14 Mar 2002 21:41:13 -0800 From: Alfred Perlstein To: Brian Feldman Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_mtxpool.c src/sys/sys kernel.h src/sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h vm_pageout.c vm_zone.c Message-ID: <20020315054113.GC4857@elvis.mu.org> References: <200203132348.g2DNmAE12640@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203132348.g2DNmAE12640@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 * Brian Feldman [020313 15:53] wrote: > green 2002/03/13 15:48:08 PST > > Modified files: > sys/kern kern_mtxpool.c > sys/sys kernel.h > sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h > vm_pageout.c vm_zone.c > Log: > Rename SI_SUB_MUTEX to SI_SUB_MTX_POOL to make the name at all accurate. > While doing this, move it earlier in the sysinit boot process so that the > VM system can use it. > > After that, the system is now able to use sx locks instead of lockmgr > locks in the VM system. To accomplish this, some of the more > questionable uses of the locks (such as testing whether they are > owned or not, as well as allowing shared+exclusive recursion) are > removed, and simpler logic throughout is used so locks should also be > easier to understand. > > This has been tested on my laptop for months, and has not shown any > problems on SMP systems, either, so appears quite safe. One more > user of lockmgr down, many more to go :) You broke the kernel. Two deadlock tracebacks: siointr1(c5ed2400,c0464940,0,c03aa0e3,662) at siointr1+0xb1 siointr(c5ed2400) at siointr+0x23 Xfastintr4() at Xfastintr4+0x34 --- interrupt, eip = 0xc03139f5, esp = 0xd26968e8, ebp = 0xd26968f4 --- _vm_map_lock_upgrade(c045b870,c03a72c1,af4) at _vm_map_lock_upgrade+0xd vm_map_lookup(d269699c,cc644000,2,d26969a0,d2696994) at vm_map_lookup+0x19f vm_fault1(c045bb54,cc644000,2,0,c04098c0) at vm_fault1+0x54 vm_fault(c045bb54,cc644000,2,0,c) at vm_fault+0x34 trap_pfault(d2696a8c,0,cc644000,d2696bd4,80f5349) at trap_pfault+0x161 trap(c03b0018,d2690010,c0400010,cc644000,80f5349) at trap+0x36f calltrap() at calltrap+0x5 --- trap 0xc, eip = 0xc03474e4, esp = 0xd2696acc, ebp = 0xd2696af4 --- copyinstr(d2696bd4,2,0,d2696d20,0) at copyinstr+0x38 exec_elf_imgact(d2696bd4,d25ac580,0,3,d2696bd4) at exec_elf_imgact+0xf3 execve(d25ac680,d2696d20,80f5358,ffffffff,80f53fc) at execve+0x2e0 syscall(2f,2f,2f,80f53fc,ffffffff) at syscall+0x207 syscall_with_err_pushed() at syscall_with_err_pushed+0x1b witness_unlock(c042d7f8,8,c038cfe3,112) at witness_unlock+0x1c5 _mtx_unlock_flags(c042d7f8,0,c038cfe3,112,c045b870) at _mtx_unlock_flags+0x1d _sx_try_upgrade(c045b8a0,c03a72c1,af4,d257b570,d2546924) at _sx_try_upgrade+0x38 _vm_map_lock_upgrade(c045b870,c03a72c1,af4) at _vm_map_lock_upgrade+0x16 vm_map_lookup(d254699c,cc5ed000,2,d25469a0,d2546994) at vm_map_lookup+0x19f vm_fault1(c045bb54,cc5ed000,2,0,c04098c0) at vm_fault1+0x54 vm_fault(c045bb54,cc5ed000,2,0,c) at vm_fault+0x34 trap_pfault(d2546a8c,0,cc5ed000,d2546bd4,bfbffe69) at trap_pfault+0x161 trap(18,d2540010,c0340010,cc5ed000,bfbffe69) at trap+0x36f calltrap() at calltrap+0x5 --- trap 0xc, eip = 0xc03474e4, esp = 0xd2546acc, ebp = 0xd2546af4 --- copyinstr(d2546bd4,2,0,d2546d20,0) at copyinstr+0x38 exec_elf_imgact(d2546bd4,cf8ce260,0,3,d2546bd4) at exec_elf_imgact+0xf3 execve(cf8ce360,d2546d20,28105658,bfbff940,4) at execve+0x2e0 syscall(2f,2f,2f,4,bfbff940) at syscall+0x207 syscall_with_err_pushed() at syscall_with_err_pushed+0x1b What is the problem? Well basically you changed: ! static __inline__ int ! _vm_map_lock_upgrade(vm_map_t map, struct thread *td) { ! int error; ! ! vm_map_printf("locking map LK_EXCLUPGRADE: %p\n", map); ! error = lockmgr(&map->lock, LK_EXCLUPGRADE, NULL, td); ! if (error == 0) ! map->timestamp++; ! return error; } into: ! _vm_map_lock_upgrade(vm_map_t map, const char *file, int line) { ! vm_map_printf("locking map LK_EXCLUPGRADE: %p\n", map); ! if (_sx_try_upgrade(&map->lock, file, line)) { ! map->timestamp++; ! return (0); ! } ! return (EWOULDBLOCK); } It's obvious you didn't understand what's going on here. Please either fix or back this code out. -- -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 Thu Mar 14 22:21: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 A3A5D37B400; Thu, 14 Mar 2002 22:21:46 -0800 (PST) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F6LkQ32132; Thu, 14 Mar 2002 22:21:46 -0800 (PST) (envelope-from ache) Message-Id: <200203150621.g2F6LkQ32132@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 14 Mar 2002 22:21:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/ImageMagick Makefile ports/graphics/ImageMagick/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 ache 2002/03/14 22:21:46 PST Modified files: graphics/ImageMagick Makefile Added files: graphics/ImageMagick/files patch-aa Log: Workaround hack for perl Ping() method wrong image dimension bug. According to author, it is fixed in different way in not yet released 5.4.4 Revision Changes Path 1.135 +1 -1 ports/graphics/ImageMagick/Makefile 1.1 +16 -0 ports/graphics/ImageMagick/files/patch-aa (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 22: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 8E24737B417; Thu, 14 Mar 2002 22:24:29 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F6OTa32859; Thu, 14 Mar 2002 22:24:29 -0800 (PST) (envelope-from ijliao) Message-Id: <200203150624.g2F6OTa32859@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 22:24:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro Makefile ports/astro/planets 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/03/14 22:24:29 PST Modified files: astro Makefile Added files: astro/planets Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add planets 0.1.5 An orbital simulator Revision Changes Path 1.48 +1 -0 ports/astro/Makefile 1.1 +32 -0 ports/astro/planets/Makefile (new) 1.1 +1 -0 ports/astro/planets/distinfo (new) 1.1 +1 -0 ports/astro/planets/pkg-comment (new) 1.1 +4 -0 ports/astro/planets/pkg-descr (new) 1.1 +4 -0 ports/astro/planets/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 Mar 14 22: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 C290237B419; Thu, 14 Mar 2002 22:24:31 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F6OVm32942; Thu, 14 Mar 2002 22:24:31 -0800 (PST) (envelope-from ijliao) Message-Id: <200203150624.g2F6OVm32942@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 22:24:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/14 22:24:31 PST Modified files: . modules Log: planets --> ports/astro/planets Revision Changes Path 1.4843 +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 Mar 14 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 B4E5C37B404; Thu, 14 Mar 2002 22:41:01 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F6f1M35597; Thu, 14 Mar 2002 22:41:01 -0800 (PST) (envelope-from imp) Message-Id: <200203150641.g2F6f1M35597@freefall.freebsd.org> From: Warner Losh Date: Thu, 14 Mar 2002 22:41:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/cardbus cardbus.c cardbus_cis.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/03/14 22:41:01 PST Modified files: sys/dev/cardbus cardbus.c cardbus_cis.c Log: Revert most of the recent PCI merge. This has proven to be too unstable for the coming DP1 release. Instead, I'll develop that on the IMP_CB_MERGE branch until it is more stable. Revision Changes Path 1.19 +928 -54 src/sys/dev/cardbus/cardbus.c 1.18 +43 -72 src/sys/dev/cardbus/cardbus_cis.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 22:47: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 8857137B417; Thu, 14 Mar 2002 22:47:38 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F6lcr36431; Thu, 14 Mar 2002 22:47:38 -0800 (PST) (envelope-from luigi) Message-Id: <200203150647.g2F6lcr36431@freefall.freebsd.org> From: Luigi Rizzo Date: Thu, 14 Mar 2002 22:47:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/examples/diskless ME README.BOOTP README.TEMPLATING src/share/examples/diskless/209.157.86.12 README rc.conf.local src/share/examples/diskless/HT.DISKLESS fstab rc.conf.local rc.local syslog.conf ttys xdm-config ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/14 22:47:38 PST Modified files: share/examples/diskless ME README.BOOTP README.TEMPLATING Removed files: share/examples/diskless/209.157.86.12 README rc.conf.local share/examples/diskless/HT.DISKLESS fstab rc.conf.local rc.local syslog.conf ttys xdm-config share/examples/diskless/HT.STD aliases forward.map ndomain.map syslog.conf ttys share/examples/diskless/archive.backplane.com README fstab ipfw.conf motd rc.conf.local resolv.conf Log: Add comments to ME README.BOOTP README.TEMPLATING mentioning that they contain stale information. Remove files referring to the old diskless setup to avoid confusion. Revision Changes Path 1.3 +0 -27 src/share/examples/diskless/209.157.86.12/README (dead) 1.2 +0 -9 src/share/examples/diskless/209.157.86.12/rc.conf.local (dead) 1.2 +0 -5 src/share/examples/diskless/HT.DISKLESS/fstab (dead) 1.4 +0 -36 src/share/examples/diskless/HT.DISKLESS/rc.conf.local (dead) 1.3 +0 -77 src/share/examples/diskless/HT.DISKLESS/rc.local (dead) 1.2 +0 -3 src/share/examples/diskless/HT.DISKLESS/syslog.conf (dead) 1.2 +0 -52 src/share/examples/diskless/HT.DISKLESS/ttys (dead) 1.2 +0 -15 src/share/examples/diskless/HT.DISKLESS/xdm-config (dead) 1.2 +0 -30 src/share/examples/diskless/HT.STD/aliases (dead) 1.2 +0 -6 src/share/examples/diskless/HT.STD/forward.map (dead) 1.2 +0 -11 src/share/examples/diskless/HT.STD/ndomain.map (dead) 1.2 +0 -11 src/share/examples/diskless/HT.STD/syslog.conf (dead) 1.2 +0 -52 src/share/examples/diskless/HT.STD/ttys (dead) 1.4 +15 -0 src/share/examples/diskless/ME 1.3 +15 -0 src/share/examples/diskless/README.BOOTP 1.3 +15 -0 src/share/examples/diskless/README.TEMPLATING 1.3 +0 -21 src/share/examples/diskless/archive.backplane.com/README (dead) 1.2 +0 -8 src/share/examples/diskless/archive.backplane.com/fstab (dead) 1.2 +0 -31 src/share/examples/diskless/archive.backplane.com/ipfw.conf (dead) 1.2 +0 -4 src/share/examples/diskless/archive.backplane.com/motd (dead) 1.2 +0 -19 src/share/examples/diskless/archive.backplane.com/rc.conf.local (dead) 1.2 +0 -9 src/share/examples/diskless/archive.backplane.com/resolv.conf (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 22: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 E7A2A37B402; Thu, 14 Mar 2002 22:52:38 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F6qcq37062; Thu, 14 Mar 2002 22:52:38 -0800 (PST) (envelope-from luigi) Message-Id: <200203150652.g2F6qcq37062@freefall.freebsd.org> From: Luigi Rizzo Date: Thu, 14 Mar 2002 22:52:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/examples/diskless ME 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/03/14 22:52:38 PST Modified files: (Branch: RELENG_4) share/examples/diskless ME Log: Add a comment informing that the information in this file might be stale. Revision Changes Path 1.3.4.1 +15 -0 src/share/examples/diskless/ME To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 22:53: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 94FBB37B416; Thu, 14 Mar 2002 22:53:03 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F6r3l37182; Thu, 14 Mar 2002 22:53:03 -0800 (PST) (envelope-from luigi) Message-Id: <200203150653.g2F6r3l37182@freefall.freebsd.org> From: Luigi Rizzo Date: Thu, 14 Mar 2002 22:53:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/examples/diskless/209.157.86.12 README rc.conf.local src/share/examples/diskless/HT.DISKLESS fstab rc.conf.local rc.local syslog.conf ttys xdm-config src/share/examples/diskless/HT.STD aliases forward.map ndomain.map ... 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/03/14 22:53:03 PST Removed files: (Branch: RELENG_4) share/examples/diskless/209.157.86.12 README rc.conf.local share/examples/diskless/HT.DISKLESS fstab rc.conf.local rc.local syslog.conf ttys xdm-config share/examples/diskless/HT.STD aliases forward.map ndomain.map syslog.conf ttys share/examples/diskless/archive.backplane.com README fstab ipfw.conf motd rc.conf.local resolv.conf Log: Remove files referring to the old diskless configuration to avoid confusion. Revision Changes Path 1.2.4.1 +0 -27 src/share/examples/diskless/209.157.86.12/README (dead) 1.1.4.1 +0 -9 src/share/examples/diskless/209.157.86.12/rc.conf.local (dead) 1.1.4.1 +0 -5 src/share/examples/diskless/HT.DISKLESS/fstab (dead) 1.2.4.1 +0 -34 src/share/examples/diskless/HT.DISKLESS/rc.conf.local (dead) 1.2.4.1 +0 -77 src/share/examples/diskless/HT.DISKLESS/rc.local (dead) 1.1.4.1 +0 -3 src/share/examples/diskless/HT.DISKLESS/syslog.conf (dead) 1.1.4.1 +0 -52 src/share/examples/diskless/HT.DISKLESS/ttys (dead) 1.1.4.1 +0 -15 src/share/examples/diskless/HT.DISKLESS/xdm-config (dead) 1.1.4.1 +0 -30 src/share/examples/diskless/HT.STD/aliases (dead) 1.1.4.1 +0 -6 src/share/examples/diskless/HT.STD/forward.map (dead) 1.1.4.1 +0 -11 src/share/examples/diskless/HT.STD/ndomain.map (dead) 1.1.4.1 +0 -11 src/share/examples/diskless/HT.STD/syslog.conf (dead) 1.1.4.1 +0 -52 src/share/examples/diskless/HT.STD/ttys (dead) 1.2.2.1 +0 -21 src/share/examples/diskless/archive.backplane.com/README (dead) 1.1.2.1 +0 -8 src/share/examples/diskless/archive.backplane.com/fstab (dead) 1.1.2.1 +0 -31 src/share/examples/diskless/archive.backplane.com/ipfw.conf (dead) 1.1.2.1 +0 -4 src/share/examples/diskless/archive.backplane.com/motd (dead) 1.1.2.1 +0 -19 src/share/examples/diskless/archive.backplane.com/rc.conf.local (dead) 1.1.2.1 +0 -9 src/share/examples/diskless/archive.backplane.com/resolv.conf (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 23:12: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 EA1EE37B405; Thu, 14 Mar 2002 23:12:55 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F7CtA44007; Thu, 14 Mar 2002 23:12:55 -0800 (PST) (envelope-from sobomax) Message-Id: <200203150712.g2F7CtA44007@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 14 Mar 2002 23:12:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/imlib Makefile distinfo ports/graphics/imlib/files patch-Imlib_Makefile.in patch-gdk__imlib_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/03/14 23:12:55 PST Modified files: graphics/imlib Makefile distinfo graphics/imlib/files patch-Imlib_Makefile.in patch-gdk__imlib_Makefile.in Log: Update to 1.9.13. Revision Changes Path 1.80 +3 -2 ports/graphics/imlib/Makefile 1.26 +1 -1 ports/graphics/imlib/distinfo 1.4 +6 -6 ports/graphics/imlib/files/patch-Imlib_Makefile.in 1.4 +6 -8 ports/graphics/imlib/files/patch-gdk__imlib_Makefile.in To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 23: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 2810C37B416; Thu, 14 Mar 2002 23:16:55 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F7GtI48412; Thu, 14 Mar 2002 23:16:55 -0800 (PST) (envelope-from roam) Message-Id: <200203150716.g2F7GtI48412@freefall.freebsd.org> From: Peter Pentchev Date: Thu, 14 Mar 2002 23:16:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/share/sgml teams.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 roam 2002/03/14 23:16:55 PST Modified files: en_US.ISO8859-1/share/sgml teams.ent Log: Add entries for the FreeBSD Core Secretary and the CVS Repository Meisters. Reviewed by: keramida Approved by: keramida, silence on -doc Revision Changes Path 1.2 +4 -0 doc/en_US.ISO8859-1/share/sgml/teams.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 23:18: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 1AABD37B404; Thu, 14 Mar 2002 23:18:10 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F7IAT48567; Thu, 14 Mar 2002 23:18:10 -0800 (PST) (envelope-from alfred) Message-Id: <200203150718.g2F7IAT48567@freefall.freebsd.org> From: Alfred Perlstein Date: Thu, 14 Mar 2002 23:18:10 -0800 (PST) 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 alfred 2002/03/14 23:18:10 PST Modified files: sys/kern sys_pipe.c Log: Bug fixes: Missed a place where the pipe sleep lock was needed in order to safely grab Giant, fix it and add an assertion to make sure this doesn't happen again. Fix typos in the PIPE_GET_GIANT/PIPE_DROP_GIANT that could cause the wrong mutex to get passed to PIPE_LOCK/PIPE_UNLOCK. Fix a location where the wrong pipe was being passed to PIPE_GET_GIANT/PIPE_DROP_GIANT. Revision Changes Path 1.96 +10 -5 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 Thu Mar 14 23:26: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id 5A85F37B402; Thu, 14 Mar 2002 23:25:54 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id JAA75144; Fri, 15 Mar 2002 09:25:18 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h231.229.dialup.iptcom.net [212.9.229.231]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id JAA61640; Fri, 15 Mar 2002 09:25:13 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id g2F7O1B97003; Fri, 15 Mar 2002 09:24:01 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C91A1D0.7D6E5A83@FreeBSD.org> Date: Fri, 15 Mar 2002 09:25:04 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Glenn Johnson Cc: Michael J Estes , Christopher Masto , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/mozilla Makefile pkg-plist ports/www/mozilla/files patch-modules::libpref::src::unix::unix.js References: <200203142021.g2EKL6q07845@freefall.freebsd.org> <20020314203631.GA70960@netmonger.net> <1016157801.98704.2.camel@estes.2y.net> <20020315050956.GA43971@gforce.johnson.home> 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 Glenn Johnson wrote: > > On Thu, Mar 14, 2002 at 06:03:21PM -0800, Michael J Estes wrote: > > > I put the following prefs in my > > ~/.mozilla/default/XXXXXXXX.slt/prefs.js > > > > user_pref("font.FreeType2.autohinted", true); > > user_pref("font.FreeType2.enable", true); > > user_pref("font.directory.truetype.1","/usr/X11R6/lib/X11/fonts/Type1"); > > user_pref("font.directory.truetype.2","/usr/X11R6/lib/X11/fonts/webfonts"); > > user_pref("font.directory.truetype.3","/usr/X11R6/lib/X11/fonts/truetype"); > > user_pref("font.freetype2.shared-library", "libfreetype.so.9"); > > > > and I get freetype fonts in mozilla > > Do you find that the fonts are not as good looking when the above is > done? On my system, the fonts look heavier and have an "out of focus" > look when they are anti-aliased. Try to disable autohinting (pref("font.FreeType2.autohinted", false)) - this could help, at least it helped me. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 23:26: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from alcatraz.iptelecom.net.ua (alcatraz.iptelecom.net.ua [212.9.224.15]) by hub.freebsd.org (Postfix) with ESMTP id 6907B37B416; Thu, 14 Mar 2002 23:25:58 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id JAA75462; Fri, 15 Mar 2002 09:25:42 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h231.229.dialup.iptcom.net [212.9.229.231]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id JAA61785; Fri, 15 Mar 2002 09:25:40 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id g2F7P7B97023; Fri, 15 Mar 2002 09:25:07 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C91A212.BEE1C794@FreeBSD.org> Date: Fri, 15 Mar 2002 09:26:10 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Christopher Masto Cc: Michael J Estes , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/mozilla Makefile pkg-plist ports/www/mozilla/files patch-modules::libpref::src::unix::unix.js References: <200203142021.g2EKL6q07845@freefall.freebsd.org> <20020314203631.GA70960@netmonger.net> <1016157801.98704.2.camel@estes.2y.net> <20020315035309.GA76524@masto.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Christopher Masto wrote: > > On Thu, Mar 14, 2002 at 06:03:21PM -0800, Michael J Estes wrote: > > I put the following prefs in my ~/.mozilla/default/XXXXXXXX.slt/prefs.js > > D'oh. I know I tried that first, but I must have made a mistake > and thought they didn't work there. I didn't work here as well. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 23:33: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 68D2037B402; Thu, 14 Mar 2002 23:33:50 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F7XoK52763; Thu, 14 Mar 2002 23:33:50 -0800 (PST) (envelope-from sobomax) Message-Id: <200203150733.g2F7XoK52763@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 14 Mar 2002 23:33:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/java/jdk13 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/03/14 23:33:50 PST Modified files: java/jdk13 pkg-plist Log: Correct when WITHOUT_PLUGIN is defined. PR: 35899 Submitted by: Lev Serebryakov Revision Changes Path 1.7 +5 -5 ports/java/jdk13/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 Mar 14 23:39:21 2002 Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 904) id 9BE5437B400; Thu, 14 Mar 2002 23:39:18 -0800 (PST) Date: Thu, 14 Mar 2002 23:39:18 -0800 From: Max Khon To: Brian Somers Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/databases/p5-DBD-Pg Makefile Message-ID: <20020314233918.A9991@hub.freebsd.org> References: <200203142219.g2EMJ2vJ015954@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200203142219.g2EMJ2vJ015954@hak.lan.Awfulhak.org>; from brian@freebsd-services.com on Thu, Mar 14, 2002 at 10:19:02PM +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 hi, there! On Thu, Mar 14, 2002 at 10:19:02PM +0000, Brian Somers wrote: > > Modified files: > > databases/p5-DBD-Pg Makefile > > Log: > > - allow this port to be built with PostgreSQL 7.1 port (use pg_config) > > - grab maintainership > > > > Revision Changes Path > > 1.38 +14 -4 ports/databases/p5-DBD-Pg/Makefile > > Hmm, this undoes my ``grabbing'' of maintainership in the previous > commit. ugh, sorry, should I change it back to ports@freebsd-services.com? /fjoe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 23:42: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 6A06B37B419; Thu, 14 Mar 2002 23:42:49 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F7gnj53969; Thu, 14 Mar 2002 23:42:49 -0800 (PST) (envelope-from obrien) Message-Id: <200203150742.g2F7gnj53969@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 14 Mar 2002 23:42:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/ld Makefile.sparc64 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/03/14 23:42:49 PST Modified files: gnu/usr.bin/binutils/ld Makefile.sparc64 Log: Uggg!! LD ME HARDER!! Rev 1.2 changed the default emulation from ``elf64_sparc'' to ``elf32_sparc'' and I never noticed it after my review of rev 1.1. Backing the change of the default emulation out, and Wa-la!, I can now build a native [and usable] binutils. WTF, the "-m elf64_sparc" parameter handed to `ld' by `gcc' wasn't DTRT is beyond me. Revision Changes Path 1.10 +1 -1 src/gnu/usr.bin/binutils/ld/Makefile.sparc64 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 23:45: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 748C937B400; Thu, 14 Mar 2002 23:45:18 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F7jID54428; Thu, 14 Mar 2002 23:45:18 -0800 (PST) (envelope-from obrien) Message-Id: <200203150745.g2F7jID54428@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 14 Mar 2002 23:45:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/libbfd/sparc64 bfd.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/03/14 23:45:18 PST Modified files: gnu/usr.bin/binutils/libbfd/sparc64 bfd.h Log: Update for binutils_2_12_anoncvs_20020221. Revision Changes Path 1.7 +551 -456 src/gnu/usr.bin/binutils/libbfd/sparc64/bfd.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 23:45:46 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A28DD37B404; Thu, 14 Mar 2002 23:45:42 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F7jg154511; Thu, 14 Mar 2002 23:45:42 -0800 (PST) (envelope-from obrien) Message-Id: <200203150745.g2F7jg154511@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 14 Mar 2002 23:45:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/binutils/as/sparc64-freebsd targ-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 obrien 2002/03/14 23:45:42 PST Modified files: gnu/usr.bin/binutils/as/sparc64-freebsd targ-cpu.h Log: Minor style nit. Revision Changes Path 1.3 +1 -0 src/gnu/usr.bin/binutils/as/sparc64-freebsd/targ-cpu.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 23:46: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 52D2D37B400; Thu, 14 Mar 2002 23:46:22 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F7kMu54997; Thu, 14 Mar 2002 23:46:22 -0800 (PST) (envelope-from roam) Message-Id: <200203150746.g2F7kMu54997@freefall.freebsd.org> From: Peter Pentchev Date: Thu, 14 Mar 2002 23:46:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/developers-handbook/ipv6 chapter.sgml doc/en_US.ISO8859-1/books/developers-handbook/l10n chapter.sgml doc/en_US.ISO8859-1/books/developers-handbook/locking chapter.sgml doc/en_US.ISO8859-1/books/developers-handbook/sound chapter.sgml doc/en_US.ISO8859-1/books/developers-handbook/x86 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 roam 2002/03/14 23:46:22 PST Modified files: en_US.ISO8859-1/books/developers-handbook/ipv6 chapter.sgml en_US.ISO8859-1/books/developers-handbook/l10n chapter.sgml en_US.ISO8859-1/books/developers-handbook/locking chapter.sgml en_US.ISO8859-1/books/developers-handbook/sound chapter.sgml en_US.ISO8859-1/books/developers-handbook/x86 chapter.sgml en_US.ISO8859-1/books/faq book.sgml en_US.ISO8859-1/books/fdp-primer book.sgml en_US.ISO8859-1/books/fdp-primer/overview chapter.sgml en_US.ISO8859-1/books/fdp-primer/sgml-markup chapter.sgml en_US.ISO8859-1/books/fdp-primer/structure chapter.sgml en_US.ISO8859-1/books/fdp-primer/tools chapter.sgml en_US.ISO8859-1/books/fdp-primer/translations chapter.sgml en_US.ISO8859-1/books/handbook book.sgml en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml en_US.ISO8859-1/books/handbook/contrib chapter.sgml en_US.ISO8859-1/books/handbook/eresources chapter.sgml en_US.ISO8859-1/books/handbook/introduction chapter.sgml en_US.ISO8859-1/books/handbook/mirrors chapter.sgml en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml en_US.ISO8859-1/books/handbook/ports chapter.sgml Log: Convert the names, descriptions and e-mail addresses of FreeBSD committers and mailing lists to &a.xxx; entities. Reviewed by: keramida Approved by: keramida, silence on -doc Revision Changes Path 1.9 +1 -1 doc/en_US.ISO8859-1/books/developers-handbook/ipv6/chapter.sgml 1.5 +1 -1 doc/en_US.ISO8859-1/books/developers-handbook/l10n/chapter.sgml 1.3 +3 -3 doc/en_US.ISO8859-1/books/developers-handbook/locking/chapter.sgml 1.2 +1 -1 doc/en_US.ISO8859-1/books/developers-handbook/sound/chapter.sgml 1.9 +1 -2 doc/en_US.ISO8859-1/books/developers-handbook/x86/chapter.sgml 1.415 +7 -7 doc/en_US.ISO8859-1/books/faq/book.sgml 1.16 +4 -0 doc/en_US.ISO8859-1/books/fdp-primer/book.sgml 1.14 +1 -1 doc/en_US.ISO8859-1/books/fdp-primer/overview/chapter.sgml 1.44 +3 -3 doc/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml 1.8 +3 -3 doc/en_US.ISO8859-1/books/fdp-primer/structure/chapter.sgml 1.18 +2 -2 doc/en_US.ISO8859-1/books/fdp-primer/tools/chapter.sgml 1.16 +5 -6 doc/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml 1.125 +2 -2 doc/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml 1.122 +2 -0 doc/en_US.ISO8859-1/books/handbook/book.sgml 1.470 +2 -2 doc/en_US.ISO8859-1/books/handbook/contrib/chapter.sgml 1.79 +2 -2 doc/en_US.ISO8859-1/books/handbook/eresources/chapter.sgml 1.64 +1 -1 doc/en_US.ISO8859-1/books/handbook/introduction/chapter.sgml 1.200 +14 -14 doc/en_US.ISO8859-1/books/handbook/mirrors/chapter.sgml 1.152 +2 -4 doc/en_US.ISO8859-1/books/handbook/pgpkeys/chapter.sgml 1.161 +1 -1 doc/en_US.ISO8859-1/books/handbook/ports/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 23:51: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 E06E437B402; Thu, 14 Mar 2002 23:51:26 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F7pQM56006; Thu, 14 Mar 2002 23:51:26 -0800 (PST) (envelope-from sobomax) Message-Id: <200203150751.g2F7pQM56006@freefall.freebsd.org> From: Maxim Sobolev Date: Thu, 14 Mar 2002 23:51:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/flashplugin-mozilla Makefile ports/www/flashplugin-mozilla/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 sobomax 2002/03/14 23:51:26 PST Modified files: www/flashplugin-mozilla Makefile www/flashplugin-mozilla/files patch-aa Log: Make it working with Mozilla 0.9.9 by explicitly linking libXt in. Bump PORTREVISION. Submitted by: Mike Estes Revision Changes Path 1.2 +1 -0 ports/www/flashplugin-mozilla/Makefile 1.2 +2 -2 ports/www/flashplugin-mozilla/files/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 23:57: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 33A7637B402; Thu, 14 Mar 2002 23:57:17 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F7vHf56983; Thu, 14 Mar 2002 23:57:17 -0800 (PST) (envelope-from roam) Message-Id: <200203150757.g2F7vHf56983@freefall.freebsd.org> From: Peter Pentchev Date: Thu, 14 Mar 2002 23:57:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/developers-handbook/l10n chapter.sgml doc/en_US.ISO8859-1/books/faq book.sgml doc/en_US.ISO8859-1/books/fdp-primer/sgml-markup chapter.sgml doc/en_US.ISO8859-1/books/fdp-primer/structure chapter.sgml doc/en_US.ISO8859-1/books/fdp-primer/tools chapter.sgml doc/en_US.ISO8859-1/books/fdp-primer/translations 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 roam 2002/03/14 23:57:16 PST Modified files: en_US.ISO8859-1/books/developers-handbook/l10n chapter.sgml en_US.ISO8859-1/books/faq book.sgml en_US.ISO8859-1/books/fdp-primer/sgml-markup chapter.sgml en_US.ISO8859-1/books/fdp-primer/structure chapter.sgml en_US.ISO8859-1/books/fdp-primer/tools chapter.sgml en_US.ISO8859-1/books/fdp-primer/translations chapter.sgml en_US.ISO8859-1/books/handbook/eresources chapter.sgml Log: Whitespace-only fixups for the committers and lists entities conversion. Revision Changes Path 1.6 +3 -4 doc/en_US.ISO8859-1/books/developers-handbook/l10n/chapter.sgml 1.416 +5 -10 doc/en_US.ISO8859-1/books/faq/book.sgml 1.45 +1 -2 doc/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml 1.9 +1 -2 doc/en_US.ISO8859-1/books/fdp-primer/structure/chapter.sgml 1.19 +2 -3 doc/en_US.ISO8859-1/books/fdp-primer/tools/chapter.sgml 1.17 +7 -9 doc/en_US.ISO8859-1/books/fdp-primer/translations/chapter.sgml 1.80 +1 -2 doc/en_US.ISO8859-1/books/handbook/eresources/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 23:57: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 392C337B400; Thu, 14 Mar 2002 23:57:50 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F7voq57146; Thu, 14 Mar 2002 23:57:50 -0800 (PST) (envelope-from obrien) Message-Id: <200203150757.g2F7voq57146@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 14 Mar 2002 23:57:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/rsync/files patch-zlib-1.1.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 obrien 2002/03/14 23:57:50 PST Removed files: net/rsync/files patch-zlib-1.1.3 Log: Rsync has updated its copy of zlib from 1.1.2 to 1.1.4, so we don't need this patch to upgrade 1.1.2 to 1.1.3 anymore. Revision Changes Path 1.2 +0 -1276 ports/net/rsync/files/patch-zlib-1.1.3 (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 23: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 B870637B400; Thu, 14 Mar 2002 23:58:13 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F7wDv57207; Thu, 14 Mar 2002 23:58:13 -0800 (PST) (envelope-from obrien) Message-Id: <200203150758.g2F7wDv57207@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 14 Mar 2002 23:58:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/rsync/files patch-clientserver.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/14 23:58:13 PST Removed files: net/rsync/files patch-clientserver.c Log: This vendor security fix, was part of 2.5.3 and later. So we don't need it anymore. Revision Changes Path 1.2 +0 -27 ports/net/rsync/files/patch-clientserver.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 Mar 14 23:58: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 57A0637B400; Thu, 14 Mar 2002 23:58:44 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F7wir57307; Thu, 14 Mar 2002 23:58:44 -0800 (PST) (envelope-from obrien) Message-Id: <200203150758.g2F7wir57307@freefall.freebsd.org> From: "David E. O'Brien" Date: Thu, 14 Mar 2002 23:58:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/rsync 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/03/14 23:58:44 PST Modified files: net/rsync Makefile distinfo Log: Upgrade to version 2.5.4. Revision Changes Path 1.64 +3 -3 ports/net/rsync/Makefile 1.31 +1 -1 ports/net/rsync/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Thu Mar 14 23:59: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 3901E37B420; Thu, 14 Mar 2002 23:59:42 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F7xgL57649; Thu, 14 Mar 2002 23:59:42 -0800 (PST) (envelope-from ijliao) Message-Id: <200203150759.g2F7xgL57649@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 23:59:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/14 23:59:41 PST Modified files: . modules Log: py-period --> ports/devel/py-period Revision Changes Path 1.4844 +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 Mar 14 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 112C137B41D; Thu, 14 Mar 2002 23:59:40 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F7xef57608; Thu, 14 Mar 2002 23:59:40 -0800 (PST) (envelope-from ijliao) Message-Id: <200203150759.g2F7xef57608@freefall.freebsd.org> From: Ying-Chieh Liao Date: Thu, 14 Mar 2002 23:59:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/py-period 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/03/14 23:59:40 PST Modified files: devel Makefile Added files: devel/py-period Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add py-period 0.5 A basic time period checking libary Revision Changes Path 1.778 +1 -0 ports/devel/Makefile 1.1 +29 -0 ports/devel/py-period/Makefile (new) 1.1 +1 -0 ports/devel/py-period/distinfo (new) 1.1 +1 -0 ports/devel/py-period/pkg-comment (new) 1.1 +5 -0 ports/devel/py-period/pkg-descr (new) 1.1 +4 -0 ports/devel/py-period/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 Mar 15 0: 1: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 61BF337B495; Fri, 15 Mar 2002 00:00:38 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F80c957876; Fri, 15 Mar 2002 00:00:38 -0800 (PST) (envelope-from luigi) Message-Id: <200203150800.g2F80c957876@freefall.freebsd.org> From: Luigi Rizzo Date: Fri, 15 Mar 2002 00:00:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc.diskless1 rc.diskless2 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/03/15 00:00:38 PST Modified files: (Branch: RELENG_4) etc rc.diskless1 rc.diskless2 share/examples/diskless clone_root Log: Two [minor] performance fixes for diskless configurations: when copying large trees into /etc and /dev, try to fetch the content from a cpio archive if there is one available, so the operation does not take multiple RTTs for each individual file. clone_root has been updated to generate the cpio archives, rc.diskless* to make use of them. Not committed to -current yet because the relevant files are already slightly different in the two branches, and I would like to have a chance to test it there first before resyncing the two versions. Revision Changes Path 1.5.2.9 +11 -2 src/etc/rc.diskless1 1.5.2.12 +11 -4 src/etc/rc.diskless2 1.1.2.3 +4 -0 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 Fri Mar 15 0: 3:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D2C2437B400; Fri, 15 Mar 2002 00:03:46 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F83kG58307; Fri, 15 Mar 2002 00:03:46 -0800 (PST) (envelope-from alfred) Message-Id: <200203150803.g2F83kG58307@freefall.freebsd.org> From: Alfred Perlstein Date: Fri, 15 Mar 2002 00:03:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_descrip.c kern_ktrace.c sys_generic.c sys_socket.c vfs_bio.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 alfred 2002/03/15 00:03:46 PST Modified files: sys/kern kern_descrip.c kern_ktrace.c sys_generic.c sys_socket.c vfs_bio.c vfs_vnops.c Log: Giant pushdown for read/write/pread/pwrite syscalls. kern/kern_descrip.c: Aquire Giant in fdrop_locked when file refcount hits zero, this removes the requirement for the caller to own Giant for the most part. kern/kern_ktrace.c: Aquire Giant in ktrgenio, simplifies locking in upper read/write syscalls. kern/vfs_bio.c: Aquire Giant in bwillwrite if needed. kern/sys_generic.c Giant pushdown, remove Giant for: read, pread, write and pwrite. readv and writev aren't done yet because of the possible malloc calls for iov to uio processing. kern/sys_socket.c Grab giant in the socket fo_read/write functions. kern/vfs_vnops.c Grab giant in the vnode fo_read/write functions. Revision Changes Path 1.128 +2 -0 src/sys/kern/kern_descrip.c 1.61 +3 -0 src/sys/kern/kern_ktrace.c 1.94 +0 -8 src/sys/kern/sys_generic.c 1.38 +12 -2 src/sys/kern/sys_socket.c 1.303 +2 -0 src/sys/kern/vfs_bio.c 1.139 +7 -1 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 Fri Mar 15 0:10:26 2002 Delivered-To: cvs-all@freebsd.org Received: from sunny.newgold.net (durham-ar1-174-172.durham.dsl.gtei.net [4.40.174.172]) by hub.freebsd.org (Postfix) with ESMTP id E8F8C37B417; Fri, 15 Mar 2002 00:10:21 -0800 (PST) Received: from sunny.newgold.net (freebsd@localhost [IPv6:::1]) by sunny.newgold.net (8.12.1/8.12.1) with ESMTP id g2F7o6DF027927; Fri, 15 Mar 2002 07:51:28 GMT Received: (from freebsd@localhost) by sunny.newgold.net (8.12.1/8.12.1/Submit) id g2F7o5Y7023463; Fri, 15 Mar 2002 07:50:05 GMT Date: Fri, 15 Mar 2002 07:48:44 +0000 From: "J. Mallett" To: Robert Watson Cc: "David O'Brien" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/ps lomac.c lomac.h src/bin/ls lomac.c lomac.h Message-ID: <20020315074843.A28604@FreeBSD.ORG> References: <20020314164056.C79213@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.21i 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, Mar 14, 2002 at 09:14:17PM -0500, Robert Watson wrote: > > I have never heard this acronym in all my Beltway-Bandit days. > > I think maybe it is a NA-specific one? > > I've heard it used by a number of companies in the DC area. My > understanding was that it was a relatively standard business term. I > could be wrong. :-) No, it's very very standard. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 0: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 458E037B405; Fri, 15 Mar 2002 00:10:48 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F8Amb63247; Fri, 15 Mar 2002 00:10:48 -0800 (PST) (envelope-from roam) Message-Id: <200203150810.g2F8Amb63247@freefall.freebsd.org> From: Peter Pentchev Date: Fri, 15 Mar 2002 00:10:48 -0800 (PST) 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/formatting-media article.sgml doc/en_US.ISO8859-1/articles/freebsd-questions article.sgml doc/en_US.ISO8859-1/articles/hubs article.sgml doc/en_US.ISO8859-1/articles/new-users article.sgml ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2002/03/15 00:10:48 PST Modified files: en_US.ISO8859-1/articles/committers-guide article.sgml en_US.ISO8859-1/articles/contributing article.sgml en_US.ISO8859-1/articles/formatting-media article.sgml en_US.ISO8859-1/articles/freebsd-questions article.sgml en_US.ISO8859-1/articles/hubs article.sgml en_US.ISO8859-1/articles/new-users article.sgml en_US.ISO8859-1/articles/releng article.sgml en_US.ISO8859-1/articles/releng-packages article.sgml Log: Convert names, descriptions and e-mail addresses of FreeBSD committers and mailing lists to SGML entities. Reviewed by: keramida Approved by: keramida, silence on -doc Revision Changes Path 1.99 +14 -14 doc/en_US.ISO8859-1/articles/committers-guide/article.sgml 1.477 +2 -2 doc/en_US.ISO8859-1/articles/contributing/article.sgml 1.23 +4 -2 doc/en_US.ISO8859-1/articles/formatting-media/article.sgml 1.9 +3 -1 doc/en_US.ISO8859-1/articles/freebsd-questions/article.sgml 1.11 +13 -12 doc/en_US.ISO8859-1/articles/hubs/article.sgml 1.30 +3 -1 doc/en_US.ISO8859-1/articles/new-users/article.sgml 1.2 +4 -2 doc/en_US.ISO8859-1/articles/releng-packages/article.sgml 1.18 +16 -18 doc/en_US.ISO8859-1/articles/releng/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 0:21: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 2AB3037B416; Fri, 15 Mar 2002 00:21:42 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F8LgL64814; Fri, 15 Mar 2002 00:21:42 -0800 (PST) (envelope-from obrien) Message-Id: <200203150821.g2F8LgL64814@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 15 Mar 2002 00:21:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf Makefile.sparc64 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/03/15 00:21:42 PST Modified files: sys/conf Makefile.sparc64 Log: Remove all the custom toolchain knob tweaking. We are now using a native binutils, and you have to have CC=gcc in your /etc/make.conf to compile userland anyway. Revision Changes Path 1.17 +0 -13 src/sys/conf/Makefile.sparc64 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 0:28: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 498EA37B404; Fri, 15 Mar 2002 00:28:14 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F8SEh65808; Fri, 15 Mar 2002 00:28:14 -0800 (PST) (envelope-from roam) Message-Id: <200203150828.g2F8SEh65808@freefall.freebsd.org> From: Peter Pentchev Date: Fri, 15 Mar 2002 00:28:14 -0800 (PST) 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/formatting-media article.sgml doc/en_US.ISO8859-1/articles/freebsd-questions article.sgml doc/en_US.ISO8859-1/articles/hubs article.sgml doc/en_US.ISO8859-1/articles/new-users article.sgml ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2002/03/15 00:28:14 PST Modified files: en_US.ISO8859-1/articles/committers-guide article.sgml en_US.ISO8859-1/articles/contributing article.sgml en_US.ISO8859-1/articles/formatting-media article.sgml en_US.ISO8859-1/articles/freebsd-questions article.sgml en_US.ISO8859-1/articles/hubs article.sgml en_US.ISO8859-1/articles/new-users article.sgml en_US.ISO8859-1/articles/releng article.sgml en_US.ISO8859-1/articles/releng-packages article.sgml Log: Whitespace-only fixups from the e-mail to SGML entities conversion. Revision Changes Path 1.100 +11 -21 doc/en_US.ISO8859-1/articles/committers-guide/article.sgml 1.478 +1 -2 doc/en_US.ISO8859-1/articles/contributing/article.sgml 1.24 +4 -5 doc/en_US.ISO8859-1/articles/formatting-media/article.sgml 1.10 +1 -2 doc/en_US.ISO8859-1/articles/freebsd-questions/article.sgml 1.12 +7 -11 doc/en_US.ISO8859-1/articles/hubs/article.sgml 1.31 +1 -2 doc/en_US.ISO8859-1/articles/new-users/article.sgml 1.3 +3 -3 doc/en_US.ISO8859-1/articles/releng-packages/article.sgml 1.19 +8 -10 doc/en_US.ISO8859-1/articles/releng/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 0:40: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 2EB3D37B404; Fri, 15 Mar 2002 00:40:52 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F8eqw67634; Fri, 15 Mar 2002 00:40:52 -0800 (PST) (envelope-from sobomax) Message-Id: <200203150840.g2F8eqw67634@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 15 Mar 2002 00:40:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gnomebuild/files patch-src::controls::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/03/15 00:40:51 PST Added files: devel/gnomebuild/files patch-src::controls::Makefile.in Log: Unbreak with latest gnomevfs. Submitted by: bento Revision Changes Path 1.1 +14 -0 ports/devel/gnomebuild/files/patch-src::controls::Makefile.in (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 0:44: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 2A78837B405; Fri, 15 Mar 2002 00:44:44 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F8ii668190; Fri, 15 Mar 2002 00:44:44 -0800 (PST) (envelope-from sobomax) Message-Id: <200203150844.g2F8ii668190@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 15 Mar 2002 00:44:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math/scigraphica 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/03/15 00:44:44 PST Modified files: math/scigraphica pkg-plist Log: Fix `make package'. Revision Changes Path 1.9 +0 -2 ports/math/scigraphica/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 Mar 15 0:45: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 5579637B400; Fri, 15 Mar 2002 00:45:51 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F8jp568471; Fri, 15 Mar 2002 00:45:51 -0800 (PST) (envelope-from maxim) Message-Id: <200203150845.g2F8jp568471@freefall.freebsd.org> From: Maxim Konovalov Date: Fri, 15 Mar 2002 00:45:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/ftpd ftpd.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 maxim 2002/03/15 00:45:51 PST Modified files: (Branch: RELENG_4) libexec/ftpd ftpd.c Log: MFC rev. 1.98: fix infinite loop around sendfile(2) after sending >4GB file. Revision Changes Path 1.62.2.19 +3 -5 src/libexec/ftpd/ftpd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 0:46: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 B0DD937B404; Fri, 15 Mar 2002 00:46:18 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F8kIm68648; Fri, 15 Mar 2002 00:46:18 -0800 (PST) (envelope-from luigi) Message-Id: <200203150846.g2F8kIm68648@freefall.freebsd.org> From: Luigi Rizzo Date: Fri, 15 Mar 2002 00:46:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/picobsd/dial PICOBSD src/release/picobsd/isp PICOBSD crunch.conf src/release/picobsd/net PICOBSD crunch.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 luigi 2002/03/15 00:46:18 PST Modified files: release/picobsd/dial PICOBSD release/picobsd/isp PICOBSD crunch.conf release/picobsd/net PICOBSD crunch.conf Log: Batch of fixes to the configuration files from Bruce Montague Revision Changes Path 1.14 +1 -2 src/release/picobsd/dial/PICOBSD 1.14 +4 -5 src/release/picobsd/isp/PICOBSD 1.4 +4 -3 src/release/picobsd/isp/crunch.conf 1.14 +4 -4 src/release/picobsd/net/PICOBSD 1.5 +3 -3 src/release/picobsd/net/crunch.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 0:56: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 64C6937B402; Fri, 15 Mar 2002 00:56:30 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F8uUu70182; Fri, 15 Mar 2002 00:56:30 -0800 (PST) (envelope-from kuriyama) Message-Id: <200203150856.g2F8uUu70182@freefall.freebsd.org> From: Jun Kuriyama Date: Fri, 15 Mar 2002 00:56:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/ja_JP.eucJP/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/03/15 00:56:30 PST Modified files: release/doc/ja_JP.eucJP/relnotes/common new.sgml Log: MFen (SA-02:13 is not yet translated). Revision Changes Path 1.50 +46 -17 src/release/doc/ja_JP.eucJP/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 1: 2: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 53D4037B405; Fri, 15 Mar 2002 01:02:26 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F92QM71185; Fri, 15 Mar 2002 01:02:26 -0800 (PST) (envelope-from luigi) Message-Id: <200203150902.g2F92QM71185@freefall.freebsd.org> From: Luigi Rizzo Date: Fri, 15 Mar 2002 01:02:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man8 picobsd.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 luigi 2002/03/15 01:02:26 PST Modified files: share/man/man8 picobsd.8 Log: Bunch of manpage fixes from Bruce Montague. Revision Changes Path 1.15 +77 -73 src/share/man/man8/picobsd.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 1: 3: 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 A14AC37B41D; Fri, 15 Mar 2002 01:02:34 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F92YC71219; Fri, 15 Mar 2002 01:02:34 -0800 (PST) (envelope-from sobomax) Message-Id: <200203150902.g2F92YC71219@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 15 Mar 2002 01:02:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/encompass 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/03/15 01:02:34 PST Modified files: www/encompass Makefile distinfo Log: Distfile have been rerolled without version bump, therefore update checksum. There are some non-whitespace differencies beetween the old and new versions, therefore bump PORTREVISION. Submitted by: bento Revision Changes Path 1.23 +1 -0 ports/www/encompass/Makefile 1.10 +1 -1 ports/www/encompass/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 1: 5: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 9675C37B416; Fri, 15 Mar 2002 01:05:25 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F95Pa74989; Fri, 15 Mar 2002 01:05:25 -0800 (PST) (envelope-from kuriyama) Message-Id: <200203150905.g2F95Pa74989@freefall.freebsd.org> From: Jun Kuriyama Date: Fri, 15 Mar 2002 01:05:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/ja_JP.eucJP/errata article.sgml src/release/doc/ja_JP.eucJP/hardware/common dev.sgml src/release/doc/ja_JP.eucJP/hardware/sparc64 article.sgml src/release/doc/ja_JP.eucJP/relnotes/sparc64 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/03/15 01:05:25 PST Modified files: release/doc/ja_JP.eucJP/errata article.sgml release/doc/ja_JP.eucJP/hardware/common dev.sgml release/doc/ja_JP.eucJP/hardware/sparc64 article.sgml release/doc/ja_JP.eucJP/relnotes/sparc64 article.sgml Log: MFen. Revision Changes Path 1.5 +3 -3 src/release/doc/ja_JP.eucJP/errata/article.sgml 1.3 +6 -3 src/release/doc/ja_JP.eucJP/hardware/common/dev.sgml 1.2 +3 -3 src/release/doc/ja_JP.eucJP/hardware/sparc64/article.sgml 1.3 +3 -3 src/release/doc/ja_JP.eucJP/relnotes/sparc64/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 Mar 15 1:12: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 5118B37B400; Fri, 15 Mar 2002 01:12:32 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F9CWq76787; Fri, 15 Mar 2002 01:12:32 -0800 (PST) (envelope-from ijliao) Message-Id: <200203150912.g2F9CWq76787@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 15 Mar 2002 01:12:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math Makefile ports/math/mtl 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/03/15 01:12:31 PST Modified files: math Makefile Added files: math/mtl Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add mtl 2.1.2-20 The Matrix Template Library Revision Changes Path 1.165 +1 -0 ports/math/Makefile 1.1 +19 -0 ports/math/mtl/Makefile (new) 1.1 +1 -0 ports/math/mtl/distinfo (new) 1.1 +1 -0 ports/math/mtl/pkg-comment (new) 1.1 +12 -0 ports/math/mtl/pkg-descr (new) 1.1 +71 -0 ports/math/mtl/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 Mar 15 1:13: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 30A2137B405; Fri, 15 Mar 2002 01:12:43 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F9ChF76842; Fri, 15 Mar 2002 01:12:43 -0800 (PST) (envelope-from ijliao) Message-Id: <200203150912.g2F9ChF76842@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 15 Mar 2002 01:12:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/15 01:12:43 PST Modified files: . modules Log: mtl --> ports/math/mtl Revision Changes Path 1.4845 +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 Mar 15 1: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 5EAF037B400; Fri, 15 Mar 2002 01:23:21 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F9NLL78588; Fri, 15 Mar 2002 01:23:21 -0800 (PST) (envelope-from murray) Message-Id: <200203150923.g2F9NLL78588@freefall.freebsd.org> From: Murray Stokely Date: Fri, 15 Mar 2002 01:23:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 release.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 murray 2002/03/15 01:23:21 PST Modified files: share/man/man7 release.7 Log: Even more markup / whitespace fixes: * Use .Va instead of .Ev * Remove a trailing whitespace at EOL. * Quote some arguments. Submitted by: ru Revision Changes Path 1.4 +26 -24 src/share/man/man7/release.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 1:23: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 3ABD037B402; Fri, 15 Mar 2002 01:23:53 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F9NrI78631; Fri, 15 Mar 2002 01:23:53 -0800 (PST) (envelope-from sobomax) Message-Id: <200203150923.g2F9NrI78631@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 15 Mar 2002 01:23:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/sdl10 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/03/15 01:23:53 PST Modified files: devel/sdl10 Makefile Log: Fix silly typo introduced during ${ECHO} --> ${ECHO_CMD} conversion. Submitted by: bento Revision Changes Path 1.24 +1 -1 ports/devel/sdl10/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 1: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 15FDA37B404; Fri, 15 Mar 2002 01:25:03 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F9P3878803; Fri, 15 Mar 2002 01:25:03 -0800 (PST) (envelope-from obrien) Message-Id: <200203150925.g2F9P3878803@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 15 Mar 2002 01:25:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/nawk 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/03/15 01:25:03 PST Modified files: lang/nawk Makefile distinfo Log: Update to the 20020210 release. Revision Changes Path 1.19 +1 -1 ports/lang/nawk/Makefile 1.8 +1 -1 ports/lang/nawk/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 1:39: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 1CE5437B404; Fri, 15 Mar 2002 01:39:02 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F9d2K80776; Fri, 15 Mar 2002 01:39:02 -0800 (PST) (envelope-from sobomax) Message-Id: <200203150939.g2F9d2K80776@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 15 Mar 2002 01:39:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gtranslator Makefile distinfo pkg-plist ports/devel/gtranslator/files patch-intltool-merge.in patch-src::backends::text::Makefile.in patch-src::find.c patch-src::message.c patch-xml-i18n-merge.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/03/15 01:39:01 PST Modified files: devel/gtranslator Makefile distinfo pkg-plist devel/gtranslator/files patch-src::backends::text::Makefile.in Added files: devel/gtranslator/files patch-intltool-merge.in patch-src::find.c patch-src::message.c Removed files: devel/gtranslator/files patch-xml-i18n-merge.in Log: Distfile had been rerolled without version bump, therefore update checksum. There are some non-whitespace differencies beween the old and new versions, so that bump PORTREVISION. Submitted by: bento Revision Changes Path 1.17 +1 -0 ports/devel/gtranslator/Makefile 1.10 +1 -1 ports/devel/gtranslator/distinfo 1.3 +14 -0 ports/devel/gtranslator/files/patch-intltool-merge.in (new) 1.2 +5 -5 ports/devel/gtranslator/files/patch-src::backends::text::Makefile.in 1.3 +14 -0 ports/devel/gtranslator/files/patch-src::find.c (new) 1.3 +14 -0 ports/devel/gtranslator/files/patch-src::message.c (new) 1.2 +0 -14 ports/devel/gtranslator/files/patch-xml-i18n-merge.in (dead) 1.10 +9 -10 ports/devel/gtranslator/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 Mar 15 1:47: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 D65F237B402; Fri, 15 Mar 2002 01:47:16 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F9lGC82124; Fri, 15 Mar 2002 01:47:16 -0800 (PST) (envelope-from dfr) Message-Id: <200203150947.g2F9lGC82124@freefall.freebsd.org> From: Doug Rabson Date: Fri, 15 Mar 2002 01:47:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 mp_machdep.c src/sys/ia64/acpica madt.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/15 01:47:16 PST Modified files: sys/ia64/ia64 mp_machdep.c sys/ia64/acpica madt.c Log: * Remove a breakpoint() I accidentally left in for debugging :-(. * Make cpu_mp_probe() work before the VM system is available and initialise mp_maxid accordingly. Revision Changes Path 1.7 +42 -11 src/sys/ia64/acpica/madt.c 1.32 +7 -3 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 Mar 15 1:48: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 EA93C37B400; Fri, 15 Mar 2002 01:48:11 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F9mBe82282; Fri, 15 Mar 2002 01:48:11 -0800 (PST) (envelope-from kuriyama) Message-Id: <200203150948.g2F9mBe82282@freefall.freebsd.org> From: Jun Kuriyama Date: Fri, 15 Mar 2002 01:48:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/openjade Makefile distinfo pkg-plist ports/textproc/openjade/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 kuriyama 2002/03/15 01:48:11 PST Modified files: textproc/openjade Makefile distinfo pkg-plist textproc/openjade/files patch-ad Removed files: textproc/openjade/files patch-aa patch-ab patch-ac Log: Upgrade to 1.3.1. Reminded by: Gerald Pfeifer Revision Changes Path 1.33 +4 -2 ports/textproc/openjade/Makefile 1.11 +1 -1 ports/textproc/openjade/distinfo 1.6 +0 -16 ports/textproc/openjade/files/patch-aa (dead) 1.2 +0 -27 ports/textproc/openjade/files/patch-ab (dead) 1.4 +0 -10 ports/textproc/openjade/files/patch-ac (dead) 1.2 +8 -8 ports/textproc/openjade/files/patch-ad 1.14 +1 -7 ports/textproc/openjade/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 Mar 15 1:54: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9359737B400; Fri, 15 Mar 2002 01:53:50 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F9ro283053; Fri, 15 Mar 2002 01:53:50 -0800 (PST) (envelope-from ijliao) Message-Id: <200203150953.g2F9ro283053@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 15 Mar 2002 01:53:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/patchutils Makefile distinfo ports/misc/patchutils/files patch-filterdiff.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/15 01:53:50 PST Modified files: misc/patchutils Makefile distinfo misc/patchutils/files patch-filterdiff.c Log: upgrade to 0.2.11 Revision Changes Path 1.5 +1 -1 ports/misc/patchutils/Makefile 1.5 +1 -1 ports/misc/patchutils/distinfo 1.3 +15 -19 ports/misc/patchutils/files/patch-filterdiff.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 1: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 7D71037B41A; Fri, 15 Mar 2002 01:58:45 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2F9wjK83704; Fri, 15 Mar 2002 01:58:45 -0800 (PST) (envelope-from obrien) Message-Id: <200203150958.g2F9wjK83704@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 15 Mar 2002 01:58:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/net getservent.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/15 01:58:45 PST Modified files: lib/libc/net getservent.c Log: Remove trailing characters from #endif. Actually this #endif is not needed, so remove leading characters also. Revision Changes Path 1.9 +0 -3 src/lib/libc/net/getservent.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 2:21: 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 A606437B417; Fri, 15 Mar 2002 02:20:54 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FAKsQ90671; Fri, 15 Mar 2002 02:20:54 -0800 (PST) (envelope-from cjc) Message-Id: <200203151020.g2FAKsQ90671@freefall.freebsd.org> From: "Crist J. Clark" Date: Fri, 15 Mar 2002 02:20:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc.network X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjc 2002/03/15 02:20:54 PST Modified files: (Branch: RELENG_4) etc rc.network Log: MFC 1.128: The reload of ipf(8) rules should depend on $ipfilter_enable, not $ipfilter_active. $ipfilter_enable is set to "NO" if modules fail to load, and $ipfilter_active can be "YES" when we are not using ipf(8). Revision Changes Path 1.74.2.36 +2 -3 src/etc/rc.network To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 2:32:15 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 48C0237B416; Fri, 15 Mar 2002 02:32:08 -0800 (PST) Received: by tao.org.uk (Postfix, from userid 100) id 212D184; Fri, 15 Mar 2002 10:31:13 +0000 (GMT) Date: Fri, 15 Mar 2002 10:31:13 +0000 From: Josef Karthauser To: David O'Brien , Robert Watson , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/bin/ps lomac.c lomac.h src/bin/ls lomac.c lomac.h Message-ID: <20020315103113.GE11303@genius.tao.org.uk> References: <20020314140510.I29705@blossom.cjclark.org> <20020314164056.C79213@dragon.nuxi.com> <20020315032904.GB22079@leviathan.inethouston.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WBsA/oQW3eTA3LlM" Content-Disposition: inline In-Reply-To: <20020315032904.GB22079@leviathan.inethouston.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 --WBsA/oQW3eTA3LlM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Mar 14, 2002 at 09:29:04PM -0600, David W. Chapman Jr. wrote: > On Thu, Mar 14, 2002 at 04:40:56PM -0800, David O'Brien wrote: > > On Thu, Mar 14, 2002 at 05:17:45PM -0500, Robert Watson wrote: > > >=20 > > > In the US, 'DBA' sometimes stands for 'Doing Business As' -- permits a > >=20 > > I have never heard this acronym in all my Beltway-Bandit days. > > I think maybe it is a NA-specific one? > >=20 >=20 > Before I got incorporated, I got my DBA as Raintree Network=20 > Services. But Unlike an incorporation the DBA is only county wide or=20 > state at most. In the UK we have "trading as". Is this the same thing? Joe --WBsA/oQW3eTA3LlM 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 iEYEARECAAYFAjyRzXAACgkQXVIcjOaxUBZepQCfZm2clw7REbiWOXmmw2W2ooJe Uh4AoK4ZZIkEgM9Lj/IMQOwy0BIYRyLY =mF5T -----END PGP SIGNATURE----- --WBsA/oQW3eTA3LlM-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 3: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 58E2137B402; Fri, 15 Mar 2002 03:12:09 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FBC9M01862; Fri, 15 Mar 2002 03:12:09 -0800 (PST) (envelope-from dfr) Message-Id: <200203151112.g2FBC9M01862@freefall.freebsd.org> From: Doug Rabson Date: Fri, 15 Mar 2002 03:12:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 db_interface.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/15 03:12:09 PST Modified files: sys/ia64/ia64 db_interface.c Log: * Stop other cpus when one cpu enters DDB and restart them after it leaves. * Add a sync.i instruction to the code which writes out breakpoints to ensure that the breakpoint is seem by all cpus in the coherence domain. Revision Changes Path 1.17 +47 -11 src/sys/ia64/ia64/db_interface.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 3:22: 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 E57BC37B41B; Fri, 15 Mar 2002 03:21:57 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FBLvU03126; Fri, 15 Mar 2002 03:21:57 -0800 (PST) (envelope-from ru) Message-Id: <200203151121.g2FBLvU03126@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 03:21:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall 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/03/15 03:21:57 PST Modified files: usr.sbin/sysinstall Makefile Log: Don't use temporary file to generate makedevs.c -- it's okay to write to makedevs.c directly as it's not protected by the .PRECIOUS attribute. Revision Changes Path 1.120 +19 -21 src/usr.sbin/sysinstall/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 3:22:17 2002 Delivered-To: cvs-all@freebsd.org Received: from green.bikeshed.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D387A37B417; Fri, 15 Mar 2002 03:21:50 -0800 (PST) Received: from localhost (green@localhost) by green.bikeshed.org (8.11.6/8.11.6) with ESMTP id g2FBLnj36094; Fri, 15 Mar 2002 06:21:50 -0500 (EST) (envelope-from green@green.bikeshed.org) Message-Id: <200203151121.g2FBLnj36094@green.bikeshed.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Alfred Perlstein Cc: Brian Feldman , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_mtxpool.c src/sys/sys kernel.h src/sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h vm_pageout.c vm_zone.c In-Reply-To: Message from Alfred Perlstein of "Thu, 14 Mar 2002 21:41:13 PST." <20020315054113.GC4857@elvis.mu.org> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 15 Mar 2002 06:21:49 -0500 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Alfred Perlstein wrote: > * Brian Feldman [020313 15:53] wrote: > > green 2002/03/13 15:48:08 PST > > > > Modified files: > > sys/kern kern_mtxpool.c > > sys/sys kernel.h > > sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h > > vm_pageout.c vm_zone.c > > Log: > > Rename SI_SUB_MUTEX to SI_SUB_MTX_POOL to make the name at all accurate. > > While doing this, move it earlier in the sysinit boot process so that the > > VM system can use it. > > > > After that, the system is now able to use sx locks instead of lockmgr > > locks in the VM system. To accomplish this, some of the more > > questionable uses of the locks (such as testing whether they are > > owned or not, as well as allowing shared+exclusive recursion) are > > removed, and simpler logic throughout is used so locks should also be > > easier to understand. > > > > This has been tested on my laptop for months, and has not shown any > > problems on SMP systems, either, so appears quite safe. One more > > user of lockmgr down, many more to go :) > > You broke the kernel. > > Two deadlock tracebacks: > > siointr1(c5ed2400,c0464940,0,c03aa0e3,662) at siointr1+0xb1 > siointr(c5ed2400) at siointr+0x23 > Xfastintr4() at Xfastintr4+0x34 > --- interrupt, eip = 0xc03139f5, esp = 0xd26968e8, ebp = 0xd26968f4 --- > _vm_map_lock_upgrade(c045b870,c03a72c1,af4) at _vm_map_lock_upgrade+0xd > vm_map_lookup(d269699c,cc644000,2,d26969a0,d2696994) at vm_map_lookup+0x19f > vm_fault1(c045bb54,cc644000,2,0,c04098c0) at vm_fault1+0x54 > vm_fault(c045bb54,cc644000,2,0,c) at vm_fault+0x34 > trap_pfault(d2696a8c,0,cc644000,d2696bd4,80f5349) at trap_pfault+0x161 > trap(c03b0018,d2690010,c0400010,cc644000,80f5349) at trap+0x36f > calltrap() at calltrap+0x5 > --- trap 0xc, eip = 0xc03474e4, esp = 0xd2696acc, ebp = 0xd2696af4 --- > copyinstr(d2696bd4,2,0,d2696d20,0) at copyinstr+0x38 > exec_elf_imgact(d2696bd4,d25ac580,0,3,d2696bd4) at exec_elf_imgact+0xf3 > execve(d25ac680,d2696d20,80f5358,ffffffff,80f53fc) at execve+0x2e0 > syscall(2f,2f,2f,80f53fc,ffffffff) at syscall+0x207 > syscall_with_err_pushed() at syscall_with_err_pushed+0x1b > > witness_unlock(c042d7f8,8,c038cfe3,112) at witness_unlock+0x1c5 > _mtx_unlock_flags(c042d7f8,0,c038cfe3,112,c045b870) at _mtx_unlock_flags+0x1d > _sx_try_upgrade(c045b8a0,c03a72c1,af4,d257b570,d2546924) at _sx_try_upgrade+0x38 > _vm_map_lock_upgrade(c045b870,c03a72c1,af4) at _vm_map_lock_upgrade+0x16 > vm_map_lookup(d254699c,cc5ed000,2,d25469a0,d2546994) at vm_map_lookup+0x19f > vm_fault1(c045bb54,cc5ed000,2,0,c04098c0) at vm_fault1+0x54 > vm_fault(c045bb54,cc5ed000,2,0,c) at vm_fault+0x34 > trap_pfault(d2546a8c,0,cc5ed000,d2546bd4,bfbffe69) at trap_pfault+0x161 > trap(18,d2540010,c0340010,cc5ed000,bfbffe69) at trap+0x36f > calltrap() at calltrap+0x5 > --- trap 0xc, eip = 0xc03474e4, esp = 0xd2546acc, ebp = 0xd2546af4 --- > copyinstr(d2546bd4,2,0,d2546d20,0) at copyinstr+0x38 > exec_elf_imgact(d2546bd4,cf8ce260,0,3,d2546bd4) at exec_elf_imgact+0xf3 > execve(cf8ce360,d2546d20,28105658,bfbff940,4) at execve+0x2e0 > syscall(2f,2f,2f,4,bfbff940) at syscall+0x207 > syscall_with_err_pushed() at syscall_with_err_pushed+0x1b > > What is the problem? Damn good question. Are the tracebacks related? If not, what are you supposed to be telling me it's deadlocking on? I don't see the system being deadlocked. What is it actually supposed to be blocked on? > Well basically you changed: > > ! static __inline__ int > ! _vm_map_lock_upgrade(vm_map_t map, struct thread *td) { > ! int error; > ! > ! vm_map_printf("locking map LK_EXCLUPGRADE: %p\n", map); > ! error = lockmgr(&map->lock, LK_EXCLUPGRADE, NULL, td); > ! if (error == 0) > ! map->timestamp++; > ! return error; > } > > into: > > ! _vm_map_lock_upgrade(vm_map_t map, const char *file, int line) > { > ! vm_map_printf("locking map LK_EXCLUPGRADE: %p\n", map); > ! if (_sx_try_upgrade(&map->lock, file, line)) { > ! map->timestamp++; > ! return (0); > ! } > ! return (EWOULDBLOCK); > } It doesn't need LK_EXCLUPGRADE semantics, only LK_UPGRADE, if it's not blocking. It backs out completely and unlocks the shared reference and tries for an exclusive lock. > It's obvious you didn't understand what's going on here. > > Please either fix or back this code out. Yes, I'm sure it's so blindingly obvious from the two tracebacks you posted which look SO MUCH like deadlocks... -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org <> bfeldman@tislabs.com \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 3:27: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 CFA0937B416; Fri, 15 Mar 2002 03:27:47 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FBRlM03640; Fri, 15 Mar 2002 03:27:47 -0800 (PST) (envelope-from ru) Message-Id: <200203151127.g2FBRlM03640@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 03:27:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall 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/03/15 03:27:47 PST Modified files: usr.sbin/sysinstall Makefile Log: Embed boot images built as part of buildworld rather than the installed ones under /boot (which we may not even have in the case of a cross build). This introduced chicken and egg problem - we need boot images early in the "depend" stage but they have not yet been built. Work around this by excluding the generated makeboot.c source from the "depend" list; it's okay because we hardcode all its dependencies explicitly. We actually lose the dependency bit on but it's probably okay too as the only thing we use is the u_char datatype and this is unlikely to change. After all, it's normal for sloppy cleaning to cause problems. beast.FreeBSD.org running 5.0-CURRENT alpha has been able to cross build i386 world with this patch. Prodded by: gallatin Revision Changes Path 1.121 +38 -10 src/usr.sbin/sysinstall/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 3:30: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 9E91937B402; Fri, 15 Mar 2002 03:30:29 -0800 (PST) Received: (from nyan@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FBUTm03905; Fri, 15 Mar 2002 03:30:29 -0800 (PST) (envelope-from nyan) Message-Id: <200203151130.g2FBUTm03905@freefall.freebsd.org> From: Takahashi Yoshihiro Date: Fri, 15 Mar 2002 03:30:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pc98/pc98 sio.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG nyan 2002/03/15 03:30:27 PST Modified files: (Branch: RELENG_4) sys/pc98/pc98 sio.c Log: MFC: Free allocated buffer at sio_pccard_detach(). Revision Changes Path 1.124.2.15 +4 -0 src/sys/pc98/pc98/sio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 4: 0: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 3CD1C37B416; Fri, 15 Mar 2002 04:00:19 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FC0JQ08329; Fri, 15 Mar 2002 04:00:19 -0800 (PST) (envelope-from ijliao) Message-Id: <200203151200.g2FC0JQ08329@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 15 Mar 2002 04:00:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/py-spark 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/03/15 04:00:17 PST Modified files: devel Makefile Added files: devel/py-spark Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add py-spark 0.6.1 Scanning, Parsing, and Rewriting Kit Revision Changes Path 1.779 +1 -0 ports/devel/Makefile 1.1 +29 -0 ports/devel/py-spark/Makefile (new) 1.1 +1 -0 ports/devel/py-spark/distinfo (new) 1.1 +1 -0 ports/devel/py-spark/pkg-comment (new) 1.1 +6 -0 ports/devel/py-spark/pkg-descr (new) 1.1 +5 -0 ports/devel/py-spark/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 Mar 15 4: 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 F0ECA37B419; Fri, 15 Mar 2002 04:00:26 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FC0Qc08382; Fri, 15 Mar 2002 04:00:26 -0800 (PST) (envelope-from ijliao) Message-Id: <200203151200.g2FC0Qc08382@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 15 Mar 2002 04:00:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/15 04:00:26 PST Modified files: . modules Log: py-spark --> ports/devel/py-spark Revision Changes Path 1.4846 +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 Mar 15 4: 4:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1624437B402; Fri, 15 Mar 2002 04:04:50 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FC4oC15773; Fri, 15 Mar 2002 04:04:50 -0800 (PST) (envelope-from ru) Message-Id: <200203151204.g2FC4oC15773@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 04:04:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 taskqueue.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 ru 2002/03/15 04:04:49 PST Modified files: share/man/man9 taskqueue.9 Log: mdoc(7) police: Kill the (now extraneous) empty line. Previously, .Bd erroneously defaulted to -compact mode in the SYNOPSIS section. Revision Changes Path 1.6 +0 -1 src/share/man/man9/taskqueue.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 4: 5:27 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 8F8DA37B400; Fri, 15 Mar 2002 04:04:52 -0800 (PST) Received: from localhost (localhost [::1]) by castle.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) with ESMTP/inet6 id g2FC4pc23788; Fri, 15 Mar 2002 21:04:51 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200203151127.g2FBRlM03640@freefall.freebsd.org> References: <200203151127.g2FBRlM03640@freefall.freebsd.org> 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: 13 From: Makoto Matsushita To: ru@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall Makefile Date: Fri, 15 Mar 2002 21:04:48 +0900 Message-Id: <20020315210448K.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 ru> This introduced chicken and egg problem - we need boot images ru> early in the "depend" stage but they have not yet been built. It is very easy to solve, as nyan-san's patch (I've shown the URL he posted to current@FreeBSD.org before) does it already; run "make all" at src/sys/boot directory before making src/usr.sbin/sysinstall. It is very natual to do that, since sysinstall *really* neads boot0 and its friends to make sysinstall itself. Why you don't like that? -- - 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 Fri Mar 15 4:12: 6 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 3030637B404; Fri, 15 Mar 2002 04:11:53 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g2FCBU851484; Fri, 15 Mar 2002 14:11:30 +0200 (EET) (envelope-from ru) Date: Fri, 15 Mar 2002 14:11:30 +0200 From: Ruslan Ermilov To: Makoto Matsushita Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall Makefile Message-ID: <20020315121130.GA50745@sunbay.com> References: <200203151127.g2FBRlM03640@freefall.freebsd.org> <20020315210448K.matusita@jp.FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020315210448K.matusita@jp.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, Mar 15, 2002 at 09:04:48PM +0900, Makoto Matsushita wrote: > > ru> This introduced chicken and egg problem - we need boot images > ru> early in the "depend" stage but they have not yet been built. > > It is very easy to solve, as nyan-san's patch (I've shown the URL he > posted to current@FreeBSD.org before) does it already; run "make all" > at src/sys/boot directory before making src/usr.sbin/sysinstall. > Yeah, buildworld runs "make all" in sys/boot before making "all" in usr.sbin/sysinstall due to the lucky SUBDIR order in Makefile.inc1, but the actual problem is that we'd need to "make all" in sys/boot before "make depend" in usr.sbin/sysinstall. > It is very natual to do that, since sysinstall *really* neads boot0 > and its friends to make sysinstall itself. Why you don't like that? > I'd be happy to look at the patch, please repost the URL. Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 4:18:39 2002 Delivered-To: cvs-all@freebsd.org Received: from watery.cc.kogakuin.ac.jp (watery.cc.kogakuin.ac.jp [133.80.152.80]) by hub.freebsd.org (Postfix) with ESMTP id BDDBE37B402; Fri, 15 Mar 2002 04:18:32 -0800 (PST) Received: from localhost (localhost [::1]) by watery.cc.kogakuin.ac.jp (8.11.6/8.11.6) with ESMTP id g2FCIVu14886; Fri, 15 Mar 2002 21:18:31 +0900 (JST) (envelope-from nyan@jp.FreeBSD.org) Date: Fri, 15 Mar 2002 21:18:10 +0900 (JST) Message-Id: <20020315.211810.74739673.nyan@jp.FreeBSD.org> To: ru@FreeBSD.org Cc: matusita@jp.FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall Makefile From: Takahashi Yoshihiro In-Reply-To: <20020315121130.GA50745@sunbay.com> References: <200203151127.g2FBRlM03640@freefall.freebsd.org> <20020315210448K.matusita@jp.FreeBSD.org> <20020315121130.GA50745@sunbay.com> X-Mailer: Mew version 2.2 on Emacs 20.7 / Mule 4.0 =?iso-2022-jp?B?KBskQjJWMWMbKEIp?= 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 article <20020315121130.GA50745@sunbay.com> Ruslan Ermilov writes: > > It is very natual to do that, since sysinstall *really* neads boot0 > > and its friends to make sysinstall itself. Why you don't like that? > > > I'd be happy to look at the patch, please repost the URL. http://docs.FreeBSD.org/cgi/getmsg.cgi?fetch=441775+0+current/freebsd-stable --- TAKAHASHI Yoshihiro THE CENTER for INFORMATION SCIENCE, Kogakuin Univ. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 4: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 320D037B400; Fri, 15 Mar 2002 04:24:16 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FCOG621763; Fri, 15 Mar 2002 04:24:16 -0800 (PST) (envelope-from ijliao) Message-Id: <200203151224.g2FCOG621763@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 15 Mar 2002 04:24:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/tpg 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/03/15 04:24:16 PST Modified files: devel Makefile Added files: devel/tpg Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add tpg 0.1.6 Toy Parser Generator -- A parser generator in Python Revision Changes Path 1.780 +1 -0 ports/devel/Makefile 1.1 +24 -0 ports/devel/tpg/Makefile (new) 1.1 +1 -0 ports/devel/tpg/distinfo (new) 1.1 +1 -0 ports/devel/tpg/pkg-comment (new) 1.1 +15 -0 ports/devel/tpg/pkg-descr (new) 1.1 +1 -0 ports/devel/tpg/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 Mar 15 4:24:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA26737B41B; Fri, 15 Mar 2002 04:24:17 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FCOHd21794; Fri, 15 Mar 2002 04:24:17 -0800 (PST) (envelope-from ijliao) Message-Id: <200203151224.g2FCOHd21794@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 15 Mar 2002 04:24:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/15 04:24:17 PST Modified files: . modules Log: tpg --> ports/devel/tpg Revision Changes Path 1.4847 +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 Mar 15 4:24: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 311F537B4C2; Fri, 15 Mar 2002 04:24:44 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FCOij21842; Fri, 15 Mar 2002 04:24:44 -0800 (PST) (envelope-from ru) Message-Id: <200203151224.g2FCOij21842@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 04:24:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/chroot chroot.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 ru 2002/03/15 04:24:44 PST Modified files: usr.sbin/chroot chroot.8 Log: Pedantry to satisfy the bin/34159 author. Revision Changes Path 1.10 +5 -5 src/usr.sbin/chroot/chroot.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 5: 0:46 2002 Delivered-To: cvs-all@freebsd.org Received: from melchior.cuivre.fr.eu.org (melchior.enst.fr [137.194.161.6]) by hub.freebsd.org (Postfix) with ESMTP id E859B37B416; Fri, 15 Mar 2002 05:00:30 -0800 (PST) Received: from melusine.cuivre.fr.eu.org (melusine.enst.fr [137.194.160.34]) by melchior.cuivre.fr.eu.org (Postfix) with ESMTP id 8E9F2886E; Fri, 15 Mar 2002 14:00:28 +0100 (CET) Received: by melusine.cuivre.fr.eu.org (Postfix, from userid 1000) id 5205D2C3D2; Fri, 15 Mar 2002 14:00:27 +0100 (CET) Date: Fri, 15 Mar 2002 14:00:27 +0100 From: Thomas Quinot To: Pierre Beyssac Cc: Ruslan Ermilov , cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/boot/i386/boot2 boot2.c src/sbin/reboot boot_i386.8 Message-ID: <20020315140027.A60859@melusine.cuivre.fr.eu.org> Reply-To: thomas@cuivre.fr.eu.org References: <200203131103.g2DB3aD93661@freefall.freebsd.org> <20020315015833.A447@fasterix.frmug.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <20020315015833.A447@fasterix.frmug.org>; from pb@fasterix.frmug.org on Fri, Mar 15, 2002 at 01:58:33AM +0100 X-message-flag: WARNING! Using Outlook can damage your computer. Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Le 2002-03-15, Pierre Beyssac écrivait : > BTW, I am currently testing a set of patches to boot2 written by > Thomas Quinot after we discussed the matter, adding a '-n' option > to boot2 to ignore keypresses (and doing some code cleanup at the > same time). Actually there are two separate patches: one is only de-obfuscation of some parts of boot2.c, with strictly no functional changes. The second adds a -n option to prevent any user interference in the boot process. I have already tested both changes here on a -current box; it would be nice if others could review these changes. Here are the diffs: Index: sys/boot/i386/boot2/boot2.c =================================================================== RCS file: /home/ncvs/src/sys/boot/i386/boot2/boot2.c,v retrieving revision 1.37 diff -u -r1.37 boot2.c --- sys/boot/i386/boot2/boot2.c 13 Mar 2002 11:03:36 -0000 1.37 +++ sys/boot/i386/boot2/boot2.c 15 Mar 2002 12:46:54 -0000 @@ -37,6 +37,11 @@ #include "boot2.h" #include "lib.h" +#define IO_KEYBOARD 1 +#define IO_SERIAL 2 + +#define SECOND 18 /* Circa that many ticks in a second. */ + #define RBX_ASKNAME 0x0 /* -a */ #define RBX_SINGLE 0x1 /* -s */ #define RBX_DFLTROOT 0x5 /* -r */ @@ -136,7 +141,7 @@ static struct bootinfo bootinfo; static int ls; static uint32_t fs_off; -static uint8_t ioctrl = 0x1; +static uint8_t ioctrl = IO_KEYBOARD; void exit(int); static void load(const char *); @@ -279,34 +284,39 @@ bootinfo.bi_memsizes_valid++; for (i = 0; i < N_BIOS_GEOM; i++) bootinfo.bi_bios_geom[i] = drvinfo(i); - autoboot = 2; + + /* Process configuration file */ + + autoboot = 1; readfile(PATH_CONFIG, cmd, sizeof(cmd)); if (*cmd) { printf("%s: %s", PATH_CONFIG, cmd); if (parse(cmd)) autoboot = 0; - *cmd = 0; } - if (autoboot && !*kname) { - if (autoboot == 2) { - memcpy(kname, PATH_BOOT3, sizeof(PATH_BOOT3)); - if (!keyhit(0x37)) { - load(kname); - autoboot = 1; - } - } - if (autoboot == 1) + + /* Try to exec stage 3 boot loader. If interrupted by a keypress, * + * or in case of failure, try to load a kernel directly instaed. */ + + if (autoboot) { + memcpy(kname, PATH_BOOT3, sizeof(PATH_BOOT3)); + if (!keyhit(3 * SECOND)) { + load(kname); memcpy(kname, PATH_KERNEL, sizeof(PATH_KERNEL)); + } } + + /* Present the user with the boot2 prompt. */ + for (;;) { printf(" \n>> FreeBSD/i386 BOOT\n" "Default: %u:%s(%u,%c)%s\n" "boot: ", dsk.drive & DRV_MASK, dev_nm[dsk.type], dsk.unit, 'a' + dsk.part, kname); - if (ioctrl & 0x2) + if (ioctrl & IO_SERIAL) sio_flush(); - if (!autoboot || keyhit(0x5a)) + if (!autoboot || keyhit(5 * SECOND)) getstr(cmd, sizeof(cmd)); else putchar('\n'); @@ -445,9 +455,9 @@ opts |= 1 << RBX_DUAL | 1 << RBX_SERIAL; opts &= ~(1 << RBX_PROBEKBD); } - ioctrl = opts & 1 << RBX_DUAL ? 0x3 : - opts & 1 << RBX_SERIAL ? 0x2 : 0x1; - if (ioctrl & 0x2) + ioctrl = opts & 1 << RBX_DUAL ? (IO_SERIAL | IO_KEYBOARD) : + opts & 1 << RBX_SERIAL ? IO_SERIAL : IO_KEYBOARD; + if (ioctrl & IO_SERIAL) sio_init(); } else { for (q = arg--; *q && *q != '('; q++); @@ -790,9 +800,9 @@ static int xputc(int c) { - if (ioctrl & 0x1) + if (ioctrl & IO_KEYBOARD) putc(c); - if (ioctrl & 0x2) + if (ioctrl & IO_SERIAL) sio_putc(c); return c; } @@ -801,9 +811,9 @@ xgetc(int fn) { for (;;) { - if (ioctrl & 0x1 && getc(1)) + if (ioctrl & IO_KEYBOARD && getc(1)) return fn ? 1 : getc(0); - if (ioctrl & 0x2 && sio_ischar()) + if (ioctrl & IO_SERIAL && sio_ischar()) return fn ? 1 : sio_getc(); if (fn) return 0; The second patch adds option '-n', which can be used in /boot.config: --- sys/boot/i386/boot2/boot2.c.orig Fri Mar 15 00:49:06 2002 +++ sys/boot/i386/boot2/boot2.c.optn Fri Mar 15 13:45:23 2002 @@ -55,2 +55,3 @@ #define RBX_PROBEKBD 0x1e /* -P */ +#define RBX_NOINTR 0x1f /* -n */ @@ -63,3 +64,3 @@ #define ARGS 0x900 -#define NOPT 13 +#define NOPT 14 #define NDEV 5 @@ -105,3 +106,3 @@ -static const char optstr[NOPT] = "DhaCcdgmPprsv"; +static const char optstr[NOPT] = "DhaCcdgmnPprsv"; static const unsigned char flags[NOPT] = { @@ -115,2 +116,3 @@ RBX_MUTE, + RBX_NOINTR, RBX_PROBEKBD, @@ -780,2 +782,4 @@ + if (opts & 1 << RBX_NOINTR) + return 0; t0 = 0; @@ -805,2 +809,4 @@ { + if (opts & 1 << RBX_NOINTR) + return 0; for (;;) { Thomas. -- Thomas.Quinot@Cuivre.FR.EU.ORG To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 5: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 CA4C637B402; Fri, 15 Mar 2002 05:13:14 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FDDEp32574; Fri, 15 Mar 2002 05:13:14 -0800 (PST) (envelope-from ijliao) Message-Id: <200203151313.g2FDDEp32574@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 15 Mar 2002 05:13:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security Makefile ports/security/nofgpg 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/03/15 05:13:14 PST Modified files: security Makefile Added files: security/nofgpg Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add nofgpg 0.4 No One Fears GPG Revision Changes Path 1.281 +1 -0 ports/security/Makefile 1.1 +31 -0 ports/security/nofgpg/Makefile (new) 1.1 +1 -0 ports/security/nofgpg/distinfo (new) 1.1 +1 -0 ports/security/nofgpg/pkg-comment (new) 1.1 +3 -0 ports/security/nofgpg/pkg-descr (new) 1.1 +1 -0 ports/security/nofgpg/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 Mar 15 5:13: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 CDC5937B41D; Fri, 15 Mar 2002 05:13:25 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FDDPS32617; Fri, 15 Mar 2002 05:13:25 -0800 (PST) (envelope-from ijliao) Message-Id: <200203151313.g2FDDPS32617@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 15 Mar 2002 05:13:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/15 05:13:25 PST Modified files: . modules Log: nofgpg --> ports/security/nofgpg Revision Changes Path 1.4848 +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 Mar 15 5:30: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 8EC7C37B405; Fri, 15 Mar 2002 05:30:45 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FDUj035278; Fri, 15 Mar 2002 05:30:45 -0800 (PST) (envelope-from ue) Message-Id: <200203151330.g2FDUj035278@freefall.freebsd.org> From: Udo Erdelhoff Date: Fri, 15 Mar 2002 05:30:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/hardware/alpha proc-alpha.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/03/15 05:30:45 PST Modified files: release/doc/de_DE.ISO8859-1/hardware/alpha proc-alpha.sgml Log: MFen 1.37 Revision Changes Path 1.2 +38 -8 src/release/doc/de_DE.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 Fri Mar 15 5:31:46 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 F39F937B400; Fri, 15 Mar 2002 05:31:22 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g2FDUqp62404; Fri, 15 Mar 2002 15:30:52 +0200 (EET) (envelope-from ru) Date: Fri, 15 Mar 2002 15:30:52 +0200 From: Ruslan Ermilov To: Takahashi Yoshihiro Cc: matusita@jp.FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall Makefile Message-ID: <20020315133052.GB50745@sunbay.com> References: <200203151127.g2FBRlM03640@freefall.freebsd.org> <20020315210448K.matusita@jp.FreeBSD.org> <20020315121130.GA50745@sunbay.com> <20020315.211810.74739673.nyan@jp.FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020315.211810.74739673.nyan@jp.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, Mar 15, 2002 at 09:18:10PM +0900, Takahashi Yoshihiro wrote: > In article <20020315121130.GA50745@sunbay.com> > Ruslan Ermilov writes: > > > > It is very natual to do that, since sysinstall *really* neads boot0 > > > and its friends to make sysinstall itself. Why you don't like that? > > > > > I'd be happy to look at the patch, please repost the URL. > > http://docs.FreeBSD.org/cgi/getmsg.cgi?fetch=441775+0+current/freebsd-stable > OK, how about this? I don't like building all of the "sys/boot" in advance. Index: Makefile.inc1 =================================================================== RCS file: /home/ncvs/src/Makefile.inc1,v retrieving revision 1.241 diff -u -r1.241 Makefile.inc1 --- Makefile.inc1 6 Mar 2002 08:24:32 -0000 1.241 +++ Makefile.inc1 15 Mar 2002 13:27:26 -0000 @@ -288,6 +288,11 @@ cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG libraries @echo @echo "--------------------------------------------------------------" + @echo ">>> stage 4: building boot images" + @echo "--------------------------------------------------------------" + cd ${.CURDIR}; ${WMAKE} boot-images + @echo + @echo "--------------------------------------------------------------" @echo ">>> stage 4: make dependencies" @echo "--------------------------------------------------------------" cd ${.CURDIR}; ${WMAKE} par-depend @@ -783,6 +788,23 @@ ${MAKE} all; \ ${MAKE} install .endif +.endfor + +# +# boot-images - build boot images needed for sysinstall(8). +# +.if ${MACHINE_ARCH} == "i386" +_boot0= sys/boot/${MACHINE}/boot0 +.if ${MACHINE} == "i386" +_mbr= sys/boot/i386/mbr +.elif ${MACHINE} == "pc98" +_boot0.5= sys/boot/pc98/boot0.5 +.endif +.endif + +boot-images: +.for _image in ${_boot0} ${_mbr} ${_boot0.5} + cd ${.CURDIR}/${_image}; ${MAKE} all .endfor .for __target in clean cleandepend cleandir depend obj Index: usr.sbin/sysinstall/Makefile =================================================================== RCS file: /home/ncvs/src/usr.sbin/sysinstall/Makefile,v retrieving revision 1.121 diff -u -r1.121 Makefile --- usr.sbin/sysinstall/Makefile 15 Mar 2002 11:27:47 -0000 1.121 +++ usr.sbin/sysinstall/Makefile 15 Mar 2002 13:27:26 -0000 @@ -55,10 +55,7 @@ >> makedevs.c .if ${MACHINE_ARCH} == i386 -# XXX boot images aren't yet ready when "make depend" is run -.if !make(depend) SRCS+= makeboot.c -.endif CLEANFILES+= makeboot.c .if exists(${.OBJDIR}/../../sys/boot/${MACHINE}/boot0/boot0) BOOT0= ${.OBJDIR}/../../sys/boot/${MACHINE}/boot0/boot0 Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 5:47:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D11AF37B402; Fri, 15 Mar 2002 05:47:12 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FDlCK38288; Fri, 15 Mar 2002 05:47:12 -0800 (PST) (envelope-from ue) Message-Id: <200203151347.g2FDlCK38288@freefall.freebsd.org> From: Udo Erdelhoff Date: Fri, 15 Mar 2002 05:47:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/hardware/sparc64 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/03/15 05:47:12 PST Modified files: release/doc/de_DE.ISO8859-1/hardware/sparc64 article.sgml Log: MFen 1.2, use DE release entities Revision Changes Path 1.2 +4 -4 src/release/doc/de_DE.ISO8859-1/hardware/sparc64/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 Mar 15 5:47:40 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 7718437B400; Fri, 15 Mar 2002 05:47:35 -0800 (PST) Received: from localhost (localhost [::1]) by castle.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) with ESMTP/inet6 id g2FDlYc50299; Fri, 15 Mar 2002 22:47:34 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) Cc: nyan@jp.FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20020315133052.GB50745@sunbay.com> References: <20020315121130.GA50745@sunbay.com> <20020315.211810.74739673.nyan@jp.FreeBSD.org> <20020315133052.GB50745@sunbay.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: 8 From: Makoto Matsushita To: ru@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall Makefile Date: Fri, 15 Mar 2002 22:47:30 +0900 Message-Id: <20020315224730O.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 ru> OK, how about this? I don't like building all of the "sys/boot" ru> in advance. Maybe it looks ugly to you, but it's also maybe a necessary evil for us IMHO. -- - 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 Fri Mar 15 5:48: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 4F1D837B402; Fri, 15 Mar 2002 05:48:48 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FDmmP38540; Fri, 15 Mar 2002 05:48:48 -0800 (PST) (envelope-from ue) Message-Id: <200203151348.g2FDmmP38540@freefall.freebsd.org> From: Udo Erdelhoff Date: Fri, 15 Mar 2002 05:48:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.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 ue 2002/03/15 05:48:48 PST Modified files: release/doc/de_DE.ISO8859-1/relnotes/common new.sgml Log: MFen 1.299 Revision Changes Path 1.2 +24 -6 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 Mar 15 5:51: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 020DB37B405; Fri, 15 Mar 2002 05:51:24 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FDpNt42002; Fri, 15 Mar 2002 05:51:23 -0800 (PST) (envelope-from ue) Message-Id: <200203151351.g2FDpNt42002@freefall.freebsd.org> From: Udo Erdelhoff Date: Fri, 15 Mar 2002 05:51:23 -0800 (PST) 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 article.sgml src/release/doc/de_DE.ISO8859-1/hardware/i386 article.sgml src/release/doc/de_DE.ISO8859-1/hardware/ia64 article.sgml src/release/doc/de_DE.ISO8859-1/installation/alpha article.sgml src/release/doc/de_DE.ISO8859-1/installation/i386 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/03/15 05:51:23 PST Modified files: release/doc/de_DE.ISO8859-1/errata article.sgml release/doc/de_DE.ISO8859-1/hardware/alpha article.sgml release/doc/de_DE.ISO8859-1/hardware/i386 article.sgml release/doc/de_DE.ISO8859-1/hardware/ia64 article.sgml release/doc/de_DE.ISO8859-1/installation/alpha article.sgml release/doc/de_DE.ISO8859-1/installation/i386 article.sgml release/doc/de_DE.ISO8859-1/relnotes/alpha article.sgml release/doc/de_DE.ISO8859-1/relnotes/i386 article.sgml release/doc/de_DE.ISO8859-1/relnotes/sparc64 article.sgml Log: MFbed: Use German Release Entities for all articles Revision Changes Path 1.2 +2 -2 src/release/doc/de_DE.ISO8859-1/errata/article.sgml 1.2 +2 -2 src/release/doc/de_DE.ISO8859-1/hardware/alpha/article.sgml 1.2 +2 -2 src/release/doc/de_DE.ISO8859-1/hardware/i386/article.sgml 1.2 +2 -2 src/release/doc/de_DE.ISO8859-1/hardware/ia64/article.sgml 1.2 +2 -2 src/release/doc/de_DE.ISO8859-1/installation/alpha/article.sgml 1.2 +2 -2 src/release/doc/de_DE.ISO8859-1/installation/i386/article.sgml 1.2 +2 -2 src/release/doc/de_DE.ISO8859-1/relnotes/alpha/article.sgml 1.2 +2 -2 src/release/doc/de_DE.ISO8859-1/relnotes/i386/article.sgml 1.2 +4 -5 src/release/doc/de_DE.ISO8859-1/relnotes/sparc64/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 Mar 15 5:59:59 2002 Delivered-To: cvs-all@freebsd.org Received: from wensleydale.netmonger.net (wensleydale.netmonger.net [167.206.208.3]) by hub.freebsd.org (Postfix) with ESMTP id C4EB237B419; Fri, 15 Mar 2002 05:59:47 -0800 (PST) Received: from dna.masto.com (ool-18b84ad7.dyn.optonline.net [24.184.74.215]) (AUTH: LOGIN chris@retardix.com, TLS: TLSv1/SSLv3,168bits,DES-CBC3-SHA) by wensleydale.netmonger.net with esmtp; Fri, 15 Mar 2002 08:56:55 -0500 Received: (from chris@localhost) by dna.masto.com (8.11.5/8.11.4) id g2FDtg378746; Fri, 15 Mar 2002 08:55:42 -0500 (EST) (envelope-from chris@masto.com) X-Authentication-Warning: dna.masto.com: chris set sender to chris@masto.com using -f Date: Fri, 15 Mar 2002 08:55:42 -0500 From: Christopher Masto To: Maxim Sobolev Cc: Glenn Johnson , Michael J Estes , Christopher Masto , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/www/mozilla Makefile pkg-plist ports/www/mozilla/files patch-modules::libpref::src::unix::unix.js Message-ID: <20020315135542.GA78716@masto.com> References: <200203142021.g2EKL6q07845@freefall.freebsd.org> <20020314203631.GA70960@netmonger.net> <1016157801.98704.2.camel@estes.2y.net> <20020315050956.GA43971@gforce.johnson.home> <3C91A1D0.7D6E5A83@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline In-Reply-To: <3C91A1D0.7D6E5A83@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 Fri, Mar 15, 2002 at 09:25:04AM +0200, Maxim Sobolev wrote: > > Do you find that the fonts are not as good looking when the above is > > done? On my system, the fonts look heavier and have an "out of focus" > > look when they are anti-aliased. > > Try to disable autohinting (pref("font.FreeType2.autohinted", false)) > - this could help, at least it helped me. I wasn't entirely pleased with how it looked either, but it became moot because Galeon crashes on startup if truetype is enabled. Since I use Galeon rather than Mozilla directly, I had to turn it back off. These are bleeding-edge; I'm sure it'll get better. -- "Contemplate the mangled bodies of your countrymen, and then say, What should be the reward of such sacrifices? ... If ye love wealth better than liberty, the tranquillity of servitude than the animating contest of freedom -- go from us in peace. Crouch down and lick the hands which feed you. May your chains sit lightly upon you." -- Samuel Adams, 1776 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 Fri Mar 15 6: 2:34 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 12E3937B404; Fri, 15 Mar 2002 06:02:23 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g2FE27B67118; Fri, 15 Mar 2002 16:02:07 +0200 (EET) (envelope-from ru) Date: Fri, 15 Mar 2002 16:02:07 +0200 From: Ruslan Ermilov To: Makoto Matsushita Cc: nyan@jp.FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall Makefile Message-ID: <20020315140207.GA65912@sunbay.com> References: <20020315121130.GA50745@sunbay.com> <20020315.211810.74739673.nyan@jp.FreeBSD.org> <20020315133052.GB50745@sunbay.com> <20020315224730O.matusita@jp.FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020315224730O.matusita@jp.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, Mar 15, 2002 at 10:47:30PM +0900, Makoto Matsushita wrote: > > ru> OK, how about this? I don't like building all of the "sys/boot" > ru> in advance. > > Maybe it looks ugly to you, but it's also maybe a necessary evil for us IMHO. > But it's not actually -- we don't need anything except boot0 and mbr for i386 and boot0 and boot0.5 for PC98 for sysinstall to build. Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 6: 7:40 2002 Delivered-To: cvs-all@freebsd.org Received: from boromir.vpop.net (dns1.vpop.net [206.117.147.2]) by hub.freebsd.org (Postfix) with ESMTP id B53A137B421; Fri, 15 Mar 2002 06:07:26 -0800 (PST) Received: from vpop.net (bilbo.vpop.net [65.103.33.41]) by boromir.vpop.net (8.11.6/8.11.6) with ESMTP id g2FE7PF76817; Fri, 15 Mar 2002 06:07:25 -0800 (PST) (envelope-from mreimer@vpop.net) Message-ID: <3C920055.1000708@vpop.net> Date: Fri, 15 Mar 2002 08:08:21 -0600 From: Matthew Reimer Organization: VPOP Technologies, Inc. User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.9) Gecko/20020312 X-Accept-Language: en-us, en MIME-Version: 1.0 To: cvs-all@freebsd.org, sobomax@freebsd.org Subject: Re: cvs commit: ports/www/mozilla Makefile pkg-plist ports/www/mozilla/files patch-modules::libpref::src::unix::unix.js References: Content-Type: text/plain; charset=KOI8-R; 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 Maxim Sobolev wrote: > Glenn Johnson wrote: > >>On Thu, Mar 14, 2002 at 06:03:21PM -0800, Michael J Estes wrote: >> >> >>>I put the following prefs in my >>>~/.mozilla/default/XXXXXXXX.slt/prefs.js >>> >>>user_pref("font.FreeType2.autohinted", true); >>>user_pref("font.FreeType2.enable", true); >>>user_pref("font.directory.truetype.1","/usr/X11R6/lib/X11/fonts/Type1"); >>>user_pref("font.directory.truetype.2","/usr/X11R6/lib/X11/fonts/webfonts"); >>>user_pref("font.directory.truetype.3","/usr/X11R6/lib/X11/fonts/truetype"); >>>user_pref("font.freetype2.shared-library", "libfreetype.so.9"); >>> >>>and I get freetype fonts in mozilla >> >>Do you find that the fonts are not as good looking when the above is >>done? On my system, the fonts look heavier and have an "out of focus" >>look when they are anti-aliased. > > > Try to disable autohinting (pref("font.FreeType2.autohinted", false)) > - this could help, at least it helped me. What fixed it for me was to set font.FreeType2.unhinted to false. The problem is that freetype2 is built with hinting bytecode interpreter turned on. I think 'autohinting' is what freetype does when the freetype doesn't have the hinting interpreter turned on; instead it guesses. So leave autohinting as it was, and set unhinted to false. Matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 6: 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 C8A4B37B419; Fri, 15 Mar 2002 06:09:02 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FE92r53522; Fri, 15 Mar 2002 06:09:02 -0800 (PST) (envelope-from ue) Message-Id: <200203151409.g2FE92r53522@freefall.freebsd.org> From: Udo Erdelhoff Date: Fri, 15 Mar 2002 06:09:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.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 ue 2002/03/15 06:09:02 PST Modified files: (Branch: RELENG_4) release/doc/de_DE.ISO8859-1/relnotes/common new.sgml Log: MFen 1.22.2.208 Revision Changes Path 1.1.2.2 +19 -3 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 Mar 15 6:21: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 EC63837B404; Fri, 15 Mar 2002 06:21:13 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FELD555414; Fri, 15 Mar 2002 06:21:13 -0800 (PST) (envelope-from ru) Message-Id: <200203151421.g2FELD555414@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 06:21:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/pwd pwd.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 ru 2002/03/15 06:21:13 PST Modified files: bin/pwd pwd.1 Log: mdoc(7) police: use precise width specifier. Revision Changes Path 1.17 +1 -1 src/bin/pwd/pwd.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 6: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 2CB9637B404; Fri, 15 Mar 2002 06:28:06 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FES6s56585; Fri, 15 Mar 2002 06:28:06 -0800 (PST) (envelope-from ru) Message-Id: <200203151428.g2FES6s56585@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 06:28:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/atacontrol atacontrol.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 ru 2002/03/15 06:28:05 PST Modified files: sbin/atacontrol atacontrol.8 Log: mdoc(7) police: tiny fixes. Revision Changes Path 1.13 +2 -2 src/sbin/atacontrol/atacontrol.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 6:34:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2FE2937B400; Fri, 15 Mar 2002 06:34:11 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FEYBv57333; Fri, 15 Mar 2002 06:34:11 -0800 (PST) (envelope-from ru) Message-Id: <200203151434.g2FEYBv57333@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 06:34:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dump dump.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 ru 2002/03/15 06:34:11 PST Modified files: sbin/dump dump.8 Log: mdoc(7) police: tiny fixes. Revision Changes Path 1.43 +3 -2 src/sbin/dump/dump.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 6:35:34 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 B7A7437B404; Fri, 15 Mar 2002 06:35:26 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 587D95346; Fri, 15 Mar 2002 15:35:25 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: "David E. O'Brien" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs ffs_softdep.c References: <200203150406.g2F46Bw06312@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 15 Mar 2002 15:35:24 +0100 In-Reply-To: <200203150406.g2F46Bw06312@freefall.freebsd.org> Message-ID: Lines: 13 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "David E. O'Brien" writes: > Log: > Quiet a warning on the Alpha. More like "obfuscate the code to shut up stupid gcc"... *sigh* I know we don't really have any alternatives, but I still hate gcc. 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 Mar 15 6:45: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 7FC8237B417; Fri, 15 Mar 2002 06:45:45 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FEjjJ59114; Fri, 15 Mar 2002 06:45:45 -0800 (PST) (envelope-from ru) Message-Id: <200203151445.g2FEjjJ59114@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 06:45:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ifconfig ifconfig.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 ru 2002/03/15 06:45:45 PST Modified files: sbin/ifconfig ifconfig.8 Log: mdoc(7) police: kill whitespace at eol. Revision Changes Path 1.53 +1 -1 src/sbin/ifconfig/ifconfig.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 6:56: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 9429737B400; Fri, 15 Mar 2002 06:56:53 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FEuri60644; Fri, 15 Mar 2002 06:56:53 -0800 (PST) (envelope-from ru) Message-Id: <200203151456.g2FEuri60644@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 06:56:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/mount_cd9660 mount_cd9660.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 ru 2002/03/15 06:56:53 PST Modified files: sbin/mount_cd9660 mount_cd9660.8 Log: mdoc(7) police: misc fixes. Revision Changes Path 1.19 +4 -5 src/sbin/mount_cd9660/mount_cd9660.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 7: 2: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 D0DEF37B41D; Fri, 15 Mar 2002 07:02:13 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FF2Dp61362; Fri, 15 Mar 2002 07:02:13 -0800 (PST) (envelope-from ru) Message-Id: <200203151502.g2FF2Dp61362@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 07:02:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/routed 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 ru 2002/03/15 07:02:13 PST Modified files: sbin/routed routed.8 Log: mdoc(7) police: GC duplicate VCS ID. Revision Changes Path 1.27 +0 -3 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 Fri Mar 15 7: 7: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 524B037B417; Fri, 15 Mar 2002 07:07:39 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FF7d165688; Fri, 15 Mar 2002 07:07:39 -0800 (PST) (envelope-from ru) Message-Id: <200203151507.g2FF7d165688@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 07:07:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/sysctl sysctl.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 ru 2002/03/15 07:07:39 PST Modified files: sbin/sysctl sysctl.8 Log: mdoc(7) police: tiny fixes. Revision Changes Path 1.46 +2 -2 src/sbin/sysctl/sysctl.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 7:10: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 8CC0A37B416; Fri, 15 Mar 2002 07:10:13 -0800 (PST) Received: (from cy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FFADU66089; Fri, 15 Mar 2002 07:10:13 -0800 (PST) (envelope-from cy) Message-Id: <200203151510.g2FFADU66089@freefall.freebsd.org> From: Cy Schubert Date: Fri, 15 Mar 2002 07:10:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/xcut 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/03/15 07:10:13 PST Modified files: x11/xcut Makefile Log: Change MAINTAINER from my email address at gov.bc.ca to FreeBSD.org. Revision Changes Path 1.4 +2 -2 ports/x11/xcut/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 7:12: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 E092E37B400; Fri, 15 Mar 2002 07:12:10 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FFCAO66461; Fri, 15 Mar 2002 07:12:10 -0800 (PST) (envelope-from ru) Message-Id: <200203151512.g2FFCAO66461@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 07:12:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/common loader.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 ru 2002/03/15 07:12:10 PST Modified files: sys/boot/common loader.8 Log: mdoc(7) police: fix a typo and markup. Revision Changes Path 1.41 +6 -2 src/sys/boot/common/loader.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 7:15: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 DFB5A37B448; Fri, 15 Mar 2002 07:15:06 -0800 (PST) Received: (from cy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FFF6j66899; Fri, 15 Mar 2002 07:15:06 -0800 (PST) (envelope-from cy) Message-Id: <200203151515.g2FFF6j66899@freefall.freebsd.org> From: Cy Schubert Date: Fri, 15 Mar 2002 07:15:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/aide 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/03/15 07:15:05 PST Modified files: security/aide Makefile Log: Change MAINTAINER from me at work to me at FreeBSD.org. Revision Changes Path 1.7 +1 -1 ports/security/aide/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 7: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 D542037B41A; Fri, 15 Mar 2002 07:17:58 -0800 (PST) Received: (from cy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FFHwg67344; Fri, 15 Mar 2002 07:17:58 -0800 (PST) (envelope-from cy) Message-Id: <200203151517.g2FFHwg67344@freefall.freebsd.org> From: Cy Schubert Date: Fri, 15 Mar 2002 07:17:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/sftp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cy 2002/03/15 07:17:58 PST Modified files: ftp/sftp Makefile Log: Change MAINTAINER from me at work to me at FreeBSD.org. Revision Changes Path 1.13 +1 -1 ports/ftp/sftp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 7:27:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9C30437B41C; Fri, 15 Mar 2002 07:26:57 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FFQve68677; Fri, 15 Mar 2002 07:26:57 -0800 (PST) (envelope-from ru) Message-Id: <200203151526.g2FFQve68677@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 07:26:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/at at.man X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/15 07:26:57 PST Modified files: usr.bin/at at.man Log: mdoc(7) police: markup fixes. Revision Changes Path 1.27 +20 -13 src/usr.bin/at/at.man To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 7:28: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 0103B37B41E; Fri, 15 Mar 2002 07:28:14 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FFSDF68970; Fri, 15 Mar 2002 07:28:13 -0800 (PST) (envelope-from ru) Message-Id: <200203151528.g2FFSDF68970@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 07:28:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/head head.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 ru 2002/03/15 07:28:12 PST Modified files: usr.bin/head head.1 Log: mdoc(7) police: pedantry. Revision Changes Path 1.11 +1 -4 src/usr.bin/head/head.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 7:32: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 05AF837B47B; Fri, 15 Mar 2002 07:31:59 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FFVwl69695; Fri, 15 Mar 2002 07:31:58 -0800 (PST) (envelope-from ru) Message-Id: <200203151531.g2FFVwl69695@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 07:31:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/ldd ldd.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 ru 2002/03/15 07:31:57 PST Modified files: usr.bin/ldd ldd.1 Log: mdoc(7) police: kill hard sentence breaks. Revision Changes Path 1.21 +4 -2 src/usr.bin/ldd/ldd.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 7:34:47 2002 Delivered-To: cvs-all@freebsd.org Received: from mail11.speakeasy.net (mail11.speakeasy.net [216.254.0.211]) by hub.freebsd.org (Postfix) with ESMTP id E078037B43A for ; Fri, 15 Mar 2002 07:34:18 -0800 (PST) Received: (qmail 31645 invoked from network); 15 Mar 2002 15:34:18 -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 ; 15 Mar 2002 15:34:18 -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 g2FFYiv39810; Fri, 15 Mar 2002 10:34:45 -0500 (EST) (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: <200203150641.g2F6f1M35597@freefall.freebsd.org> Date: Fri, 15 Mar 2002 10:34:20 -0500 (EST) From: John Baldwin To: Warner Losh Subject: RE: cvs commit: src/sys/dev/cardbus cardbus.c cardbus_cis.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 15-Mar-2002 Warner Losh wrote: > imp 2002/03/14 22:41:01 PST > > Modified files: > sys/dev/cardbus cardbus.c cardbus_cis.c > Log: > Revert most of the recent PCI merge. This has proven to be too > unstable for the coming DP1 release. Instead, I'll develop that on > the IMP_CB_MERGE branch until it is more stable. Does this fix the resource allocation problems with PCI? -- 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 Mar 15 7:34:49 2002 Delivered-To: cvs-all@freebsd.org Received: from mail5.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by hub.freebsd.org (Postfix) with ESMTP id 5220C37B477 for ; Fri, 15 Mar 2002 07:34:25 -0800 (PST) Received: (qmail 17646 invoked from network); 15 Mar 2002 15:34:24 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail5.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 15 Mar 2002 15:34:24 -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 g2FFYpv39814; Fri, 15 Mar 2002 10:34:51 -0500 (EST) (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: <200203151127.g2FBRlM03640@freefall.freebsd.org> Date: Fri, 15 Mar 2002 10:34:26 -0500 (EST) From: John Baldwin To: Ruslan Ermilov Subject: RE: cvs commit: src/usr.sbin/sysinstall 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 15-Mar-2002 Ruslan Ermilov wrote: > ru 2002/03/15 03:27:47 PST > > Modified files: > usr.sbin/sysinstall Makefile > Log: > Embed boot images built as part of buildworld rather than the > installed ones under /boot (which we may not even have in the > case of a cross build). Cool. > This introduced chicken and egg problem - we need boot images > early in the "depend" stage but they have not yet been built. > Work around this by excluding the generated makeboot.c source > from the "depend" list; it's okay because we hardcode all its > dependencies explicitly. We actually lose the dependency bit > on but it's probably okay too as the only thing > we use is the u_char datatype and this is unlikely to change. > After all, it's normal for sloppy cleaning to cause problems. > > beast.FreeBSD.org running 5.0-CURRENT alpha has been able to > cross build i386 world with this patch. > > Prodded by: gallatin Thanks for fixing this. Long term, I would like someone to fix sysinstall so it reads these files out of /boot like we do for boot{1,2} instead of hardcoding them into the binary. Junior Sysinstall Hacker task I suppose. :) -- 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 Mar 15 7:39: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 96CA937B416; Fri, 15 Mar 2002 07:39:36 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FFdal70871; Fri, 15 Mar 2002 07:39:36 -0800 (PST) (envelope-from des) Message-Id: <200203151539.g2FFdal70871@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 15 Mar 2002 07:39:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/inn-stable Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/15 07:39:36 PST Modified files: news/inn-stable Makefile distinfo Log: Upgrade to 2.3.20020315 Revision Changes Path 1.81 +1 -1 ports/news/inn-stable/Makefile 1.38 +1 -1 ports/news/inn-stable/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 7:40: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 3E7C637B427; Fri, 15 Mar 2002 07:39:55 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FFdsg70937; Fri, 15 Mar 2002 07:39:54 -0800 (PST) (envelope-from sos) Message-Id: <200203151539.g2FFdsg70937@freefall.freebsd.org> From: Søren Schmidt Date: Fri, 15 Mar 2002 07:39:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-raid.c 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/03/15 07:39:54 PST Modified files: sys/dev/ata ata-raid.c ata-raid.h Log: Update to the RAID1 rebuild code. Run rebuild as a background process. Sponsored by: Advanis Revision Changes Path 1.37 +35 -19 src/sys/dev/ata/ata-raid.c 1.14 +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 Fri Mar 15 7:47: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 33B0B37B400; Fri, 15 Mar 2002 07:47:40 -0800 (PST) Received: (from matusita@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FFleD72503; Fri, 15 Mar 2002 07:47:40 -0800 (PST) (envelope-from matusita) Message-Id: <200203151547.g2FFleD72503@freefall.freebsd.org> From: Makoto MATSUSHITA Date: Fri, 15 Mar 2002 07:47:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/emulators/linux-vmware-toolbox Makefile ports/emulators/vmware-guestd Makefile ports/emulators/vmware-tools Makefile ports/japanese/dbskkd-cdb Makefile ports/japanese/skk-elisp Makefile ports/japanese/skk-jisyo 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/03/15 07:47:40 PST Modified files: emulators/linux-vmware-toolbox Makefile emulators/vmware-guestd Makefile emulators/vmware-tools Makefile japanese/dbskkd-cdb Makefile japanese/skk-elisp Makefile japanese/skk-jisyo Makefile japanese/skk-tools Makefile japanese/skk Makefile japanese/skkserv Makefile net/jwhois Makefile x11-wm/fvwm2-i18n Makefile Log: Change my email address to the one of @FreeBSD.org. Reviewed by: kuriyama Revision Changes Path 1.7 +2 -2 ports/emulators/linux-vmware-toolbox/Makefile 1.2 +1 -1 ports/emulators/vmware-guestd/Makefile 1.3 +1 -1 ports/emulators/vmware-tools/Makefile 1.10 +2 -2 ports/japanese/dbskkd-cdb/Makefile 1.11 +2 -2 ports/japanese/skk-elisp/Makefile 1.7 +2 -2 ports/japanese/skk-jisyo/Makefile 1.10 +1 -1 ports/japanese/skk-tools/Makefile 1.15 +2 -2 ports/japanese/skk/Makefile 1.14 +1 -1 ports/japanese/skkserv/Makefile 1.7 +1 -1 ports/net/jwhois/Makefile 1.25 +2 -2 ports/x11-wm/fvwm2-i18n/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 7:52: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 A792937B419; Fri, 15 Mar 2002 07:52:31 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FFqV574636; Fri, 15 Mar 2002 07:52:31 -0800 (PST) (envelope-from kris) Message-Id: <200203151552.g2FFqV574636@freefall.freebsd.org> From: Kris Kennaway Date: Fri, 15 Mar 2002 07:52:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/libfreenet/files patch-client_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 kris 2002/03/15 07:52:31 PST Modified files: net/libfreenet/files patch-client_util.c Log: Fix build. The code prototypes a function as returning long, then declares it 2 lines later as returning a time_t. Go figure. Submitted by: bento Revision Changes Path 1.2 +11 -2 ports/net/libfreenet/files/patch-client_util.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 7:59:31 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 284F237B400; Fri, 15 Mar 2002 07:59:17 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g2FFxBi44038; Fri, 15 Mar 2002 08:59:11 -0700 (MST) (envelope-from imp@village.org) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id g2FFxAL58370; Fri, 15 Mar 2002 08:59:11 -0700 (MST) (envelope-from imp@village.org) Date: Fri, 15 Mar 2002 08:58:56 -0700 (MST) Message-Id: <20020315.085856.97067055.imp@village.org> To: jhb@FreeBSD.org Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/cardbus cardbus.c cardbus_cis.c From: "M. Warner Losh" In-Reply-To: References: <200203150641.g2F6f1M35597@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 imp> Revert most of the recent PCI merge. This has proven to be too imp> unstable for the coming DP1 release. Instead, I'll develop that on imp> the IMP_CB_MERGE branch until it is more stable. In message: John Baldwin writes: : Does this fix the resource allocation problems with PCI? I don't think that this impacts them one way or the other. I've not tried it with APM disbaled (to enable ACPI), so I don't know. It does fix the interrupt problems that I introduced. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 8: 3: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 760FA37B402; Fri, 15 Mar 2002 08:03:29 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FG3TW76425; Fri, 15 Mar 2002 08:03:29 -0800 (PST) (envelope-from ru) Message-Id: <200203151603.g2FG3TW76425@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 08:03:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/uuencode uuencode.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 ru 2002/03/15 08:03:29 PST Modified files: usr.bin/uuencode uuencode.1 Log: mdoc(7) police: fix markup and uudecode(1) -o option description. Revision Changes Path 1.17 +5 -6 src/usr.bin/uuencode/uuencode.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 8: 7: 0 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 AFDCD37B405; Fri, 15 Mar 2002 08:06:48 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 217EF9B19; Fri, 15 Mar 2002 11:06:32 -0500 (EST) Date: Fri, 15 Mar 2002 11:06:32 -0500 From: Will Andrews To: Ying-Chieh Liao Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/security Makefile ports/security/nofgpg Makefile distinfo pkg-comment pkg-descr pkg-plist Message-ID: <20020315160631.GX53073@squall.waterspout.com> Mail-Followup-To: Ying-Chieh Liao , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200203151313.g2FDDEp32574@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203151313.g2FDDEp32574@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 Fri, Mar 15, 2002 at 05:13:14AM -0800, Ying-Chieh Liao wrote: > Added files: > security/nofgpg Makefile distinfo pkg-comment pkg-descr > pkg-plist > Log: > add nofgpg 0.4 > No One Fears GPG What the heck does this do? -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 8:11:12 2002 Delivered-To: cvs-all@freebsd.org Received: from Terry.Dorm11.NCTU.edu.tw (Terry.Dorm11.NCTU.edu.tw [140.113.192.99]) by hub.freebsd.org (Postfix) with ESMTP id B1F3037B400; Fri, 15 Mar 2002 08:10:58 -0800 (PST) Received: from Terry.Dorm11.NCTU.edu.tw (ijliao@localhost [127.0.0.1]) by Terry.Dorm11.NCTU.edu.tw (8.12.2/8.12.2) with ESMTP id g2FGBoKG089639; Sat, 16 Mar 2002 00:11:56 +0800 (CST) (envelope-from ijliao@Terry.Dorm11.NCTU.edu.tw) Received: (from ijliao@localhost) by Terry.Dorm11.NCTU.edu.tw (8.12.2/8.12.2/Submit) id g2FGBoD4089638; Sat, 16 Mar 2002 00:11:50 +0800 (CST) Date: Sat, 16 Mar 2002 00:11:50 +0800 From: Ying-Chieh Liao To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/security Makefile ports/security/nofgpg Makefile distinfo pkg-comment pkg-descr pkg-plist Message-ID: <20020315161150.GA89618@terry.dragon2.net> References: <200203151313.g2FDDEp32574@freefall.freebsd.org> <20020315160631.GX53073@squall.waterspout.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="huq684BweRXVnRxX" Content-Disposition: inline In-Reply-To: <20020315160631.GX53073@squall.waterspout.com> User-Agent: Mutt/1.3.27i X-Operating-System: FreeBSD 5.0-CURRENT i386 X-PGP-Key-Location: http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=0x11C02382 X-PGP-Key-Fingerprint: 4E98 55CC 2866 7A90 EFD7 9DA5 ACC6 0165 11C0 2382 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --huq684BweRXVnRxX Content-Type: text/plain; charset=big5 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On =A4=AD, 3 15, 2002 at 11:06:32 -0500, Will Andrews wrote: > What the heck does this do? a python + gnome frontend of gnupg --=20 char*p=3D"char*p=3D%c%s%c;main(){printf(p,34,p,34);}";main(){printf(p,34,p,= 34);} -- Anonymous --huq684BweRXVnRxX 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 iD8DBQE8kh1FrMYBZRHAI4IRAlMeAKC+N2E6icnmME4kaXexCqwsypJO5wCfc52r iwfKp2VdWaV0ktaRQ9VUQ9k= =e1cH -----END PGP SIGNATURE----- --huq684BweRXVnRxX-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 8:11:53 2002 Delivered-To: cvs-all@freebsd.org Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by hub.freebsd.org (Postfix) with ESMTP id 9E39637B421; Fri, 15 Mar 2002 08:11:25 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 71C90AE265; Fri, 15 Mar 2002 08:11:25 -0800 (PST) Date: Fri, 15 Mar 2002 08:11:25 -0800 From: Alfred Perlstein To: "Brian F. Feldman" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_mtxpool.c src/sys/sys kernel.h src/sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h vm_pageout.c vm_zone.c Message-ID: <20020315161125.GF4857@elvis.mu.org> References: <20020315054113.GC4857@elvis.mu.org> <200203151121.g2FBLnj36094@green.bikeshed.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203151121.g2FBLnj36094@green.bikeshed.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 * Brian F. Feldman [020315 03:21] wrote: > Alfred Perlstein wrote: > > > > What is the problem? > > Damn good question. Are the tracebacks related? If not, what are you > supposed to be telling me it's deadlocking on? I don't see the system being > deadlocked. What is it actually supposed to be blocked on? It's actually not blocked, it's gone into an infinite loop. > It doesn't need LK_EXCLUPGRADE semantics, only LK_UPGRADE, if it's not > blocking. It backs out completely and unlocks the shared reference and > tries for an exclusive lock. Bzzt, wrong. > > It's obvious you didn't understand what's going on here. > > > > Please either fix or back this code out. > > Yes, I'm sure it's so blindingly obvious from the two tracebacks you posted > which look SO MUCH like deadlocks... I'm just giving you the same level of information you gave me in order to understand what you did change. Now fix it or back it out. -- -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 Fri Mar 15 8:24: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 EBBBF37B41C; Fri, 15 Mar 2002 08:24:16 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FGOGD83797; Fri, 15 Mar 2002 08:24:16 -0800 (PST) (envelope-from kevlo) Message-Id: <200203151624.g2FGOGD83797@freefall.freebsd.org> From: Kevin Lo Date: Fri, 15 Mar 2002 08:24:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/xerces-j pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/03/15 08:24:16 PST Modified files: textproc/xerces-j pkg-plist Log: Fix pkg-plist Revision Changes Path 1.2 +1313 -1313 ports/textproc/xerces-j/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 Mar 15 8:28:11 2002 Delivered-To: cvs-all@freebsd.org Received: from mail5.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by hub.freebsd.org (Postfix) with ESMTP id 5D90637B405 for ; Fri, 15 Mar 2002 08:27:37 -0800 (PST) Received: (qmail 7369 invoked from network); 15 Mar 2002 16:27:36 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail5.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 15 Mar 2002 16:27: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 g2FGS2v39972; Fri, 15 Mar 2002 11:28:03 -0500 (EST) (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: <20020315.085856.97067055.imp@village.org> Date: Fri, 15 Mar 2002 11:27:38 -0500 (EST) From: John Baldwin To: "M. Warner Losh" Subject: Re: cvs commit: src/sys/dev/cardbus cardbus.c cardbus_cis.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 15-Mar-2002 M. Warner Losh wrote: > imp> Revert most of the recent PCI merge. This has proven to be too > imp> unstable for the coming DP1 release. Instead, I'll develop that on > imp> the IMP_CB_MERGE branch until it is more stable. > > In message: > John Baldwin writes: >: Does this fix the resource allocation problems with PCI? > > I don't think that this impacts them one way or the other. I've not > tried it with APM disbaled (to enable ACPI), so I don't know. It does > fix the interrupt problems that I introduced. Hmmm. In the problems green and I were having, when green turned off ACPI it got good resources again and worked ok IIRC. > 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 Fri Mar 15 8:43:30 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 5093E37B402; Fri, 15 Mar 2002 08:43:08 -0800 (PST) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [fec0::1:12]) by Awfulhak.org (8.11.6/8.11.6) with ESMTP id g2FGh5592243; Fri, 15 Mar 2002 16:43:05 GMT (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 g2F8c3oD000979; Fri, 15 Mar 2002 08:38:03 GMT (envelope-from brian@freebsd-services.com) Message-Id: <200203150838.g2F8c3oD000979@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Max Khon Cc: Brian Somers , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/databases/p5-DBD-Pg Makefile In-Reply-To: Message from Max Khon of "Thu, 14 Mar 2002 23:39:18 PST." <20020314233918.A9991@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 15 Mar 2002 08:38:03 +0000 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 > hi, there! > > On Thu, Mar 14, 2002 at 10:19:02PM +0000, Brian Somers wrote: > > > > Modified files: > > > databases/p5-DBD-Pg Makefile > > > Log: > > > - allow this port to be built with PostgreSQL 7.1 port (use pg_config) > > > - grab maintainership > > > > > > Revision Changes Path > > > 1.38 +14 -4 ports/databases/p5-DBD-Pg/Makefile > > > > Hmm, this undoes my ``grabbing'' of maintainership in the previous > > commit. > > ugh, sorry, should I change it back to ports@freebsd-services.com? > > /fjoe Na -- thanks. If you're happy to maintain it, that's fine by me. I was just taking it in preference to leaving it unmaintained. Cheers. -- 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 Mar 15 8:43:46 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 9F5B537B41D; Fri, 15 Mar 2002 08:43:19 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g2FGhBt89236; Fri, 15 Mar 2002 18:43:11 +0200 (EET) (envelope-from ru) Date: Fri, 15 Mar 2002 18:43:10 +0200 From: Ruslan Ermilov To: John Baldwin Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall Makefile Message-ID: <20020315164310.GA88631@sunbay.com> References: <200203151127.g2FBRlM03640@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 On Fri, Mar 15, 2002 at 10:34:26AM -0500, John Baldwin wrote: > > On 15-Mar-2002 Ruslan Ermilov wrote: > > ru 2002/03/15 03:27:47 PST > > > > Modified files: > > usr.sbin/sysinstall Makefile > > Log: > > Embed boot images built as part of buildworld rather than the > > installed ones under /boot (which we may not even have in the > > case of a cross build). > > Cool. > > > This introduced chicken and egg problem - we need boot images > > early in the "depend" stage but they have not yet been built. > > Work around this by excluding the generated makeboot.c source > > from the "depend" list; it's okay because we hardcode all its > > dependencies explicitly. We actually lose the dependency bit > > on but it's probably okay too as the only thing > > we use is the u_char datatype and this is unlikely to change. > > After all, it's normal for sloppy cleaning to cause problems. > > > > beast.FreeBSD.org running 5.0-CURRENT alpha has been able to > > cross build i386 world with this patch. > > > > Prodded by: gallatin > > Thanks for fixing this. Long term, I would like someone to fix > sysinstall so it reads these files out of /boot like we do for > boot{1,2} instead of hardcoding them into the binary. Junior > Sysinstall Hacker task I suppose. :) > That will also require some tweaks to release/Makefile, but indeed this is a very good idea. Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 8: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 BF3CE37B405; Fri, 15 Mar 2002 08:44:52 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FGiqu86614; Fri, 15 Mar 2002 08:44:52 -0800 (PST) (envelope-from ru) Message-Id: <200203151644.g2FGiqu86614@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 08:44:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/xlint/xlint lint.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 ru 2002/03/15 08:44:52 PST Modified files: usr.bin/xlint/xlint lint.1 Log: mdoc(7) police: Restore fixes from revision 1.20 that got lost in revision 1.21 merge. Fixed some more. Revision Changes Path 1.22 +62 -82 src/usr.bin/xlint/xlint/lint.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 8:52:35 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 042EB37B416; Fri, 15 Mar 2002 08:51:53 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 0EE705347; Fri, 15 Mar 2002 17:51:50 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall Makefile References: <200203151127.g2FBRlM03640@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 15 Mar 2002 17:51:49 +0100 In-Reply-To: <200203151127.g2FBRlM03640@freefall.freebsd.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 Ruslan Ermilov writes: > beast.FreeBSD.org running 5.0-CURRENT alpha has been able to > cross build i386 world with this patch. I assume you reenabled sysinstall in usr.sbin/Makefile before testing this? 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 Mar 15 8:53: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 4DF3437B417; Fri, 15 Mar 2002 08:53:32 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FGrWd87676; Fri, 15 Mar 2002 08:53:32 -0800 (PST) (envelope-from ru) Message-Id: <200203151653.g2FGrWd87676@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 08:53:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/arp arp.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 ru 2002/03/15 08:53:32 PST Modified files: usr.sbin/arp arp.8 Log: Fix a typo. Revision Changes Path 1.18 +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 Fri Mar 15 8: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 0C48737B402; Fri, 15 Mar 2002 08:53:35 -0800 (PST) Received: (from matusita@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FGrYK87707; Fri, 15 Mar 2002 08:53:34 -0800 (PST) (envelope-from matusita) Message-Id: <200203151653.g2FGrYK87707@freefall.freebsd.org> From: Makoto MATSUSHITA Date: Fri, 15 Mar 2002 08:53:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/jwhois 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 matusita 2002/03/15 08:53:34 PST Modified files: net/jwhois Makefile pkg-plist Log: Fix the problem that the jwhois datacache mechanism is not working properly. In src/Makefile.am rev 1.18, install-exec-hook: is disappeared (I dunno why, CVS commit log doesn't answer my question). As a result, jwhois binary is not chgrp(1)ed, so do it in Makefile. pkg-plist should be fixed to include (empty) datacache directory (that's long standing bug since the beginning of this port, sorry). Revision Changes Path 1.8 +2 -0 ports/net/jwhois/Makefile 1.5 +1 -0 ports/net/jwhois/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 8:54:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B3E4337B41A; Fri, 15 Mar 2002 08:54:26 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FGsQi87995; Fri, 15 Mar 2002 08:54:26 -0800 (PST) (envelope-from ijliao) Message-Id: <200203151654.g2FGsQi87995@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 15 Mar 2002 08:54:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel Makefile ports/devel/py-reverse 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/03/15 08:54:26 PST Modified files: devel Makefile Added files: devel/py-reverse Makefile distinfo pkg-comment pkg-descr pkg-plist Log: add py-reverse 0.2.2 A set of tools for reverse engineering Python code Revision Changes Path 1.781 +1 -0 ports/devel/Makefile 1.1 +31 -0 ports/devel/py-reverse/Makefile (new) 1.1 +1 -0 ports/devel/py-reverse/distinfo (new) 1.1 +1 -0 ports/devel/py-reverse/pkg-comment (new) 1.1 +6 -0 ports/devel/py-reverse/pkg-descr (new) 1.1 +25 -0 ports/devel/py-reverse/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 Mar 15 8:55: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D2C2637B41F; Fri, 15 Mar 2002 08:54:34 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FGsY288028; Fri, 15 Mar 2002 08:54:34 -0800 (PST) (envelope-from ijliao) Message-Id: <200203151654.g2FGsY288028@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 15 Mar 2002 08:54:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/15 08:54:34 PST Modified files: . modules Log: py-reverse --> ports/devel/py-reverse Revision Changes Path 1.4849 +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 Mar 15 9: 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 DB5AC37B416; Fri, 15 Mar 2002 09:01:05 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FH15W89006; Fri, 15 Mar 2002 09:01:05 -0800 (PST) (envelope-from ru) Message-Id: <200203151701.g2FH15W89006@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 09:01:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/xlint/xlint lint.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 ru 2002/03/15 09:01:05 PST Modified files: usr.bin/xlint/xlint lint.1 Log: Argh, I constantly keep forgetting about these XXX's I put. Revision Changes Path 1.23 +1 -2 src/usr.bin/xlint/xlint/lint.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 9: 6: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 1CA0E37B402; Fri, 15 Mar 2002 09:06:20 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FH6Ka93563; Fri, 15 Mar 2002 09:06:20 -0800 (PST) (envelope-from ru) Message-Id: <200203151706.g2FH6Ka93563@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 09:06:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/usbdevs usbdevs.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 ru 2002/03/15 09:06:20 PST Modified files: usr.sbin/usbdevs usbdevs.8 Log: mdoc(7) police: fix list width. Revision Changes Path 1.9 +1 -1 src/usr.sbin/usbdevs/usbdevs.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 9:20:47 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 1BF6E37B425; Fri, 15 Mar 2002 09:20:01 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g2FHJYL92550; Fri, 15 Mar 2002 19:19:34 +0200 (EET) (envelope-from ru) Date: Fri, 15 Mar 2002 19:19:33 +0200 From: Ruslan Ermilov To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall Makefile Message-ID: <20020315171933.GA92157@sunbay.com> References: <200203151127.g2FBRlM03640@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 On Fri, Mar 15, 2002 at 05:51:49PM +0100, Dag-Erling Smorgrav wrote: > Ruslan Ermilov writes: > > beast.FreeBSD.org running 5.0-CURRENT alpha has been able to > > cross build i386 world with this patch. > > I assume you reenabled sysinstall in usr.sbin/Makefile before testing > this? > No, because your change didn't exclude sysinstall from cross builds, and as such didn't make any difference. In a cross build case, Makefile.inc1 sets MACHINE_ARCH=${TARGET_ARCH} for targets like "depend", "all" and "install". (See CROSSENV setting in Makefile.inc1.) TARGET_ARCH is only meaningful in Makefile.inc1 and tools built as part of the cross-tools stage. Please back your change out. Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 9:26: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 1B5E137B419; Fri, 15 Mar 2002 09:26:46 -0800 (PST) Received: (from mbr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FHQkn97018; Fri, 15 Mar 2002 09:26:46 -0800 (PST) (envelope-from mbr) Message-Id: <200203151726.g2FHQkn97018@freefall.freebsd.org> From: Martin Blapp Date: Fri, 15 Mar 2002 09:26:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/openoffice/files patch-solenv::inc::unxfbsdi.mk ports/editors/openoffice-devel/files patch-solenv::inc::unxfbsdi.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 mbr 2002/03/15 09:26:45 PST Modified files: editors/openoffice/files patch-solenv::inc::unxfbsdi.mk editors/openoffice-devel/files patch-solenv::inc::unxfbsdi.mk Log: Add -fno-rtti so the mozab connector code compiles again. Revision Changes Path 1.7 +1 -1 ports/editors/openoffice-devel/files/patch-solenv::inc::unxfbsdi.mk 1.5 +1 -1 ports/editors/openoffice/files/patch-solenv::inc::unxfbsdi.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 9:31: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 0B1C937B41C; Fri, 15 Mar 2002 09:31:55 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FHVtN98232; Fri, 15 Mar 2002 09:31:55 -0800 (PST) (envelope-from ijliao) Message-Id: <200203151731.g2FHVtN98232@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 15 Mar 2002 09:31:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/plib/files patch-src::net::netMessage.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 ijliao 2002/03/15 09:31:54 PST Added files: x11-toolkits/plib/files patch-src::net::netMessage.h Log: add for htonl() Revision Changes Path 1.1 +11 -0 ports/x11-toolkits/plib/files/patch-src::net::netMessage.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 Mar 15 9:45:56 2002 Delivered-To: cvs-all@freebsd.org Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by hub.freebsd.org (Postfix) with ESMTP id 907B637B405; Fri, 15 Mar 2002 09:45:42 -0800 (PST) Received: (from wkb@localhost) by freebie.xs4all.nl (8.11.6/8.11.6) id g2FHjft10277; Fri, 15 Mar 2002 18:45:41 +0100 (CET) (envelope-from wkb) Date: Fri, 15 Mar 2002 18:45:41 +0100 From: Wilko Bulte To: Wilko Bulte , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Cc: gallatin@FreeBSD.org Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Message-ID: <20020315184541.B10207@freebie.xs4all.nl> References: <200203122050.g2CKo7S72963@freefall.freebsd.org> <20020314224655.GW90154@nathan.ruhr.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020314224655.GW90154@nathan.ruhr.de>; from ue@nathan.ruhr.de on Thu, Mar 14, 2002 at 11:46:55PM +0100 X-OS: FreeBSD 4.5-STABLE X-PGP: finger wilko@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 Thu, Mar 14, 2002 at 11:46:55PM +0100, Udo Erdelhoff wrote: > On Tue, Mar 12, 2002 at 12:50:07PM -0800, Wilko Bulte wrote: > > wilko 2002/03/12 12:50:07 PST > > > > Modified files: > > release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml > > Log: > > TGA and TGA2 clarification > > AS500 onboard sound. > > > > Revision Changes Path > > 1.35 +3 -4 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml > > Is it just me or should these changes have gone into the RELENG_4 > version? Hmm. The TGA2 story holds mostly true for both HEAD and RELENG_4. To be honest I am not sure if TGA (plain TGA I mean) works for HEAD?? I got rid of my Multia so I cannot try this. Any clues? Wilko -- | / o / /_ _ wilko@FreeBSD.org |/|/ / / /( (_) Bulte Arnhem, the Netherlands To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 9:46: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 DCA8B37B400; Fri, 15 Mar 2002 09:46:53 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FHkra00548; Fri, 15 Mar 2002 09:46:53 -0800 (PST) (envelope-from ru) Message-Id: <200203151746.g2FHkra00548@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 09:46:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen readpassphrase.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 ru 2002/03/15 09:46:53 PST Modified files: lib/libc/gen readpassphrase.3 Log: Come on guys, you can't just take OpenBSD manpage and commit it over someone else's fixes; this is at least offensive. If you have problems doing a proper merge, we are here, your fellow committers. :-( Reapply markup fixes from revision 1.2 and fix some more. Also fix the $OpenBSD$ tag. Revision Changes Path 1.4 +41 -30 src/lib/libc/gen/readpassphrase.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 9:50: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 9F0A537B404; Fri, 15 Mar 2002 09:50:21 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FHoLK01052; Fri, 15 Mar 2002 09:50:21 -0800 (PST) (envelope-from ru) Message-Id: <200203151750.g2FHoLK01052@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 09:50:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/locale isblank.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 ru 2002/03/15 09:50:21 PST Modified files: lib/libc/locale isblank.3 Log: mdoc(7) police: don't you notice the warnings? Revision Changes Path 1.15 +0 -1 src/lib/libc/locale/isblank.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 9:53: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 BA01437B404; Fri, 15 Mar 2002 09:53:20 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FHrKD02348; Fri, 15 Mar 2002 09:53:20 -0800 (PST) (envelope-from ru) Message-Id: <200203151753.g2FHrKD02348@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 09:53:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/locale tolower.3 toupper.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 ru 2002/03/15 09:53:20 PST Modified files: lib/libc/locale tolower.3 toupper.3 Log: bde got caught by mdoc(7) police. :-) Revision Changes Path 1.14 +1 -1 src/lib/libc/locale/tolower.3 1.14 +1 -1 src/lib/libc/locale/toupper.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 9:56: 8 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 51F8937B402; Fri, 15 Mar 2002 09:56:03 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2FHu3lv044317; Fri, 15 Mar 2002 09:56:03 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2FHsl6l044260; Fri, 15 Mar 2002 09:54:47 -0800 (PST) Date: Fri, 15 Mar 2002 09:54:47 -0800 From: "David O'Brien" To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs ffs_softdep.c Message-ID: <20020315095447.C44160@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200203150406.g2F46Bw06312@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 Fri, Mar 15, 2002 at 03:35:24PM +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 Fri, Mar 15, 2002 at 03:35:24PM +0100, Dag-Erling Smorgrav wrote: > "David E. O'Brien" writes: > > Log: > > Quiet a warning on the Alpha. > > More like "obfuscate the code to shut up stupid gcc"... error = 0; at the beginning of the function is obfuscatation?? At the companies I've worked at, local variables were _required_ to be initialized after their definition. -- -- 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 Fri Mar 15 9:57: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 9612737B419; Fri, 15 Mar 2002 09:57:41 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FHvfq03058; Fri, 15 Mar 2002 09:57:41 -0800 (PST) (envelope-from ru) Message-Id: <200203151757.g2FHvfq03058@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 09:57:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys extattr_get_file.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/15 09:57:41 PST Modified files: lib/libc/sys extattr_get_file.2 Log: mdoc(7) police: punctuation nit. Revision Changes Path 1.8 +1 -2 src/lib/libc/sys/extattr_get_file.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 9:59: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 988B137B404; Fri, 15 Mar 2002 09:59:46 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FHxk903398; Fri, 15 Mar 2002 09:59:46 -0800 (PST) (envelope-from ru) Message-Id: <200203151759.g2FHxk903398@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 09:59:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys gettimeofday.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 ru 2002/03/15 09:59:46 PST Modified files: lib/libc/sys gettimeofday.2 Log: mdoc(7) police: Fix xref to timeradd(3). Revision Changes Path 1.19 +1 -1 src/lib/libc/sys/gettimeofday.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 10: 1: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 0295E37B402; Fri, 15 Mar 2002 10:01:35 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FI1Yx03738; Fri, 15 Mar 2002 10:01:34 -0800 (PST) (envelope-from rwatson) Message-Id: <200203151801.g2FI1Yx03738@freefall.freebsd.org> From: Robert Watson Date: Fri, 15 Mar 2002 10:01:34 -0800 (PST) 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 rwatson 2002/03/15 10:01:34 PST Modified files: en/smp index.sgml Log: Update SMPng task list - Alfred has pushed down Giant for a number of fd-related operations, including read/write/pread/pwrite, +other consumers into the per-subsystem fileop code. Record this as done. - Add a task to push down Giant for the remaining such calls, including readv/writev which currently still require Giant for memory management in handling struct iovec arrays. Record this as un-owned. Revision Changes Path 1.49 +19 -1 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 Fri Mar 15 10: 4: 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 CEC8837B402; Fri, 15 Mar 2002 10:04:00 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FI40e04788; Fri, 15 Mar 2002 10:04:00 -0800 (PST) (envelope-from ru) Message-Id: <200203151804.g2FI40e04788@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 10:04:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys mmap.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 ru 2002/03/15 10:04:00 PST Modified files: lib/libc/sys mmap.2 Log: mdoc(7) police: hard sentence breaks, whitespace at EOL, contractions. Revision Changes Path 1.43 +18 -10 src/lib/libc/sys/mmap.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 10: 6: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 8969837B416; Fri, 15 Mar 2002 10:06:25 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FI6PH09205; Fri, 15 Mar 2002 10:06:25 -0800 (PST) (envelope-from ru) Message-Id: <200203151806.g2FI6PH09205@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 10:06:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_opie pam_opie.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 ru 2002/03/15 10:06:25 PST Modified files: lib/libpam/modules/pam_opie pam_opie.8 Log: mdoc(7) police: expand contractions. Revision Changes Path 1.8 +2 -2 src/lib/libpam/modules/pam_opie/pam_opie.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 10: 9: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 C2B2B37B400; Fri, 15 Mar 2002 10:09:32 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FI9W709847; Fri, 15 Mar 2002 10:09:32 -0800 (PST) (envelope-from ru) Message-Id: <200203151809.g2FI9W709847@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 10:09:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_self pam_self.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 ru 2002/03/15 10:09:32 PST Modified files: lib/libpam/modules/pam_self pam_self.8 Log: mdoc(7) police: tiny fixes. Revision Changes Path 1.7 +4 -2 src/lib/libpam/modules/pam_self/pam_self.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 10: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 1BE5537B428; Fri, 15 Mar 2002 10:12:14 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FICEl10300; Fri, 15 Mar 2002 10:12:14 -0800 (PST) (envelope-from ru) Message-Id: <200203151812.g2FICEl10300@freefall.freebsd.org> From: Ruslan Ermilov Date: Fri, 15 Mar 2002 10:12:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/fsdb fsdb.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 ru 2002/03/15 10:12:13 PST Modified files: sbin/fsdb fsdb.8 Log: This sounds better. Revision Changes Path 1.20 +1 -1 src/sbin/fsdb/fsdb.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 10:13: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 6474837B43C; Fri, 15 Mar 2002 10:12:41 -0800 (PST) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FICfO10384; Fri, 15 Mar 2002 10:12:41 -0800 (PST) (envelope-from mikeh) Message-Id: <200203151812.g2FICfO10384@freefall.freebsd.org> From: Mike Heffner Date: Fri, 15 Mar 2002 10:12:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/quot Makefile quot.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 mikeh 2002/03/15 10:12:41 PST Modified files: (Branch: RELENG_4) usr.sbin/quot Makefile quot.c Log: MFC: WARNS cleanup. 1.8 +3 -1 src/usr.sbin/quot/Makefile 1.15 +40 -16 src/usr.sbin/quot/quot.c Revision Changes Path 1.5.2.2 +2 -1 src/usr.sbin/quot/Makefile 1.11.2.4 +39 -15 src/usr.sbin/quot/quot.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 10:17:46 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 8258137B402; Fri, 15 Mar 2002 10:17:35 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 986D25347; Fri, 15 Mar 2002 19:17:33 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: obrien@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs ffs_softdep.c References: <200203150406.g2F46Bw06312@freefall.freebsd.org> <20020315095447.C44160@dragon.nuxi.com> From: Dag-Erling Smorgrav Date: 15 Mar 2002 19:17:32 +0100 In-Reply-To: <20020315095447.C44160@dragon.nuxi.com> Message-ID: Lines: 22 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "David O'Brien" writes: > error = 0; > > at the beginning of the function is obfuscatation?? Hey, I'm not attacking your patch; I was aware of the problem and considered committing the exact same patch myself. I'm just annoyed that gcc isn't able to determine that the loop always runs at least once. But maybe I'm wishing for the moon... Anyway, I was bitching at gcc, not at you. Sorry if that wasn't clear. > At the companies > I've worked at, local variables were _required_ to be initialized after > their definition. Most of the time, this is a good idea, but sometimes it can hide real errors; like forgetting to set error before returning when an error actually occurs, so the caller thinks you succeeded. 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 Mar 15 10: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 DD92937B402; Fri, 15 Mar 2002 10:27:58 -0800 (PST) Received: (from bsd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FIRwk18713; Fri, 15 Mar 2002 10:27:58 -0800 (PST) (envelope-from bsd) Message-Id: <200203151827.g2FIRwk18713@freefall.freebsd.org> From: "Brian S. Dean" Date: Fri, 15 Mar 2002 10:27:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc_r/uthread uthread_rwlock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bsd 2002/03/15 10:27:58 PST Modified files: lib/libc_r/uthread uthread_rwlock.c Log: Fix the return code from pthread_rwlock_try[rw|rd]lock() functions; these should return EBUSY when the calling thread would block. MFC after: 2 weeks Revision Changes Path 1.7 +3 -3 src/lib/libc_r/uthread/uthread_rwlock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 10:30:12 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.ruhr.de (in-ruhr4.ruhr.de [212.23.134.2]) by hub.freebsd.org (Postfix) with SMTP id EB06137B417 for ; Fri, 15 Mar 2002 10:29:52 -0800 (PST) Received: (qmail 16616 invoked by uid 10); 15 Mar 2002 18:29:50 -0000 Received: (from ue@localhost) by nathan.ruhr.de (8.11.6/8.11.2) id g2FIMKY37059; Fri, 15 Mar 2002 19:22:20 +0100 (CET) (envelope-from ue) Date: Fri, 15 Mar 2002 19:22:20 +0100 From: Udo Erdelhoff To: Wilko Bulte Cc: Wilko Bulte , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, gallatin@FreeBSD.org Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Message-ID: <20020315182219.GA36836@nathan.ruhr.de> Mail-Followup-To: Wilko Bulte , Wilko Bulte , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, gallatin@FreeBSD.org References: <200203122050.g2CKo7S72963@freefall.freebsd.org> <20020314224655.GW90154@nathan.ruhr.de> <20020315184541.B10207@freebie.xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020315184541.B10207@freebie.xs4all.nl> 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, Mar 15, 2002 at 06:45:41PM +0100, Wilko Bulte wrote: > Hmm. The TGA2 story holds mostly true for both HEAD and RELENG_4. > To be honest I am not sure if TGA (plain TGA I mean) works for > HEAD?? I got rid of my Multia so I cannot try this. That's not what I meant. This commit changed the following in HEAD: Old version: ] device pcm ] Using the ECU I configured my AS500 to use IRQ10, port 0x530 ] and drq 0. You will need to specify this in your hints file, and ] the uncommon flags 0x10011 as well. This is perfectly correct for -current, just device pcm and all the settings in the hints. New version: ] device pcm0 at isa? port? irq 10 drq 0 flags 0x10011 ] Using the ECU I configured my AS500 to use IRQ10, port 0x530 ] and drq 0. Note the uncommon flags in the kernel configuration. Which is not correct for -current, but is correct for RELENG_4. In short, I think that the changes in 1.35 should have been applied to 1.13.2.17 (the RELENG_4 version). /s/Udo -- Booze is the answer. I don't remember the question. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 10: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 D2CB537B417; Fri, 15 Mar 2002 10:34:28 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2FIYSlv055428; Fri, 15 Mar 2002 10:34:28 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2FIXDYO055162; Fri, 15 Mar 2002 10:33:13 -0800 (PST) Date: Fri, 15 Mar 2002 10:33:13 -0800 From: "David O'Brien" To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs ffs_softdep.c Message-ID: <20020315103313.F44160@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200203150406.g2F46Bw06312@freefall.freebsd.org> <20020315095447.C44160@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Fri, Mar 15, 2002 at 07:17:32PM +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 Fri, Mar 15, 2002 at 07:17:32PM +0100, Dag-Erling Smorgrav wrote: > "David O'Brien" writes: > > error = 0; > > > > at the beginning of the function is obfuscatation?? > > Hey, I'm not attacking your patch; I was aware of the problem and > considered committing the exact same patch myself. I'm just annoyed > that gcc isn't able to determine that the loop always runs at least > once. But maybe I'm wishing for the moon... Anyway, I was bitching > at gcc, not at you. Sorry if that wasn't clear. It is a for() loop (or was that another file I made this same fix to), which we know is not guaranteed to run at least once. BTW, you should see the long list of warnings from linprocfs on the Alpha. hint, hint ;-) > > I've worked at, local variables were _required_ to be initialized after > > their definition. > > Most of the time, this is a good idea, but sometimes it can hide real > errors; like forgetting to set error before returning when an error > actually occurs, so the caller thinks you succeeded. There will always be programmer error and bugs. Question is, which practices reduces them. -- -- David (obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 10:42:50 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 23D4237B400; Fri, 15 Mar 2002 10:42:40 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id A95F95346; Fri, 15 Mar 2002 19:42:38 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: obrien@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs ffs_softdep.c References: <200203150406.g2F46Bw06312@freefall.freebsd.org> <20020315095447.C44160@dragon.nuxi.com> <20020315103313.F44160@dragon.nuxi.com> From: Dag-Erling Smorgrav Date: 15 Mar 2002 19:42:37 +0100 In-Reply-To: <20020315103313.F44160@dragon.nuxi.com> Message-ID: Lines: 19 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "David O'Brien" writes: > It is a for() loop (or was that another file I made this same fix to), > which we know is not guaranteed to run at least once. In this case it is, and gcc could deduce it (if it tried) by seeing that the loop condition holds true at the beginning of the loop: for (loopcnt = 10; loopcnt > 0; loopcnt--) { /* ... */ } > BTW, you should see the long list of warnings from linprocfs on the > Alpha. hint, hint ;-) Yeah, I'll take a look at it. Thanks for reminding me! 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 Mar 15 10:44: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 762AA37B404; Fri, 15 Mar 2002 10:44:00 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FIi0G32337; Fri, 15 Mar 2002 10:44:00 -0800 (PST) (envelope-from obrien) Message-Id: <200203151844.g2FIi0G32337@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 15 Mar 2002 10:44:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.dep.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/03/15 10:44:00 PST Modified files: share/mk bsd.dep.mk Log: Pass our idea of `CC' down to mkdep. Tested on: sparc64 Revision Changes Path 1.28 +1 -1 src/share/mk/bsd.dep.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 10:47:15 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 12C5A37B417; Fri, 15 Mar 2002 10:47:05 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id A03E85346; Fri, 15 Mar 2002 19:47:03 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/sysinstall Makefile References: <200203151127.g2FBRlM03640@freefall.freebsd.org> <20020315171933.GA92157@sunbay.com> From: Dag-Erling Smorgrav Date: 15 Mar 2002 19:47:02 +0100 In-Reply-To: <20020315171933.GA92157@sunbay.com> Message-ID: Lines: 13 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ruslan Ermilov writes: > No, because your change didn't exclude sysinstall from cross builds, > and as such didn't make any difference. Umm, I *tested* that patch, and it did *not* build sysinstall. > Please back your change out. Sure! 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 Mar 15 10:48: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 AD06B37B404; Fri, 15 Mar 2002 10:48:20 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FImKd37418; Fri, 15 Mar 2002 10:48:20 -0800 (PST) (envelope-from des) Message-Id: <200203151848.g2FImKd37418@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 15 Mar 2002 10:48:20 -0800 (PST) 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 des 2002/03/15 10:48:20 PST Modified files: usr.sbin Makefile Log: Revert previous revision; sysinstall should build fine now even when cross- building, plus ru says the previous revision didn't actually achieve what it was meant to achieve. Revision Changes Path 1.216 +1 -4 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 Fri Mar 15 10:50: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 C6A4137B41A; Fri, 15 Mar 2002 10:49:47 -0800 (PST) Received: (from mckusick@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FInlW38440; Fri, 15 Mar 2002 10:49:47 -0800 (PST) (envelope-from mckusick) Message-Id: <200203151849.g2FInlW38440@freefall.freebsd.org> From: Kirk McKusick Date: Fri, 15 Mar 2002 10:49:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_fat.c msdosfs_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 mckusick 2002/03/15 10:49:47 PST Modified files: sys/coda coda_vnops.c sys/dev/ccd ccd.c sys/dev/md md.c sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c sys/fs/hpfs hpfs_vnops.c sys/fs/msdosfs msdosfs_fat.c msdosfs_vnops.c sys/gnu/ext2fs ext2_subr.c sys/kern vfs_bio.c vfs_cluster.c vnode_if.src sys/sys bio.h buf.h types.h sys/ufs/ffs ffs_snapshot.c ffs_softdep.c sys/ufs/ufs ufs_bmap.c ufs_vnops.c sys/vm vnode_pager.c Log: Introduce the new 64-bit size disk block, daddr64_t. Change the bio and buffer structures to have daddr64_t bio_pblkno, b_blkno, and b_lblkno fields which allows access to disks larger than a Terabyte in size. This change also requires that the VOP_BMAP vnode operation accept and return daddr64_t blocks. This delta should not affect system operation in any way. It merely sets up the necessary interfaces to allow the development of disk drivers that work with these larger disk block addresses. It also allows for the development of UFS2 which will use 64-bit block addresses. Revision Changes Path 1.39 +2 -2 src/sys/coda/coda_vnops.c 1.98 +1 -1 src/sys/dev/ccd/ccd.c 1.54 +1 -1 src/sys/dev/md/md.c 1.21 +2 -2 src/sys/dev/vinum/vinumdaemon.c 1.38 +6 -6 src/sys/dev/vinum/vinuminterrupt.c 1.59 +4 -4 src/sys/dev/vinum/vinumrequest.c 1.37 +1 -1 src/sys/dev/vinum/vinumrevive.c 1.23 +6 -2 src/sys/fs/hpfs/hpfs_vnops.c 1.28 +5 -2 src/sys/fs/msdosfs/msdosfs_fat.c 1.116 +13 -6 src/sys/fs/msdosfs/msdosfs_vnops.c 1.20 +2 -2 src/sys/gnu/ext2fs/ext2_subr.c 1.304 +2 -2 src/sys/kern/vfs_bio.c 1.117 +3 -3 src/sys/kern/vfs_cluster.c 1.47 +2 -2 src/sys/kern/vnode_if.src 1.110 +3 -3 src/sys/sys/bio.h 1.128 +2 -2 src/sys/sys/buf.h 1.55 +1 -0 src/sys/sys/types.h 1.31 +4 -4 src/sys/ufs/ffs/ffs_snapshot.c 1.110 +5 -2 src/sys/ufs/ffs/ffs_softdep.c 1.48 +10 -5 src/sys/ufs/ufs/ufs_bmap.c 1.186 +3 -1 src/sys/ufs/ufs/ufs_vnops.c 1.143 +2 -2 src/sys/vm/vnode_pager.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 10:50: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 A7AF237B41F; Fri, 15 Mar 2002 10:49:53 -0800 (PST) Received: (from mux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FInrK38515; Fri, 15 Mar 2002 10:49:53 -0800 (PST) (envelope-from mux) Message-Id: <200203151849.g2FInrK38515@freefall.freebsd.org> From: Maxime Henrion Date: Fri, 15 Mar 2002 10:49:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mux 2002/03/15 10:49:53 PST Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add myself to this list. Revision Changes Path 1.59 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 10:53:29 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 13EEA37B402; Fri, 15 Mar 2002 10:53:21 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id CA291AE25A; Fri, 15 Mar 2002 10:53:20 -0800 (PST) Date: Fri, 15 Mar 2002 10:53:20 -0800 From: Alfred Perlstein To: "Brian F. Feldman" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_mtxpool.c src/sys/sys kernel.h src/sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h vm_pageout.c vm_zone.c Message-ID: <20020315185320.GJ4857@elvis.mu.org> References: <20020315054113.GC4857@elvis.mu.org> <200203151121.g2FBLnj36094@green.bikeshed.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203151121.g2FBLnj36094@green.bikeshed.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 * Brian F. Feldman [020315 03:22] wrote: > Alfred Perlstein wrote: > > > > What is the problem? > > Damn good question. Are the tracebacks related? If not, what are you > supposed to be telling me it's deadlocking on? I don't see the system being > deadlocked. What is it actually supposed to be blocked on? > > > Well basically you changed: > > > > ! static __inline__ int > > ! _vm_map_lock_upgrade(vm_map_t map, struct thread *td) { > > ! int error; > > ! > > ! vm_map_printf("locking map LK_EXCLUPGRADE: %p\n", map); > > ! error = lockmgr(&map->lock, LK_EXCLUPGRADE, NULL, td); > > ! if (error == 0) > > ! map->timestamp++; > > ! return error; > > } > > > > into: > > > > ! _vm_map_lock_upgrade(vm_map_t map, const char *file, int line) > > { > > ! vm_map_printf("locking map LK_EXCLUPGRADE: %p\n", map); > > ! if (_sx_try_upgrade(&map->lock, file, line)) { > > ! map->timestamp++; > > ! return (0); > > ! } > > ! return (EWOULDBLOCK); > > } > > It doesn't need LK_EXCLUPGRADE semantics, only LK_UPGRADE, if it's not > blocking. It backs out completely and unlocks the shared reference and > tries for an exclusive lock. Sigh, you're making me do all the work here... :( lockmgr(&map->lock, LK_EXCLUPGRADE, NULL, td); means: Turn my shared lock into an exclusive lock, if it's shared then wait for all shared locks to drain, however if someone else is requesting an exclusive lock, then fail. _sx_try_upgrade(&map->lock, file, line) means: Give me an exclusive lock if anyone else has a shared lock then fail immediately. What happens in your case is that you get into a busy loop because you never yeild the processor. This happens in vm_map_lookup() because of this: if (fault_type & VM_PROT_WRITE) { /* * Make a new object, and place it in the object * chain. Note that no new references have appeared * -- one just moved from the map to the new * object. */ if (vm_map_lock_upgrade(map)) goto RetryLookup; So, you fail your sx_lock upgrade and cause the cpu to spin. You basically need to add logic to the sxlock subsystem to do what lockmgr does, actually wait for the others to go away or fail if someone else wants an upgrade. -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 10:54:33 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 C014037B402; Fri, 15 Mar 2002 10:54:27 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1192) id 98AFEAE1FE; Fri, 15 Mar 2002 10:54:27 -0800 (PST) Date: Fri, 15 Mar 2002 10:54:27 -0800 From: Alfred Perlstein To: Kirk McKusick Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_fat.c msdosfs_vnops.c ... Message-ID: <20020315185427.GK4857@elvis.mu.org> References: <200203151849.g2FInlW38440@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203151849.g2FInlW38440@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 * Kirk McKusick [020315 10:51] wrote: > mckusick 2002/03/15 10:49:47 PST > > Modified files: > Log: > Introduce the new 64-bit size disk block, daddr64_t. Change In case no one has said it (which I doubt) you rule. :) -Alfred To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 11: 3: 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 D564C37B417; Fri, 15 Mar 2002 11:02:58 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FJ2wd45492; Fri, 15 Mar 2002 11:02:58 -0800 (PST) (envelope-from sobomax) Message-Id: <200203151902.g2FJ2wd45492@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 15 Mar 2002 11:02:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gconf Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/15 11:02:58 PST Modified files: devel/gconf Makefile distinfo pkg-plist Log: Update to 1.0.9. PR: 35920 Submitted by: Joe Marcus Clarke Revision Changes Path 1.27 +2 -1 ports/devel/gconf/Makefile 1.14 +1 -1 ports/devel/gconf/distinfo 1.19 +2 -1 ports/devel/gconf/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 Mar 15 11: 4: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 7F83337B41B; Fri, 15 Mar 2002 11:04:02 -0800 (PST) Received: (from wilko@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FJ42w46275; Fri, 15 Mar 2002 11:04:02 -0800 (PST) (envelope-from wilko) Message-Id: <200203151904.g2FJ42w46275@freefall.freebsd.org> From: Wilko Bulte Date: Fri, 15 Mar 2002 11:04:02 -0800 (PST) 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 wilko 2002/03/15 11:04:02 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: Hum.. apply changes to the right branch. AS500 sound story had a -HEAD-style config file entry. Submitted by: ue Revision Changes Path 1.13.2.18 +25 -1 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 Fri Mar 15 11: 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 32E6937B41A; Fri, 15 Mar 2002 11:06:19 -0800 (PST) Received: (from wilko@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FJ6Jf52579; Fri, 15 Mar 2002 11:06:19 -0800 (PST) (envelope-from wilko) Message-Id: <200203151906.g2FJ6Jf52579@freefall.freebsd.org> From: Wilko Bulte Date: Fri, 15 Mar 2002 11:06:19 -0800 (PST) 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: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG wilko 2002/03/15 11:06:19 PST Modified files: release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: rectify AS500 sound stuff. Submitted by: ue Revision Changes Path 1.38 +7 -5 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 Fri Mar 15 11: 7: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B77A237B419; Fri, 15 Mar 2002 11:06:47 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FJ6li53149; Fri, 15 Mar 2002 11:06:47 -0800 (PST) (envelope-from sobomax) Message-Id: <200203151906.g2FJ6li53149@freefall.freebsd.org> From: Maxim Sobolev Date: Fri, 15 Mar 2002 11:06:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/galeon Makefile ports/www/galeon/files patch-GNOME_Galeon_NautilusView.oaf X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/15 11:06:47 PST Modified files: www/galeon Makefile Added files: www/galeon/files patch-GNOME_Galeon_NautilusView.oaf Log: It seems that the damned build system doesn't always recreate GNOME_Galeon_NautilusView.oaf from the corresponding .in file, so that patch it as well. Bump PORTREVISION. Revision Changes Path 1.62 +1 -1 ports/www/galeon/Makefile 1.1 +14 -0 ports/www/galeon/files/patch-GNOME_Galeon_NautilusView.oaf (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 11: 7: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 75C1C37B485; Fri, 15 Mar 2002 11:07:20 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FJ7K453636; Fri, 15 Mar 2002 11:07:20 -0800 (PST) (envelope-from rwatson) Message-Id: <200203151907.g2FJ7K453636@freefall.freebsd.org> From: Robert Watson Date: Fri, 15 Mar 2002 11:07:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc login.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 rwatson 2002/03/15 11:07:20 PST Modified files: (Branch: RELENG_4) etc login.conf Log: MFC login.conf:1.46: When having an expanded name for a class, use '|' instead if ':' to seperate the short name and the long name. This was present for most but not all entries. Because the parsing doesn't reject unrecognized entries, this didn't cause failures, but it wasn't strictly correct. Submitted by: Martin Faxer Revision Changes Path 1.34.2.5 +3 -3 src/etc/login.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 11:12:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 80F2837B405; Fri, 15 Mar 2002 11:12:39 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FJCdj56063; Fri, 15 Mar 2002 11:12:39 -0800 (PST) (envelope-from obrien) Message-Id: <200203151912.g2FJCdj56063@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 15 Mar 2002 11:12:39 -0800 (PST) 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/03/15 11:12:39 PST Modified files: emulators/psim-freebsd Makefile distinfo Log: Update to the 2002-03-15 snapshot of what will be version 5.2. Revision Changes Path 1.6 +4 -7 ports/emulators/psim-freebsd/Makefile 1.6 +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 Mar 15 11:13: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 D97E037B422; Fri, 15 Mar 2002 11:12:51 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FJCpi56151; Fri, 15 Mar 2002 11:12:51 -0800 (PST) (envelope-from obrien) Message-Id: <200203151912.g2FJCpi56151@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 15 Mar 2002 11:12:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gdb52 Makefile distinfo ports/devel/gdb52/files patch-bfd_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 obrien 2002/03/15 11:12:51 PST Modified files: devel/gdb52 Makefile distinfo Removed files: devel/gdb52/files patch-bfd_configure Log: Update to the 2002-03-10 snapshot of what will be version 5.2. Revision Changes Path 1.4 +14 -3 ports/devel/gdb52/Makefile 1.3 +1 -1 ports/devel/gdb52/distinfo 1.3 +0 -7 ports/devel/gdb52/files/patch-bfd_configure (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 11:39: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 C369D37B436; Fri, 15 Mar 2002 11:39:21 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FJdLG86950; Fri, 15 Mar 2002 11:39:21 -0800 (PST) (envelope-from dinoex) Message-Id: <200203151939.g2FJdLG86950@freefall.freebsd.org> From: Dirk Meyer Date: Fri, 15 Mar 2002 11:39:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/openssh-portable 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/03/15 11:39:21 PST Modified files: security/openssh-portable Makefile Log: Fixed Build in 4.2 Add correct Version of OPENSSL in dependencies if older than 4.3 (bsd.ports.mk) is still not sufficent. Revision Changes Path 1.26 +13 -1 ports/security/openssh-portable/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 11:40:44 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id 26DC237B498; Fri, 15 Mar 2002 11:40:16 -0800 (PST) Received: from InterJet.elischer.org ([12.232.206.8]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020315194015.YENZ2951.rwcrmhc53.attbi.com@InterJet.elischer.org>; Fri, 15 Mar 2002 19:40:15 +0000 Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id LAA86813; Fri, 15 Mar 2002 11:32:30 -0800 (PST) Date: Fri, 15 Mar 2002 11:32:28 -0800 (PST) From: Julian Elischer To: Dag-Erling Smorgrav Cc: obrien@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs ffs_softdep.c In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 15 Mar 2002, Dag-Erling Smorgrav wrote: > "David O'Brien" writes: > > error = 0; > > > > at the beginning of the function is obfuscatation?? > > Hey, I'm not attacking your patch; I was aware of the problem and > considered committing the exact same patch myself. I'm just annoyed > that gcc isn't able to determine that the loop always runs at least > once. But maybe I'm wishing for the moon... Anyway, I was bitching > at gcc, not at you. Sorry if that wasn't clear. So change the loop to be a 'do-while' loop and it will know.. (it probably should be one anyhow if it always runs once..) > > > At the companies > > I've worked at, local variables were _required_ to be initialized after > > their definition. > > Most of the time, this is a good idea, but sometimes it can hide real > errors; like forgetting to set error before returning when an error > actually occurs, so the caller thinks you succeeded. > > 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 Mar 15 11:45: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 8D3BA37B405; Fri, 15 Mar 2002 11:44:29 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FJiTa99301; Fri, 15 Mar 2002 11:44:29 -0800 (PST) (envelope-from ade) Message-Id: <200203151944.g2FJiTa99301@freefall.freebsd.org> From: Ade Lovett Date: Fri, 15 Mar 2002 11:44:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules 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 ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/15 11:44:29 PST Modified files: . modules 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 Makefile devel/ORBit Makefile devel/bonobo Makefile devel/bugbuddy Makefile devel/cervisia Makefile devel/cook Makefile devel/gettext Makefile distinfo pkg-plist devel/gettext/files patch-ad patch-ae 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/kpuzzle 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/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/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/gtkhx Makefile net/ipv6calc Makefile net/jwhois Makefile net/kdetelnet Makefile net/kmud Makefile net/ksamba Makefile net/wol Makefile news/tin 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/gfslicer 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/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/gettext/files patch-Makefile.in patch-doc::Makefile.in patch-intl::Makefile.in patch-lib::Makefile.in patch-ltmain.sh patch-man::Makefile.in Removed files: devel/gettext/files patch-af patch-ah patch-ai devel/gettext-devel Makefile distinfo pkg-comment pkg-descr pkg-plist devel/gettext-devel/files patch-Makefile.in patch-ad patch-ae patch-ak patch-doc::Makefile.in patch-intl::Makefile.in patch-lib::Makefile.in patch-ltmain.sh patch-man::Makefile.in Log: Stage 1 of gettext update. Move gettext (0.10.35) with gettext-old Update gettext from gettext-devel (0.10.40) Remove gettext-devel Fix dependencies Stage 2 will involve upgraded gettext to 0.11 and fixing issues Stage 3 involves a de-orbit burn sequence for gettext-old Reviewed by: portmgr Revision Changes Path 1.4850 +1 -1 CVSROOT/modules 1.25 +1 -1 ports/archivers/gtar/Makefile 1.38 +1 -1 ports/archivers/rpm/Makefile 1.5 +1 -1 ports/astro/fooseti/Makefile 1.12 +1 -1 ports/astro/seti_applet/Makefile 1.5 +1 -1 ports/astro/spacechart/Makefile 1.27 +2 -2 ports/audio/aumix/Makefile 1.4 +1 -1 ports/audio/denemo/Makefile 1.11 +1 -1 ports/audio/kmikmod/Makefile 1.2 +1 -1 ports/audio/koog/Makefile 1.10 +1 -1 ports/audio/lopster/Makefile 1.9 +1 -1 ports/audio/mad/Makefile 1.5 +2 -2 ports/audio/normalize/Makefile 1.11 +1 -1 ports/audio/opmixer/Makefile 1.15 +1 -1 ports/audio/snd/Makefile 1.2 +1 -1 ports/audio/soribada/Makefile 1.2 +1 -1 ports/audio/umix/Makefile 1.37 +1 -1 ports/chinese/xcin25/Makefile 1.8 +1 -1 ports/chinese/zhcon/Makefile 1.9 +1 -1 ports/comms/gnokii/Makefile 1.16 +2 -2 ports/converters/recode/Makefile 1.3 +1 -1 ports/databases/mysql-gui/Makefile 1.27 +1 -1 ports/databases/namazu2/Makefile 1.2 +1 -1 ports/databases/p5-DBD-Sybase/Makefile 1.92 +1 -1 ports/databases/postgresql7/Makefile 1.6 +2 -2 ports/databases/sqsh/Makefile 1.5 +1 -1 ports/deskutils/gcal/Makefile 1.782 +1 -1 ports/devel/Makefile 1.61 +1 -1 ports/devel/ORBit/Makefile 1.48 +1 -1 ports/devel/bonobo/Makefile 1.20 +1 -1 ports/devel/bugbuddy/Makefile 1.17 +2 -2 ports/devel/cervisia/Makefile 1.12 +1 -1 ports/devel/cook/Makefile 1.28 +0 -65 ports/devel/gettext-devel/Makefile (dead) 1.5 +0 -1 ports/devel/gettext-devel/distinfo (dead) 1.2 +0 -14 ports/devel/gettext-devel/files/patch-Makefile.in (dead) 1.5 +0 -16 ports/devel/gettext-devel/files/patch-ad (dead) 1.8 +0 -67 ports/devel/gettext-devel/files/patch-ae (dead) 1.2 +0 -11 ports/devel/gettext-devel/files/patch-ak (dead) 1.2 +0 -23 ports/devel/gettext-devel/files/patch-doc::Makefile.in (dead) 1.2 +0 -44 ports/devel/gettext-devel/files/patch-intl::Makefile.in (dead) 1.2 +0 -38 ports/devel/gettext-devel/files/patch-lib::Makefile.in (dead) 1.4 +0 -28 ports/devel/gettext-devel/files/patch-ltmain.sh (dead) 1.2 +0 -14 ports/devel/gettext-devel/files/patch-man::Makefile.in (dead) 1.3 +0 -1 ports/devel/gettext-devel/pkg-comment (dead) 1.2 +0 -5 ports/devel/gettext-devel/pkg-descr (dead) 1.20 +0 -122 ports/devel/gettext-devel/pkg-plist (dead) 1.23 +37 -4 ports/devel/gettext/Makefile 1.3 +1 -1 ports/devel/gettext/distinfo 1.1 +14 -0 ports/devel/gettext/files/patch-Makefile.in (new) 1.3 +16 -24 ports/devel/gettext/files/patch-ad 1.6 +25 -51 ports/devel/gettext/files/patch-ae 1.3 +0 -10 ports/devel/gettext/files/patch-af (dead) 1.2 +0 -11 ports/devel/gettext/files/patch-ah (dead) 1.2 +0 -12 ports/devel/gettext/files/patch-ai (dead) 1.1 +23 -0 ports/devel/gettext/files/patch-doc::Makefile.in (new) 1.1 +44 -0 ports/devel/gettext/files/patch-intl::Makefile.in (new) 1.1 +38 -0 ports/devel/gettext/files/patch-lib::Makefile.in (new) 1.1 +28 -0 ports/devel/gettext/files/patch-ltmain.sh (new) 1.1 +14 -0 ports/devel/gettext/files/patch-man::Makefile.in (new) 1.18 +61 -10 ports/devel/gettext/pkg-plist 1.52 +1 -1 ports/devel/glib20/Makefile 1.36 +2 -2 ports/devel/gmake/Makefile 1.28 +1 -1 ports/devel/gnomevfs/Makefile 1.31 +1 -1 ports/devel/gnomevfs2/Makefile 1.18 +1 -1 ports/devel/gtranslator/Makefile 1.3 +1 -1 ports/devel/ixlib/Makefile 1.41 +1 -1 ports/devel/kdevelop/Makefile 1.11 +1 -1 ports/devel/ktranslator/Makefile 1.7 +1 -1 ports/devel/motor/Makefile 1.6 +1 -1 ports/devel/objprelink/Makefile 1.7 +2 -2 ports/devel/p5-Locale-gettext/Makefile 1.12 +1 -1 ports/devel/popt/Makefile 1.8 +2 -2 ports/devel/ruby-intl/Makefile 1.33 +1 -1 ports/editors/cooledit/Makefile 1.19 +1 -1 ports/editors/lpe/Makefile 1.13 +1 -1 ports/editors/nano/Makefile 1.6 +1 -1 ports/editors/poedit/Makefile 1.2 +1 -1 ports/editors/xemacs-devel-mule/Makefile 1.39 +1 -1 ports/editors/xemacs21-mule/Makefile 1.20 +1 -1 ports/editors/yudit/Makefile 1.28 +1 -1 ports/emulators/xsystem35/Makefile 1.8 +1 -1 ports/ftp/axel/Makefile 1.60 +1 -1 ports/ftp/lftp/Makefile 1.23 +2 -2 ports/ftp/pavuk/Makefile 1.2 +1 -1 ports/ftp/wget+ipv6/Makefile 1.50 +1 -1 ports/ftp/wget/Makefile 1.10 +1 -1 ports/games/eboard/Makefile 1.43 +1 -1 ports/games/freeciv/Makefile 1.38 +1 -1 ports/games/gnomegames/Makefile 1.6 +1 -1 ports/games/gtypist/Makefile 1.12 +1 -1 ports/games/kbubbles/Makefile 1.6 +1 -1 ports/games/kpuzzle/Makefile 1.10 +1 -1 ports/games/krogue/Makefile 1.6 +1 -1 ports/games/krubik/Makefile 1.6 +2 -2 ports/games/lexter/Makefile 1.19 +1 -1 ports/games/xinvaders/Makefile 1.19 +1 -1 ports/graphics/gphoto2/Makefile 1.14 +1 -1 ports/graphics/gtkgraph/Makefile 1.27 +2 -2 ports/graphics/gtksee/Makefile 1.11 +1 -1 ports/graphics/libxine/Makefile 1.7 +1 -1 ports/graphics/ogle-gui/Makefile 1.5 +2 -2 ports/graphics/ruby-tgif/Makefile 1.17 +2 -2 ports/graphics/tgif-nls/Makefile 1.23 +1 -1 ports/graphics/xine/Makefile 1.3 +1 -1 ports/graphics/xmps-opendivx-plugin/Makefile 1.6 +1 -1 ports/graphics/xmps-win32-plugin/Makefile 1.24 +2 -2 ports/irc/kvirc/Makefile 1.8 +1 -1 ports/irc/liece/Makefile 1.91 +1 -1 ports/irc/xchat/Makefile 1.9 +1 -1 ports/japanese/kebook/Makefile 1.31 +2 -2 ports/japanese/mutt-devel/Makefile 1.17 +2 -2 ports/japanese/mutt/Makefile 1.18 +1 -1 ports/japanese/samba/Makefile 1.4 +1 -1 ports/japanese/samba20/Makefile 1.36 +1 -1 ports/japanese/vflib/Makefile 1.3 +2 -2 ports/korean/texinfo/Makefile 1.33 +1 -1 ports/lang/librep/Makefile 1.9 +2 -2 ports/lang/mdk/Makefile 1.65 +2 -2 ports/mail/elm/Makefile 1.130 +1 -1 ports/mail/fetchmail/Makefile 1.21 +2 -2 ports/mail/kbiff/Makefile 1.161 +1 -1 ports/mail/mutt-devel/Makefile 1.112 +1 -1 ports/mail/mutt/Makefile 1.5 +1 -1 ports/mail/perdition/Makefile 1.18 +1 -1 ports/mail/spruce/Makefile 1.24 +1 -1 ports/math/oleo/Makefile 1.5 +1 -1 ports/misc/afbackup/Makefile 1.3 +1 -1 ports/misc/dirtree/Makefile 1.37 +1 -1 ports/misc/gnomeutils/Makefile 1.12 +1 -1 ports/misc/kde2-i18n/Makefile 1.3 +1 -1 ports/misc/koffice-i18n/Makefile 1.20 +1 -1 ports/misc/kwatch/Makefile 1.58 +1 -1 ports/misc/mc/Makefile 1.14 +1 -1 ports/misc/pinfo/Makefile 1.10 +1 -1 ports/misc/sh-utils/Makefile 1.29 +1 -1 ports/net/centericq/Makefile 1.12 +1 -1 ports/net/dctc-gui/Makefile 1.7 +2 -2 ports/net/etherape/Makefile 1.7 +1 -1 ports/net/fidelio/Makefile 1.20 +1 -1 ports/net/gabber/Makefile 1.2 +1 -1 ports/net/gtkhx/Makefile 1.3 +1 -1 ports/net/ipv6calc/Makefile 1.9 +1 -1 ports/net/jwhois/Makefile 1.16 +2 -2 ports/net/kdetelnet/Makefile 1.11 +2 -2 ports/net/kmud/Makefile 1.18 +1 -1 ports/net/ksamba/Makefile 1.2 +1 -1 ports/net/wol/Makefile 1.94 +1 -1 ports/news/tin/Makefile 1.12 +1 -1 ports/palm/coldsync/Makefile 1.20 +1 -1 ports/palm/jpilot/Makefile 1.6 +1 -1 ports/print/cjk-lyx/Makefile 1.3 +2 -2 ports/print/ktexshell/Makefile 1.59 +1 -1 ports/print/lyx/Makefile 1.9 +2 -2 ports/print/rlpr/Makefile 1.3 +1 -1 ports/russian/kde2-i18n/Makefile 1.3 +1 -1 ports/russian/koffice-i18n/Makefile 1.5 +1 -1 ports/security/fwlogwatch/Makefile 1.37 +1 -1 ports/security/gnupg/Makefile 1.13 +1 -1 ports/security/kssh/Makefile 1.8 +1 -1 ports/security/mcrypt/Makefile 1.7 +1 -1 ports/sysutils/apcupsd/Makefile 1.9 +1 -1 ports/sysutils/fileutils/Makefile 1.27 +1 -1 ports/sysutils/gcombust/Makefile 1.2 +1 -1 ports/sysutils/gfslicer/Makefile 1.2 +1 -1 ports/sysutils/slmon/Makefile 1.4 +1 -1 ports/textproc/modlogan/Makefile 1.2 +1 -1 ports/textproc/rotix/Makefile 1.12 +2 -2 ports/textproc/textutils/Makefile 1.4 +2 -2 ports/www/amyc/Makefile 1.9 +1 -1 ports/www/cadaver/Makefile 1.6 +2 -2 ports/www/dillo/Makefile 1.63 +1 -1 ports/www/galeon/Makefile 1.7 +1 -1 ports/www/horde-devel/Makefile 1.134 +1 -1 ports/www/lynx-current/Makefile 1.13 +1 -1 ports/www/quanta/Makefile 1.3 +1 -1 ports/www/retawq/Makefile 1.27 +1 -1 ports/www/sitecopy/Makefile 1.46 +1 -1 ports/x11-fm/nautilus/Makefile 1.79 +1 -1 ports/x11-toolkits/gtk12/Makefile 1.20 +1 -1 ports/x11-toolkits/pango/Makefile 1.67 +1 -1 ports/x11-wm/enlightenment/Makefile 1.69 +1 -1 ports/x11-wm/icewm/Makefile 1.3 +1 -1 ports/x11-wm/kappdock/Makefile 1.4 +1 -1 ports/x11-wm/kwix/Makefile 1.10 +2 -2 ports/x11-wm/ude/Makefile 1.96 +2 -2 ports/x11-wm/windowmaker/Makefile 1.20 +1 -1 ports/x11/gnomeapplets/Makefile 1.75 +1 -1 ports/x11/gnomecore/Makefile 1.60 +1 -1 ports/x11/kdebase11/Makefile 1.92 +1 -1 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 Mar 15 11: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 136F237B405; Fri, 15 Mar 2002 11:46:43 -0800 (PST) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FJkhO02772; Fri, 15 Mar 2002 11:46:43 -0800 (PST) (envelope-from mikeh) Message-Id: <200203151946.g2FJkhO02772@freefall.freebsd.org> From: Mike Heffner Date: Fri, 15 Mar 2002 11:46:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/mail Makefile aux.c cmd1.c cmd2.c cmd3.c cmdtab.c collect.c def.h edit.c extern.h fio.c getname.c glob.h head.c lex.c list.c mail.1 main.c names.c pathnames.h popen.c quit.c rcv.h send.c strings.c temp.c tty.c v7.local.c vars.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 mikeh 2002/03/15 11:46:43 PST Modified files: (Branch: RELENG_4) usr.bin/mail Makefile aux.c cmd1.c cmd2.c cmd3.c cmdtab.c collect.c def.h edit.c extern.h fio.c getname.c glob.h head.c lex.c list.c mail.1 main.c names.c pathnames.h popen.c quit.c rcv.h send.c strings.c temp.c tty.c v7.local.c vars.c version.c usr.bin/mail/USD.doc mail5.nr usr.bin/mail/misc mail.tildehelp Log: MFC: Sync with NetBSD's changes, link mail(1) to mailx(1). Revision Changes Path 1.5.6.2 +2 -2 src/usr.bin/mail/Makefile 1.3.6.2 +0 -0 src/usr.bin/mail/USD.doc/mail5.nr 1.4.6.3 +7 -5 src/usr.bin/mail/aux.c 1.3.6.2 +26 -3 src/usr.bin/mail/cmd1.c 1.5.6.2 +4 -4 src/usr.bin/mail/cmd2.c 1.4.6.3 +7 -5 src/usr.bin/mail/cmd3.c 1.2.6.2 +2 -1 src/usr.bin/mail/cmdtab.c 1.4.6.2 +127 -27 src/usr.bin/mail/collect.c 1.4.6.3 +2 -2 src/usr.bin/mail/def.h 1.2.6.3 +4 -6 src/usr.bin/mail/edit.c 1.3.6.2 +15 -10 src/usr.bin/mail/extern.h 1.2.6.3 +60 -31 src/usr.bin/mail/fio.c 1.1.1.1.14.2 +1 -1 src/usr.bin/mail/getname.c 1.1.1.1.14.2 +1 -1 src/usr.bin/mail/glob.h 1.1.1.1.14.3 +8 -8 src/usr.bin/mail/head.c 1.5.6.4 +58 -16 src/usr.bin/mail/lex.c 1.2.12.2 +53 -7 src/usr.bin/mail/list.c 1.18.2.10 +331 -229 src/usr.bin/mail/mail.1 1.6.2.4 +11 -9 src/usr.bin/mail/main.c 1.2.6.1 +19 -5 src/usr.bin/mail/misc/mail.tildehelp 1.4.6.2 +8 -4 src/usr.bin/mail/names.c 1.2.6.2 +1 -1 src/usr.bin/mail/pathnames.h 1.2.6.2 +36 -18 src/usr.bin/mail/popen.c 1.2.6.2 +5 -5 src/usr.bin/mail/quit.c 1.1.1.1.14.2 +1 -1 src/usr.bin/mail/rcv.h 1.5.6.4 +23 -10 src/usr.bin/mail/send.c 1.2.6.2 +1 -1 src/usr.bin/mail/strings.c 1.6.2.2 +1 -1 src/usr.bin/mail/temp.c 1.2.8.2 +50 -26 src/usr.bin/mail/tty.c 1.2.8.2 +1 -1 src/usr.bin/mail/v7.local.c 1.1.1.1.14.2 +1 -1 src/usr.bin/mail/vars.c 1.1.1.1.14.2 +1 -1 src/usr.bin/mail/version.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 12:17: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 CAF8C37B416; Fri, 15 Mar 2002 12:17:12 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FKHCN44983; Fri, 15 Mar 2002 12:17:12 -0800 (PST) (envelope-from des) Message-Id: <200203152017.g2FKHCN44983@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 15 Mar 2002 12:17:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern sys_process.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/15 12:17:12 PST Modified files: sys/kern sys_process.c Log: PT_[GS]ET{,DB,FP}REGS isn't really optional any more, since we have dummy backend functions for those archs that don't support them. I meant to do this ages ago, but never got around to it. Inspired by: OpenBSD Revision Changes Path 1.85 +1 -25 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 Mar 15 13: 2: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 BA3D237B404; Fri, 15 Mar 2002 13:02:06 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FL26F70595; Fri, 15 Mar 2002 13:02:06 -0800 (PST) (envelope-from pat) Message-Id: <200203152102.g2FL26F70595@freefall.freebsd.org> From: Patrick Li Date: Fri, 15 Mar 2002 13:02:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gaim Makefile distinfo pkg-plist ports/net/gaim/files patch-ab patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/15 13:02:06 PST Modified files: net/gaim Makefile distinfo pkg-plist net/gaim/files patch-ab patch-ac Log: Update to 0.54 PR: 35922 Submitted by: maintainer Revision Changes Path 1.61 +1 -2 ports/net/gaim/Makefile 1.44 +1 -1 ports/net/gaim/distinfo 1.5 +17 -16 ports/net/gaim/files/patch-ab 1.12 +15 -72 ports/net/gaim/files/patch-ac 1.31 +1 -0 ports/net/gaim/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 Mar 15 13: 4: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 4B8DD37B404; Fri, 15 Mar 2002 13:04:52 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FL4qD71382; Fri, 15 Mar 2002 13:04:52 -0800 (PST) (envelope-from pat) Message-Id: <200203152104.g2FL4qD71382@freefall.freebsd.org> From: Patrick Li Date: Fri, 15 Mar 2002 13:04:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/abook 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/03/15 13:04:52 PST Modified files: mail/abook Makefile distinfo Log: Update to 0.4.16 PR: 35930 Submitted by: maintainer Revision Changes Path 1.7 +1 -1 ports/mail/abook/Makefile 1.6 +1 -1 ports/mail/abook/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 13: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 046EB37B402; Fri, 15 Mar 2002 13:09:56 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FL9tG76256; Fri, 15 Mar 2002 13:09:55 -0800 (PST) (envelope-from pat) Message-Id: <200203152109.g2FL9tG76256@freefall.freebsd.org> From: Patrick Li Date: Fri, 15 Mar 2002 13:09:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/cad/pcb 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/03/15 13:09:55 PST Modified files: cad/pcb Makefile Log: Fix typo in depends PR: 35928 Submitted by: Erik Änggård Revision Changes Path 1.31 +1 -1 ports/cad/pcb/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 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 AF9E337B400; Fri, 15 Mar 2002 13:18:58 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FLIwg78094; Fri, 15 Mar 2002 13:18:58 -0800 (PST) (envelope-from pat) Message-Id: <200203152118.g2FLIwg78094@freefall.freebsd.org> From: Patrick Li Date: Fri, 15 Mar 2002 13:18:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/elinks 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/03/15 13:18:58 PST Modified files: www/elinks Makefile distinfo Log: Update to 0.3.0 PR: 35931 Submitted by: maintainer Revision Changes Path 1.18 +2 -2 ports/www/elinks/Makefile 1.11 +1 -1 ports/www/elinks/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 13:30: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 0E55037B400; Fri, 15 Mar 2002 13:30:42 -0800 (PST) Received: (from luoqi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FLUgs80483; Fri, 15 Mar 2002 13:30:42 -0800 (PST) (envelope-from luoqi) Message-Id: <200203152130.g2FLUgs80483@freefall.freebsd.org> From: Luoqi Chen Date: Fri, 15 Mar 2002 13:30:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/aic aic.c aic6360reg.h aicvar.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 luoqi 2002/03/15 13:30:41 PST Modified files: sys/dev/aic aic.c aic6360reg.h aicvar.h Log: Support for LG GM82C700, an AIC6360 clone. Revision Changes Path 1.16 +33 -10 src/sys/dev/aic/aic.c 1.3 +4 -2 src/sys/dev/aic/aic6360reg.h 1.7 +4 -1 src/sys/dev/aic/aicvar.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 13:40: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 B54D137B402; Fri, 15 Mar 2002 13:40:26 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FLeQp82749; Fri, 15 Mar 2002 13:40:26 -0800 (PST) (envelope-from dinoex) Message-Id: <200203152140.g2FLeQp82749@freefall.freebsd.org> From: Dirk Meyer Date: Fri, 15 Mar 2002 13:40:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/tcl84 pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/03/15 13:40:26 PST Modified files: lang/tcl84 pkg-plist Log: Add include/tcl%%TCL_VER%%/tclPlatDecls.h previous patch did not apply Revision Changes Path 1.26 +1 -0 ports/lang/tcl84/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 Mar 15 13:41: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 18E4E37B402; Fri, 15 Mar 2002 13:41:43 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FLfg182969; Fri, 15 Mar 2002 13:41:43 -0800 (PST) (envelope-from phk) Message-Id: <200203152141.g2FLfg182969@freefall.freebsd.org> From: Poul-Henning Kamp Date: Fri, 15 Mar 2002 13:41:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_slice.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/15 13:41:42 PST Modified files: sys/geom geom_slice.c Log: Try to get used to architectures which are picky about alignment. Revision Changes Path 1.2 +4 -11 src/sys/geom/geom_slice.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 13:44: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 C7CA637B41B; Fri, 15 Mar 2002 13:44:08 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FLi8n83413; Fri, 15 Mar 2002 13:44:08 -0800 (PST) (envelope-from phk) Message-Id: <200203152144.g2FLi8n83413@freefall.freebsd.org> From: Poul-Henning Kamp Date: Fri, 15 Mar 2002 13:44:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files src/sys/geom 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/03/15 13:44:08 PST Modified files: sys/conf files Added files: sys/geom geom_sunlabel.c Log: Teach GEOM about Sun disklabel formats. The detection code in this method is written so that it should work on all architectures which means that you can plug a Sun disk into a i386 now and access the partitions. We still need an endian-agnostic ufs/ffs before this is really interresting, but the main focus was to get sparc64 onto the GEOM trail. Revision Changes Path 1.610 +1 -0 src/sys/conf/files 1.1 +209 -0 src/sys/geom/geom_sunlabel.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 Mar 15 13:59: 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 8044337B402; Fri, 15 Mar 2002 13:58:58 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FLwwf86390; Fri, 15 Mar 2002 13:58:58 -0800 (PST) (envelope-from pat) Message-Id: <200203152158.g2FLwwf86390@freefall.freebsd.org> From: Patrick Li Date: Fri, 15 Mar 2002 13:58:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/xawtv Makefile distinfo pkg-plist ports/graphics/xawtv/files patch-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/03/15 13:58:58 PST Modified files: graphics/xawtv Makefile distinfo pkg-plist graphics/xawtv/files patch-configure Log: Update to 3.73 PR: 35933 Submitted by: maintainer Revision Changes Path 1.11 +1 -1 ports/graphics/xawtv/Makefile 1.7 +1 -1 ports/graphics/xawtv/distinfo 1.3 +25 -38 ports/graphics/xawtv/files/patch-configure 1.5 +1 -0 ports/graphics/xawtv/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 14:10: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 9186537B400; Fri, 15 Mar 2002 14:10:50 -0800 (PST) Received: (from jhb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FMAoi92552; Fri, 15 Mar 2002 14:10:50 -0800 (PST) (envelope-from jhb) Message-Id: <200203152210.g2FMAoi92552@freefall.freebsd.org> From: John Baldwin Date: Fri, 15 Mar 2002 14:10:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys mutex.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jhb 2002/03/15 14:10:50 PST Modified files: sys/sys mutex.h Log: Fix a stupid whitespace style bogon from way back in the declarations of sched_lock and Giant. Revision Changes Path 1.50 +2 -2 src/sys/sys/mutex.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 14:18:29 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E50B37B416; Fri, 15 Mar 2002 14:18:25 -0800 (PST) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FMIPS95513; Fri, 15 Mar 2002 14:18:25 -0800 (PST) (envelope-from mikeh) Message-Id: <200203152218.g2FMIPS95513@freefall.freebsd.org> From: Mike Heffner Date: Fri, 15 Mar 2002 14:18:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/repquota Makefile repquota.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 mikeh 2002/03/15 14:18:25 PST Modified files: (Branch: RELENG_4) usr.sbin/repquota Makefile repquota.c Log: MFC: WARNS cleanup. 1.5 +3 -1 src/usr.sbin/repquota/Makefile 1.11 +16 -13 src/usr.sbin/repquota/repquota.c Revision Changes Path 1.2.14.2 +1 -0 src/usr.sbin/repquota/Makefile 1.9.2.2 +16 -13 src/usr.sbin/repquota/repquota.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 14:31: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 51A2637B404; Fri, 15 Mar 2002 14:31:37 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FMVbK02706; Fri, 15 Mar 2002 14:31:37 -0800 (PST) (envelope-from obrien) Message-Id: <200203152231.g2FMVbK02706@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 15 Mar 2002 14:31:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/bidwatcher/files patch-bidwatcher.cpp patch-fix-hardcoding.h patch-netstuff.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 obrien 2002/03/15 14:31:37 PST Added files: misc/bidwatcher/files patch-bidwatcher.cpp patch-fix-hardcoding.h patch-netstuff.cpp Log: * Actually provide unique error messages for the various error returns from fetching a URL. * Add patches to remove all the duplication of the eBay URL text strings. These patches justify why high schoolers and college freshman should NOT be allowed near a compiler. Revision Changes Path 1.1 +221 -0 ports/misc/bidwatcher/files/patch-bidwatcher.cpp (new) 1.1 +22 -0 ports/misc/bidwatcher/files/patch-fix-hardcoding.h (new) 1.1 +150 -0 ports/misc/bidwatcher/files/patch-netstuff.cpp (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 14:34: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 3181C37B404; Fri, 15 Mar 2002 14:34:26 -0800 (PST) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FMYQ304089; Fri, 15 Mar 2002 14:34:26 -0800 (PST) (envelope-from mikeh) Message-Id: <200203152234.g2FMYQ304089@freefall.freebsd.org> From: Mike Heffner Date: Fri, 15 Mar 2002 14:34:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/cdcontrol Makefile cdcontrol.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 mikeh 2002/03/15 14:34:26 PST Modified files: (Branch: RELENG_4) usr.sbin/cdcontrol Makefile cdcontrol.c Log: MFC: WARNS cleanup and whitespace cleanup 1.8 +3 -1 src/usr.sbin/cdcontrol/Makefile 1.35 +19 -11 src/usr.sbin/cdcontrol/cdcontrol.c 1.36 +94 -93 src/usr.sbin/cdcontrol/cdcontrol.c Revision Changes Path 1.2.2.2 +3 -3 src/usr.sbin/cdcontrol/Makefile 1.24.2.8 +106 -97 src/usr.sbin/cdcontrol/cdcontrol.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 14:36: 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 630F337B405; Fri, 15 Mar 2002 14:36:00 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FMa0F05376; Fri, 15 Mar 2002 14:36:00 -0800 (PST) (envelope-from obrien) Message-Id: <200203152236.g2FMa0F05376@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 15 Mar 2002 14:36:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gdb51 Makefile distinfo pkg-comment pkg-descr pkg-plist ports/devel/gdb51/files patch-bfd_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 obrien 2002/03/15 14:36:00 PST Removed files: devel/gdb51 Makefile distinfo pkg-comment pkg-descr pkg-plist devel/gdb51/files patch-bfd_configure Log: Retire GDB 5.1 in lue of 5.2. Revision Changes Path 1.4 +0 -29 ports/devel/gdb51/Makefile (dead) 1.3 +0 -1 ports/devel/gdb51/distinfo (dead) 1.3 +0 -7 ports/devel/gdb51/files/patch-bfd_configure (dead) 1.2 +0 -1 ports/devel/gdb51/pkg-comment (dead) 1.2 +0 -3 ports/devel/gdb51/pkg-descr (dead) 1.3 +0 -2 ports/devel/gdb51/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 Mar 15 14: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 CF50D37B431; Fri, 15 Mar 2002 14:36:55 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FMat305914; Fri, 15 Mar 2002 14:36:55 -0800 (PST) (envelope-from obrien) Message-Id: <200203152236.g2FMat305914@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 15 Mar 2002 14:36:55 -0800 (PST) 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 obrien 2002/03/15 14:36:55 PST Modified files: devel Makefile Log: Gdb upgraded to 5.2. Revision Changes Path 1.783 +1 -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 Fri Mar 15 14:37: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 8376937B402; Fri, 15 Mar 2002 14:37:47 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FMbla06777; Fri, 15 Mar 2002 14:37:47 -0800 (PST) (envelope-from obrien) Message-Id: <200203152237.g2FMbla06777@freefall.freebsd.org> From: "David E. O'Brien" Date: Fri, 15 Mar 2002 14:37:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG obrien 2002/03/15 14:37:47 PST Modified files: . modules Log: Gdb port upgraded to 5.2. Revision Changes Path 1.4851 +1 -1 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 14:48:27 2002 Delivered-To: cvs-all@freebsd.org Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by hub.freebsd.org (Postfix) with ESMTP id ED18137B402; Fri, 15 Mar 2002 14:47:53 -0800 (PST) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.11.6/8.11.4) id g2FMlqn01644; Fri, 15 Mar 2002 23:47:52 +0100 (CET) (envelope-from stijn) Date: Fri, 15 Mar 2002 23:47:52 +0100 From: Stijn Hoop To: Ade Lovett Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: CVSROOT modules 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 ... Message-ID: <20020315234752.A1540@pcwin002.win.tue.nl> References: <200203151944.g2FJiTa99301@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="3MwIy2ne0vdjdPXF" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200203151944.g2FJiTa99301@freefall.freebsd.org>; from ade@freebsd.org on Fri, Mar 15, 2002 at 11:44:29AM -0800 X-Bright-Idea: Let's abolish HTML mail! Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --3MwIy2ne0vdjdPXF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable YAY! You rule! --Stijn On Fri, Mar 15, 2002 at 11:44:29AM -0800, Ade Lovett wrote: > ade 2002/03/15 11:44:29 PST >=20 > Modified files: > . modules=20 > archivers/gtar Makefile=20 > archivers/rpm Makefile=20 > astro/fooseti Makefile=20 > astro/seti_applet Makefile=20 > astro/spacechart Makefile=20 > audio/aumix Makefile=20 > audio/denemo Makefile=20 > audio/kmikmod Makefile=20 > audio/koog Makefile=20 > audio/lopster Makefile=20 > audio/mad Makefile=20 > audio/normalize Makefile=20 > audio/opmixer Makefile=20 > audio/snd Makefile=20 > audio/soribada Makefile=20 > audio/umix Makefile=20 > chinese/xcin25 Makefile=20 > chinese/zhcon Makefile=20 > comms/gnokii Makefile=20 > converters/recode Makefile=20 > databases/mysql-gui Makefile=20 > databases/namazu2 Makefile=20 > databases/p5-DBD-Sybase Makefile=20 > databases/postgresql7 Makefile=20 > databases/sqsh Makefile=20 > deskutils/gcal Makefile=20 > devel Makefile=20 > devel/ORBit Makefile=20 > devel/bonobo Makefile=20 > devel/bugbuddy Makefile=20 > devel/cervisia Makefile=20 > devel/cook Makefile=20 > devel/gettext Makefile distinfo pkg-plist=20 > devel/gettext/files patch-ad patch-ae=20 > devel/glib20 Makefile=20 > devel/gmake Makefile=20 > devel/gnomevfs Makefile=20 > devel/gnomevfs2 Makefile=20 > devel/gtranslator Makefile=20 > devel/ixlib Makefile=20 > devel/kdevelop Makefile=20 > devel/ktranslator Makefile=20 > devel/motor Makefile=20 > devel/objprelink Makefile=20 > devel/p5-Locale-gettext Makefile=20 > devel/popt Makefile=20 > devel/ruby-intl Makefile=20 > editors/cooledit Makefile=20 > editors/lpe Makefile=20 > editors/nano Makefile=20 > editors/poedit Makefile=20 > editors/xemacs-devel-mule Makefile=20 > editors/xemacs21-mule Makefile=20 > editors/yudit Makefile=20 > emulators/xsystem35 Makefile=20 > ftp/axel Makefile=20 > ftp/lftp Makefile=20 > ftp/pavuk Makefile=20 > ftp/wget Makefile=20 > ftp/wget+ipv6 Makefile=20 > games/eboard Makefile=20 > games/freeciv Makefile=20 > games/gnomegames Makefile=20 > games/gtypist Makefile=20 > games/kbubbles Makefile=20 > games/kpuzzle Makefile=20 > games/krogue Makefile=20 > games/krubik Makefile=20 > games/lexter Makefile=20 > games/xinvaders Makefile=20 > graphics/gphoto2 Makefile=20 > graphics/gtkgraph Makefile=20 > graphics/gtksee Makefile=20 > graphics/libxine Makefile=20 > graphics/ogle-gui Makefile=20 > graphics/ruby-tgif Makefile=20 > graphics/tgif-nls Makefile=20 > graphics/xine Makefile=20 > graphics/xmps-opendivx-plugin Makefile=20 > graphics/xmps-win32-plugin Makefile=20 > irc/kvirc Makefile=20 > irc/liece Makefile=20 > irc/xchat Makefile=20 > japanese/kebook Makefile=20 > japanese/mutt Makefile=20 > japanese/mutt-devel Makefile=20 > japanese/samba Makefile=20 > japanese/samba20 Makefile=20 > japanese/vflib Makefile=20 > korean/texinfo Makefile=20 > lang/librep Makefile=20 > lang/mdk Makefile=20 > mail/elm Makefile=20 > mail/fetchmail Makefile=20 > mail/kbiff Makefile=20 > mail/mutt Makefile=20 > mail/mutt-devel Makefile=20 > mail/perdition Makefile=20 > mail/spruce Makefile=20 > math/oleo Makefile=20 > misc/afbackup Makefile=20 > misc/dirtree Makefile=20 > misc/gnomeutils Makefile=20 > misc/kde2-i18n Makefile=20 > misc/koffice-i18n Makefile=20 > misc/kwatch Makefile=20 > misc/mc Makefile=20 > misc/pinfo Makefile=20 > misc/sh-utils Makefile=20 > net/centericq Makefile=20 > net/dctc-gui Makefile=20 > net/etherape Makefile=20 > net/fidelio Makefile=20 > net/gabber Makefile=20 > net/gtkhx Makefile=20 > net/ipv6calc Makefile=20 > net/jwhois Makefile=20 > net/kdetelnet Makefile=20 > net/kmud Makefile=20 > net/ksamba Makefile=20 > net/wol Makefile=20 > news/tin Makefile=20 > palm/coldsync Makefile=20 > palm/jpilot Makefile=20 > print/cjk-lyx Makefile=20 > print/ktexshell Makefile=20 > print/lyx Makefile=20 > print/rlpr Makefile=20 > russian/kde2-i18n Makefile=20 > russian/koffice-i18n Makefile=20 > security/fwlogwatch Makefile=20 > security/gnupg Makefile=20 > security/kssh Makefile=20 > security/mcrypt Makefile=20 > sysutils/apcupsd Makefile=20 > sysutils/fileutils Makefile=20 > sysutils/gcombust Makefile=20 > sysutils/gfslicer Makefile=20 > sysutils/slmon Makefile=20 > textproc/modlogan Makefile=20 > textproc/rotix Makefile=20 > textproc/textutils Makefile=20 > www/amyc Makefile=20 > www/cadaver Makefile=20 > www/dillo Makefile=20 > www/galeon Makefile=20 > www/horde-devel Makefile=20 > www/lynx-current Makefile=20 > www/quanta Makefile=20 > www/retawq Makefile=20 > www/sitecopy Makefile=20 > x11/gnomeapplets Makefile=20 > x11/gnomecore Makefile=20 > x11/kdebase11 Makefile=20 > x11/kdebase2 Makefile=20 > x11-fm/nautilus Makefile=20 > x11-toolkits/gtk12 Makefile=20 > x11-toolkits/pango Makefile=20 > x11-wm/enlightenment Makefile=20 > x11-wm/icewm Makefile=20 > x11-wm/kappdock Makefile=20 > x11-wm/kwix Makefile=20 > x11-wm/ude Makefile=20 > x11-wm/windowmaker Makefile=20 > Added files: > devel/gettext/files patch-Makefile.in patch-doc::Makefile.in=20 > patch-intl::Makefile.in=20 > patch-lib::Makefile.in patch-ltmain.sh=20 > patch-man::Makefile.in=20 > Removed files: > devel/gettext/files patch-af patch-ah patch-ai=20 > devel/gettext-devel Makefile distinfo pkg-comment pkg-descr=20 > pkg-plist=20 > devel/gettext-devel/files patch-Makefile.in patch-ad patch-ae=20 > patch-ak patch-doc::Makefile.in=20 > patch-intl::Makefile.in=20 > patch-lib::Makefile.in=20 > patch-ltmain.sh=20 > patch-man::Makefile.in=20 > Log: > Stage 1 of gettext update. > =20 > Move gettext (0.10.35) with gettext-old > Update gettext from gettext-devel (0.10.40) > Remove gettext-devel > Fix dependencies > =20 > Stage 2 will involve upgraded gettext to 0.11 and fixing issues > Stage 3 involves a de-orbit burn sequence for gettext-old > =20 > Reviewed by: portmgr > =20 > Revision Changes Path > 1.4850 +1 -1 CVSROOT/modules > 1.25 +1 -1 ports/archivers/gtar/Makefile > 1.38 +1 -1 ports/archivers/rpm/Makefile > 1.5 +1 -1 ports/astro/fooseti/Makefile > 1.12 +1 -1 ports/astro/seti_applet/Makefile > 1.5 +1 -1 ports/astro/spacechart/Makefile > 1.27 +2 -2 ports/audio/aumix/Makefile > 1.4 +1 -1 ports/audio/denemo/Makefile > 1.11 +1 -1 ports/audio/kmikmod/Makefile > 1.2 +1 -1 ports/audio/koog/Makefile > 1.10 +1 -1 ports/audio/lopster/Makefile > 1.9 +1 -1 ports/audio/mad/Makefile > 1.5 +2 -2 ports/audio/normalize/Makefile > 1.11 +1 -1 ports/audio/opmixer/Makefile > 1.15 +1 -1 ports/audio/snd/Makefile > 1.2 +1 -1 ports/audio/soribada/Makefile > 1.2 +1 -1 ports/audio/umix/Makefile > 1.37 +1 -1 ports/chinese/xcin25/Makefile > 1.8 +1 -1 ports/chinese/zhcon/Makefile > 1.9 +1 -1 ports/comms/gnokii/Makefile > 1.16 +2 -2 ports/converters/recode/Makefile > 1.3 +1 -1 ports/databases/mysql-gui/Makefile > 1.27 +1 -1 ports/databases/namazu2/Makefile > 1.2 +1 -1 ports/databases/p5-DBD-Sybase/Makefile > 1.92 +1 -1 ports/databases/postgresql7/Makefile > 1.6 +2 -2 ports/databases/sqsh/Makefile > 1.5 +1 -1 ports/deskutils/gcal/Makefile > 1.782 +1 -1 ports/devel/Makefile > 1.61 +1 -1 ports/devel/ORBit/Makefile > 1.48 +1 -1 ports/devel/bonobo/Makefile > 1.20 +1 -1 ports/devel/bugbuddy/Makefile > 1.17 +2 -2 ports/devel/cervisia/Makefile > 1.12 +1 -1 ports/devel/cook/Makefile > 1.28 +0 -65 ports/devel/gettext-devel/Makefile (dead) > 1.5 +0 -1 ports/devel/gettext-devel/distinfo (dead) > 1.2 +0 -14 ports/devel/gettext-devel/files/patch-Makefile.in = (dead) > 1.5 +0 -16 ports/devel/gettext-devel/files/patch-ad (dead) > 1.8 +0 -67 ports/devel/gettext-devel/files/patch-ae (dead) > 1.2 +0 -11 ports/devel/gettext-devel/files/patch-ak (dead) > 1.2 +0 -23 ports/devel/gettext-devel/files/patch-doc::Makefil= e.in (dead) > 1.2 +0 -44 ports/devel/gettext-devel/files/patch-intl::Makefi= le.in (dead) > 1.2 +0 -38 ports/devel/gettext-devel/files/patch-lib::Makefil= e.in (dead) > 1.4 +0 -28 ports/devel/gettext-devel/files/patch-ltmain.sh (d= ead) > 1.2 +0 -14 ports/devel/gettext-devel/files/patch-man::Makefil= e.in (dead) > 1.3 +0 -1 ports/devel/gettext-devel/pkg-comment (dead) > 1.2 +0 -5 ports/devel/gettext-devel/pkg-descr (dead) > 1.20 +0 -122 ports/devel/gettext-devel/pkg-plist (dead) > 1.23 +37 -4 ports/devel/gettext/Makefile > 1.3 +1 -1 ports/devel/gettext/distinfo > 1.1 +14 -0 ports/devel/gettext/files/patch-Makefile.in (new) > 1.3 +16 -24 ports/devel/gettext/files/patch-ad > 1.6 +25 -51 ports/devel/gettext/files/patch-ae > 1.3 +0 -10 ports/devel/gettext/files/patch-af (dead) > 1.2 +0 -11 ports/devel/gettext/files/patch-ah (dead) > 1.2 +0 -12 ports/devel/gettext/files/patch-ai (dead) > 1.1 +23 -0 ports/devel/gettext/files/patch-doc::Makefile.in (= new) > 1.1 +44 -0 ports/devel/gettext/files/patch-intl::Makefile.in = (new) > 1.1 +38 -0 ports/devel/gettext/files/patch-lib::Makefile.in (= new) > 1.1 +28 -0 ports/devel/gettext/files/patch-ltmain.sh (new) > 1.1 +14 -0 ports/devel/gettext/files/patch-man::Makefile.in (= new) > 1.18 +61 -10 ports/devel/gettext/pkg-plist > 1.52 +1 -1 ports/devel/glib20/Makefile > 1.36 +2 -2 ports/devel/gmake/Makefile > 1.28 +1 -1 ports/devel/gnomevfs/Makefile > 1.31 +1 -1 ports/devel/gnomevfs2/Makefile > 1.18 +1 -1 ports/devel/gtranslator/Makefile > 1.3 +1 -1 ports/devel/ixlib/Makefile > 1.41 +1 -1 ports/devel/kdevelop/Makefile > 1.11 +1 -1 ports/devel/ktranslator/Makefile > 1.7 +1 -1 ports/devel/motor/Makefile > 1.6 +1 -1 ports/devel/objprelink/Makefile > 1.7 +2 -2 ports/devel/p5-Locale-gettext/Makefile > 1.12 +1 -1 ports/devel/popt/Makefile > 1.8 +2 -2 ports/devel/ruby-intl/Makefile > 1.33 +1 -1 ports/editors/cooledit/Makefile > 1.19 +1 -1 ports/editors/lpe/Makefile > 1.13 +1 -1 ports/editors/nano/Makefile > 1.6 +1 -1 ports/editors/poedit/Makefile > 1.2 +1 -1 ports/editors/xemacs-devel-mule/Makefile > 1.39 +1 -1 ports/editors/xemacs21-mule/Makefile > 1.20 +1 -1 ports/editors/yudit/Makefile > 1.28 +1 -1 ports/emulators/xsystem35/Makefile > 1.8 +1 -1 ports/ftp/axel/Makefile > 1.60 +1 -1 ports/ftp/lftp/Makefile > 1.23 +2 -2 ports/ftp/pavuk/Makefile > 1.2 +1 -1 ports/ftp/wget+ipv6/Makefile > 1.50 +1 -1 ports/ftp/wget/Makefile > 1.10 +1 -1 ports/games/eboard/Makefile > 1.43 +1 -1 ports/games/freeciv/Makefile > 1.38 +1 -1 ports/games/gnomegames/Makefile > 1.6 +1 -1 ports/games/gtypist/Makefile > 1.12 +1 -1 ports/games/kbubbles/Makefile > 1.6 +1 -1 ports/games/kpuzzle/Makefile > 1.10 +1 -1 ports/games/krogue/Makefile > 1.6 +1 -1 ports/games/krubik/Makefile > 1.6 +2 -2 ports/games/lexter/Makefile > 1.19 +1 -1 ports/games/xinvaders/Makefile > 1.19 +1 -1 ports/graphics/gphoto2/Makefile > 1.14 +1 -1 ports/graphics/gtkgraph/Makefile > 1.27 +2 -2 ports/graphics/gtksee/Makefile > 1.11 +1 -1 ports/graphics/libxine/Makefile > 1.7 +1 -1 ports/graphics/ogle-gui/Makefile > 1.5 +2 -2 ports/graphics/ruby-tgif/Makefile > 1.17 +2 -2 ports/graphics/tgif-nls/Makefile > 1.23 +1 -1 ports/graphics/xine/Makefile > 1.3 +1 -1 ports/graphics/xmps-opendivx-plugin/Makefile > 1.6 +1 -1 ports/graphics/xmps-win32-plugin/Makefile > 1.24 +2 -2 ports/irc/kvirc/Makefile > 1.8 +1 -1 ports/irc/liece/Makefile > 1.91 +1 -1 ports/irc/xchat/Makefile > 1.9 +1 -1 ports/japanese/kebook/Makefile > 1.31 +2 -2 ports/japanese/mutt-devel/Makefile > 1.17 +2 -2 ports/japanese/mutt/Makefile > 1.18 +1 -1 ports/japanese/samba/Makefile > 1.4 +1 -1 ports/japanese/samba20/Makefile > 1.36 +1 -1 ports/japanese/vflib/Makefile > 1.3 +2 -2 ports/korean/texinfo/Makefile > 1.33 +1 -1 ports/lang/librep/Makefile > 1.9 +2 -2 ports/lang/mdk/Makefile > 1.65 +2 -2 ports/mail/elm/Makefile > 1.130 +1 -1 ports/mail/fetchmail/Makefile > 1.21 +2 -2 ports/mail/kbiff/Makefile > 1.161 +1 -1 ports/mail/mutt-devel/Makefile > 1.112 +1 -1 ports/mail/mutt/Makefile > 1.5 +1 -1 ports/mail/perdition/Makefile > 1.18 +1 -1 ports/mail/spruce/Makefile > 1.24 +1 -1 ports/math/oleo/Makefile > 1.5 +1 -1 ports/misc/afbackup/Makefile > 1.3 +1 -1 ports/misc/dirtree/Makefile > 1.37 +1 -1 ports/misc/gnomeutils/Makefile > 1.12 +1 -1 ports/misc/kde2-i18n/Makefile > 1.3 +1 -1 ports/misc/koffice-i18n/Makefile > 1.20 +1 -1 ports/misc/kwatch/Makefile > 1.58 +1 -1 ports/misc/mc/Makefile > 1.14 +1 -1 ports/misc/pinfo/Makefile > 1.10 +1 -1 ports/misc/sh-utils/Makefile > 1.29 +1 -1 ports/net/centericq/Makefile > 1.12 +1 -1 ports/net/dctc-gui/Makefile > 1.7 +2 -2 ports/net/etherape/Makefile > 1.7 +1 -1 ports/net/fidelio/Makefile > 1.20 +1 -1 ports/net/gabber/Makefile > 1.2 +1 -1 ports/net/gtkhx/Makefile > 1.3 +1 -1 ports/net/ipv6calc/Makefile > 1.9 +1 -1 ports/net/jwhois/Makefile > 1.16 +2 -2 ports/net/kdetelnet/Makefile > 1.11 +2 -2 ports/net/kmud/Makefile > 1.18 +1 -1 ports/net/ksamba/Makefile > 1.2 +1 -1 ports/net/wol/Makefile > 1.94 +1 -1 ports/news/tin/Makefile > 1.12 +1 -1 ports/palm/coldsync/Makefile > 1.20 +1 -1 ports/palm/jpilot/Makefile > 1.6 +1 -1 ports/print/cjk-lyx/Makefile > 1.3 +2 -2 ports/print/ktexshell/Makefile > 1.59 +1 -1 ports/print/lyx/Makefile > 1.9 +2 -2 ports/print/rlpr/Makefile > 1.3 +1 -1 ports/russian/kde2-i18n/Makefile > 1.3 +1 -1 ports/russian/koffice-i18n/Makefile > 1.5 +1 -1 ports/security/fwlogwatch/Makefile > 1.37 +1 -1 ports/security/gnupg/Makefile > 1.13 +1 -1 ports/security/kssh/Makefile > 1.8 +1 -1 ports/security/mcrypt/Makefile > 1.7 +1 -1 ports/sysutils/apcupsd/Makefile > 1.9 +1 -1 ports/sysutils/fileutils/Makefile > 1.27 +1 -1 ports/sysutils/gcombust/Makefile > 1.2 +1 -1 ports/sysutils/gfslicer/Makefile > 1.2 +1 -1 ports/sysutils/slmon/Makefile > 1.4 +1 -1 ports/textproc/modlogan/Makefile > 1.2 +1 -1 ports/textproc/rotix/Makefile > 1.12 +2 -2 ports/textproc/textutils/Makefile > 1.4 +2 -2 ports/www/amyc/Makefile > 1.9 +1 -1 ports/www/cadaver/Makefile > 1.6 +2 -2 ports/www/dillo/Makefile > 1.63 +1 -1 ports/www/galeon/Makefile > 1.7 +1 -1 ports/www/horde-devel/Makefile > 1.134 +1 -1 ports/www/lynx-current/Makefile > 1.13 +1 -1 ports/www/quanta/Makefile > 1.3 +1 -1 ports/www/retawq/Makefile > 1.27 +1 -1 ports/www/sitecopy/Makefile > 1.46 +1 -1 ports/x11-fm/nautilus/Makefile > 1.79 +1 -1 ports/x11-toolkits/gtk12/Makefile > 1.20 +1 -1 ports/x11-toolkits/pango/Makefile > 1.67 +1 -1 ports/x11-wm/enlightenment/Makefile > 1.69 +1 -1 ports/x11-wm/icewm/Makefile > 1.3 +1 -1 ports/x11-wm/kappdock/Makefile > 1.4 +1 -1 ports/x11-wm/kwix/Makefile > 1.10 +2 -2 ports/x11-wm/ude/Makefile > 1.96 +2 -2 ports/x11-wm/windowmaker/Makefile > 1.20 +1 -1 ports/x11/gnomeapplets/Makefile > 1.75 +1 -1 ports/x11/gnomecore/Makefile > 1.60 +1 -1 ports/x11/kdebase11/Makefile > 1.92 +1 -1 ports/x11/kdebase2/Makefile >=20 > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe cvs-all" in the body of the message --=20 If today is the first day of the rest of your life, what the hell was yesterday? --3MwIy2ne0vdjdPXF 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 iD8DBQE8knoYY3r/tLQmfWcRArFoAJ9sqny1y6fFNT6AoFwGbKR1M7vOrQCfaw4B JuaZbeka/BfXvffkkVkBB6w= =xsLc -----END PGP SIGNATURE----- --3MwIy2ne0vdjdPXF-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 14: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 46CE937B400; Fri, 15 Mar 2002 14:50:14 -0800 (PST) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FMoED15787; Fri, 15 Mar 2002 14:50:14 -0800 (PST) (envelope-from mikeh) Message-Id: <200203152250.g2FMoED15787@freefall.freebsd.org> From: Mike Heffner Date: Fri, 15 Mar 2002 14:50:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/arp Makefile 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 mikeh 2002/03/15 14:50:14 PST Modified files: (Branch: RELENG_4) usr.sbin/arp Makefile arp.c Log: MFC: WARNS cleanup 1.7 +3 -1 src/usr.sbin/arp/Makefile 1.34 +68 -58 src/usr.sbin/arp/arp.c Revision Changes Path 1.4.6.2 +1 -1 src/usr.sbin/arp/Makefile 1.22.2.6 +68 -58 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 Fri Mar 15 14:53:35 2002 Delivered-To: cvs-all@freebsd.org Received: from green.bikeshed.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A934E37B404; Fri, 15 Mar 2002 14:53:28 -0800 (PST) Received: from localhost (green@localhost) by green.bikeshed.org (8.11.6/8.11.6) with ESMTP id g2FMrSH38794; Fri, 15 Mar 2002 17:53:28 -0500 (EST) (envelope-from green@green.bikeshed.org) Message-Id: <200203152253.g2FMrSH38794@green.bikeshed.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/gen readpassphrase.3 In-Reply-To: Your message of "Fri, 15 Mar 2002 09:46:53 PST." <200203151746.g2FHkra00548@freefall.freebsd.org> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 15 Mar 2002 17:53:28 -0500 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Ruslan Ermilov wrote: > ru 2002/03/15 09:46:53 PST > > Modified files: > lib/libc/gen readpassphrase.3 > Log: > Come on guys, you can't just take OpenBSD manpage and commit it > over someone else's fixes; this is at least offensive. If you > have problems doing a proper merge, we are here, your fellow > committers. :-( > > Reapply markup fixes from revision 1.2 and fix some more. Also > fix the $OpenBSD$ tag. It's an OpenBSD manpage, not a FreeBSD manpage... -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org <> bfeldman@tislabs.com \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 14:55: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 877BB37B400; Fri, 15 Mar 2002 14:54:58 -0800 (PST) Received: (from jmallett@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FMswm18942; Fri, 15 Mar 2002 14:54:58 -0800 (PST) (envelope-from jmallett) Message-Id: <200203152254.g2FMswm18942@freefall.freebsd.org> From: "J. Mallett" Date: Fri, 15 Mar 2002 14:54:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/xargs xargs.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/15 14:54:58 PST Modified files: usr.bin/xargs xargs.c Log: ANSIfy: Function declarations and prototypes, use of environ(7). Reviewed by: mike Approved by: mike Revision Changes Path 1.15 +8 -9 src/usr.bin/xargs/xargs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 14:55: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 C092C37B402; Fri, 15 Mar 2002 14:54:59 -0800 (PST) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FMsxB18976; Fri, 15 Mar 2002 14:54:59 -0800 (PST) (envelope-from mikeh) Message-Id: <200203152254.g2FMsxB18976@freefall.freebsd.org> From: Mike Heffner Date: Fri, 15 Mar 2002 14:54:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/chroot Makefile chroot.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 mikeh 2002/03/15 14:54:59 PST Modified files: (Branch: RELENG_4) usr.sbin/chroot Makefile chroot.c Log: MFC: WARNS cleanup 1.5 +3 -1 src/usr.sbin/chroot/Makefile 1.6 +2 -2 src/usr.sbin/chroot/chroot.c Revision Changes Path 1.2.14.2 +1 -0 src/usr.sbin/chroot/Makefile 1.4.2.1 +1 -1 src/usr.sbin/chroot/chroot.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 15: 1:55 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 39EDB37B429; Fri, 15 Mar 2002 15:00:41 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2FN0flv066633; Fri, 15 Mar 2002 15:00:41 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2FMxQOZ066602; Fri, 15 Mar 2002 14:59:26 -0800 (PST) Date: Fri, 15 Mar 2002 14:59:26 -0800 From: "David O'Brien" To: "Brian F. Feldman" Cc: Ruslan Ermilov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/gen readpassphrase.3 Message-ID: <20020315145926.A66165@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200203151746.g2FHkra00548@freefall.freebsd.org> <200203152253.g2FMrSH38794@green.bikeshed.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200203152253.g2FMrSH38794@green.bikeshed.org>; from green@FreeBSD.org on Fri, Mar 15, 2002 at 05:53:28PM -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, Mar 15, 2002 at 05:53:28PM -0500, Brian F. Feldman wrote: > Ruslan Ermilov wrote: > > ru 2002/03/15 09:46:53 PST > > > > Modified files: > > lib/libc/gen readpassphrase.3 > > Log: > > Come on guys, you can't just take OpenBSD manpage and commit it > > over someone else's fixes; this is at least offensive. If you > > have problems doing a proper merge, we are here, your fellow > > committers. :-( > > > > Reapply markup fixes from revision 1.2 and fix some more. Also > > fix the $OpenBSD$ tag. > > It's an OpenBSD manpage, not a FreeBSD manpage... So? It is in a FreeBSD system sitting in the context of other FreeBSD manpages. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 15: 2:21 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 7B7F537B400; Fri, 15 Mar 2002 15:01:17 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id KAA17807; Sat, 16 Mar 2002 10:01:10 +1100 Date: Sat, 16 Mar 2002 10:02:44 +1100 (EST) From: Bruce Evans X-X-Sender: To: Dag-Erling Smorgrav Cc: , , Subject: Re: cvs commit: src/sys/ufs/ffs ffs_softdep.c In-Reply-To: Message-ID: <20020316095631.M25991-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 15 Mar 2002, Dag-Erling Smorgrav wrote: > "David O'Brien" writes: > > It is a for() loop (or was that another file I made this same fix to), > > which we know is not guaranteed to run at least once. > > In this case it is, and gcc could deduce it (if it tried) by seeing > that the loop condition holds true at the beginning of the loop: > > for (loopcnt = 10; loopcnt > 0; loopcnt--) { > /* ... */ > } gcc has deduced this on i386's for at least 10 years. Why not on alphas? Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 15:26:11 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 E69B337B402; Fri, 15 Mar 2002 15:26:05 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g2FNQ0i45995; Fri, 15 Mar 2002 16:26:00 -0700 (MST) (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 g2FNPwL61201; Fri, 15 Mar 2002 16:25:59 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200203152325.g2FNPwL61201@harmony.village.org> To: Alfred Perlstein Subject: Re: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_fat.c msdosfs_vnops.c ... Cc: Kirk McKusick , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Fri, 15 Mar 2002 10:54:27 PST." <20020315185427.GK4857@elvis.mu.org> References: <20020315185427.GK4857@elvis.mu.org> <200203151849.g2FInlW38440@freefall.freebsd.org> Date: Fri, 15 Mar 2002 16:25:58 -0700 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 <20020315185427.GK4857@elvis.mu.org> Alfred Perlstein writes: : In case no one has said it (which I doubt) you rule. :) daddr64_t is 9,444,732,965,739,290,427,392 bytes, or 9,444,732 PB (P expressed in the SI units that disk makers use). This is >> the largest disk arrays today (by a factor of 10^8). At a 20%/year growth rate for disk sizes, that's 101 yeats before the largest disk arrays get this big :-) And yes, Kirk does rule. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 15: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 CEC5037B423; Fri, 15 Mar 2002 15:29:24 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FNTOF39329; Fri, 15 Mar 2002 15:29:24 -0800 (PST) (envelope-from murray) Message-Id: <200203152329.g2FNTOF39329@freefall.freebsd.org> From: Murray Stokely Date: Fri, 15 Mar 2002 15:29:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 build.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 murray 2002/03/15 15:29:24 PST Modified files: share/man/man7 build.7 Log: Add a description of the TARGET variable, and add more information about the TARGET_ARCH variable. (1) Add information about the DESTDIR variable. Add more examples for cross-building. (1) Submitted by: ru MFC after: 3 days Revision Changes Path 1.17 +19 -2 src/share/man/man7/build.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 15:34: 3 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 F2C4E37B404; Fri, 15 Mar 2002 15:33:56 -0800 (PST) Received: (from mike@localhost) by espresso.q9media.com (8.11.6/8.11.6) id g2FNSHk36187; Fri, 15 Mar 2002 18:28:17 -0500 (EST) (envelope-from mike) Date: Fri, 15 Mar 2002 18:28:17 -0500 From: Mike Barcroft To: "Brian F. Feldman" Cc: Ruslan Ermilov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libc/gen readpassphrase.3 Message-ID: <20020315182817.A16084@espresso.q9media.com> References: <200203151746.g2FHkra00548@freefall.freebsd.org> <200203152253.g2FMrSH38794@green.bikeshed.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203152253.g2FMrSH38794@green.bikeshed.org>; from green@FreeBSD.org on Fri, Mar 15, 2002 at 05:53:28PM -0500 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 F. Feldman writes: > Ruslan Ermilov wrote: > > ru 2002/03/15 09:46:53 PST > > > > Modified files: > > lib/libc/gen readpassphrase.3 > > Log: > > Come on guys, you can't just take OpenBSD manpage and commit it > > over someone else's fixes; this is at least offensive. If you > > have problems doing a proper merge, we are here, your fellow > > committers. :-( > > > > Reapply markup fixes from revision 1.2 and fix some more. Also > > fix the $OpenBSD$ tag. > > It's an OpenBSD manpage, not a FreeBSD manpage... Please submit back Ruslan's fixes to help reduce differences. 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 Mar 15 15:34:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4EC2A37B492; Fri, 15 Mar 2002 15:34:17 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FNYHr40465; Fri, 15 Mar 2002 15:34:17 -0800 (PST) (envelope-from murray) Message-Id: <200203152334.g2FNYHr40465@freefall.freebsd.org> From: Murray Stokely Date: Fri, 15 Mar 2002 15:34:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 build.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 murray 2002/03/15 15:34:17 PST Modified files: share/man/man7 build.7 Log: Markup fix. Use .Va instead of .Ev. No content changes. Revision Changes Path 1.18 +7 -7 src/share/man/man7/build.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 15:56: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 83A9837B435; Fri, 15 Mar 2002 15:55:54 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FNts151863; Fri, 15 Mar 2002 15:55:54 -0800 (PST) (envelope-from murray) Message-Id: <200203152355.g2FNts151863@freefall.freebsd.org> From: Murray Stokely Date: Fri, 15 Mar 2002 15:55:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/scripts print-cdrom-packages.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 murray 2002/03/15 15:55:54 PST Modified files: release/scripts print-cdrom-packages.sh Log: Add textproc/docproj and editors/xemacs21 to the list of packages for disc #3. MFC after: 1 week Revision Changes Path 1.22 +3 -1 src/release/scripts/print-cdrom-packages.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 15:59: 4 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9DCE637B404; Fri, 15 Mar 2002 15:59:00 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2FNx0t52913; Fri, 15 Mar 2002 15:59:00 -0800 (PST) (envelope-from luigi) Message-Id: <200203152359.g2FNx0t52913@freefall.freebsd.org> From: Luigi Rizzo Date: Fri, 15 Mar 2002 15:59:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man8 picobsd.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 luigi 2002/03/15 15:59:00 PST Modified files: (Branch: RELENG_4) share/man/man8 picobsd.8 Log: MFC: fixes to manpage. Revision Changes Path 1.1.2.11 +77 -73 src/share/man/man8/picobsd.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 16:14: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 D51ED37B402; Fri, 15 Mar 2002 16:14:33 -0800 (PST) Received: (from luigi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G0EXr60187; Fri, 15 Mar 2002 16:14:33 -0800 (PST) (envelope-from luigi) Message-Id: <200203160014.g2G0EXr60187@freefall.freebsd.org> From: Luigi Rizzo Date: Fri, 15 Mar 2002 16:14:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/rio Makefile distinfo ports/audio/rio/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 luigi 2002/03/15 16:14:33 PST Modified files: audio/rio Makefile distinfo Removed files: audio/rio/files patch-aa Log: Update to version 1.07, which also operates on external flash memory. patch-aa is not necessary anymore. Revision Changes Path 1.6 +3 -3 ports/audio/rio/Makefile 1.3 +1 -1 ports/audio/rio/distinfo 1.3 +0 -35 ports/audio/rio/files/patch-aa (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 16: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 6C33F37B416; Fri, 15 Mar 2002 16:24:56 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G0Oux65586; Fri, 15 Mar 2002 16:24:56 -0800 (PST) (envelope-from kris) Message-Id: <200203160024.g2G0Oux65586@freefall.freebsd.org> From: Kris Kennaway Date: Fri, 15 Mar 2002 16:24:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/asfrecorder 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/03/15 16:24:56 PST Modified files: net/asfrecorder Makefile distinfo Log: asfrecorder moved to sourceforge, and for some reason the version on the old site had reverted to an older one. Change over to the real 1.1 version, and call it 1.1.20010307 to make the portversion monotonic. Submitted by: maintainer Revision Changes Path 1.3 +3 -2 ports/net/asfrecorder/Makefile 1.3 +1 -1 ports/net/asfrecorder/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 16:25: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 90C3037B400; Fri, 15 Mar 2002 16:25:53 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G0Prk65780; Fri, 15 Mar 2002 16:25:53 -0800 (PST) (envelope-from des) Message-Id: <200203160025.g2G0Prk65780@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 15 Mar 2002 16:25:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/include ptrace.h src/sys/i386/include ptrace.h src/sys/ia64/include ptrace.h src/sys/powerpc/include ptrace.h src/sys/sparc64/include ptrace.h src/sys/sys ptrace.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/03/15 16:25:53 PST Modified files: sys/alpha/include ptrace.h sys/i386/include ptrace.h sys/ia64/include ptrace.h sys/powerpc/include ptrace.h sys/sparc64/include ptrace.h sys/sys ptrace.h Log: Move the definition of PT_[GS]ET{,DB,FP}REGS from the MD ptrace.h to the MI ptrace.h, since all platforms define them. Keep the MD ptrace.h around for FIX_SSTEP (which is currently only needed on Alpha). Revision Changes Path 1.10 +2 -11 src/sys/alpha/include/ptrace.h 1.11 +1 -11 src/sys/i386/include/ptrace.h 1.3 +1 -9 src/sys/ia64/include/ptrace.h 1.11 +1 -11 src/sys/powerpc/include/ptrace.h 1.6 +1 -9 src/sys/sparc64/include/ptrace.h 1.18 +8 -1 src/sys/sys/ptrace.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 17: 6: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 1804537B416; Fri, 15 Mar 2002 17:06:52 -0800 (PST) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G16qR75236; Fri, 15 Mar 2002 17:06:52 -0800 (PST) (envelope-from mikeh) Message-Id: <200203160106.g2G16qR75236@freefall.freebsd.org> From: Mike Heffner Date: Fri, 15 Mar 2002 17:06:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/boot0cfg Makefile boot0cfg.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 mikeh 2002/03/15 17:06:52 PST Modified files: (Branch: RELENG_4) usr.sbin/boot0cfg Makefile boot0cfg.c Log: MFC: WARNS cleanup 1.7 +2 -1 src/usr.sbin/boot0cfg/Makefile 1.12 +12 -8 src/usr.sbin/boot0cfg/boot0cfg.c Revision Changes Path 1.2.2.2 +2 -1 src/usr.sbin/boot0cfg/Makefile 1.7.2.4 +12 -8 src/usr.sbin/boot0cfg/boot0cfg.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 17:15: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 00B1637B402; Fri, 15 Mar 2002 17:15:15 -0800 (PST) Received: (from mikeh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G1FEv76296; Fri, 15 Mar 2002 17:15:14 -0800 (PST) (envelope-from mikeh) Message-Id: <200203160115.g2G1FEv76296@freefall.freebsd.org> From: Mike Heffner Date: Fri, 15 Mar 2002 17:15:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/bin/ps fmt.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 mikeh 2002/03/15 17:15:14 PST Modified files: (Branch: RELENG_4) bin/ps fmt.c Log: MFC: Don't overflow command buffer. 1.15 +8 -4 src/bin/ps/fmt.c Revision Changes Path 1.14.2.1 +8 -4 src/bin/ps/fmt.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 18: 8: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from sunny.newgold.net (durham-ar1-174-172.durham.dsl.gtei.net [4.40.174.172]) by hub.freebsd.org (Postfix) with ESMTP id 7D25C37B400; Fri, 15 Mar 2002 18:08:02 -0800 (PST) Received: from sunny.newgold.net (freebsd@localhost [IPv6:::1]) by sunny.newgold.net (8.12.1/8.12.1) with ESMTP id g2G1m9DF013823; Sat, 16 Mar 2002 01:49:04 GMT Received: (from freebsd@localhost) by sunny.newgold.net (8.12.1/8.12.1/Submit) id g2G1m5xn022545; Sat, 16 Mar 2002 01:48:05 GMT Date: Sat, 16 Mar 2002 01:47:10 +0000 From: "J. Mallett" To: Warner Losh Cc: Alfred Perlstein , Kirk McKusick , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_fat.c msdosfs_vnops.c ... Message-ID: <20020316014710.A19249@FreeBSD.ORG> References: <20020315185427.GK4857@elvis.mu.org> <200203151849.g2FInlW38440@freefall.freebsd.org> <200203152325.g2FNPwL61201@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203152325.g2FNPwL61201@harmony.village.org> User-Agent: Mutt/1.3.21i 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 Fri, Mar 15, 2002 at 04:25:58PM -0700, Warner Losh wrote: > In message <20020315185427.GK4857@elvis.mu.org> Alfred Perlstein writes: > : In case no one has said it (which I doubt) you rule. :) > > daddr64_t is 9,444,732,965,739,290,427,392 bytes, or 9,444,732 PB (P > expressed in the SI units that disk makers use). This is >> the > largest disk arrays today (by a factor of 10^8). At a 20%/year growth > rate for disk sizes, that's 101 yeats before the largest disk arrays > get this big :-) That's frightening... How much possible data storage is there in the universe again? :> > And yes, Kirk does rule. Yes he does. And is that an SGI shirt I see him in in some old USENIX photos, or am I hallucinating? /j. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 18: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 C56A837B41E; Fri, 15 Mar 2002 18:18:15 -0800 (PST) Received: (from msmith@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G2IFn96959; Fri, 15 Mar 2002 18:18:15 -0800 (PST) (envelope-from msmith) Message-Id: <200203160218.g2G2IFn96959@freefall.freebsd.org> From: Mike Smith Date: Fri, 15 Mar 2002 18:18:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/contrib/dev/acpica - Imported sources X-FreeBSD-CVS-Branch: INTEL Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG msmith 2002/03/15 18:18:15 PST src/sys/contrib/dev/acpica - Imported sources Update of /home/ncvs/src/sys/contrib/dev/acpica In directory freefall.freebsd.org:/d/home/msmith/acpi_ca_destination Log Message: Import of the 20020308 Intel ACPI CA update. Status: Vendor Tag: INTEL Release Tags: r20020308 C src/sys/contrib/dev/acpica/evevent.c U src/sys/contrib/dev/acpica/evmisc.c U src/sys/contrib/dev/acpica/evregion.c U src/sys/contrib/dev/acpica/evrgnini.c U src/sys/contrib/dev/acpica/evsci.c U src/sys/contrib/dev/acpica/evxface.c U src/sys/contrib/dev/acpica/evxfevnt.c U src/sys/contrib/dev/acpica/evxfregn.c U src/sys/contrib/dev/acpica/hwacpi.c U src/sys/contrib/dev/acpica/hwgpe.c U src/sys/contrib/dev/acpica/hwregs.c U src/sys/contrib/dev/acpica/hwsleep.c U src/sys/contrib/dev/acpica/hwtimer.c C src/sys/contrib/dev/acpica/acconfig.h U src/sys/contrib/dev/acpica/acdebug.h U src/sys/contrib/dev/acpica/acdispat.h U src/sys/contrib/dev/acpica/acevents.h U src/sys/contrib/dev/acpica/acexcep.h U src/sys/contrib/dev/acpica/acglobal.h U src/sys/contrib/dev/acpica/achware.h U src/sys/contrib/dev/acpica/acinterp.h U src/sys/contrib/dev/acpica/aclocal.h U src/sys/contrib/dev/acpica/acmacros.h U src/sys/contrib/dev/acpica/acnamesp.h U src/sys/contrib/dev/acpica/acpi.h U src/sys/contrib/dev/acpica/acobject.h U src/sys/contrib/dev/acpica/acoutput.h U src/sys/contrib/dev/acpica/acparser.h C src/sys/contrib/dev/acpica/acpiosxf.h U src/sys/contrib/dev/acpica/acpixf.h U src/sys/contrib/dev/acpica/acresrc.h U src/sys/contrib/dev/acpica/acstruct.h U src/sys/contrib/dev/acpica/actables.h U src/sys/contrib/dev/acpica/actbl.h U src/sys/contrib/dev/acpica/actbl1.h U src/sys/contrib/dev/acpica/actbl2.h U src/sys/contrib/dev/acpica/actbl71.h U src/sys/contrib/dev/acpica/actypes.h U src/sys/contrib/dev/acpica/acutils.h U src/sys/contrib/dev/acpica/amlcode.h N src/sys/contrib/dev/acpica/acdos16.h U src/sys/contrib/dev/acpica/acefi.h U src/sys/contrib/dev/acpica/acenv.h U src/sys/contrib/dev/acpica/acfreebsd.h C src/sys/contrib/dev/acpica/acgcc.h U src/sys/contrib/dev/acpica/dbcmds.c U src/sys/contrib/dev/acpica/dbdisasm.c U src/sys/contrib/dev/acpica/dbdisply.c U src/sys/contrib/dev/acpica/dbexec.c U src/sys/contrib/dev/acpica/dbfileio.c U src/sys/contrib/dev/acpica/dbhistry.c U src/sys/contrib/dev/acpica/dbinput.c U src/sys/contrib/dev/acpica/dbstats.c U src/sys/contrib/dev/acpica/dbutils.c U src/sys/contrib/dev/acpica/dbxface.c U src/sys/contrib/dev/acpica/dsfield.c U src/sys/contrib/dev/acpica/dsmethod.c U src/sys/contrib/dev/acpica/dsmthdat.c U src/sys/contrib/dev/acpica/dsobject.c U src/sys/contrib/dev/acpica/dsopcode.c U src/sys/contrib/dev/acpica/dsutils.c U src/sys/contrib/dev/acpica/dswexec.c U src/sys/contrib/dev/acpica/dswload.c U src/sys/contrib/dev/acpica/dswscope.c U src/sys/contrib/dev/acpica/dswstate.c U src/sys/contrib/dev/acpica/exconfig.c U src/sys/contrib/dev/acpica/exconvrt.c U src/sys/contrib/dev/acpica/excreate.c U src/sys/contrib/dev/acpica/exdump.c U src/sys/contrib/dev/acpica/exfield.c U src/sys/contrib/dev/acpica/exfldio.c U src/sys/contrib/dev/acpica/exmisc.c U src/sys/contrib/dev/acpica/exmutex.c U src/sys/contrib/dev/acpica/exnames.c U src/sys/contrib/dev/acpica/exoparg1.c U src/sys/contrib/dev/acpica/exoparg2.c U src/sys/contrib/dev/acpica/exoparg3.c U src/sys/contrib/dev/acpica/exoparg6.c U src/sys/contrib/dev/acpica/exprep.c U src/sys/contrib/dev/acpica/exregion.c U src/sys/contrib/dev/acpica/exresnte.c U src/sys/contrib/dev/acpica/exresolv.c U src/sys/contrib/dev/acpica/exresop.c U src/sys/contrib/dev/acpica/exstore.c U src/sys/contrib/dev/acpica/exstoren.c U src/sys/contrib/dev/acpica/exstorob.c U src/sys/contrib/dev/acpica/exsystem.c U src/sys/contrib/dev/acpica/exutils.c U src/sys/contrib/dev/acpica/psargs.c U src/sys/contrib/dev/acpica/psfind.c U src/sys/contrib/dev/acpica/psopcode.c U src/sys/contrib/dev/acpica/psparse.c U src/sys/contrib/dev/acpica/psscope.c U src/sys/contrib/dev/acpica/pstree.c U src/sys/contrib/dev/acpica/psutils.c U src/sys/contrib/dev/acpica/pswalk.c U src/sys/contrib/dev/acpica/psxface.c U src/sys/contrib/dev/acpica/nsaccess.c U src/sys/contrib/dev/acpica/nsalloc.c U src/sys/contrib/dev/acpica/nsdump.c U src/sys/contrib/dev/acpica/nseval.c U src/sys/contrib/dev/acpica/nsinit.c U src/sys/contrib/dev/acpica/nsload.c U src/sys/contrib/dev/acpica/nsnames.c U src/sys/contrib/dev/acpica/nsobject.c U src/sys/contrib/dev/acpica/nssearch.c U src/sys/contrib/dev/acpica/nsutils.c U src/sys/contrib/dev/acpica/nswalk.c U src/sys/contrib/dev/acpica/nsxfname.c U src/sys/contrib/dev/acpica/nsxfobj.c U src/sys/contrib/dev/acpica/rsaddr.c U src/sys/contrib/dev/acpica/rscalc.c U src/sys/contrib/dev/acpica/rscreate.c U src/sys/contrib/dev/acpica/rsdump.c U src/sys/contrib/dev/acpica/rsio.c U src/sys/contrib/dev/acpica/rsirq.c U src/sys/contrib/dev/acpica/rslist.c U src/sys/contrib/dev/acpica/rsmemory.c U src/sys/contrib/dev/acpica/rsmisc.c U src/sys/contrib/dev/acpica/rsutils.c U src/sys/contrib/dev/acpica/rsxface.c U src/sys/contrib/dev/acpica/tbconvrt.c U src/sys/contrib/dev/acpica/tbget.c U src/sys/contrib/dev/acpica/tbinstal.c U src/sys/contrib/dev/acpica/tbutils.c U src/sys/contrib/dev/acpica/tbxface.c U src/sys/contrib/dev/acpica/tbxfroot.c U src/sys/contrib/dev/acpica/utalloc.c U src/sys/contrib/dev/acpica/utclib.c U src/sys/contrib/dev/acpica/utcopy.c U src/sys/contrib/dev/acpica/utdebug.c U src/sys/contrib/dev/acpica/utdelete.c U src/sys/contrib/dev/acpica/uteval.c U src/sys/contrib/dev/acpica/utglobal.c U src/sys/contrib/dev/acpica/utinit.c U src/sys/contrib/dev/acpica/utmath.c U src/sys/contrib/dev/acpica/utmisc.c U src/sys/contrib/dev/acpica/utobject.c U src/sys/contrib/dev/acpica/utxface.c 4 conflicts created by this import. Use the following command to help the merge: cvs checkout -jINTEL:yesterday -jINTEL src/sys/contrib/dev/acpica To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 18: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 1D93637B436; Fri, 15 Mar 2002 18:19:17 -0800 (PST) Received: (from archie@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G2JHd97426; Fri, 15 Mar 2002 18:19:17 -0800 (PST) (envelope-from archie) Message-Id: <200203160219.g2G2JHd97426@freefall.freebsd.org> From: Archie Cobbs Date: Fri, 15 Mar 2002 18:19:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys malloc.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 archie 2002/03/15 18:19:17 PST Modified files: (Branch: RELENG_4) sys/sys malloc.h Log: MFC: (rev. 1.55) Add realloc() and reallocf() and allow free(NULL). Revision Changes Path 1.48.2.2 +5 -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 Fri Mar 15 18:21: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 B207137B44B; Fri, 15 Mar 2002 18:19:51 -0800 (PST) Received: (from archie@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G2Jpw97626; Fri, 15 Mar 2002 18:19:51 -0800 (PST) (envelope-from archie) Message-Id: <200203160219.g2G2Jpw97626@freefall.freebsd.org> From: Archie Cobbs Date: Fri, 15 Mar 2002 18:19:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_malloc.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG archie 2002/03/15 18:19:51 PST Modified files: (Branch: RELENG_4) sys/kern kern_malloc.c Log: MFC: (rev. 1.94) Add realloc() and reallocf() and allow free(NULL). Revision Changes Path 1.64.2.5 +75 -1 src/sys/kern/kern_malloc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 18: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 7B7F337B4A8; Fri, 15 Mar 2002 18:20:28 -0800 (PST) Received: (from archie@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G2KSa97802; Fri, 15 Mar 2002 18:20:28 -0800 (PST) (envelope-from archie) Message-Id: <200203160220.g2G2KSa97802@freefall.freebsd.org> From: Archie Cobbs Date: Fri, 15 Mar 2002 18:20:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 Makefile malloc.9 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG archie 2002/03/15 18:20:28 PST Modified files: (Branch: RELENG_4) share/man/man9 Makefile malloc.9 Log: MFC: Add realloc() and reallocf() and allow free(NULL). Revision Changes Path 1.60.2.18 +1 -0 src/share/man/man9/Makefile 1.13.2.6 +83 -20 src/share/man/man9/malloc.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 18: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 3E53B37B6AC; Fri, 15 Mar 2002 18:23:31 -0800 (PST) Received: (from msmith@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G2NV198337; Fri, 15 Mar 2002 18:23:31 -0800 (PST) (envelope-from msmith) Message-Id: <200203160223.g2G2NV198337@freefall.freebsd.org> From: Mike Smith Date: Fri, 15 Mar 2002 18:23:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/contrib/dev/acpica acconfig.h acgcc.h acpiosxf.h evevent.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG msmith 2002/03/15 18:23:31 PST Modified files: sys/contrib/dev/acpica acconfig.h acgcc.h acpiosxf.h evevent.c Log: Merge local changes for the 20020308 ACPI CA update. Revision Changes Path 1.17 +2 -2 src/sys/contrib/dev/acpica/acconfig.h 1.14 +34 -1 src/sys/contrib/dev/acpica/acgcc.h 1.8 +5 -5 src/sys/contrib/dev/acpica/acpiosxf.h 1.3 +2 -2 src/sys/contrib/dev/acpica/evevent.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 18: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 5CED737B449; Fri, 15 Mar 2002 18:40:02 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G2e2500274; Fri, 15 Mar 2002 18:40:02 -0800 (PST) (envelope-from des) Message-Id: <200203160240.g2G2e2500274@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 15 Mar 2002 18:40:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys ptrace.h 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 des 2002/03/15 18:40:02 PST Modified files: sys/sys ptrace.h sys/kern sys_process.c Log: Implement PT_IO (read / write arbitrary amounts of data or text). Submitted by: Artur Grabowski Obtained from: OpenBSD Revision Changes Path 1.86 +31 -0 src/sys/kern/sys_process.c 1.19 +16 -0 src/sys/sys/ptrace.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 18:54: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 0826937B400; Fri, 15 Mar 2002 18:54:18 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G2sIY02007; Fri, 15 Mar 2002 18:54:18 -0800 (PST) (envelope-from des) Message-Id: <200203160254.g2G2sIY02007@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 15 Mar 2002 18:54:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys ptrace.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 des 2002/03/15 18:54:17 PST Modified files: lib/libc/sys ptrace.2 Log: Insert newlines between sentences and rewrap paragraphs. No changes to the actual text or markup. Revision Changes Path 1.26 +41 -32 src/lib/libc/sys/ptrace.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 19:26:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E49F37B400; Fri, 15 Mar 2002 19:26:33 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G3QXD09168; Fri, 15 Mar 2002 19:26:33 -0800 (PST) (envelope-from des) Message-Id: <200203160326.g2G3QXD09168@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 15 Mar 2002 19:26:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys ptrace.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 des 2002/03/15 19:26:33 PST Modified files: lib/libc/sys ptrace.2 Log: Further cleanup (punctuation, genitive) Revision Changes Path 1.27 +27 -18 src/lib/libc/sys/ptrace.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 19:29:55 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.ruhr.de (in-ruhr4.ruhr.de [212.23.134.2]) by hub.freebsd.org (Postfix) with SMTP id D8D7737B402 for ; Fri, 15 Mar 2002 19:29:52 -0800 (PST) Received: (qmail 30416 invoked by uid 10); 16 Mar 2002 03:29:51 -0000 Received: (from ue@localhost) by nathan.ruhr.de (8.11.6/8.11.2) id g2G3TbA39150 for cvs-all@FreeBSD.org; Sat, 16 Mar 2002 04:29:37 +0100 (CET) (envelope-from ue) Date: Sat, 16 Mar 2002 04:29:36 +0100 From: Udo Erdelhoff To: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Message-ID: <20020316032935.GB36836@nathan.ruhr.de> Mail-Followup-To: cvs-all@FreeBSD.org References: <200203151906.g2FJ6Jf52579@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203151906.g2FJ6Jf52579@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 Just a suggestion: Index: proc-alpha.sgml =================================================================== RCS file: /home/ncvs/src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml,v retrieving revision 1.38 diff -u -r1.38 proc-alpha.sgml --- proc-alpha.sgml 15 Mar 2002 19:06:19 -0000 1.38 +++ proc-alpha.sgml 16 Mar 2002 02:23:22 -0000 @@ -566,7 +566,7 @@ device pcm The sound device lives at port 0x530, and uses irq 9 along - with drq 3. You also need to specify flags 0x15 in the hints file. + with drq 3. You also need to specify flags 0x15 in the device.hints file.
I have not yet been successful in getting my Multia with the AD1848 to play any sound. @@ -1506,7 +1506,7 @@ device pcm The sound device uses port 0x530, IRQ 9 and drq 0. You also need - to specify flags 0x10011 in the device.hints file. + to specify flags 0x10011 in the device.hints file. AlphaStation 200 & 250 series have an automatic SCSI terminator. This means that as soon as you plug a cable onto the external SCSI @@ -1712,7 +1712,7 @@ Using the ECU I configured my AS500 to use IRQ 10, port 0x530, drq 0. Corresponding entries along with flags 0x10011 must go into - the device.hints file. Note that the flags value is rather non-standard. + the device.hints file. Note that the flags value is rather non-standard. AS600 has a peculiarity for its PCI slots. AS600 (or rather the -- He could be a poster child for retroactive birth control. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 19: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 EC39437B402; Fri, 15 Mar 2002 19:34:24 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G3YOg09900; Fri, 15 Mar 2002 19:34:24 -0800 (PST) (envelope-from ue) Message-Id: <200203160334.g2G3YOg09900@freefall.freebsd.org> From: Udo Erdelhoff Date: Fri, 15 Mar 2002 19:34:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/hardware/alpha proc-alpha.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/03/15 19:34:24 PST Modified files: release/doc/de_DE.ISO8859-1/hardware/alpha proc-alpha.sgml Log: MFen 1.38 Revision Changes Path 1.3 +5 -5 src/release/doc/de_DE.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 Fri Mar 15 19: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 98DA837B400; Fri, 15 Mar 2002 19:47:18 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G3lIF11559; Fri, 15 Mar 2002 19:47:18 -0800 (PST) (envelope-from ijliao) Message-Id: <200203160347.g2G3lIF11559@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 15 Mar 2002 19:47:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games Makefile ports/games/vamos Makefile distinfo pkg-comment pkg-descr pkg-plist ports/games/vamos/files patch-body::Frame.cc patch-include::vamos::body::Tire.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 ijliao 2002/03/15 19:47:18 PST Modified files: games Makefile Added files: games/vamos Makefile distinfo pkg-comment pkg-descr pkg-plist games/vamos/files patch-body::Frame.cc patch-include::vamos::body::Tire.h Log: add vamos 0.1.11 An automotive simulation framework Revision Changes Path 1.449 +1 -0 ports/games/Makefile 1.1 +26 -0 ports/games/vamos/Makefile (new) 1.1 +1 -0 ports/games/vamos/distinfo (new) 1.1 +10 -0 ports/games/vamos/files/patch-body::Frame.cc (new) 1.1 +10 -0 ports/games/vamos/files/patch-include::vamos::body::Tire.h (new) 1.1 +1 -0 ports/games/vamos/pkg-comment (new) 1.1 +5 -0 ports/games/vamos/pkg-descr (new) 1.1 +65 -0 ports/games/vamos/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 Mar 15 19: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 AE3ED37B417; Fri, 15 Mar 2002 19:47:20 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G3lK311594; Fri, 15 Mar 2002 19:47:20 -0800 (PST) (envelope-from ijliao) Message-Id: <200203160347.g2G3lK311594@freefall.freebsd.org> From: Ying-Chieh Liao Date: Fri, 15 Mar 2002 19:47:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/15 19:47:20 PST Modified files: . modules Log: vamos --> ports/games/vamos Revision Changes Path 1.4852 +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 Mar 15 19: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 B32D637B404; Fri, 15 Mar 2002 19:50:32 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G3oW411932; Fri, 15 Mar 2002 19:50:32 -0800 (PST) (envelope-from des) Message-Id: <200203160350.g2G3oW411932@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Fri, 15 Mar 2002 19:50:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys ptrace.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 des 2002/03/15 19:50:32 PST Modified files: lib/libc/sys ptrace.2 Log: Document PT_IO, and move the comment about machine-dependent requests below PT_[GS]ET_{,DB,FP}REGS. Revision Changes Path 1.28 +33 -5 src/lib/libc/sys/ptrace.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 19:50:38 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F3F6837B416; Fri, 15 Mar 2002 19:50:33 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G3oXR11956; Fri, 15 Mar 2002 19:50:33 -0800 (PST) (envelope-from ue) Message-Id: <200203160350.g2G3oXR11956@freefall.freebsd.org> From: Udo Erdelhoff Date: Fri, 15 Mar 2002 19:50:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.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/03/15 19:50:33 PST Modified files: (Branch: RELENG_4) release/doc/de_DE.ISO8859-1/hardware/alpha proc-alpha.sgml Log: MFen 1.13.2.18 Revision Changes Path 1.1.2.2 +37 -8 src/release/doc/de_DE.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 Fri Mar 15 20:26: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 1669E37B402; Fri, 15 Mar 2002 20:26:47 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G4Qlt20057; Fri, 15 Mar 2002 20:26:47 -0800 (PST) (envelope-from imp) Message-Id: <200203160426.g2G4Qlt20057@freefall.freebsd.org> From: Warner Losh Date: Fri, 15 Mar 2002 20:26:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/sio sio.c sio_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/03/15 20:26:47 PST Modified files: sys/dev/sio sio.c sio_pci.c Log: Add device ID for Xircom modem. Also add work around from gwk@sgi.com to put the device into 8 bit mode a second time. This appears to have no ill effects on other devices, and appears to be necessary for the xircom modem. Submitted by: gwk@sgi.com, many others that found his patch in the archives. Revision Changes Path 1.366 +9 -2 src/sys/dev/sio/sio.c 1.5 +1 -1 src/sys/dev/sio/sio_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 Mar 15 20:43: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 57F9537B402; Fri, 15 Mar 2002 20:43:15 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G4hF928773; Fri, 15 Mar 2002 20:43:15 -0800 (PST) (envelope-from pat) Message-Id: <200203160443.g2G4hF928773@freefall.freebsd.org> From: Patrick Li Date: Fri, 15 Mar 2002 20:43:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/tmda Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/15 20:43:15 PST Modified files: mail/tmda Makefile distinfo pkg-plist Log: Update to 0.49 PR: 35938 Submitted by: maintainer Revision Changes Path 1.12 +1 -1 ports/mail/tmda/Makefile 1.11 +1 -1 ports/mail/tmda/distinfo 1.12 +1 -0 ports/mail/tmda/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 Mar 15 20:51:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 76CB637B400; Fri, 15 Mar 2002 20:51:53 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G4prN29716; Fri, 15 Mar 2002 20:51:53 -0800 (PST) (envelope-from ue) Message-Id: <200203160451.g2G4prN29716@freefall.freebsd.org> From: Udo Erdelhoff Date: Fri, 15 Mar 2002 20:51:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/share/sgml mailing-lists.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 ue 2002/03/15 20:51:53 PST Modified files: de_DE.ISO8859-1/share/sgml mailing-lists.ent Log: Add about two dozen entities for mailing lists that were missing Revision Changes Path 1.3 +97 -2 doc/de_DE.ISO8859-1/share/sgml/mailing-lists.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 21: 9: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 8573E37B400; Fri, 15 Mar 2002 21:09:42 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G59g535239; Fri, 15 Mar 2002 21:09:42 -0800 (PST) (envelope-from ue) Message-Id: <200203160509.g2G59g535239@freefall.freebsd.org> From: Udo Erdelhoff Date: Fri, 15 Mar 2002 21:09:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.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 ue 2002/03/15 21:09:42 PST Modified files: de_DE.ISO8859-1/books/faq book.sgml Log: MFen 1.416. Revision Changes Path 1.14 +88 -67 doc/de_DE.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 Fri Mar 15 21: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 E58FB37B400; Fri, 15 Mar 2002 21:20:31 -0800 (PST) Received: (from clive@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G5KVo39715; Fri, 15 Mar 2002 21:20:31 -0800 (PST) (envelope-from clive) Message-Id: <200203160520.g2G5KVo39715@freefall.freebsd.org> From: Clive Lin Date: Fri, 15 Mar 2002 21:20:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/mutt 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 clive 2002/03/15 21:20:31 PST Modified files: chinese/mutt Makefile distinfo Log: Fix make install after gettext upgrade. Revision Changes Path 1.16 +1 -1 ports/chinese/mutt/Makefile 1.17 +1 -1 ports/chinese/mutt/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 21:46: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 2E73137B404; Fri, 15 Mar 2002 21:46:34 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G5kYC69051; Fri, 15 Mar 2002 21:46:34 -0800 (PST) (envelope-from kris) Message-Id: <200203160546.g2G5kYC69051@freefall.freebsd.org> From: Kris Kennaway Date: Fri, 15 Mar 2002 21:46:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Tools/portbuild/scripts buildenv X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/15 21:46:34 PST Modified files: Tools/portbuild/scripts buildenv Log: Collect some more environment variables here and tidy up a bit Revision Changes Path 1.2 +14 -7 ports/Tools/portbuild/scripts/buildenv To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 21:48: 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 6088E37B405; Fri, 15 Mar 2002 21:48:05 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G5m5b70643; Fri, 15 Mar 2002 21:48:05 -0800 (PST) (envelope-from kris) Message-Id: <200203160548.g2G5m5b70643@freefall.freebsd.org> From: Kris Kennaway Date: Fri, 15 Mar 2002 21:48:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Tools/portbuild/scripts dopackages X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/15 21:48:05 PST Modified files: Tools/portbuild/scripts dopackages Log: Pull environment variables from buildenv, and tidy up a bit. Revision Changes Path 1.18 +8 -12 ports/Tools/portbuild/scripts/dopackages To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 21:50:29 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DCEBC37B416; Fri, 15 Mar 2002 21:50:24 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G5oOT73394; Fri, 15 Mar 2002 21:50:24 -0800 (PST) (envelope-from kris) Message-Id: <200203160550.g2G5oOT73394@freefall.freebsd.org> From: Kris Kennaway Date: Fri, 15 Mar 2002 21:50:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Tools/portbuild/scripts portbuild X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/15 21:50:24 PST Modified files: Tools/portbuild/scripts portbuild Log: Use buildenv for setting environment variables, and tidy up a bit. Fix typo s/UNAME_VERSION/UNAME_TARGET/ Revision Changes Path 1.17 +32 -65 ports/Tools/portbuild/scripts/portbuild To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 21: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 0282337B440; Fri, 15 Mar 2002 21:51:03 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G5p2K74287; Fri, 15 Mar 2002 21:51:02 -0800 (PST) (envelope-from kris) Message-Id: <200203160551.g2G5p2K74287@freefall.freebsd.org> From: Kris Kennaway Date: Fri, 15 Mar 2002 21:51:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Tools/portbuild/scripts makeduds X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/15 21:51:02 PST Modified files: Tools/portbuild/scripts makeduds Log: Update OSVERSIONS. This needs to be switched to buildenv. Revision Changes Path 1.11 +3 -3 ports/Tools/portbuild/scripts/makeduds To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 22:40:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7159437B404; Fri, 15 Mar 2002 22:40:33 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G6eX231406; Fri, 15 Mar 2002 22:40:33 -0800 (PST) (envelope-from pat) Message-Id: <200203160640.g2G6eX231406@freefall.freebsd.org> From: Patrick Li Date: Fri, 15 Mar 2002 22:40:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/korelib 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/03/15 22:40:33 PST Modified files: devel/korelib Makefile Log: Fix MASTER_SITES PR: 35957 Submitted by: KATO Tsuguru Revision Changes Path 1.3 +2 -2 ports/devel/korelib/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 22:42: 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 D74E137B419; Fri, 15 Mar 2002 22:42:03 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G6g3o33300; Fri, 15 Mar 2002 22:42:03 -0800 (PST) (envelope-from pat) Message-Id: <200203160642.g2G6g3o33300@freefall.freebsd.org> From: Patrick Li Date: Fri, 15 Mar 2002 22:42:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/smalltalk 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/03/15 22:42:03 PST Modified files: lang/smalltalk Makefile distinfo Log: Update to 1.95.11 PR: 35962 Submitted by: KATO Tsuguru Revision Changes Path 1.37 +2 -2 ports/lang/smalltalk/Makefile 1.14 +1 -1 ports/lang/smalltalk/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 22:46: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 E7BC537B416; Fri, 15 Mar 2002 22:46:39 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G6kdZ38488; Fri, 15 Mar 2002 22:46:39 -0800 (PST) (envelope-from pat) Message-Id: <200203160646.g2G6kdZ38488@freefall.freebsd.org> From: Patrick Li Date: Fri, 15 Mar 2002 22:46:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/xkoules 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 pat 2002/03/15 22:46:39 PST Modified files: games/xkoules Makefile pkg-descr Log: Fix MASTER_SITES and remove WWW: line PR: 35959 Submitted by: KATO Tsuguru Revision Changes Path 1.13 +3 -3 ports/games/xkoules/Makefile 1.5 +0 -2 ports/games/xkoules/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 Mar 15 22:53: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 5B83837B417; Fri, 15 Mar 2002 22:53:49 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G6rnu48663; Fri, 15 Mar 2002 22:53:49 -0800 (PST) (envelope-from pat) Message-Id: <200203160653.g2G6rnu48663@freefall.freebsd.org> From: Patrick Li Date: Fri, 15 Mar 2002 22:53:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/korean/pycodec Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG pat 2002/03/15 22:53:49 PST Modified files: korean/pycodec Makefile distinfo pkg-plist Log: Update to 2.0.2 PR: 35954 Submitted by: maintainer Revision Changes Path 1.5 +1 -1 ports/korean/pycodec/Makefile 1.4 +1 -1 ports/korean/pycodec/distinfo 1.3 +5 -0 ports/korean/pycodec/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 Mar 15 22:58: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 E541737B41D; Fri, 15 Mar 2002 22:58:48 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G6wmr55917; Fri, 15 Mar 2002 22:58:48 -0800 (PST) (envelope-from murray) Message-Id: <200203160658.g2G6wmr55917@freefall.freebsd.org> From: Murray Stokely Date: Fri, 15 Mar 2002 22:58:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en publish.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/03/15 22:58:48 PST Modified files: en publish.sgml Log: Add 'alt' attribute for images. Convert to HTML 4.01 Transitional. Revision Changes Path 1.51 +56 -56 www/en/publish.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 23:12:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9F9A037B400; Fri, 15 Mar 2002 23:12:33 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G7CXE76691; Fri, 15 Mar 2002 23:12:33 -0800 (PST) (envelope-from pat) Message-Id: <200203160712.g2G7CXE76691@freefall.freebsd.org> From: Patrick Li Date: Fri, 15 Mar 2002 23:12:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/netpbm Makefile distinfo pkg-plist ports/graphics/netpbm/files Makefile.config.FreeBSD manpages patch-bd patch-bg X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/15 23:12:33 PST Modified files: graphics/netpbm Makefile distinfo pkg-plist graphics/netpbm/files Makefile.config.FreeBSD manpages patch-bd patch-bg Log: Update to 9.25 PR: 35960 Submitted by: KATO Tsuguru Revision Changes Path 1.56 +3 -2 ports/graphics/netpbm/Makefile 1.28 +1 -1 ports/graphics/netpbm/distinfo 1.8 +4 -0 ports/graphics/netpbm/files/Makefile.config.FreeBSD 1.16 +6 -5 ports/graphics/netpbm/files/manpages 1.17 +6 -32 ports/graphics/netpbm/files/patch-bd 1.19 +6 -7 ports/graphics/netpbm/files/patch-bg 1.34 +5 -3 ports/graphics/netpbm/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 Mar 15 23: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 F164337B405; Fri, 15 Mar 2002 23:20:59 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G7Kx288173; Fri, 15 Mar 2002 23:20:59 -0800 (PST) (envelope-from pat) Message-Id: <200203160720.g2G7Kx288173@freefall.freebsd.org> From: Patrick Li Date: Fri, 15 Mar 2002 23:20:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/sane-backends 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 pat 2002/03/15 23:20:59 PST Modified files: graphics/sane-backends Makefile pkg-plist Log: Add WITH_GPHOTO2 knob PR: 35961 Submitted by: KATO Tsuguru Revision Changes Path 1.38 +20 -1 ports/graphics/sane-backends/Makefile 1.25 +4 -0 ports/graphics/sane-backends/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 Mar 15 23:25: 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 A5E5537B417; Fri, 15 Mar 2002 23:25:01 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G7P1u92981; Fri, 15 Mar 2002 23:25:01 -0800 (PST) (envelope-from pat) Message-Id: <200203160725.g2G7P1u92981@freefall.freebsd.org> From: Patrick Li Date: Fri, 15 Mar 2002 23:25:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/demoniac 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/03/15 23:25:01 PST Modified files: misc/demoniac Makefile Log: Fix compilation error PR: 35963 Submitted by: KATO Tsuguru Revision Changes Path 1.2 +3 -2 ports/misc/demoniac/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 23:29: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 CD20837B404; Fri, 15 Mar 2002 23:29:19 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G7TJE97441; Fri, 15 Mar 2002 23:29:19 -0800 (PST) (envelope-from pat) Message-Id: <200203160729.g2G7TJE97441@freefall.freebsd.org> From: Patrick Li Date: Fri, 15 Mar 2002 23:29:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/pcre++ 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/03/15 23:29:19 PST Modified files: devel/pcre++ Makefile Log: Support CXXFLAGS/LOCALBASE properly PR: 35958 Submitted by: KATO Tsuguru Revision Changes Path 1.3 +13 -5 ports/devel/pcre++/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 23:32: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 850CC37B400; Fri, 15 Mar 2002 23:32:43 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G7Whk99281; Fri, 15 Mar 2002 23:32:43 -0800 (PST) (envelope-from pat) Message-Id: <200203160732.g2G7Whk99281@freefall.freebsd.org> From: Patrick Li Date: Fri, 15 Mar 2002 23:32:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/tn5250 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/03/15 23:32:43 PST Modified files: net/tn5250 Makefile Log: Add missing manpage entries PR: 35964 Submitted by: KATO Tsuguru Revision Changes Path 1.13 +4 -2 ports/net/tn5250/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Fri Mar 15 23:36: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 0C0D237B416; Fri, 15 Mar 2002 23:36:22 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G7aMf04152; Fri, 15 Mar 2002 23:36:22 -0800 (PST) (envelope-from pat) Message-Id: <200203160736.g2G7aMf04152@freefall.freebsd.org> From: Patrick Li Date: Fri, 15 Mar 2002 23:36:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/gfslicer Makefile 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 pat 2002/03/15 23:36:21 PST Modified files: sysutils/gfslicer Makefile pkg-comment Log: - Fix compilation error - Reword pkg-comment PR: 35965 Submitted by: KATO Tsuguru Revision Changes Path 1.3 +12 -9 ports/sysutils/gfslicer/Makefile 1.2 +1 -1 ports/sysutils/gfslicer/pkg-comment To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 16 0: 1:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 717FE37B416; Sat, 16 Mar 2002 00:01:32 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G81WM30048; Sat, 16 Mar 2002 00:01:32 -0800 (PST) (envelope-from murray) Message-Id: <200203160801.g2G81WM30048@freefall.freebsd.org> From: Murray Stokely Date: Sat, 16 Mar 2002 00:01:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/ports portindex X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/16 00:01:32 PST Modified files: en/ports portindex Log: Generate 'HTML 4.01 Transitional' instead of 'HTML 3.2' SGML declarations. Revision Changes Path 1.43 +2 -2 www/en/ports/portindex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 16 0: 3: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 E607F37B400; Sat, 16 Mar 2002 00:03:48 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G83mL32423; Sat, 16 Mar 2002 00:03:48 -0800 (PST) (envelope-from des) Message-Id: <200203160803.g2G83mL32423@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Sat, 16 Mar 2002 00:03:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh auth1.c auth2.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/03/16 00:03:48 PST Modified files: crypto/openssh auth1.c auth2.c Log: Diff reduction. Sponsored by: DARPA, NAI Labs Revision Changes Path 1.18 +2 -2 src/crypto/openssh/auth1.c 1.12 +2 -3 src/crypto/openssh/auth2.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 16 0: 5:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A23937B405; Sat, 16 Mar 2002 00:05:05 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G855M33232; Sat, 16 Mar 2002 00:05:05 -0800 (PST) (envelope-from murray) Message-Id: <200203160805.g2G855M33232@freefall.freebsd.org> From: Murray Stokely Date: Sat, 16 Mar 2002 00:05:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases snapshots.sgml www/en/releases/2.0 announce.sgml credits.sgml install.sgml notes.sgml www/en/releases/2.0.5R announce.sgml notes.sgml www/en/releases/2.1.5R announce.sgml notes.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/03/16 00:05:05 PST Modified files: en/releases snapshots.sgml en/releases/2.0 announce.sgml credits.sgml install.sgml notes.sgml en/releases/2.0.5R announce.sgml notes.sgml en/releases/2.1.5R announce.sgml notes.sgml en/releases/2.1.6R announce.sgml notes.sgml security.sgml en/releases/2.1.7R announce.sgml notes.sgml en/releases/2.1R announce.sgml notes.sgml en/releases/2.2.1R notes.sgml en/releases/2.2.2R errata.sgml notes.sgml en/releases/2.2.5R announce.sgml errata.sgml notes.sgml en/releases/2.2.6R announce.sgml errata.sgml notes.sgml en/releases/2.2.7R announce.sgml errata.sgml notes.sgml en/releases/2.2.8R announce.sgml errata.sgml notes.sgml en/releases/2.2R announce.sgml install-media.sgml notes.sgml en/releases/3.0R announce.sgml errata.sgml notes.sgml en/releases/3.1R announce.sgml errata.sgml notes.sgml en/releases/3.2R announce.sgml errata.sgml notes.sgml en/releases/3.3R announce.sgml errata.sgml notes.sgml en/releases/3.4R announce.sgml errata.sgml notes.sgml en/releases/3.5R announce.sgml errata.sgml notes.sgml en/releases/4.0R announce.sgml errata.sgml notes.sgml en/releases/4.1.1R announce.sgml errata.sgml notes.sgml en/releases/4.1R announce.sgml errata.sgml notes.sgml en/releases/4.2R announce.sgml errata.sgml notes.sgml en/releases/4.3R announce.sgml errata.sgml notes.sgml en/releases/4.4R announce.sgml hardware.sgml notes.sgml en/releases/4.5R announce.sgml hardware.sgml notes.sgml Log: Update DOCTYPE to HTML 4.01 Transitional. Revision Changes Path 1.6 +3 -3 www/en/releases/2.0.5R/announce.sgml 1.7 +3 -3 www/en/releases/2.0.5R/notes.sgml 1.4 +2 -2 www/en/releases/2.0/announce.sgml 1.5 +3 -3 www/en/releases/2.0/credits.sgml 1.4 +2 -2 www/en/releases/2.0/install.sgml 1.8 +3 -3 www/en/releases/2.0/notes.sgml 1.8 +2 -2 www/en/releases/2.1.5R/announce.sgml 1.7 +3 -3 www/en/releases/2.1.5R/notes.sgml 1.8 +2 -2 www/en/releases/2.1.6R/announce.sgml 1.6 +3 -3 www/en/releases/2.1.6R/notes.sgml 1.5 +2 -2 www/en/releases/2.1.6R/security.sgml 1.9 +2 -2 www/en/releases/2.1.7R/announce.sgml 1.8 +3 -3 www/en/releases/2.1.7R/notes.sgml 1.4 +2 -2 www/en/releases/2.1R/announce.sgml 1.5 +2 -2 www/en/releases/2.1R/notes.sgml 1.6 +3 -3 www/en/releases/2.2.1R/notes.sgml 1.8 +3 -3 www/en/releases/2.2.2R/errata.sgml 1.6 +3 -3 www/en/releases/2.2.2R/notes.sgml 1.7 +2 -2 www/en/releases/2.2.5R/announce.sgml 1.11 +3 -3 www/en/releases/2.2.5R/errata.sgml 1.7 +2 -2 www/en/releases/2.2.5R/notes.sgml 1.7 +2 -2 www/en/releases/2.2.6R/announce.sgml 1.12 +3 -3 www/en/releases/2.2.6R/errata.sgml 1.4 +2 -2 www/en/releases/2.2.6R/notes.sgml 1.10 +2 -2 www/en/releases/2.2.7R/announce.sgml 1.10 +3 -3 www/en/releases/2.2.7R/errata.sgml 1.6 +2 -2 www/en/releases/2.2.7R/notes.sgml 1.6 +2 -2 www/en/releases/2.2.8R/announce.sgml 1.13 +3 -3 www/en/releases/2.2.8R/errata.sgml 1.6 +2 -2 www/en/releases/2.2.8R/notes.sgml 1.7 +2 -2 www/en/releases/2.2R/announce.sgml 1.5 +2 -2 www/en/releases/2.2R/install-media.sgml 1.7 +3 -3 www/en/releases/2.2R/notes.sgml 1.7 +2 -2 www/en/releases/3.0R/announce.sgml 1.9 +3 -3 www/en/releases/3.0R/errata.sgml 1.8 +2 -2 www/en/releases/3.0R/notes.sgml 1.7 +2 -2 www/en/releases/3.1R/announce.sgml 1.8 +3 -3 www/en/releases/3.1R/errata.sgml 1.5 +2 -2 www/en/releases/3.1R/notes.sgml 1.3 +2 -2 www/en/releases/3.2R/announce.sgml 1.8 +3 -3 www/en/releases/3.2R/errata.sgml 1.5 +2 -2 www/en/releases/3.2R/notes.sgml 1.2 +2 -2 www/en/releases/3.3R/announce.sgml 1.8 +3 -3 www/en/releases/3.3R/errata.sgml 1.3 +2 -2 www/en/releases/3.3R/notes.sgml 1.6 +2 -2 www/en/releases/3.4R/announce.sgml 1.8 +3 -3 www/en/releases/3.4R/errata.sgml 1.2 +2 -2 www/en/releases/3.4R/notes.sgml 1.3 +2 -2 www/en/releases/3.5R/announce.sgml 1.2 +3 -3 www/en/releases/3.5R/errata.sgml 1.4 +2 -2 www/en/releases/3.5R/notes.sgml 1.3 +2 -2 www/en/releases/4.0R/announce.sgml 1.5 +3 -3 www/en/releases/4.0R/errata.sgml 1.4 +2 -2 www/en/releases/4.0R/notes.sgml 1.2 +2 -2 www/en/releases/4.1.1R/announce.sgml 1.2 +3 -3 www/en/releases/4.1.1R/errata.sgml 1.4 +2 -2 www/en/releases/4.1.1R/notes.sgml 1.3 +2 -2 www/en/releases/4.1R/announce.sgml 1.3 +3 -3 www/en/releases/4.1R/errata.sgml 1.3 +2 -2 www/en/releases/4.1R/notes.sgml 1.2 +2 -2 www/en/releases/4.2R/announce.sgml 1.2 +3 -3 www/en/releases/4.2R/errata.sgml 1.2 +2 -2 www/en/releases/4.2R/notes.sgml 1.2 +2 -2 www/en/releases/4.3R/announce.sgml 1.18 +3 -3 www/en/releases/4.3R/errata.sgml 1.3 +2 -2 www/en/releases/4.3R/notes.sgml 1.4 +2 -2 www/en/releases/4.4R/announce.sgml 1.2 +2 -2 www/en/releases/4.4R/hardware.sgml 1.3 +2 -2 www/en/releases/4.4R/notes.sgml 1.3 +2 -2 www/en/releases/4.5R/announce.sgml 1.2 +2 -2 www/en/releases/4.5R/hardware.sgml 1.2 +2 -2 www/en/releases/4.5R/notes.sgml 1.13 +3 -3 www/en/releases/snapshots.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sat Mar 16 0: 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 3D5EA37B404; Sat, 16 Mar 2002 00:06:14 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2G86ED36745; Sat, 16 Mar 2002 00:06:14 -0800 (PST) (envelope-from murray) Message-Id: <200203160806.g2G86ED36745@freefall.freebsd.org> From: Murray Stokely Date: Sat, 16 Mar 2002 00:06:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/security security.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2002/03/16 00:06:14 PST Modified files: en/security security.sgml Log: Update to use the HTML 4.01 Transitional DTD. ->
.
  
  Revision  Changes    Path
  1.86      +5 -5      www/en/security/security.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0: 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 DEFF337B404; Sat, 16 Mar 2002 00:07:17 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G87Hr36857;
	Sat, 16 Mar 2002 00:07:17 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160807.g2G87Hr36857@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:07:17 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en/search search.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/03/16 00:07:17 PST

  Modified files:
    en/search            search.sgml 
  Log:
  Update to HTML 4.01 Transitional.  Remove invalid empty table rows.
  
  Revision  Changes    Path
  1.76      +2 -7      www/en/search/search.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0: 7: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 58CE037B404; Sat, 16 Mar 2002 00:07:46 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G87km36910;
	Sat, 16 Mar 2002 00:07:46 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160807.g2G87km36910@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:07:46 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en/search index-site.sgml search-mid.sgml
         searchhints.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/03/16 00:07:46 PST

  Modified files:
    en/search            index-site.sgml search-mid.sgml 
                         searchhints.sgml 
  Log:
  Update DOCTYPE to HTML 4.01 Transitional.
  
  Revision  Changes    Path
  1.23      +2 -2      www/en/search/index-site.sgml
  1.8       +2 -2      www/en/search/search-mid.sgml
  1.7       +2 -2      www/en/search/searchhints.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0: 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 6A3AB37B400; Sat, 16 Mar 2002 00:08:39 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G88dT36979;
	Sat, 16 Mar 2002 00:08:39 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160808.g2G88dT36979@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:08:39 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en/news news.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/03/16 00:08:39 PST

  Modified files:
    en/news              news.sgml 
  Log:
  Add alt attribute to image.  Update to HTML 4.01 Transitional.
  
  Revision  Changes    Path
  1.34      +3 -3      www/en/news/news.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0: 9: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 B667737B405; Sat, 16 Mar 2002 00:09:21 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G89LE37161;
	Sat, 16 Mar 2002 00:09:21 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160809.g2G89LE37161@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:09:21 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en/news press-rel-1.sgml press-rel-2.sgml
         press-rel-3.sgml press-rel-4.sgml press-rel-5.sgml
         pressreleases.sgml sou1999.sgml www/en/news/1996 index.sgml
         www/en/news/1997 index.sgml www/en/news/1998 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

murray      2002/03/16 00:09:21 PST

  Modified files:
    en/news              press-rel-1.sgml press-rel-2.sgml 
                         press-rel-3.sgml press-rel-4.sgml 
                         press-rel-5.sgml pressreleases.sgml 
                         sou1999.sgml 
    en/news/1996         index.sgml 
    en/news/1997         index.sgml 
    en/news/1998         index.sgml 
    en/news/1999         index.sgml 
    en/news/2000         index.sgml 
    en/news/status       status.sgml 
  Log:
  Update DOCTYPE to HTML 4.01 Transitional.
  
  Revision  Changes    Path
  1.9       +2 -2      www/en/news/1996/index.sgml
  1.6       +2 -2      www/en/news/1997/index.sgml
  1.7       +2 -2      www/en/news/1998/index.sgml
  1.5       +2 -2      www/en/news/1999/index.sgml
  1.8       +2 -2      www/en/news/2000/index.sgml
  1.7       +2 -2      www/en/news/press-rel-1.sgml
  1.7       +2 -2      www/en/news/press-rel-2.sgml
  1.6       +2 -2      www/en/news/press-rel-3.sgml
  1.4       +2 -2      www/en/news/press-rel-4.sgml
  1.5       +2 -2      www/en/news/press-rel-5.sgml
  1.6       +3 -3      www/en/news/pressreleases.sgml
  1.6       +2 -2      www/en/news/sou1999.sgml
  1.8       +2 -2      www/en/news/status/status.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0:11:19 2002
Delivered-To: cvs-all@freebsd.org
Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21])
	by hub.freebsd.org (Postfix) with ESMTP
	id 9086337B416; Sat, 16 Mar 2002 00:11:16 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8BGq37311;
	Sat, 16 Mar 2002 00:11:16 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160811.g2G8BGq37311@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:11:16 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en/platforms ia64.sgml x86-64.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/03/16 00:11:16 PST

  Modified files:
    en/platforms         ia64.sgml x86-64.sgml 
  Log:
  Update DOCTYPE to HTML 4.01 Transitional.
  
  Revision  Changes    Path
  1.7       +2 -2      www/en/platforms/ia64.sgml
  1.11      +2 -2      www/en/platforms/x86-64.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0:11: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 1EC1A37B434; Sat, 16 Mar 2002 00:11:34 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8BY937346;
	Sat, 16 Mar 2002 00:11:34 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160811.g2G8BY937346@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:11:34 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en/projects libh.sgml newbies.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/03/16 00:11:34 PST

  Modified files:
    en/projects          libh.sgml newbies.sgml 
  Log:
  Update DOCTYPE to 4.01 Transitional.
  
  Revision  Changes    Path
  1.6       +2 -2      www/en/projects/libh.sgml
  1.24      +2 -2      www/en/projects/newbies.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0: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 ECC6A37B404; Sat, 16 Mar 2002 00:12:03 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8C3H37403;
	Sat, 16 Mar 2002 00:12:03 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160812.g2G8C3H37403@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:12:03 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en/prstats 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

murray      2002/03/16 00:12:03 PST

  Modified files:
    en/prstats           index.sgml 
  Log:
  Add alt attributes to images.  Update to HTML 4.01 Transitional.
  
  Revision  Changes    Path
  1.4       +5 -5      www/en/prstats/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 Mar 16  0:12: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 F1D0037B400; Sat, 16 Mar 2002 00:12:36 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8CaN37501;
	Sat, 16 Mar 2002 00:12:36 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160812.g2G8CaN37501@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:12:36 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en/commercial commercial.sgml consulting.sgml
         consulting_bycat.sgml hardware.sgml misc.sgml software.sgml
         software_bycat.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/03/16 00:12:36 PST

  Modified files:
    en/commercial        commercial.sgml consulting.sgml 
                         consulting_bycat.sgml hardware.sgml 
                         misc.sgml software.sgml 
                         software_bycat.sgml 
  Log:
  Update DOCTYPEs to HTML 4.01 Transitional.
  
  Revision  Changes    Path
  1.33      +2 -2      www/en/commercial/commercial.sgml
  1.36      +2 -2      www/en/commercial/consulting.sgml
  1.5       +2 -2      www/en/commercial/consulting_bycat.sgml
  1.33      +2 -2      www/en/commercial/hardware.sgml
  1.14      +2 -2      www/en/commercial/misc.sgml
  1.62      +2 -2      www/en/commercial/software.sgml
  1.5       +2 -2      www/en/commercial/software_bycat.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0:13: 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 621BF37B417; Sat, 16 Mar 2002 00:13:05 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8D5D37564;
	Sat, 16 Mar 2002 00:13:05 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160813.g2G8D5D37564@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:13:05 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en/internal about.sgml bylaws.sgml developer.sgml
         internal.sgml mirror.sgml new-account.sgml photos.sgml releng.sgml
         releng45.sgml statistic.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/03/16 00:13:05 PST

  Modified files:
    en/internal          about.sgml bylaws.sgml developer.sgml 
                         internal.sgml mirror.sgml 
                         new-account.sgml photos.sgml releng.sgml 
                         releng45.sgml statistic.sgml 
  Log:
  Update DOCTYPEs to HTML 4.01 Transitional.
  
  Revision  Changes    Path
  1.42      +2 -2      www/en/internal/about.sgml
  1.2       +2 -2      www/en/internal/bylaws.sgml
  1.20      +2 -2      www/en/internal/developer.sgml
  1.19      +2 -2      www/en/internal/internal.sgml
  1.15      +2 -2      www/en/internal/mirror.sgml
  1.2       +2 -2      www/en/internal/new-account.sgml
  1.17      +2 -2      www/en/internal/photos.sgml
  1.7       +2 -2      www/en/internal/releng.sgml
  1.19      +2 -2      www/en/internal/releng45.sgml
  1.13      +2 -2      www/en/internal/statistic.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0: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 B8ABF37B41A; Sat, 16 Mar 2002 00:13:32 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8DWT37618;
	Sat, 16 Mar 2002 00:13:32 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160813.g2G8DWT37618@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:13:32 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en/docproj current.sgml doc-set.sgml sgml.sgml
         submitting.sgml translations.sgml who.sgml
X-FreeBSD-CVS-Branch: HEAD
Sender: owner-cvs-all@FreeBSD.ORG
Precedence: bulk
List-ID: 
List-Archive:  (Web Archive)
List-Help:  (List Instructions)
List-Subscribe: 
List-Unsubscribe: 
X-Loop: FreeBSD.ORG

murray      2002/03/16 00:13:32 PST

  Modified files:
    en/docproj           current.sgml doc-set.sgml sgml.sgml 
                         submitting.sgml translations.sgml 
                         who.sgml 
  Log:
  Update DOCTYPEs to HTML 4.01 Transitional.
  
  Revision  Changes    Path
  1.32      +2 -2      www/en/docproj/current.sgml
  1.11      +2 -2      www/en/docproj/doc-set.sgml
  1.19      +2 -2      www/en/docproj/sgml.sgml
  1.10      +2 -2      www/en/docproj/submitting.sgml
  1.45      +2 -2      www/en/docproj/translations.sgml
  1.11      +2 -2      www/en/docproj/who.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0:14: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 E304B37B404; Sat, 16 Mar 2002 00:14:11 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8EBu37672;
	Sat, 16 Mar 2002 00:14:11 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160814.g2G8EBu37672@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:14:11 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en/copyright daemon.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/03/16 00:14:11 PST

  Modified files:
    en/copyright         daemon.sgml 
  Log:
  Add alt attribute to images.  Update DOCTYPE to HTML 4.01 Transitional.
  
  Revision  Changes    Path
  1.21      +3 -3      www/en/copyright/daemon.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0:14:34 2002
Delivered-To: cvs-all@freebsd.org
Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21])
	by hub.freebsd.org (Postfix) with ESMTP
	id F28B637B404; Sat, 16 Mar 2002 00:14:29 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8ETF37709;
	Sat, 16 Mar 2002 00:14:29 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160814.g2G8ETF37709@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:14:29 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en/copyright copyright.sgml freebsd-license.sgml
         license.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/03/16 00:14:29 PST

  Modified files:
    en/copyright         copyright.sgml freebsd-license.sgml 
                         license.sgml 
  Log:
  Update DOCTYPE from HTML 3.2 to HTML 4.01 Transitional.
  
  Revision  Changes    Path
  1.6       +2 -2      www/en/copyright/copyright.sgml
  1.10      +2 -2      www/en/copyright/freebsd-license.sgml
  1.8       +2 -2      www/en/copyright/license.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0:16: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 1767737B402; Sat, 16 Mar 2002 00:16:46 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8GkS37857;
	Sat, 16 Mar 2002 00:16:46 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160816.g2G8GkS37857@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:16:46 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en applications.sgml auditors.sgml
         availability.sgml features.sgml internet.sgml mailto.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/03/16 00:16:46 PST

  Modified files:
    en                   applications.sgml auditors.sgml 
                         availability.sgml features.sgml 
                         internet.sgml mailto.sgml 
  Log:
  Update DOCTYPE to HTML 4.01 Transitional.
  
  Revision  Changes    Path
  1.20      +2 -2      www/en/applications.sgml
  1.34      +2 -2      www/en/auditors.sgml
  1.31      +2 -2      www/en/availability.sgml
  1.18      +2 -2      www/en/features.sgml
  1.27      +2 -2      www/en/internet.sgml
  1.26      +2 -2      www/en/mailto.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0:18: 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 7FE2237B404; Sat, 16 Mar 2002 00:17:58 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8HwH37954;
	Sat, 16 Mar 2002 00:17:58 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160817.g2G8HwH37954@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:17:58 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en register.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/03/16 00:17:58 PST

  Modified files:
    en                   register.sgml 
  Log:
  Update DOCTYPE to HTML 4.01 Transitional.  Remove invalid empty table
  row.
  
  Revision  Changes    Path
  1.19      +2 -4      www/en/register.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0:18: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 A04C137B400; Sat, 16 Mar 2002 00:18:29 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8ITS38006;
	Sat, 16 Mar 2002 00:18:29 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160818.g2G8ITS38006@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:18:29 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en send-pr.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/03/16 00:18:29 PST

  Modified files:
    en                   send-pr.sgml 
  Log:
  Add alt attribute to image.  Update DOCTYPE to HTML 4.01 Transitional.
  
  Revision  Changes    Path
  1.25      +3 -3      www/en/send-pr.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0:19: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 EE05537B402; Sat, 16 Mar 2002 00:19:25 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8JPA38069;
	Sat, 16 Mar 2002 00:19:25 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160819.g2G8JPA38069@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:19:25 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en support.sgml where.sgml y2kbug.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/03/16 00:19:25 PST

  Modified files:
    en                   support.sgml where.sgml y2kbug.sgml 
  Log:
  Update DOCTYPE to HTML 4.01 Transitional.
  
  Revision  Changes    Path
  1.254     +2 -2      www/en/support.sgml
  1.55      +2 -2      www/en/where.sgml
  1.43      +2 -2      www/en/y2kbug.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0:30: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 4090737B402; Sat, 16 Mar 2002 00:30:14 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8UEi38599;
	Sat, 16 Mar 2002 00:30:14 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160830.g2G8UEi38599@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:30:14 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en/internal homepage.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/03/16 00:30:14 PST

  Modified files:
    en/internal          homepage.sgml 
  Log:
  Update DOCTYPE to HTML 4.01 Transitional.
  
  Revision  Changes    Path
  1.6       +2 -2      www/en/internal/homepage.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0:33: 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 D319737B402; Sat, 16 Mar 2002 00:33:01 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8X1h38701;
	Sat, 16 Mar 2002 00:33:01 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160833.g2G8X1h38701@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:33:01 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en/tutorials 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

murray      2002/03/16 00:33:01 PST

  Modified files:
    en/tutorials         index.sgml 
  Log:
  Update DOCTYPE to HTML 4.01 Transitional.
  
  Revision  Changes    Path
  1.23      +2 -2      www/en/tutorials/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 Mar 16  0:40: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 B9E2F37B416; Sat, 16 Mar 2002 00:40:25 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8ePB39024;
	Sat, 16 Mar 2002 00:40:25 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160840.g2G8ePB39024@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:40:25 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en Makefile freebsd.css includes.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/03/16 00:40:25 PST

  Modified files:
    en                   Makefile includes.sgml 
  Added files:
    en                   freebsd.css 
  Log:
  Add a default CSS stylesheet, and add support for individual HTML
  files to override this with a custom CSS stylesheet.
  
  Revision  Changes    Path
  1.80      +2 -1      www/en/Makefile
  1.1       +35 -0     www/en/freebsd.css (new)
  1.49      +4 -2      www/en/includes.sgml

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0:47: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 5528337B402; Sat, 16 Mar 2002 00:47:55 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8ltH39318;
	Sat, 16 Mar 2002 00:47:55 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160847.g2G8ltH39318@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:47:55 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en/events Makefile.inc events.css
         www/en/events/2002 Makefile 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

murray      2002/03/16 00:47:55 PST

  Added files:
    en/events            Makefile.inc events.css 
    en/events/2002       Makefile bsdcon-devsummit.sgml 
  Log:
  Add notes from the BSDCon 2002 FreeBSD Developer Summit.
  
  This is deliberately not connected to the build, as Robert still may
  have some updates to add before we make this public.
  
  Notes prepared by:      gnn and rwatson
  
  Revision  Changes    Path
  1.1       +12 -0     www/en/events/2002/Makefile (new)
  1.1       +1919 -0   www/en/events/2002/bsdcon-devsummit.sgml (new)
  1.1       +3 -0      www/en/events/Makefile.inc (new)
  1.1       +18 -0     www/en/events/events.css (new)

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  0:55: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 B60D637B404; Sat, 16 Mar 2002 00:55:30 -0800 (PST)
Received: (from murray@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G8tU639613;
	Sat, 16 Mar 2002 00:55:30 -0800 (PST)
	(envelope-from murray)
Message-Id: <200203160855.g2G8tU639613@freefall.freebsd.org>
From: Murray Stokely 
Date: Sat, 16 Mar 2002 00:55:30 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: www/en/commercial misc.raw
X-FreeBSD-CVS-Branch: HEAD
Sender: owner-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/03/16 00:55:30 PST

  Modified files:
    en/commercial        misc.raw 
  Log:
  Add alt attribute to image.
  
  Revision  Changes    Path
  1.10      +1 -1      www/en/commercial/misc.raw

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  1: 9: 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 F25D337B404; Sat, 16 Mar 2002 01:09:03 -0800 (PST)
Received: (from knu@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G993U43718;
	Sat, 16 Mar 2002 01:09:03 -0800 (PST)
	(envelope-from knu)
Message-Id: <200203160909.g2G993U43718@freefall.freebsd.org>
From: Akinori MUSHA 
Date: Sat, 16 Mar 2002 01:09:03 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: ports/devel/sdl10 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/03/16 01:09:03 PST

  Modified files:
    devel/sdl10          Makefile 
  Log:
  Re-fix the ECHO_CMD typo.
  
  Revision  Changes    Path
  1.25      +1 -1      ports/devel/sdl10/Makefile

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  1: 9:55 2002
Delivered-To: cvs-all@freebsd.org
Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21])
	by hub.freebsd.org (Postfix) with ESMTP
	id 0254737B400; Sat, 16 Mar 2002 01:09:52 -0800 (PST)
Received: (from demon@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G99p643754;
	Sat, 16 Mar 2002 01:09:51 -0800 (PST)
	(envelope-from demon)
Message-Id: <200203160909.g2G99p643754@freefall.freebsd.org>
From: Dmitry Sivachenko 
Date: Sat, 16 Mar 2002 01:09:51 -0800 (PST)
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

demon       2002/03/16 01:09:51 PST

  Modified files:
    Mk                   bsd.sites.mk 
  Log:
  Add new mozilla download location.
  
  Revision  Changes    Path
  1.78      +2 -1      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  Sat Mar 16  1: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 3364F37B402; Sat, 16 Mar 2002 01:24:20 -0800 (PST)
Received: (from phk@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2G9OK850037;
	Sat, 16 Mar 2002 01:24:20 -0800 (PST)
	(envelope-from phk)
Message-Id: <200203160924.g2G9OK850037@freefall.freebsd.org>
From: Poul-Henning Kamp 
Date: Sat, 16 Mar 2002 01:24:20 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: src/sys/geom geom.h geom_bsd.c 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/03/16 01:24:20 PST

  Modified files:
    sys/geom             geom.h geom_bsd.c geom_dev.c geom_disk.c 
  Log:
  Add a generic and general ioctl pass-through mechanism.
  
  It should now be posible to issue ioctls to SCSI CD drives.
  
  Revision  Changes    Path
  1.2       +7 -1      src/sys/geom/geom.h
  1.2       +23 -1     src/sys/geom/geom_bsd.c
  1.2       +26 -34    src/sys/geom/geom_dev.c
  1.2       +28 -14    src/sys/geom/geom_disk.c

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  1:53:18 2002
Delivered-To: cvs-all@freebsd.org
Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253])
	by hub.freebsd.org (Postfix) with ESMTP
	id A9E9737B400; Sat, 16 Mar 2002 01:53:11 -0800 (PST)
Received: (from wkb@localhost)
	by freebie.xs4all.nl (8.11.6/8.11.6) id g2G9qja19699;
	Sat, 16 Mar 2002 10:52:45 +0100 (CET)
	(envelope-from wkb)
Date: Sat, 16 Mar 2002 10:52:45 +0100
From: Wilko Bulte 
To: Warner Losh 
Cc: Alfred Perlstein ,
	Kirk McKusick , cvs-committers@FreeBSD.ORG,
	cvs-all@FreeBSD.ORG
Subject: Re: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_fat.c msdosfs_vnops.c ...
Message-ID: <20020316105245.A19669@freebie.xs4all.nl>
References: <20020315185427.GK4857@elvis.mu.org> <200203151849.g2FInlW38440@freefall.freebsd.org> <20020315185427.GK4857@elvis.mu.org> <200203152325.g2FNPwL61201@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: <200203152325.g2FNPwL61201@harmony.village.org>; from imp@harmony.village.org on Fri, Mar 15, 2002 at 04:25:58PM -0700
X-OS: FreeBSD 4.5-STABLE
X-PGP: finger wilko@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 Fri, Mar 15, 2002 at 04:25:58PM -0700, Warner Losh wrote:
> In message <20020315185427.GK4857@elvis.mu.org> Alfred Perlstein writes:
> : In case no one has said it (which I doubt) you rule. :)
> 
> daddr64_t is 9,444,732,965,739,290,427,392 bytes, or 9,444,732 PB (P
> expressed in the SI units that disk makers use).  This is >> the
> largest disk arrays today (by a factor of 10^8).  At a 20%/year growth
> rate for disk sizes, that's 101 yeats before the largest disk arrays
> get this big :-)

FWIW: the biggest RFP I ever saw was a customer who wanted us to supply 
1 PB in a single order. Which  is approx 65 19" 42 racks
at the moment. Soon to be half that number ;-)

W/

-- 
|   / o / /_  _   		wilko@FreeBSD.org
|/|/ / / /(  (_)  Bulte		Arnhem, the Netherlands

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  2:14: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 77EC337B416; Sat, 16 Mar 2002 02:14:45 -0800 (PST)
Received: (from ijliao@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GAEj208060;
	Sat, 16 Mar 2002 02:14:45 -0800 (PST)
	(envelope-from ijliao)
Message-Id: <200203161014.g2GAEj208060@freefall.freebsd.org>
From: Ying-Chieh Liao 
Date: Sat, 16 Mar 2002 02:14:45 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: ports/security Makefile ports/security/py-cryptkit
         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/03/16 02:14:45 PST

  Modified files:
    security             Makefile 
  Added files:
    security/py-cryptkit Makefile distinfo pkg-comment pkg-descr 
                         pkg-plist 
  Log:
  add py-cryptkit 0.9
  A Cryptographic Toolkit for Python
  
  Revision  Changes    Path
  1.282     +1 -0      ports/security/Makefile
  1.1       +28 -0     ports/security/py-cryptkit/Makefile (new)
  1.1       +1 -0      ports/security/py-cryptkit/distinfo (new)
  1.1       +1 -0      ports/security/py-cryptkit/pkg-comment (new)
  1.1       +4 -0      ports/security/py-cryptkit/pkg-descr (new)
  1.1       +30 -0     ports/security/py-cryptkit/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 Mar 16  2:14: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 125F637B402; Sat, 16 Mar 2002 02:14:49 -0800 (PST)
Received: (from ijliao@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GAEmZ08116;
	Sat, 16 Mar 2002 02:14:48 -0800 (PST)
	(envelope-from ijliao)
Message-Id: <200203161014.g2GAEmZ08116@freefall.freebsd.org>
From: Ying-Chieh Liao 
Date: Sat, 16 Mar 2002 02:14:48 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: CVSROOT modules
X-FreeBSD-CVS-Branch: HEAD
Sender: owner-cvs-all@FreeBSD.ORG
Precedence: bulk
List-ID: 
List-Archive:  (Web Archive)
List-Help:  (List Instructions)
List-Subscribe: 
List-Unsubscribe: 
X-Loop: FreeBSD.ORG

ijliao      2002/03/16 02:14:48 PST

  Modified files:
    .                    modules 
  Log:
    py-cryptkit --> ports/security/py-cryptkit
  
  Revision  Changes    Path
  1.4853    +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 Mar 16  2:50:38 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 8FE5737B417; Sat, 16 Mar 2002 02:50:33 -0800 (PST)
Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32])
	by mail.musha.org (Postfix) with ESMTP
	id F1F784D8EC; Sat, 16 Mar 2002 19:50:31 +0900 (JST)
Date: Sat, 16 Mar 2002 19:50:31 +0900
Message-ID: <86ofhodbwo.wl@archon.local.idaemons.org>
From: "Akinori MUSHA" 
To: ports@FreeBSD.org
Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: Re: cvs commit: CVSROOT modules 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 ...
In-Reply-To: <200203151944.g2FJiTa99301@freefall.freebsd.org>
References: <200203151944.g2FJiTa99301@freefall.freebsd.org>
User-Agent: Wanderlust/2.9.7 (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 Fri, 15 Mar 2002 11:44:29 -0800 (PST),
aDe wrote:
>   Move gettext (0.10.35) with gettext-old
>   Update gettext from gettext-devel (0.10.40)
>   Remove gettext-devel

FYI, below is a portupgrade command to deal with this update:

	portupgrade -f -o devel/gettext-old gettext-0.10.35_1 \
	               -o devel/gettext     gettext-0.10.40

-- 
                     /
                    /__  __            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  Sat Mar 16  4: 6: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 C294937B416; Sat, 16 Mar 2002 04:06:01 -0800 (PST)
Received: (from joe@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GC61P92661;
	Sat, 16 Mar 2002 04:06:01 -0800 (PST)
	(envelope-from joe)
Message-Id: <200203161206.g2GC61P92661@freefall.freebsd.org>
From: Josef Karthauser 
Date: Sat, 16 Mar 2002 04:06:01 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: src/sys/dev/usb ohci.c uhci.c uhcivar.h ums.c
         usb_port.h 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/03/16 04:06:01 PST

  Modified files:
    sys/dev/usb          ohci.c uhci.c uhcivar.h ums.c usb_port.h 
                         usb_subr.c usbdi.c usbdivar.h 
  Log:
  Huge merge from NetBSD:
  
  usbdi.c (1.61):
          ===================================================================
          revision 1.61
          date: 2000/01/31 20:13:07;  author: augustss;  lines: +20 -4
          Change the way the HC done method is invoked a little.
          ===================================================================
  
  usbdi.c (1.65):
          ===================================================================
          revision 1.65
          date: 2000/03/08 15:34:10;  author: augustss;  lines: +4 -2
          Get the status right when a polled transfer times out.
          ===================================================================
  
  ohci.c (1.79), uhci.c (1.89), uhcivar.h (1.24), usb_port.h (1.22),
  usbdivar.h (1.48):
          ===================================================================
          date: 2000/03/23 07:01:46;  author: thorpej;
          New callout mechanism with two major improvements over the old
          timeout()/untimeout() API:
          - Clients supply callout handle storage, thus eliminating problems of
            resource allocation.
          - Insertion and removal of callouts is constant time, important as
            this facility is used quite a lot in the kernel.
  
          The old timeout()/untimeout() API has been removed from the kernel.
          ===================================================================
  
  uhci.c (1.80), usbdi.c (1.66):
          ===================================================================
          date: 2000/03/23 18:59:10;  author: thorpej;
          Shake out some bugs from the callout changes.
          ===================================================================
  
  ohci.c (1.80), uhci.c (1.91), uhcivar.h (1.25), usb_port.h (1.23),
  usbdi.c (1.67), usbdivar.h (1.49):
          ===================================================================
          date: 2000/03/24 22:03:30;  author: augustss;
          Some cleanup and renaming of the callouts used in USB drivers.
          ===================================================================
  
  uhci.c (1.92), uhcivar.h (1.26):
          ===================================================================
          date: 2000/03/24 22:57:58;  author: augustss;
          Two major changes:
  
            Make each xfer have its own intr_info.  This is necessary if we want
            to queue multiple xfers on an endpoint.  This should get rid of the
            (mostly harmless) DIAGNOSTICs about intr_infos (not) being done.
  
            Change (again!) how xfers are aborted.  Aborting a TD is a nightmare
            on the braindead UHCI controller.  (Unless you stop the HC, thereby
            losing isoc traffic.)  Hopefully I got it right this time.
          ===================================================================
  
  usbdivar.h (1.50):
          ===================================================================
          revision 1.50
          date: 2000/03/25 00:10:19;  author: augustss;  lines: +4 -2
          GC an unsued field and add some DIAGNOSTIC in xfer.
          ===================================================================
  
  ums.c: Use the callout functions instead of the timeout ones.
  
  uhci.c (1.93):
          ===================================================================
          revision 1.93
          date: 2000/03/25 00:11:21;  author: augustss;
          lines: +26 -1
          Add more DIAGNOSTIC when aborting isoc.
          ===================================================================
  
  uhci.c (1.94), usbdivar.h (1.51):
          ===================================================================
          date: 2000/03/25 07:13:05;  author: augustss;
          More DIAGNOSTIC.
          Initialize a callout handle I forgot.
          ===================================================================
  
  uhci.c (1.95):
          ===================================================================
          revision 1.95
          date: 2000/03/25 07:23:12;  author: augustss;
          Exp;  lines: +24 -7
          Improve uhci_dump_ii().
          ===================================================================
  
  ohci.c (1.81), uhci.c (1.96), uhcivar.h (1.27), usb_subr.c (1.68),
  usbdi.c (1.68), usbdivar.h (1.52):
          ===================================================================
          date: 2000/03/25 18:02:33;  author: augustss;
          Rename and move around callout handles to make it more sane.
          Add some DIAGNOSTIC.
          Fix buglet in isoc abort on UHCI.
          ===================================================================
  
  uhci.c (1.98):
          ===================================================================
          revision 1.98
          date: 2000/03/27 07:39:48;  author: augustss;  lines: +12 -4
          Make it compile without DIAGNOSTIC.
          ===================================================================
  
  uhci.c (1.99):
          ===================================================================
          revision 1.99
          date: 2000/03/27 08:01:09;  author: augustss;  lines: +1 -5
          Remove some debug nonsense.
          ===================================================================
  
  uhci.c (1.100):
          ===================================================================
          revision 1.100
          date: 2000/03/27 09:41:36;  author: augustss;  lines: +13 -3
          Don't mess with QH in bulk abort for the moment.
          ===================================================================
  
  uhci.c (1.102):
          ===================================================================
          revision 1.102
          date: 2000/03/27 22:42:57;  author: augustss;  lines: +66 -26
          Be a little more careful when aborting.
          Preallocate some TDs for large buffers.
          ===================================================================
  
  uhci.c (1.103):
          ===================================================================
          date: 2000/03/28 09:47:10;  author: augustss;  lines: +11 -1
          Another patch for xfer abort...
          XXX The current xfer queueing and aborting semantics should really
          XXX be changed.  It cannot be implemented in a sane way on UHCI.
          XXX One day when I have lots of time I'll redesign it...
          ===================================================================
  
  uhci.c (1.104): Correct a debug message.
  uhci.c (1.105): Be more defensive in a DIAGNOSTIC test.
  
  uhci.c (1.106):
          ===================================================================
          revision 1.106
          date: 2000/03/29 01:49:13;  author: augustss;  lines: +14 -309
          *SIGH*  Revert back to the old method of aborting xfers.
          I had tested the new stuff for two months now, but as soon as I commited
          it the problems started to appear.  Murphy, no doubt...
          ===================================================================
  
  usb_subr.c (1.70), usbdi.c (1.71), usbdivar.h (1.53):
          ===================================================================
          revision 1.70
          date: 2000/03/29 01:45:20;  author: augustss;  lines: +2 -1
          Do not accept new xfers for queuing while a pipe is aborting.
          ===================================================================
  
  Revision  Changes    Path
  1.68      +11 -8     src/sys/dev/usb/ohci.c
  1.85      +277 -245  src/sys/dev/usb/uhci.c
  1.28      +11 -11    src/sys/dev/usb/uhcivar.h
  1.51      +7 -8      src/sys/dev/usb/ums.c
  1.42      +13 -7     src/sys/dev/usb/usb_port.h
  1.35      +3 -1      src/sys/dev/usb/usb_subr.c
  1.50      +34 -8     src/sys/dev/usb/usbdi.c
  1.22      +12 -5     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  Sat Mar 16  4:20: 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 9D0A737B402; Sat, 16 Mar 2002 04:19:56 -0800 (PST)
Received: (from demon@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GCJu197515;
	Sat, 16 Mar 2002 04:19:56 -0800 (PST)
	(envelope-from demon)
Message-Id: <200203161219.g2GCJu197515@freefall.freebsd.org>
From: Dmitry Sivachenko 
Date: Sat, 16 Mar 2002 04:19:56 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: ports/devel/bison 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/03/16 04:19:56 PST

  Modified files:
    devel/bison          Makefile distinfo 
  Log:
  Upgrade to 1.34.
  
  Revision  Changes    Path
  1.26      +1 -2      ports/devel/bison/Makefile
  1.10      +1 -1      ports/devel/bison/distinfo

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  4:24: 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 3271B37B417; Sat, 16 Mar 2002 04:24:01 -0800 (PST)
Received: (from joe@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GCO1798836;
	Sat, 16 Mar 2002 04:24:01 -0800 (PST)
	(envelope-from joe)
Message-Id: <200203161224.g2GCO1798836@freefall.freebsd.org>
From: Josef Karthauser 
Date: Sat, 16 Mar 2002 04:24:00 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: src/sys/dev/usb uhci.c 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/03/16 04:24:00 PST

  Modified files:
    sys/dev/usb          uhci.c uhcivar.h 
  Log:
  Bump some $NetBSD$ idents for patches that have already been previously
  ported.
  
  Revision  Changes    Path
  1.86      +1 -1      src/sys/dev/usb/uhci.c
  1.29      +1 -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  Sat Mar 16  4:33:44 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 5D18337B416; Sat, 16 Mar 2002 04:33:36 -0800 (PST)
Received: (from ru@localhost)
	by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g2GCXO469095;
	Sat, 16 Mar 2002 14:33:24 +0200 (EET)
	(envelope-from ru)
Date: Sat, 16 Mar 2002 14:33:24 +0200
From: Ruslan Ermilov 
To: Dag-Erling Smorgrav 
Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: Re: cvs commit: src/usr.sbin/sysinstall Makefile
Message-ID: <20020316123324.GB67976@sunbay.com>
References: <200203151127.g2FBRlM03640@freefall.freebsd.org>  <20020315171933.GA92157@sunbay.com> 
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

On Fri, Mar 15, 2002 at 07:47:02PM +0100, Dag-Erling Smorgrav wrote:
> Ruslan Ermilov  writes:
> > No, because your change didn't exclude sysinstall from cross builds,
> > and as such didn't make any difference.
> 
> Umm, I *tested* that patch, and it did *not* build sysinstall.
> 
I think this is because you tested your patch by something like this:

cd /usr/src/usr.sbin; make TARGET_ARCH=i386

on alpha box, and this is not the same as

cd /usr/src; make TARGET_ARCH=i386 buildworld

which, as I explained, sets MACHINE_ARCH=${TARGET_ARCH} for world
related targets:

$ uname -m
i386
$ make -f Makefile.inc1 TARGET_ARCH=alpha -V MACHINE_ARCH
i386
$ make -f Makefile.inc1 TARGET_ARCH=alpha -V WMAKEENV
MAKEOBJDIRPREFIX=/usr/obj/alpha  MACHINE_ARCH=alpha  MACHINE=alpha ...


Cheers,
-- 
Ruslan Ermilov		Sysadmin and DBA,
ru@sunbay.com		Sunbay Software AG,
ru@FreeBSD.org		FreeBSD committer,
+380.652.512.251	Simferopol, Ukraine

http://www.FreeBSD.org	The Power To Serve
http://www.oracle.com	Enabling The Information Age

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  4:38:15 2002
Delivered-To: cvs-all@freebsd.org
Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21])
	by hub.freebsd.org (Postfix) with ESMTP
	id 4AA5B37B400; Sat, 16 Mar 2002 04:38:13 -0800 (PST)
Received: (from demon@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GCcD716307;
	Sat, 16 Mar 2002 04:38:13 -0800 (PST)
	(envelope-from demon)
Message-Id: <200203161238.g2GCcD716307@freefall.freebsd.org>
From: Dmitry Sivachenko 
Date: Sat, 16 Mar 2002 04:38:13 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: ports/www/links 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/03/16 04:38:13 PST

  Modified files:
    www/links            Makefile distinfo 
  Log:
  Upgrade to 0.97pre7
  
  Revision  Changes    Path
  1.18      +2 -2      ports/www/links/Makefile
  1.11      +1 -1      ports/www/links/distinfo

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  4: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 51A1837B400; Sat, 16 Mar 2002 04:44:22 -0800 (PST)
Received: (from joe@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GCiMC21262;
	Sat, 16 Mar 2002 04:44:22 -0800 (PST)
	(envelope-from joe)
Message-Id: <200203161244.g2GCiMC21262@freefall.freebsd.org>
From: Josef Karthauser 
Date: Sat, 16 Mar 2002 04:44:22 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: src/sys/dev/usb ohci.c ohcivar.h uhci.c 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/03/16 04:44:22 PST

  Modified files:
    sys/dev/usb          ohci.c ohcivar.h uhci.c uhcivar.h 
  Log:
  Merge from NetBSD:
  
  ohcivar.h (1.22), uhcivar.h (1.29):
          ============================================================
          date: 2000/04/25 09:20:55;  author: augustss;
          Move the size of the mapped bus_space region into the bus
          independent softc.
          ============================================================
  
  ohci.c (1.88), uhci.c (1.112):
          ============================================================
          date: 2000/04/25 14:28:13;  author: augustss;
          Insert (very conservative!) bus_space_barrier() calls at
          all register accesses.
          The bus_space(9) man page says you've gotta have them...
          ============================================================
  
  Revision  Changes    Path
  1.69      +11 -3     src/sys/dev/usb/ohci.c
  1.24      +1 -0      src/sys/dev/usb/ohcivar.h
  1.87      +12 -7     src/sys/dev/usb/uhci.c
  1.30      +2 -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  Sat Mar 16  4:50: 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 3E1C637B400; Sat, 16 Mar 2002 04:50:03 -0800 (PST)
Received: (from bde@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GCo3M21976;
	Sat, 16 Mar 2002 04:50:03 -0800 (PST)
	(envelope-from bde)
Message-Id: <200203161250.g2GCo3M21976@freefall.freebsd.org>
From: Bruce Evans 
Date: Sat, 16 Mar 2002 04:50:03 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: src/sys/sys selinfo.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

bde         2002/03/16 04:50:03 PST

  Modified files:
    sys/sys              selinfo.h 
  Log:
  Fixed some style bugs:
  - 2 redundant forward declarations of "struct thread"
  - missing function parameter names in prototypes
  - misformatting
  
  Revision  Changes    Path
  1.14      +5 -9      src/sys/sys/selinfo.h

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  4: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 7C98537B41A; Sat, 16 Mar 2002 04:57:31 -0800 (PST)
Received: (from demon@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GCvV222868;
	Sat, 16 Mar 2002 04:57:31 -0800 (PST)
	(envelope-from demon)
Message-Id: <200203161257.g2GCvV222868@freefall.freebsd.org>
From: Dmitry Sivachenko 
Date: Sat, 16 Mar 2002 04:57:31 -0800 (PST)
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/03/16 04:57:31 PST

  Modified files:
    net/mrtg             Makefile distinfo 
  Log:
  Upgrade to 2.9.18pre2
  
  Revision  Changes    Path
  1.40      +6 -2      ports/net/mrtg/Makefile
  1.24      +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 Mar 16  5:23:14 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 47ABF37B416
	for ; Sat, 16 Mar 2002 05:23:09 -0800 (PST)
Message-ID: <20020316132309.97940.qmail@web21107.mail.yahoo.com>
Received: from [62.254.0.5] by web21107.mail.yahoo.com via HTTP; Sat, 16 Mar 2002 05:23:09 PST
Date: Sat, 16 Mar 2002 05:23:09 -0800 (PST)
From: Hiten Pandya 
Reply-To: hiten@uk.FreeBSD.org
Subject: Re: cvs commit: www/en register.sgml
To: Murray Stokely , cvs-committers@FreeBSD.org,
	cvs-all@FreeBSD.org
In-Reply-To: <200203160817.g2G8HwH37954@freefall.freebsd.org>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Sender: owner-cvs-all@FreeBSD.ORG
Precedence: bulk
List-ID: 
List-Archive:  (Web Archive)
List-Help:  (List Instructions)
List-Subscribe: 
List-Unsubscribe: 
X-Loop: FreeBSD.ORG

--- Murray Stokely  wrote:
> murray      2002/03/16 00:17:58 PST
> 
>   Modified files:
>     en                   register.sgml 
>   Log:
>   Update DOCTYPE to HTML 4.01 Transitional.  Remove invalid empty table
>   row.

I was wondering, we do not give out newsletters and stuff anymore, do
we still need this register.html page?

__________________________________________________
Do You Yahoo!?
Yahoo! Sports - live college hoops coverage
http://sports.yahoo.com/

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  5:27:24 2002
Delivered-To: cvs-all@freebsd.org
Received: from bast.unixathome.org (bast.unixathome.org [216.187.105.150])
	by hub.freebsd.org (Postfix) with ESMTP
	id 7D3B237B417; Sat, 16 Mar 2002 05:27:19 -0800 (PST)
Received: from wocker (wocker.unixathome.org [192.168.0.99])
	by bast.unixathome.org (Postfix) with ESMTP
	id 9B3973F25; Sat, 16 Mar 2002 08:27:18 -0500 (EST)
From: "Dan Langille" 
Organization: DVL Software Limited
To: Anders Nordby 
Date: Sat, 16 Mar 2002 08:27:18 -0500
MIME-Version: 1.0
Subject: Re: cvs commit: ports/audio/fcplay Makefile ports/audio/xmms-tfmx Makefile ports/databases/mdbtools Makefile ports/deskutils/zo
Reply-To: dan@langille.org
Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
In-reply-to: <200203150031.g2F0Vtb57191@freefall.freebsd.org>
X-mailer: Pegasus Mail for Windows (v4.01)
Content-type: text/plain; charset=US-ASCII
Content-transfer-encoding: 7BIT
Content-description: Mail message body
Message-Id: <20020316132718.9B3973F25@bast.unixathome.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

This is still broken.

On 14 Mar 2002 at 16:31, Anders Nordby wrote: 

> anders      2002/03/14 16:31:55 PST
> 
>     mail/drac            Makefile 

That one needs :: for pre-everything.  

$ sudo make -V PORTVERSION Password: "Makefile", line 34: Inconsistent 
operator for pre-everything make: fatal errors encountered -- cannot 
continue 

Search cvs-all archives for my name and pre-everything if you want some 
background on this one. 

cheers. 
-- 
Dan Langille
The FreeBSD Diary - http://freebsddiary.org/ - practical examples


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  5:28:30 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 4507A37B404; Sat, 16 Mar 2002 05:28:24 -0800 (PST)
Received: by mao.stokely.org (Postfix, from userid 2074)
	id 0934D4B65D; Sat, 16 Mar 2002 05:28:24 -0800 (PST)
Date: Sat, 16 Mar 2002 05:28:23 -0800
From: Murray Stokely 
To: hiten@uk.FreeBSD.org
Cc: Murray Stokely , cvs-committers@FreeBSD.org,
	cvs-all@FreeBSD.org
Subject: Re: cvs commit: www/en register.sgml
Message-ID: <20020316132823.GB17499@freebsdmall.com>
References: <200203160817.g2G8HwH37954@freefall.freebsd.org> <20020316132309.97940.qmail@web21107.mail.yahoo.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <20020316132309.97940.qmail@web21107.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 Sat, Mar 16, 2002 at 05:23:09AM -0800, Hiten Pandya wrote:
> >   Update DOCTYPE to HTML 4.01 Transitional.  Remove invalid empty table
> >   row.
> 
> I was wondering, we do not give out newsletters and stuff anymore, do
> we still need this register.html page?

  We need to remove 21 links to that document from web pages in 4
different languages.  Then we can finally remove that file.  See the
-doc archives and the PR.  Jun Kuriyama just sent a message about
this.

    - Murray

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  5:48: 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 DBCC037B400; Sat, 16 Mar 2002 05:48:01 -0800 (PST)
Received: (from phk@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GDm1A52344;
	Sat, 16 Mar 2002 05:48:01 -0800 (PST)
	(envelope-from phk)
Message-Id: <200203161348.g2GDm1A52344@freefall.freebsd.org>
From: Poul-Henning Kamp 
Date: Sat, 16 Mar 2002 05:48:01 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: src/sys/geom geom_dev.c
X-FreeBSD-CVS-Branch: HEAD
Sender: owner-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/03/16 05:48:01 PST

  Modified files:
    sys/geom             geom_dev.c 
  Log:
  Hmm, talk about optimizer-fodder.  Make the DIOCGDVIRGIN hack work again.
  
  Revision  Changes    Path
  1.3       +4 -6      src/sys/geom/geom_dev.c

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  5:51:31 2002
Delivered-To: cvs-all@freebsd.org
Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21])
	by hub.freebsd.org (Postfix) with ESMTP
	id 8612C37B400; Sat, 16 Mar 2002 05:51:28 -0800 (PST)
Received: (from trevor@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GDpSr58260;
	Sat, 16 Mar 2002 05:51:28 -0800 (PST)
	(envelope-from trevor)
Message-Id: <200203161351.g2GDpSr58260@freefall.freebsd.org>
From: Trevor Johnson 
Date: Sat, 16 Mar 2002 05:51:28 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: ports/www/linux-mozilla distinfo
X-FreeBSD-CVS-Branch: HEAD
Sender: owner-cvs-all@FreeBSD.ORG
Precedence: bulk
List-ID: 
List-Archive:  (Web Archive)
List-Help:  (List Instructions)
List-Subscribe: 
List-Unsubscribe: 
X-Loop: FreeBSD.ORG

trevor      2002/03/16 05:51:28 PST

  Modified files:
    www/linux-mozilla    distinfo 
  Log:
  The distfiles were re-rolled.  The BuildID changed from 2002031008
  to 2002031312, and there were other, unknown changes.  Add new
  checksums.
  
  Reported by:    Ralf Schumacher  and
                  Matt Sykes 
  
  Revision  Changes    Path
  1.5       +15 -5     ports/www/linux-mozilla/distinfo

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  6: 8:38 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 590FD37B400; Sat, 16 Mar 2002 06:08:34 -0800 (PST)
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 g2GE8WF29299;
	Sat, 16 Mar 2002 09:08:32 -0500 (EST)
	(envelope-from robert@fledge.watson.org)
Date: Sat, 16 Mar 2002 09:08:32 -0500 (EST)
From: Robert Watson 
X-Sender: robert@fledge.watson.org
To: Murray Stokely 
Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: Re: cvs commit: www/en/events Makefile.inc events.css         www/en/events/2002 Makefile bsdcon-devsummit.sgml
In-Reply-To: <200203160847.g2G8ltH39318@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


Thanks!  I'll try to do some final tweaks later today, and invite comments
from anyone interested.

Robert N M Watson             FreeBSD Core Team, TrustedBSD Project
robert@fledge.watson.org      NAI Labs, Safeport Network Services

On Sat, 16 Mar 2002, Murray Stokely wrote:

> murray      2002/03/16 00:47:55 PST
> 
>   Added files:
>     en/events            Makefile.inc events.css 
>     en/events/2002       Makefile bsdcon-devsummit.sgml 
>   Log:
>   Add notes from the BSDCon 2002 FreeBSD Developer Summit.
>   
>   This is deliberately not connected to the build, as Robert still may
>   have some updates to add before we make this public.
>   
>   Notes prepared by:      gnn and rwatson
>   
>   Revision  Changes    Path
>   1.1       +12 -0     www/en/events/2002/Makefile (new)
>   1.1       +1919 -0   www/en/events/2002/bsdcon-devsummit.sgml (new)
>   1.1       +3 -0      www/en/events/Makefile.inc (new)
>   1.1       +18 -0     www/en/events/events.css (new)
> 


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  6:10:43 2002
Delivered-To: cvs-all@freebsd.org
Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21])
	by hub.freebsd.org (Postfix) with ESMTP
	id 290F337B416; Sat, 16 Mar 2002 06:10:38 -0800 (PST)
Received: (from keramida@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GEAcT80258;
	Sat, 16 Mar 2002 06:10:38 -0800 (PST)
	(envelope-from keramida)
Message-Id: <200203161410.g2GEAcT80258@freefall.freebsd.org>
From: Giorgos Keramidas 
Date: Sat, 16 Mar 2002 06:10:38 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: doc/el_GR.ISO8859-7/articles/freebsd-questions 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/03/16 06:10:38 PST

  Modified files:
    el_GR.ISO8859-7/articles/freebsd-questions article.sgml 
  Log:
  . Fix typo.
  . Translate last paragraph now that I have a nice Greek version.
  
  Submitted by:   Yannis Kotsinos 
  
  Revision  Changes    Path
  1.2       +5 -5      doc/el_GR.ISO8859-7/articles/freebsd-questions/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 Mar 16  6:15: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 E64A337B402; Sat, 16 Mar 2002 06:15:54 -0800 (PST)
Received: (from keramida@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GEFs186478;
	Sat, 16 Mar 2002 06:15:54 -0800 (PST)
	(envelope-from keramida)
Message-Id: <200203161415.g2GEFs186478@freefall.freebsd.org>
From: Giorgos Keramidas 
Date: Sat, 16 Mar 2002 06:15:54 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: doc/el_GR.ISO8859-7/articles/new-users 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/03/16 06:15:54 PST

  Modified files:
    el_GR.ISO8859-7/articles/new-users article.sgml 
  Log:
  Reword a few sentences.
  
  Submitted by:   Yannis Kotsinos 
  
  Revision  Changes    Path
  1.2       +2 -2      doc/el_GR.ISO8859-7/articles/new-users/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 Mar 16  6:18: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 A3C6137B416; Sat, 16 Mar 2002 06:18:35 -0800 (PST)
Received: (from keramida@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GEIZv88608;
	Sat, 16 Mar 2002 06:18:35 -0800 (PST)
	(envelope-from keramida)
Message-Id: <200203161418.g2GEIZv88608@freefall.freebsd.org>
From: Giorgos Keramidas 
Date: Sat, 16 Mar 2002 06:18:35 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: doc/el_GR.ISO8859-7/articles/formatting-media 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/03/16 06:18:35 PST

  Modified files:
    el_GR.ISO8859-7/articles/formatting-media article.sgml 
  Log:
  Two grammar fixes.
  
  Submitted by:   Yannis Kotsinos 
  
  Revision  Changes    Path
  1.2       +2 -2      doc/el_GR.ISO8859-7/articles/formatting-media/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 Mar 16  6:20: 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 8BDDA37B402; Sat, 16 Mar 2002 06:19:56 -0800 (PST)
Received: (from keramida@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GEJud89689;
	Sat, 16 Mar 2002 06:19:56 -0800 (PST)
	(envelope-from keramida)
Message-Id: <200203161419.g2GEJud89689@freefall.freebsd.org>
From: Giorgos Keramidas 
Date: Sat, 16 Mar 2002 06:19:56 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: doc/el_GR.ISO8859-7/articles/explaining-bsd 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/03/16 06:19:56 PST

  Modified files:
    el_GR.ISO8859-7/articles/explaining-bsd article.sgml 
  Log:
  Fix typos.
  
  Submitted by:   Yannis Kotsinos 
  
  Revision  Changes    Path
  1.2       +2 -2      doc/el_GR.ISO8859-7/articles/explaining-bsd/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 Mar 16  6:26: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 94D5337B419; Sat, 16 Mar 2002 06:26:32 -0800 (PST)
Received: (from keramida@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GEQWr96115;
	Sat, 16 Mar 2002 06:26:32 -0800 (PST)
	(envelope-from keramida)
Message-Id: <200203161426.g2GEQWr96115@freefall.freebsd.org>
From: Giorgos Keramidas 
Date: Sat, 16 Mar 2002 06:26:32 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors article.sgml
X-FreeBSD-CVS-Branch: HEAD
Sender: owner-cvs-all@FreeBSD.ORG
Precedence: bulk
List-ID: 
List-Archive:  (Web Archive)
List-Help:  (List Instructions)
List-Subscribe: 
List-Unsubscribe: 
X-Loop: FreeBSD.ORG

keramida    2002/03/16 06:26:32 PST

  Modified files:
    en_US.ISO8859-1/articles/contributors article.sgml 
  Log:
  Add Yannis Kotsinos  to the list of additional
  contributors for his help with the Greek translation of doc/.
  
  Revision  Changes    Path
  1.114     +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 Mar 16  6:32:10 2002
Delivered-To: cvs-all@freebsd.org
Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21])
	by hub.freebsd.org (Postfix) with ESMTP
	id 11BC737B402; Sat, 16 Mar 2002 06:32:07 -0800 (PST)
Received: (from markm@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GEW7702843;
	Sat, 16 Mar 2002 06:32:07 -0800 (PST)
	(envelope-from markm)
Message-Id: <200203161432.g2GEW7702843@freefall.freebsd.org>
From: Mark Murray 
Date: Sat, 16 Mar 2002 06:32:06 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: ports/math Makefile ports/math/jacal Makefile distinfo
         pkg-comment pkg-descr pkg-plist ports/math/jacal/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

markm       2002/03/16 06:32:06 PST

  Modified files:
    math                 Makefile 
  Added files:
    math/jacal           Makefile distinfo pkg-comment pkg-descr 
                         pkg-plist 
    math/jacal/files     patch-aa 
  Log:
  Add jacal - a Symbolic Mathematics package, written in Scheme.
  
  Revision  Changes    Path
  1.166     +1 -0      ports/math/Makefile
  1.1       +30 -0     ports/math/jacal/Makefile (new)
  1.1       +1 -0      ports/math/jacal/distinfo (new)
  1.1       +56 -0     ports/math/jacal/files/patch-aa (new)
  1.1       +1 -0      ports/math/jacal/pkg-comment (new)
  1.1       +9 -0      ports/math/jacal/pkg-descr (new)
  1.1       +31 -0     ports/math/jacal/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 Mar 16  6:33: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 BE82037B404; Sat, 16 Mar 2002 06:33:39 -0800 (PST)
Received: (from trevor@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GEXd004385;
	Sat, 16 Mar 2002 06:33:39 -0800 (PST)
	(envelope-from trevor)
Message-Id: <200203161433.g2GEXd004385@freefall.freebsd.org>
From: Trevor Johnson 
Date: Sat, 16 Mar 2002 06:33:39 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: ports/security/strobe 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/03/16 06:33:39 PST

  Modified files:
    security/strobe      Makefile 
  Log:
  Correct master site.
  
  PR:             35976
  Submitted by:   Kimura Fuyuki 
  
  Revision  Changes    Path
  1.12      +2 -2      ports/security/strobe/Makefile

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  6:40:53 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 C685537B402; Sat, 16 Mar 2002 06:40:50 -0800 (PST)
Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [2001:218:422:2::130])
	by white.imgsrc.co.jp (Postfix) with ESMTP
	id AB5C624D1C; Sat, 16 Mar 2002 23:40:49 +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 DBB121E46F1; Sat, 16 Mar 2002 23:40:43 +0900 (JST)
Date: Sat, 16 Mar 2002 23:40:41 +0900
Message-ID: <7m1yek7eza.wl@waterblue.imgsrc.co.jp>
From: Jun Kuriyama 
To: hiten@uk.FreeBSD.org
Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: Re: cvs commit: www/en register.sgml
In-Reply-To: <20020316132309.97940.qmail@web21107.mail.yahoo.com>
References: <200203160817.g2G8HwH37954@freefall.freebsd.org>
	<20020316132309.97940.qmail@web21107.mail.yahoo.com>
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 Sat, 16 Mar 2002 05:23:09 -0800 (PST),
Hiten Pandya wrote:
> I was wondering, we do not give out newsletters and stuff anymore, do
> we still need this register.html page?

Yes, I'll remove this page after translated pages which includes links
to register.html removed.


-- 
Jun Kuriyama  // IMG SRC, Inc.

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  6:49: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 0946D37B404; Sat, 16 Mar 2002 06:49:46 -0800 (PST)
Received: (from kevlo@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g2GEnit22681;
	Sat, 16 Mar 2002 06:49:46 -0800 (PST)
	(envelope-from kevlo)
Message-Id: <200203161449.g2GEnit22681@freefall.freebsd.org>
From: Kevin Lo 
Date: Sat, 16 Mar 2002 06:49:44 -0800 (PST)
To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject: cvs commit: ports/x11/xbindkeys_config Makefile distinfo
X-FreeBSD-CVS-Branch: HEAD
Sender: owner-cvs-all@FreeBSD.ORG
Precedence: bulk
List-ID: 
List-Archive:  (Web Archive)
List-Help:  (List Instructions)
List-Subscribe: 
List-Unsubscribe: 
X-Loop: FreeBSD.ORG

kevlo       2002/03/16 06:49:44 PST

  Modified files:
    x11/xbindkeys_config Makefile distinfo 
  Log:
  - Update to 0.1.0
  - Takeover maintainership
  
  PR: 35974
  Submitted by: Oliver Braun 
  
  Revision  Changes    Path
  1.2       +2 -2      ports/x11/xbindkeys_config/Makefile
  1.2       +1 -1      ports/x11/xbindkeys_config/distinfo

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message


From owner-cvs-all  Sat Mar 16  6:50:50 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 63C5237B41B; Sat, 16 Mar 2002 06:50:15 -0800 (PST)
Received: (from uucp@localhost)
	by srv1.cosmo-project.de (8.11.6/8.11.6) with UUCP id g2GEoDw02604;
	Sat, 16 Mar 2002 15:50:13 +0100 (CET)
	(envelope-from ticso@cicely8.cicely.de)
Received: from cicely8.cicely.de (cicely8.cicely.de [10.1.1.10])
	by cicely5.cicely.de (8.12.1/8.12.1) with ESMTP id g2GEkV6e000773;
	Sat, 16 Mar 2002 15:46:31 +0100 (CET)?g
	(envelope-from ticso@cicely8.cicely.de)
Received: from cicely8.cicely.de (localhost [127.0.0.1])
	by cicely8.cicely.de (8.12.2/8.12.2) with ESMTP id g2GEkUKZ001210;
	Sat, 16 Mar 2002 15:46:30 +0100 (CET)
	(envelope-from ticso@cicely8.cicely.de)
Received: (from ticso@localhost)
	by cicely8.cicely.de (8.12.2/8.12.2/Submit) id g2GEkTna001209;
	Sat, 16 Mar 2002 15:46:29 +0100 (CET)
Date: Sat, 16 Mar 2002 15:46:28 +0100
From: Bernd Walter 
To: John Hay 
Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org,
	"Herbert J. Skuhra" 
Subject: Re: cvs commit: src/sys/dev/sio sio.c sio_isa.c sio_pccard.c sio_pci.c sioreg.h siovar.h
Message-ID: <20020316144628.GA1170@cicely8.cicely.de>
References: <200201301722.g0UHM4w24062@freefall.freebsd.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <200201301722.g0UHM4w24062@freefall.freebsd.org>
User-Agent: Mutt/1.3.26i
X-Operating-System: FreeBSD cicely8.cicely.de 5.0-CURRENT 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 Wed, Jan 30, 2002 at 09:22:04AM -0800, John Hay wrote:
> jhay        2002/01/30 09:22:04 PST
> 
>   Modified files:
>     sys/dev/sio          sio.c sio_isa.c sio_pccard.c sio_pci.c 
>                          sioreg.h siovar.h 
>   Log:
>   Add support for different serial clock frequencies and not just the
>   standard one of 1.8432MHz. This will be used by the puc (PCI
>   "universal" communication card) device driver.

This commit breaks my seriel console.
I get a console speed of 1355bps after that.
loader worked fine with 9600bps.
It seems that siocngetspeed read bogus values from my sio.
Now that the sanity checks are removed the value gets used.
Another one on a german list has the same problem with 4.5-stable
and a different board/cpu.

And the remark section for the function claims to return 0 in some
cases which is obsolete now.

The folling patch worked around for me:
Index: sys/dev/sio/sio.c
===================================================================
RCS file: /cvs/src/sys/dev/sio/sio.c,v
retrieving revision 1.365
diff -u -r1.365 sio.c
--- sys/dev/sio/sio.c   26 Feb 2002 03:46:14 -0000      1.365
+++ sys/dev/sio/sio.c   16 Mar 2002 14:14:55 -0000
@@ -2775,7 +2775,7 @@
        divisor = dlbh << 8 | dlbl;
 
        /* XXX there should be more sanity checking. */
-       if (divisor == 0)
+       if (divisor == 0x55 || divisor == 0)
                return (CONSPEED);
        return (rclk / (16UL * divisor));
 }

[55]cicely5# uname -a
FreeBSD cicely5.cicely.de 5.0-CURRENT FreeBSD 5.0-CURRENT #6: Sat Mar 16 15:15:36 CET 2002     ticso@cicely5.cicely.de:/var/d1/FreeBSD-2002-03-13/src/sys/i386/compile/CICELY5  i386

Copyright (c) 1992-2002 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
        The Regents of the University of California. All rights reserved.
FreeBSD 5.0-CURRENT #6: Sat Mar 16 15:15:36 CET 2002
    ticso@cicely5.cicely.de:/var/d1/FreeBSD-2002-03-13/src/sys/i386/compile/CICELY5
Preloaded elf kernel "/boot/kernel/kernel" at 0xc0360000.
Timecounter "i8254"  frequency 1193182 Hz
Timecounter "TSC"  frequency 233029609 Hz
CPU: AMD-K6tm w/ multimedia extensions (233.03-MHz 586-class CPU)
  Origin = "AuthenticAMD"  Id = 0x562  Stepping = 2
  Features=0x8001bf
  AMD Features=0x400<>
real memory  = 268435456 (262144K bytes)
avail memory = 257716224 (251676K bytes)
Using $PIR table, 7 entries at 0xc00f09b0
npx0:  on motherboard
npx0: INT 16 interface
pcib0:  at pcibus 0 on motherboard
pci0:  on pcib0
isab0:  at device 7.0 on pci0
isa0:  on isab0
atapci0:  port 0xe800-0xe80f at device 7.1 on pci0
ata0: at 0x1f0 irq 14 on atapci0
ata1: at 0x170 irq 15 on atapci0
pci0:  at device 7.2 (no driver attached)
pcib1:  at device 9.0 on pci0
pci1:  on pcib1
ahc0:  port 0xd800-0xd8ff mem 0xe5000000-0xe5000fff irq 5 at device 4.0 on pci1
aic7870: Single Channel A, SCSI Id=7, 16/255 SCBs
ahc1:  port 0xd400-0xd4ff mem 0xe7000000-0xe71fffff,0xe4800000-0xe4800fff irq 11 at device 5
.0 on pci1
RAID functionality unsupported
device_probe_and_attach: ahc1 attach returned 6
ahc1:  port 0xd000-0xd0ff mem 0xe4000000-0xe4000fff irq 5 at device 8.0 on pci1
aic7870: Single Channel B, SCSI Id=7, 16/255 SCBs
ahc2:  port 0xb800-0xb8ff mem 0xe3800000-0xe3800fff irq 5 at device 12.0 on pci1
aic7870: Single Channel C, SCSI Id=7, 16/255 SCBs
pcib2:  at device 10.0 on pci0
pci2:  on pcib2
ahc3:  port 0xa800-0xa8ff mem 0xe3000000-0xe3000fff irq 12 at device 4.0 on pci2
aic7880: Ultra Single Channel A, SCSI Id=7, 16/255 SCBs
ahc4:  port 0xa400-0xa4ff mem 0xe2800000-0xe2800fff irq 5 at device 5.0 on pci2
aic7880: Ultra Single Channel B, SCSI Id=7, 16/255 SCBs
de0:  port 0x9800-0x987f mem 0xe2000000-0xe200007f irq 10 at device 11.0 on pci0
de0: Cogent 21140A [10-100Mb/s] pass 2.0
de0: address 00:00:92:9b:20:e7
pcib3:  at device 12.0 on pci0
pci3:  on pcib3
ahc5:  port 0x8800-0x88ff mem 0xe1800000-0xe1800fff irq 11 at device 4.0 on pci3
aic7870: Single Channel A, SCSI Id=7, 16/255 SCBs
ahc6:  port 0x8400-0x84ff mem 0xe6000000-0xe61fffff,0xe1000000-0xe1000fff irq 10 at device 5
.0 on pci3
RAID functionality unsupported
device_probe_and_attach: ahc6 attach returned 6
ahc6:  port 0x8000-0x80ff mem 0xe0800000-0xe0800fff irq 11 at device 8.0 on pci3
aic7870: Single Channel B, SCSI Id=7, 16/255 SCBs
ahc7:  port 0x7800-0x78ff mem 0xe0000000-0xe0000fff irq 11 at device 12.0 on pci3
aic7870: Single Channel C, SCSI Id=7, 16/255 SCBs
orm0: