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,