From owner-cvs-all Sun Mar 17 0: 4: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 44A3D37B404; Sun, 17 Mar 2002 00:04:03 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2H843s79478; Sun, 17 Mar 2002 00:04:03 -0800 (PST) (envelope-from murray) Message-Id: <200203170804.g2H843s79478@freefall.freebsd.org> From: Murray Stokely Date: Sun, 17 Mar 2002 00:04:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall devices.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2002/03/17 00:04:02 PST Modified files: usr.sbin/sysinstall devices.c Log: Add wireless devices to device_names array. Now that ifconfig can set session IDs, and sysinstall can load modules from the MFSROOT, it should be possible to install FreeBSD over a wireless link. MFC after: 2 weeks Revision Changes Path 1.138 +4 -1 src/usr.sbin/sysinstall/devices.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 17 0: 8:21 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.musha.org (daemon.musha.org [218.44.187.2]) by hub.freebsd.org (Postfix) with ESMTP id 8C73937B402; Sun, 17 Mar 2002 00:08:12 -0800 (PST) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id CD9D94D8EC; Sun, 17 Mar 2002 17:08:08 +0900 (JST) Date: Sun, 17 Mar 2002 17:08:08 +0900 Message-ID: <86n0x7d3br.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Doug Barton Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/net/bind9 Makefile distinfo pkg-plist In-Reply-To: <200203170647.g2H6lPb65782@freefall.freebsd.org> References: <200203170647.g2H6lPb65782@freefall.freebsd.org> User-Agent: Wanderlust/2.9.7 (Unchained Melody) SEMI/1.14.3 (Ushinoya) LIMIT/1.14.7 (Fujiidera) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Just ports style fixes, though, At Sat, 16 Mar 2002 22:47:25 -0800 (PST), Doug Barton wrote: > dougb 2002/03/16 22:47:25 PST > > Modified files: > net/bind9 Makefile distinfo pkg-plist > Log: > Upgrade to the latest release candidate, 9.2.1rc1. Numerous 9.x bugs You should avoid using 9.2.1rc1 as PORTVERSION because 9.2.1rc1 is larger than 9.2.1 by definition. Instead, how about using 9.2.1.p1 (note the dot before `p') as PORTVERSION and define another variable with the value of `9.2.1rc1' for convenience? (${PORTVERSION:S/.p/rc/}) > * Change PORTNAME to bind9 so that 'pkg_add -r bind' does the right thing LATEST_LINK is the variable to set the package link name. Please use it instead of changing PORTNAME just for the link name. Attached is the patch that fixes the above issues. While at it, I replaced ${PORTREVISION} in MASTER_SITES with %SUBDIR% and MASTER_SITE_SUBDIR. Apply it if you like it. :) -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Somewhere out of a memory.. of lighted streets on quiet nights.." Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/bind9/Makefile,v retrieving revision 1.41 diff -u -r1.41 Makefile --- Makefile 17 Mar 2002 06:47:25 -0000 1.41 +++ Makefile 17 Mar 2002 07:56:28 -0000 @@ -11,18 +11,22 @@ # version. If you are concerned about using the most recent ISC # release you can generally build it cleanly from the source - Doug -PORTNAME= bind9 -PORTVERSION= 9.2.1rc1 +PORTNAME= bind +PORTVERSION= 9.2.1.p1 CATEGORIES= net ipv6 -MASTER_SITES= ftp://ftp.isc.org/isc/bind9/${PORTVERSION}/ \ - ftp://ftp.nominum.com/pub/isc/bind9/${PORTVERSION}/ \ - ftp://ftp.nerdc.ufl.edu/pub/mirrors/ftp.isc.org/isc/bind9/${PORTVERSION}/ \ - ftp://ftp.sunet.se/pub/network/isc/bind9/${PORTVERSION}/ \ - ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/bind9/${PORTVERSION}/,} -DISTFILES= bind-9.2.1rc1.tar.gz +MASTER_SITES= ftp://ftp.isc.org/isc/bind9/%SUBDIR%/ \ + ftp://ftp.nominum.com/pub/isc/bind9/%SUBDIR%/ \ + ftp://ftp.nerdc.ufl.edu/pub/mirrors/ftp.isc.org/isc/bind9/%SUBDIR%/ \ + ftp://ftp.sunet.se/pub/network/isc/bind9/%SUBDIR%/ \ + ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/bind9/%SUBDIR%,} +MASTER_SITE_SUBDIR= ${DISTVERSION} +DISTNAME= ${PORTNAME}-${DISTVERSION} MAINTAINER= DougB@FreeBSD.org +DISTVERSION= ${PORTVERSION:S/.p/rc/} +LATEST_LINK= bind9 + GNU_CONFIGURE= yes CONFIGURE_ARGS= --localstatedir=/var --disable-linux-caps @@ -78,7 +82,6 @@ lwresd.8 named-checkconf.8 named-checkzone.8 named.8 nsupdate.8 \ rndc-confgen.8 rndc.8 -WRKSRC= ${WRKDIR}/bind-${PORTVERSION} DIR= ${WRKSRC}/bin/ post-patch: .for FILE in check/named-checkconf.8 named/named.8 nsupdate/nsupdate.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 17 0:38: 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 887B337B402; Sun, 17 Mar 2002 00:38:03 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2H8c3I85836; Sun, 17 Mar 2002 00:38:03 -0800 (PST) (envelope-from dougb) Message-Id: <200203170838.g2H8c3I85836@freefall.freebsd.org> From: Doug Barton Date: Sun, 17 Mar 2002 00:38:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dougb 2002/03/17 00:38:03 PST Modified files: etc rc Log: Add a late rc.sysctl pass to catch sysctl's for things that were not loaded yet on the first pass. PR: conf/19629 Submitted by: Stephen J. Roznowski Revision Changes Path 1.301 +9 -2 src/etc/rc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 0:48:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 35E4537B417; Sun, 17 Mar 2002 00:48:08 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2H8m8f86829; Sun, 17 Mar 2002 00:48:08 -0800 (PST) (envelope-from murray) Message-Id: <200203170848.g2H8m8f86829@freefall.freebsd.org> From: Murray Stokely Date: Sun, 17 Mar 2002 00:48:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/readme article.sgml src/release/doc/share/sgml release.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2002/03/17 00:48:08 PST Modified files: release/doc/en_US.ISO8859-1/readme article.sgml release/doc/share/sgml release.ent Log: Add a new entity for the previous stable release. For the most part, the release notes compare 5.0-CURRENT to 4.0-RELEASE, but in at least one place it is beneficial to mention the last stable release of FreeBSD (4.5-RELEASE). Reviewed by: bmah Revision Changes Path 1.15 +2 -2 src/release/doc/en_US.ISO8859-1/readme/article.sgml 1.3 +6 -1 src/release/doc/share/sgml/release.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 1: 1: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 6636537B404; Sun, 17 Mar 2002 01:01:41 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2H91fw87985; Sun, 17 Mar 2002 01:01:41 -0800 (PST) (envelope-from phk) Message-Id: <200203170901.g2H91fw87985@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sun, 17 Mar 2002 01:01:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/newfs Makefile mkfs.c newfs.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/17 01:01:41 PST Modified files: sbin/newfs Makefile mkfs.c newfs.c Log: Remove __P() and register. Set WARNS=2 This is the beginning of a pre-UFS2 cleanup of newfs. Sponsored by: DARPA, NAI Labs Revision Changes Path 1.15 +1 -1 src/sbin/newfs/Makefile 1.42 +24 -24 src/sbin/newfs/mkfs.c 1.47 +7 -7 src/sbin/newfs/newfs.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 17 1: 9:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 886C737B404; Sun, 17 Mar 2002 01:09:11 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2H99Ba92306; Sun, 17 Mar 2002 01:09:11 -0800 (PST) (envelope-from maxim) Message-Id: <200203170909.g2H99Ba92306@freefall.freebsd.org> From: Maxim Konovalov Date: Sun, 17 Mar 2002 01:09:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys fcntl.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG maxim 2002/03/17 01:09:11 PST Modified files: (Branch: RELENG_4) lib/libc/sys fcntl.2 Log: MFC rev. 1.36: clarify fcntl(2) and flock(2) interoperability. Revision Changes Path 1.16.2.11 +7 -1 src/lib/libc/sys/fcntl.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 1:12:53 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9978837B402; Sun, 17 Mar 2002 01:12:50 -0800 (PST) Received: (from schweikh@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2H9CoL92788; Sun, 17 Mar 2002 01:12:50 -0800 (PST) (envelope-from schweikh) Message-Id: <200203170912.g2H9CoL92788@freefall.freebsd.org> From: Jens Schweikhardt Date: Sun, 17 Mar 2002 01:12:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 route.4 src/share/man/man9 rtentry.9 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG schweikh 2002/03/17 01:12:50 PST Modified files: (Branch: RELENG_4) share/man/man4 route.4 share/man/man9 rtentry.9 Log: MFC: typo fixes. Revision Changes Path 1.9.2.6 +1 -1 src/share/man/man4/route.4 1.11.2.6 +1 -1 src/share/man/man9/rtentry.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 1:13:31 2002 Delivered-To: cvs-all@freebsd.org Received: from bremen.shuttle.de (bremen.shuttle.de [194.95.249.251]) by hub.freebsd.org (Postfix) with ESMTP id A3B0737B400; Sun, 17 Mar 2002 01:13:24 -0800 (PST) Received: from bremen.shuttle.de (localhost [127.0.0.1]) by bremen.shuttle.de (Postfix) with ESMTP id D9E6717D6C; Sun, 17 Mar 2002 10:13:22 +0100 (CET) Received: (from uucp@localhost) by bremen.shuttle.de (8.12.1/8.12.1/Debian -5) with UUCP id g2H9DMHY002847; Sun, 17 Mar 2002 10:13:22 +0100 Received: (from schweikh@localhost) by hal9000.schweikhardt.net (8.12.2/8.11.6) id g2H98D3N001241; Sun, 17 Mar 2002 10:08:13 +0100 (CET) (envelope-from schweikh) Date: Sun, 17 Mar 2002 10:08:13 +0100 From: Jens Schweikhardt To: Greg Lehey Cc: Jens Schweikhardt , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man4 ng_pptpgre.4 Message-ID: <20020317100813.A891@schweikhardt.net> References: <200203161756.g2GHufn20522@freefall.freebsd.org> <20020317103642.E61310@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020317103642.E61310@wantadilla.lemis.com>; from grog@FreeBSD.org on Sun, Mar 17, 2002 at 10:36:42AM +1030 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Greg, On Sun, Mar 17, 2002 at 10:36:42AM +1030, Greg Lehey wrote: # On Saturday, 16 March 2002 at 9:56:41 -0800, Jens Schweikhardt wrote: # > schweikh 2002/03/16 09:56:41 PST # > # > Modified files: # > share/man/man4 ng_pptpgre.4 # > Log: # > Typo: s/acknowlegement/acknowledgement/ # # Why? s/acknowledgement/acknowledgment/ # # ispell is your friend. Did you ask it? Because I did: schweikh@hal9000:~ $ ispell @(#) International Ispell Version 3.2.05 07/23/01 word: acknowlegement how about: acknowledgement Maybe we're using different dictionaries. And the ispell on freefall thinks it's wrong but doesn't even display any corrections. So I trusted my ispell *and* what I found in my heavy English-German dictionary. Regards, Jens -- Jens Schweikhardt http://www.schweikhardt.net/ SIGSIG -- signature too long (core dumped) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 1:14: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 4218037B402; Sun, 17 Mar 2002 01:14:54 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2H9Esj92950; Sun, 17 Mar 2002 01:14:54 -0800 (PST) (envelope-from cjc) Message-Id: <200203170914.g2H9Esj92950@freefall.freebsd.org> From: "Crist J. Clark" Date: Sun, 17 Mar 2002 01:14:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man8 Makefile rc.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 cjc 2002/03/17 01:14:54 PST Modified files: share/man/man8 Makefile rc.8 Log: Add documentation for rc.early(8). PR: misc/35992 MFC after: 3 days Revision Changes Path 1.25 +1 -1 src/share/man/man8/Makefile 1.16 +5 -1 src/share/man/man8/rc.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 17 1:33:22 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9417837B400; Sun, 17 Mar 2002 01:33:15 -0800 (PST) Received: (from hm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2H9XF595143; Sun, 17 Mar 2002 01:33:15 -0800 (PST) (envelope-from hm) Message-Id: <200203170933.g2H9XF595143@freefall.freebsd.org> From: Hellmuth Michaelis Date: Sun, 17 Mar 2002 01:33:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/include i4b_cause.h i4b_debug.h i4b_ioctl.h i4b_rbch_ioctl.h i4b_tel_ioctl.h i4b_trace.h src/sys/i4b/capi capi_l4if.c src/sys/i4b/capi/iavc iavc_isa.c iavc_lli.c iavc_pci.c src/sys/i4b/driver i4b_ctl.c i4b_ing.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG hm 2002/03/17 01:33:15 PST Modified files: sys/i386/include i4b_cause.h i4b_debug.h i4b_ioctl.h i4b_rbch_ioctl.h i4b_tel_ioctl.h i4b_trace.h sys/i4b/capi capi_l4if.c sys/i4b/capi/iavc iavc_isa.c iavc_lli.c iavc_pci.c sys/i4b/driver i4b_ctl.c i4b_ing.c i4b_ipr.c i4b_isppp.c i4b_rbch.c i4b_tel.c i4b_trace.c sys/i4b/include i4b_global.h i4b_isdnq931.h i4b_l1l2.h i4b_l2l3.h i4b_l3l4.h i4b_mbuf.h sys/i4b/layer1/isic i4b_bchan.c i4b_hscx.c sys/i4b/layer2 i4b_iframe.c i4b_l2.c i4b_l2.h i4b_l2fsm.c i4b_l2fsm.h i4b_l2timer.c i4b_lme.c i4b_mbuf.c i4b_sframe.c i4b_tei.c i4b_uframe.c i4b_util.c sys/i4b/layer3 i4b_l3fsm.c i4b_l3fsm.h i4b_l3timer.c i4b_l4if.c i4b_q931.c i4b_q932fac.c i4b_q932fac.h sys/i4b/layer4 i4b_i4bdrv.c i4b_l4.c i4b_l4mgmt.c i4b_l4timer.c Log: Clean up the i4b kernel part: remove unmaintained #if(def)s for NetBSD, OpenBSD and BSD/OS and respective code, remove pre $FreeBSD CVS id's, remove #if(def)s and respective code for FreeBSD versions < 5 . Revision Changes Path 1.8 +2 -4 src/sys/i386/include/i4b_cause.h 1.11 +2 -2 src/sys/i386/include/i4b_debug.h 1.18 +4 -2 src/sys/i386/include/i4b_ioctl.h 1.5 +2 -4 src/sys/i386/include/i4b_rbch_ioctl.h 1.9 +2 -2 src/sys/i386/include/i4b_tel_ioctl.h 1.8 +2 -4 src/sys/i386/include/i4b_trace.h 1.3 +0 -2 src/sys/i4b/capi/capi_l4if.c 1.3 +1 -3 src/sys/i4b/capi/iavc/iavc_isa.c 1.3 +2 -5 src/sys/i4b/capi/iavc/iavc_lli.c 1.3 +0 -2 src/sys/i4b/capi/iavc/iavc_pci.c 1.17 +9 -135 src/sys/i4b/driver/i4b_ctl.c 1.13 +4 -19 src/sys/i4b/driver/i4b_ing.c 1.15 +18 -223 src/sys/i4b/driver/i4b_ipr.c 1.17 +11 -104 src/sys/i4b/driver/i4b_isppp.c 1.20 +22 -232 src/sys/i4b/driver/i4b_rbch.c 1.22 +19 -130 src/sys/i4b/driver/i4b_tel.c 1.18 +13 -113 src/sys/i4b/driver/i4b_trace.c 1.10 +3 -75 src/sys/i4b/include/i4b_global.h 1.8 +2 -4 src/sys/i4b/include/i4b_isdnq931.h 1.8 +2 -9 src/sys/i4b/include/i4b_l1l2.h 1.8 +2 -5 src/sys/i4b/include/i4b_l2l3.h 1.10 +3 -24 src/sys/i4b/include/i4b_l3l4.h 1.8 +2 -4 src/sys/i4b/include/i4b_mbuf.h 1.9 +2 -6 src/sys/i4b/layer1/isic/i4b_bchan.c 1.8 +4 -14 src/sys/i4b/layer1/isic/i4b_hscx.c 1.11 +4 -19 src/sys/i4b/layer2/i4b_iframe.c 1.15 +4 -27 src/sys/i4b/layer2/i4b_l2.c 1.8 +2 -12 src/sys/i4b/layer2/i4b_l2.h 1.11 +4 -18 src/sys/i4b/layer2/i4b_l2fsm.c 1.8 +2 -5 src/sys/i4b/layer2/i4b_l2fsm.h 1.11 +4 -18 src/sys/i4b/layer2/i4b_l2timer.c 1.12 +4 -19 src/sys/i4b/layer2/i4b_lme.c 1.13 +5 -30 src/sys/i4b/layer2/i4b_mbuf.c 1.12 +4 -18 src/sys/i4b/layer2/i4b_sframe.c 1.13 +4 -43 src/sys/i4b/layer2/i4b_tei.c 1.12 +4 -18 src/sys/i4b/layer2/i4b_uframe.c 1.13 +4 -18 src/sys/i4b/layer2/i4b_util.c 1.14 +4 -20 src/sys/i4b/layer3/i4b_l3fsm.c 1.8 +2 -4 src/sys/i4b/layer3/i4b_l3fsm.h 1.10 +4 -19 src/sys/i4b/layer3/i4b_l3timer.c 1.12 +4 -19 src/sys/i4b/layer3/i4b_l4if.c 1.13 +2 -22 src/sys/i4b/layer3/i4b_q931.c 1.11 +4 -19 src/sys/i4b/layer3/i4b_q932fac.c 1.8 +2 -4 src/sys/i4b/layer3/i4b_q932fac.h 1.25 +17 -202 src/sys/i4b/layer4/i4b_i4bdrv.c 1.12 +7 -35 src/sys/i4b/layer4/i4b_l4.c 1.12 +7 -45 src/sys/i4b/layer4/i4b_l4mgmt.c 1.10 +3 -14 src/sys/i4b/layer4/i4b_l4timer.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 17 1:52: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 4358D37B405; Sun, 17 Mar 2002 01:52:43 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2H9qhx97568; Sun, 17 Mar 2002 01:52:43 -0800 (PST) (envelope-from cjc) Message-Id: <200203170952.g2H9qhx97568@freefall.freebsd.org> From: "Crist J. Clark" Date: Sun, 17 Mar 2002 01:52:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc src/share/man/man5 rc.conf.5 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-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/17 01:52:43 PST Modified files: (Branch: RELENG_4) etc rc share/man/man5 rc.conf.5 Log: MFC: Don't protect dumpon(8) and dumpdir(8) from failing. Move dumpon(8) to very early in the rc(8) script so crashes during boot may be caught. Update the documentation. src/etc/rc 1.297, 1.298 src/share/man/man5/rc.conf.5 1.137, 1.154 PR: conf/35725 Revision Changes Path 1.212.2.44 +24 -14 src/etc/rc 1.64.2.41 +24 -10 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 1:53: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 D67C437B416; Sun, 17 Mar 2002 01:53:21 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2H9rLn97695; Sun, 17 Mar 2002 01:53:21 -0800 (PST) (envelope-from bde) Message-Id: <200203170953.g2H9rLn97695@freefall.freebsd.org> From: Bruce Evans Date: Sun, 17 Mar 2002 01:53:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure/lib/libcrypto Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bde 2002/03/17 01:53:21 PST Modified files: secure/lib/libcrypto Makefile Log: Fixed some style bugs. Mainly, don't use ${.ALLSRC} in implicit rules. This change should have been in rev.1.37. Revision Changes Path 1.42 +3 -3 src/secure/lib/libcrypto/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 17 2: 0:59 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2CA2237B402; Sun, 17 Mar 2002 02:00:56 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HA0uI98452; Sun, 17 Mar 2002 02:00:56 -0800 (PST) (envelope-from markm) Message-Id: <200203171000.g2HA0uI98452@freefall.freebsd.org> From: Mark Murray Date: Sun, 17 Mar 2002 02:00:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/xlint Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/17 02:00:56 PST Modified files: usr.bin/xlint Makefile Log: Build lint libraries. Revision Changes Path 1.12 +2 -2 src/usr.bin/xlint/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 17 2: 6: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B356337B404; Sun, 17 Mar 2002 02:05:57 -0800 (PST) Received: (from markm@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HA5vt02562; Sun, 17 Mar 2002 02:05:57 -0800 (PST) (envelope-from markm) Message-Id: <200203171005.g2HA5vt02562@freefall.freebsd.org> From: Mark Murray Date: Sun, 17 Mar 2002 02:05:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.lib.mk sys.mk src/sys/conf kern.post.mk kmod.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 markm 2002/03/17 02:05:57 PST Modified files: share/mk bsd.lib.mk sys.mk sys/conf kern.post.mk kmod.mk Log: Allow "make lint" to mostly work. Our sources are very unclean WRT lint, so this is turned off by default. Setting WANT_LINT will turn on generation of lint libraries for /usr/libdata/lint/*.ln. Reviewd by: silence in -audit. Revision Changes Path 1.104 +34 -7 src/share/mk/bsd.lib.mk 1.57 +5 -2 src/share/mk/sys.mk 1.11 +3 -0 src/sys/conf/kern.post.mk 1.114 +3 -0 src/sys/conf/kmod.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 17 2: 9:17 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D3D2F37B405; Sun, 17 Mar 2002 02:09:13 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HA9DV03228; Sun, 17 Mar 2002 02:09:13 -0800 (PST) (envelope-from ue) Message-Id: <200203171009.g2HA9DV03228@freefall.freebsd.org> From: Udo Erdelhoff Date: Sun, 17 Mar 2002 02:09:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook/users chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/03/17 02:09:13 PST Modified files: de_DE.ISO8859-1/books/handbook/users chapter.sgml Log: MFen 1.32 Revision Changes Path 1.3 +545 -110 doc/de_DE.ISO8859-1/books/handbook/users/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 3: 7:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C3C5937B405; Sun, 17 Mar 2002 03:07:45 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HB7jl13234; Sun, 17 Mar 2002 03:07:45 -0800 (PST) (envelope-from alfred) Message-Id: <200203171107.g2HB7jl13234@freefall.freebsd.org> From: Alfred Perlstein Date: Sun, 17 Mar 2002 03:07:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys module.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/03/17 03:07:45 PST Modified files: (Branch: RELENG_4) sys/sys module.h Log: constify the 'name' field of 'struct moduledata' to avoid warnings when using WARNS=2. Revision Changes Path 1.14.2.3 +1 -1 src/sys/sys/module.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 3: 8:42 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1F47337B416; Sun, 17 Mar 2002 03:08:39 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HB8ca13450; Sun, 17 Mar 2002 03:08:38 -0800 (PST) (envelope-from alfred) Message-Id: <200203171108.g2HB8ca13450@freefall.freebsd.org> From: Alfred Perlstein Date: Sun, 17 Mar 2002 03:08:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys sysctl.h sysent.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/03/17 03:08:38 PST Modified files: (Branch: RELENG_4) sys/sys sysctl.h sysent.h Log: fill out structures in their entirety in module helper macros to avoid warnings. Revision Changes Path 1.81.2.8 +2 -2 src/sys/sys/sysctl.h 1.27.2.5 +1 -1 src/sys/sys/sysent.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 17 3:21:37 2002 Delivered-To: cvs-all@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by hub.freebsd.org (Postfix) with ESMTP id 7AD6437B404; Sun, 17 Mar 2002 03:21:30 -0800 (PST) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g2HBLNUD053138; Sun, 17 Mar 2002 12:21:24 +0100 (CET) (envelope-from phk@critter.freebsd.dk) To: Hellmuth Michaelis Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/include i4b_cause.h i4b_debug.h i4b_ioctl.h i4b_rbch_ioctl.h i4b_tel_ioctl.h i4b_trace.h src/sys/i4b/capi capi_l4if.c src/sys/i4b/capi/iavc iavc_isa.c iavc_lli.c iavc_pci.c src/sys/i4b/driver i4b_ctl.c i4b_ing.c ... In-Reply-To: Your message of "Sun, 17 Mar 2002 01:33:15 PST." <200203170933.g2H9XF595143@freefall.freebsd.org> Date: Sun, 17 Mar 2002 12:21:23 +0100 Message-ID: <53137.1016364083@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <200203170933.g2H9XF595143@freefall.freebsd.org>, Hellmuth Michaelis writes: >hm 2002/03/17 01:33:15 PST > > Log: > Clean up the i4b kernel part: remove unmaintained #if(def)s for NetBSD, > OpenBSD and BSD/OS and respective code, remove pre $FreeBSD CVS id's, > remove #if(def)s and respective code for FreeBSD versions < 5 . Bravo! -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 4: 5:59 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 48EDE37B405; Sun, 17 Mar 2002 04:05:56 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HC5ur28994; Sun, 17 Mar 2002 04:05:56 -0800 (PST) (envelope-from ue) Message-Id: <200203171205.g2HC5ur28994@freefall.freebsd.org> From: Udo Erdelhoff Date: Sun, 17 Mar 2002 04:05:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/share/sgml catalog teams.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/03/17 04:05:56 PST Modified files: de_DE.ISO8859-1/share/sgml catalog Added files: de_DE.ISO8859-1/share/sgml teams.ent Log: Add a German version of the team entities Revision Changes Path 1.3 +5 -2 doc/de_DE.ISO8859-1/share/sgml/catalog 1.1 +30 -0 doc/de_DE.ISO8859-1/share/sgml/teams.ent (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 17 4: 9:17 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AC7B537B416; Sun, 17 Mar 2002 04:09:03 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HC93U30548; Sun, 17 Mar 2002 04:09:03 -0800 (PST) (envelope-from ijliao) Message-Id: <200203171209.g2HC93U30548@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sun, 17 Mar 2002 04:09:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/newt Makefile distinfo pkg-descr pkg-plist ports/devel/newt/files patch-ab setup.py X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/17 04:09:03 PST Modified files: devel/newt Makefile distinfo pkg-descr pkg-plist devel/newt/files patch-ab Added files: devel/newt/files setup.py Log: - Update to 0.50.33-1 - make TCL and Python module optional. - take a maintainership PR: 36001 Submitted by: Hye-Shik Chang Revision Changes Path 1.15 +48 -12 ports/devel/newt/Makefile 1.3 +1 -1 ports/devel/newt/distinfo 1.3 +97 -44 ports/devel/newt/files/patch-ab 1.1 +15 -0 ports/devel/newt/files/setup.py (new) 1.3 +6 -6 ports/devel/newt/pkg-descr 1.4 +7 -5 ports/devel/newt/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 17 4: 9:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A6FCE37B402; Sun, 17 Mar 2002 04:09:13 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HC9Dt30589; Sun, 17 Mar 2002 04:09:13 -0800 (PST) (envelope-from ue) Message-Id: <200203171209.g2HC9Dt30589@freefall.freebsd.org> From: Udo Erdelhoff Date: Sun, 17 Mar 2002 04:09:13 -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/17 04:09:13 PST Modified files: de_DE.ISO8859-1/books/faq book.sgml Log: MFbed: - mark 1.416 as done (no-op whitespace fix) - Fix use of mailing liste entities - use German version of the team entities Revision Changes Path 1.15 +12 -12 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 17 4:12:53 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 86B8C37B419; Sun, 17 Mar 2002 04:12:50 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HCCoC31142; Sun, 17 Mar 2002 04:12:50 -0800 (PST) (envelope-from ue) Message-Id: <200203171212.g2HCCoC31142@freefall.freebsd.org> From: Udo Erdelhoff Date: Sun, 17 Mar 2002 04:12:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/share/sgml mailing-lists.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/03/17 04:12:50 PST Modified files: de_DE.ISO8859-1/share/sgml mailing-lists.ent Log: Fix usage of mailing list entities - do not translate the names to make clear that these are english lists - drop the words mailing lists from all entities - enclose names in '' to clarify that they are names Revision Changes Path 1.4 +77 -74 doc/de_DE.ISO8859-1/share/sgml/mailing-lists.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 4:18:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B3FF437B41B; Sun, 17 Mar 2002 04:18:05 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HCI5831637; Sun, 17 Mar 2002 04:18:05 -0800 (PST) (envelope-from sobomax) Message-Id: <200203171218.g2HCI5831637@freefall.freebsd.org> From: Maxim Sobolev Date: Sun, 17 Mar 2002 04:18:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/i386/loader conf.c src/lib/libstand Makefile bzipfs.c splitfs.c stand.h zipfs.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/17 04:18:05 PST Modified files: sys/boot/i386/loader conf.c lib/libstand Makefile bzipfs.c stand.h zipfs.c Added files: lib/libstand splitfs.c Log: Add splitfs vfs layer into libstand, which allows loading big kernels and modules split across several physical medias. Following is how it works: The splitfs code, when asked to open "foo" looks for a file "foo.split" which is a text file containing a list of filenames and media names, e.g. foo.aa "Kernel floppy 1" foo.ab "Kernel floppy 2" foo.ac "Kernel and modules floppy" For each file segment, the process is: - try to open the file - prompt "Insert the disk labelled and press any key..." - try to open the file - return error if file could not be located RE team is free to use this feature in the upcoming 5.0-DP1. Reviewed by: msmith, dcs Revision Changes Path 1.28 +1 -0 src/lib/libstand/Makefile 1.4 +1 -1 src/lib/libstand/bzipfs.c 1.1 +287 -0 src/lib/libstand/splitfs.c (new) 1.30 +1 -0 src/lib/libstand/stand.h 1.9 +1 -1 src/lib/libstand/zipfs.c 1.19 +1 -0 src/sys/boot/i386/loader/conf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 4:18: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 B3F9F37B417; Sun, 17 Mar 2002 04:18:09 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HCI9A31667; Sun, 17 Mar 2002 04:18:09 -0800 (PST) (envelope-from ue) Message-Id: <200203171218.g2HCI9A31667@freefall.freebsd.org> From: Udo Erdelhoff Date: Sun, 17 Mar 2002 04:18:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook/boot chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/03/17 04:18:09 PST Modified files: de_DE.ISO8859-1/books/handbook/boot chapter.sgml Log: MFbed: language fix Revision Changes Path 1.3 +4 -4 doc/de_DE.ISO8859-1/books/handbook/boot/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 4:20: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 5A67537B405; Sun, 17 Mar 2002 04:20:28 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HCKSC32003; Sun, 17 Mar 2002 04:20:28 -0800 (PST) (envelope-from ue) Message-Id: <200203171220.g2HCKSC32003@freefall.freebsd.org> From: Udo Erdelhoff Date: Sun, 17 Mar 2002 04:20:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook/ports chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/03/17 04:20:28 PST Modified files: de_DE.ISO8859-1/books/handbook/ports chapter.sgml Log: Add $FreeBSDde$ ID to help track changes in the DE repository Revision Changes Path 1.4 +2 -1 doc/de_DE.ISO8859-1/books/handbook/ports/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 4:22:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 180AD37B404; Sun, 17 Mar 2002 04:22:09 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HCM9G32382; Sun, 17 Mar 2002 04:22:09 -0800 (PST) (envelope-from ue) Message-Id: <200203171222.g2HCM9G32382@freefall.freebsd.org> From: Udo Erdelhoff Date: Sun, 17 Mar 2002 04:22:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook book.sgml doc/de_DE.ISO8859-1/books/handbook/backups chapter.sgml doc/de_DE.ISO8859-1/books/handbook/kernelconfig chapter.sgml doc/de_DE.ISO8859-1/books/handbook/serialcomms chapter.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/03/17 04:22:09 PST Modified files: de_DE.ISO8859-1/books/handbook book.sgml de_DE.ISO8859-1/books/handbook/backups chapter.sgml de_DE.ISO8859-1/books/handbook/kernelconfig chapter.sgml de_DE.ISO8859-1/books/handbook/serialcomms chapter.sgml Log: MFbed: language fixes after the changes in the mailing list entities Revision Changes Path 1.5 +2 -2 doc/de_DE.ISO8859-1/books/handbook/backups/chapter.sgml 1.19 +2 -2 doc/de_DE.ISO8859-1/books/handbook/book.sgml 1.3 +2 -2 doc/de_DE.ISO8859-1/books/handbook/kernelconfig/chapter.sgml 1.2 +2 -2 doc/de_DE.ISO8859-1/books/handbook/serialcomms/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 4:25:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 547C737B402; Sun, 17 Mar 2002 04:25:49 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HCPn532767; Sun, 17 Mar 2002 04:25:49 -0800 (PST) (envelope-from sobomax) Message-Id: <200203171225.g2HCPn532767@freefall.freebsd.org> From: Maxim Sobolev Date: Sun, 17 Mar 2002 04:25:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/i386/loader conf.c src/lib/libstand Makefile bzipfs.c splitfs.c stand.h zipfs.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/17 04:25:49 PST Modified files: sys/boot/i386/loader conf.c lib/libstand Makefile bzipfs.c splitfs.c stand.h zipfs.c Log: (forced) Splitfs is subject of: MFC after: 2 weeks Revision Changes Path 1.29 +0 -0 src/lib/libstand/Makefile 1.5 +0 -0 src/lib/libstand/bzipfs.c 1.2 +0 -0 src/lib/libstand/splitfs.c 1.31 +0 -0 src/lib/libstand/stand.h 1.10 +0 -0 src/lib/libstand/zipfs.c 1.20 +0 -0 src/sys/boot/i386/loader/conf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 4:35: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 F1B0537B400; Sun, 17 Mar 2002 04:35:19 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HCZJU34123; Sun, 17 Mar 2002 04:35:19 -0800 (PST) (envelope-from ue) Message-Id: <200203171235.g2HCZJU34123@freefall.freebsd.org> From: Udo Erdelhoff Date: Sun, 17 Mar 2002 04:35:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/hardware/i386 proc-i386.sgml src/release/doc/de_DE.ISO8859-1/installation/common install.sgml src/release/doc/de_DE.ISO8859-1/installation/sparc64 install.sgml src/release/doc/de_DE.ISO8859-1/readme article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/03/17 04:35:19 PST Modified files: release/doc/de_DE.ISO8859-1/hardware/i386 proc-i386.sgml release/doc/de_DE.ISO8859-1/installation/common install.sgml release/doc/de_DE.ISO8859-1/installation/sparc64 install.sgml release/doc/de_DE.ISO8859-1/readme article.sgml Log: MFbed: language fixes after the mailing list change Revision Changes Path 1.2 +3 -3 src/release/doc/de_DE.ISO8859-1/hardware/i386/proc-i386.sgml 1.2 +2 -2 src/release/doc/de_DE.ISO8859-1/installation/common/install.sgml 1.2 +8 -8 src/release/doc/de_DE.ISO8859-1/installation/sparc64/install.sgml 1.2 +7 -7 src/release/doc/de_DE.ISO8859-1/readme/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 4:59: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 3472D37B41A; Sun, 17 Mar 2002 04:58:55 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HCwtv36392; Sun, 17 Mar 2002 04:58:55 -0800 (PST) (envelope-from sobomax) Message-Id: <200203171258.g2HCwtv36392@freefall.freebsd.org> From: Maxim Sobolev Date: Sun, 17 Mar 2002 04:58:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/py-gtk Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/17 04:58:55 PST Modified files: x11-toolkits/py-gtk Makefile Log: Replace USE_GNOME with USE_GNOMELIBS + libglade in LIB_DEPENDS - this reduces length of dependency chain from 50 ports to only 39. Submitted by: Joe Marcus Clarke Revision Changes Path 1.49 +3 -2 ports/x11-toolkits/py-gtk/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 17 5: 1: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 E5B4237B405; Sun, 17 Mar 2002 05:01:41 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HD1f036930; Sun, 17 Mar 2002 05:01:41 -0800 (PST) (envelope-from ue) Message-Id: <200203171301.g2HD1f036930@freefall.freebsd.org> From: Udo Erdelhoff Date: Sun, 17 Mar 2002 05:01:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/errata article.sgml src/release/doc/de_DE.ISO8859-1/hardware/alpha article.sgml src/release/doc/de_DE.ISO8859-1/hardware/i386 article.sgml src/release/doc/de_DE.ISO8859-1/installation/alpha article.sgml src/release/doc/de_DE.ISO8859-1/installation/i386 article.sgml src/release/doc/de_DE.ISO8859-1/relnotes/alpha article.sgml ... X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/03/17 05:01:41 PST Modified files: (Branch: RELENG_4) release/doc/de_DE.ISO8859-1/errata article.sgml release/doc/de_DE.ISO8859-1/hardware/alpha article.sgml release/doc/de_DE.ISO8859-1/hardware/i386 article.sgml release/doc/de_DE.ISO8859-1/installation/alpha article.sgml release/doc/de_DE.ISO8859-1/installation/i386 article.sgml release/doc/de_DE.ISO8859-1/relnotes/alpha article.sgml release/doc/de_DE.ISO8859-1/relnotes/i386 article.sgml Log: Switch to the German Version of the release entities Revision Changes Path 1.1.2.2 +2 -2 src/release/doc/de_DE.ISO8859-1/errata/article.sgml 1.1.2.2 +2 -2 src/release/doc/de_DE.ISO8859-1/hardware/alpha/article.sgml 1.1.2.2 +2 -2 src/release/doc/de_DE.ISO8859-1/hardware/i386/article.sgml 1.1.2.2 +2 -2 src/release/doc/de_DE.ISO8859-1/installation/alpha/article.sgml 1.1.2.2 +2 -2 src/release/doc/de_DE.ISO8859-1/installation/i386/article.sgml 1.1.2.2 +2 -2 src/release/doc/de_DE.ISO8859-1/relnotes/alpha/article.sgml 1.1.2.2 +2 -2 src/release/doc/de_DE.ISO8859-1/relnotes/i386/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 5: 8:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8633F37B404; Sun, 17 Mar 2002 05:08:37 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HD8bZ41138; Sun, 17 Mar 2002 05:08:37 -0800 (PST) (envelope-from ue) Message-Id: <200203171308.g2HD8bZ41138@freefall.freebsd.org> From: Udo Erdelhoff Date: Sun, 17 Mar 2002 05:08:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/hardware/i386 proc-i386.sgml src/release/doc/de_DE.ISO8859-1/installation/common install.sgml src/release/doc/de_DE.ISO8859-1/readme article.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-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/17 05:08:37 PST Modified files: (Branch: RELENG_4) release/doc/de_DE.ISO8859-1/hardware/i386 proc-i386.sgml release/doc/de_DE.ISO8859-1/installation/common install.sgml release/doc/de_DE.ISO8859-1/readme article.sgml Log: MFC: language fixes after the mailing list entities changes Revision Changes Path 1.1.2.2 +3 -3 src/release/doc/de_DE.ISO8859-1/hardware/i386/proc-i386.sgml 1.1.2.2 +2 -2 src/release/doc/de_DE.ISO8859-1/installation/common/install.sgml 1.1.2.2 +7 -7 src/release/doc/de_DE.ISO8859-1/readme/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 5: 9:38 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CA13D37B402; Sun, 17 Mar 2002 05:09:35 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HD9ZD41214; Sun, 17 Mar 2002 05:09:35 -0800 (PST) (envelope-from ru) Message-Id: <200203171309.g2HD9ZD41214@freefall.freebsd.org> From: Ruslan Ermilov Date: Sun, 17 Mar 2002 05:09:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 core.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/17 05:09:35 PST Modified files: share/man/man5 core.5 Log: mdoc(7) police: misc fixes. Revision Changes Path 1.16 +15 -10 src/share/man/man5/core.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 5:12:22 2002 Delivered-To: cvs-all@freebsd.org Received: from castle.jp.FreeBSD.org (castle.jp.FreeBSD.org [210.226.20.15]) by hub.freebsd.org (Postfix) with ESMTP id B0E8A37B405; Sun, 17 Mar 2002 05:12:18 -0800 (PST) Received: from localhost (localhost [::1]) by castle.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) with ESMTP/inet6 id g2HDCGc63551; Sun, 17 Mar 2002 22:12:16 +0900 (JST) (envelope-from matusita@jp.FreeBSD.org) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200203170838.g2H8c3I85836@freefall.freebsd.org> References: <200203170838.g2H8c3I85836@freefall.freebsd.org> X-User-Agent: Mew/1.94.2 XEmacs/21.5 (bamboo) X-FaceAnim: (-O_O-)(O_O- )(_O- )(O- )(- -)( -O)( -O_)( -O_O)(-O_O-) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Dispatcher: imput version 20000228(IM140) Lines: 13 From: Makoto Matsushita To: dougb@FreeBSD.org Subject: Re: cvs commit: src/etc rc Date: Sun, 17 Mar 2002 22:12:13 +0900 Message-Id: <20020317221213Y.matusita@jp.FreeBSD.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dougb> Modified files: dougb> etc rc dougb> Log: dougb> Add a late rc.sysctl pass to catch sysctl's for things that were dougb> not loaded yet on the first pass. Are there any chances that we can distinguish "the early phase" and "the latter phase" inside /etc/rc.sysctl? Many sticklers for cleanliness don't want to set the same kernel MIB twice :-) -- - Makoto `MAR' Matsushita To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 5:14:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 18A4037B417; Sun, 17 Mar 2002 05:14:14 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HDEEx41698; Sun, 17 Mar 2002 05:14:14 -0800 (PST) (envelope-from ru) Message-Id: <200203171314.g2HDEEx41698@freefall.freebsd.org> From: Ruslan Ermilov Date: Sun, 17 Mar 2002 05:14:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 make.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/17 05:14:14 PST Modified files: share/man/man5 make.conf.5 Log: mdoc(7) police: fix a typo in rev. 1.36 and markup nit in rev. 1.37. Revision Changes Path 1.38 +2 -2 src/share/man/man5/make.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 5:43:45 2002 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 6537837B400; Sun, 17 Mar 2002 05:43:34 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g2HDhTi56311; Sun, 17 Mar 2002 06:43:29 -0700 (MST) (envelope-from imp@village.org) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id g2HDhSL73751; Sun, 17 Mar 2002 06:43:28 -0700 (MST) (envelope-from imp@village.org) Date: Sun, 17 Mar 2002 06:42:55 -0700 (MST) Message-Id: <20020317.064255.97597078.imp@village.org> To: matusita@jp.FreeBSD.org Cc: dougb@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc From: "M. Warner Losh" In-Reply-To: <20020317221213Y.matusita@jp.FreeBSD.org> References: <200203170838.g2H8c3I85836@freefall.freebsd.org> <20020317221213Y.matusita@jp.FreeBSD.org> X-Mailer: Mew version 2.1 on Emacs 21.1 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message: <20020317221213Y.matusita@jp.FreeBSD.org> Makoto Matsushita writes: : : dougb> Modified files: : dougb> etc rc : dougb> Log: : dougb> Add a late rc.sysctl pass to catch sysctl's for things that were : dougb> not loaded yet on the first pass. : : Are there any chances that we can distinguish "the early phase" and : "the latter phase" inside /etc/rc.sysctl? Many sticklers for : cleanliness don't want to set the same kernel MIB twice :-) This is the whole reason that I let the /etc/rc.sysctl2 sit for so long in my queue without doing anything. :-( Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 5:56: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 A446737B416; Sun, 17 Mar 2002 05:56:36 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HDuau47663; Sun, 17 Mar 2002 05:56:36 -0800 (PST) (envelope-from dinoex) Message-Id: <200203171356.g2HDuau47663@freefall.freebsd.org> From: Dirk Meyer Date: Sun, 17 Mar 2002 05:56:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-toolkits/tk84/files patch-aa patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/03/17 05:56:36 PST Modified files: x11-toolkits/tk84/files patch-aa patch-ab Log: - Cleanup patches, make sure tk84 build even when tclsrc does not exist Revision Changes Path 1.17 +10 -2 ports/x11-toolkits/tk84/files/patch-aa 1.22 +1 -1 ports/x11-toolkits/tk84/files/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 6: 3:23 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D901B37B400; Sun, 17 Mar 2002 06:03:17 -0800 (PST) Received: (from dwmalone@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HE3HG48388; Sun, 17 Mar 2002 06:03:17 -0800 (PST) (envelope-from dwmalone) Message-Id: <200203171403.g2HE3HG48388@freefall.freebsd.org> From: David Malone Date: Sun, 17 Mar 2002 06:03:17 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/cron/crontab crontab.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 dwmalone 2002/03/17 06:03:17 PST Modified files: usr.sbin/cron/crontab crontab.1 Log: Describe the format of the allow and deny files. This is more-or-less the patch Matthew submitted, but I broke the lines in a more FreeBSD way and made one small wording change. PR: 31265 Submitted by: Matthew D. Fuller MFC after: 3 weeks Revision Changes Path 1.10 +5 -1 src/usr.sbin/cron/crontab/crontab.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 17 6:39: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 5F7FB37B419; Sun, 17 Mar 2002 06:39:43 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HEdhN61991; Sun, 17 Mar 2002 06:39:43 -0800 (PST) (envelope-from sobomax) Message-Id: <200203171439.g2HEdhN61991@freefall.freebsd.org> From: Maxim Sobolev Date: Sun, 17 Mar 2002 06:39:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mozilla Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/17 06:39:43 PST Modified files: www/mozilla Makefile Log: Remove gdk-pixbuf from LIB_DEPENDS - Mozilla doesn't need it anymore. Submitted by: Szilveszter Adam Revision Changes Path 1.87 +0 -1 ports/www/mozilla/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 6: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 936E337B429; Sun, 17 Mar 2002 06:50:01 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HEo1268828; Sun, 17 Mar 2002 06:50:01 -0800 (PST) (envelope-from sobomax) Message-Id: <200203171450.g2HEo1268828@freefall.freebsd.org> From: Maxim Sobolev Date: Sun, 17 Mar 2002 06:50:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/windowmaker/files patch-WPrefs.app::po::bg.po patch-WPrefs.app::po::hr.po patch-po::bg.po patch-po::el.po X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/17 06:50:01 PST Added files: x11-wm/windowmaker/files patch-WPrefs.app::po::bg.po patch-WPrefs.app::po::hr.po patch-po::bg.po patch-po::el.po Log: Fix broken catalog files (non-standard charset names). Submitted by: naddy Revision Changes Path 1.1 +14 -0 ports/x11-wm/windowmaker/files/patch-WPrefs.app::po::bg.po (new) 1.1 +14 -0 ports/x11-wm/windowmaker/files/patch-WPrefs.app::po::hr.po (new) 1.1 +14 -0 ports/x11-wm/windowmaker/files/patch-po::bg.po (new) 1.1 +16 -0 ports/x11-wm/windowmaker/files/patch-po::el.po (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 17 6:52: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 6D1DB37B41A; Sun, 17 Mar 2002 06:52:54 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HEqs269118; Sun, 17 Mar 2002 06:52:54 -0800 (PST) (envelope-from ru) Message-Id: <200203171452.g2HEqs269118@freefall.freebsd.org> From: Ruslan Ermilov Date: Sun, 17 Mar 2002 06:52:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 rc.conf.5 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/17 06:52:54 PST Modified files: share/man/man5 rc.conf.5 Log: mdoc(7) police: tidy up. Revision Changes Path 1.157 +472 -377 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 7: 1:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 627A537B420; Sun, 17 Mar 2002 07:01:29 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HF1TH70058; Sun, 17 Mar 2002 07:01:29 -0800 (PST) (envelope-from murray) Message-Id: <200203171501.g2HF1TH70058@freefall.freebsd.org> From: Murray Stokely Date: Sun, 17 Mar 2002 07:01:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 build.7 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2002/03/17 07:01:29 PST Modified files: share/man/man7 build.7 Log: Spell analogous properly. Found by: ispell(1) Revision Changes Path 1.19 +2 -2 src/share/man/man7/build.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 7: 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 1D2CE37B431; Sun, 17 Mar 2002 07:02:21 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HF2L470178; Sun, 17 Mar 2002 07:02:21 -0800 (PST) (envelope-from ru) Message-Id: <200203171502.g2HF2L470178@freefall.freebsd.org> From: Ruslan Ermilov Date: Sun, 17 Mar 2002 07:02:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 clocks.7 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/17 07:02:21 PST Modified files: share/man/man7 clocks.7 Log: mdoc(7) police: tidy up. Revision Changes Path 1.19 +54 -43 src/share/man/man7/clocks.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 7:40: 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 5FF6A37B429; Sun, 17 Mar 2002 07:40:02 -0800 (PST) Received: (from jhay@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HFe2N77769; Sun, 17 Mar 2002 07:40:02 -0800 (PST) (envelope-from jhay) Message-Id: <200203171540.g2HFe2N77769@freefall.freebsd.org> From: John Hay Date: Sun, 17 Mar 2002 07:40:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile.inc.docports X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/17 07:40:01 PST Modified files: release Makefile.inc.docports Log: Add one more dependency, graphics/jbigkit. Revision Changes Path 1.9 +2 -1 src/release/Makefile.inc.docports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 7:44:38 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CDEAC37B419; Sun, 17 Mar 2002 07:44:32 -0800 (PST) Received: (from jhay@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HFiWh78231; Sun, 17 Mar 2002 07:44:32 -0800 (PST) (envelope-from jhay) Message-Id: <200203171544.g2HFiWh78231@freefall.freebsd.org> From: John Hay Date: Sun, 17 Mar 2002 07:44:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release Makefile.inc.docports X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-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/17 07:44:32 PST Modified files: (Branch: RELENG_4) release Makefile.inc.docports Log: MFC: Add one more dependency, graphics/jbigkit. Revision Changes Path 1.1.2.5 +2 -1 src/release/Makefile.inc.docports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 7:49: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from web21104.mail.yahoo.com (web21104.mail.yahoo.com [216.136.227.106]) by hub.freebsd.org (Postfix) with SMTP id C714A37B41D for ; Sun, 17 Mar 2002 07:48:53 -0800 (PST) Message-ID: <20020317154853.84690.qmail@web21104.mail.yahoo.com> Received: from [62.254.0.5] by web21104.mail.yahoo.com via HTTP; Sun, 17 Mar 2002 07:48:53 PST Date: Sun, 17 Mar 2002 07:48:53 -0800 (PST) From: Hiten Pandya Reply-To: hiten@uk.FreeBSD.org Subject: Re: cvs commit: src/share/man/man7 build.7 To: Murray Stokely , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200203171501.g2HF1TH70058@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --- Murray Stokely wrote: > Log: > Spell analogous properly. > > Found by: ispell(1) I have seen in one of your commits, that you have used "make spellcheck". Is there really a target like that? Thanks, -- Hiten __________________________________________________ Do You Yahoo!? Yahoo! Sports - live college hoops coverage http://sports.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 7:55: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 D71AE37B419; Sun, 17 Mar 2002 07:55:31 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HFtVd79343; Sun, 17 Mar 2002 07:55:31 -0800 (PST) (envelope-from kuriyama) Message-Id: <200203171555.g2HFtVd79343@freefall.freebsd.org> From: Jun Kuriyama Date: Sun, 17 Mar 2002 07:55:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/ja_JP.eucJP/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/03/17 07:55:31 PST Modified files: release/doc/ja_JP.eucJP/relnotes/common new.sgml Log: MFen. Revision Changes Path 1.51 +28 -6 src/release/doc/ja_JP.eucJP/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 8: 1: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 DF18B37B404; Sun, 17 Mar 2002 08:01:52 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HG1qd80411; Sun, 17 Mar 2002 08:01:52 -0800 (PST) (envelope-from ue) Message-Id: <200203171601.g2HG1qd80411@freefall.freebsd.org> From: Udo Erdelhoff Date: Sun, 17 Mar 2002 08:01:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/readme article.sgml src/release/doc/de_DE.ISO8859-1/share/sgml release.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/03/17 08:01:52 PST Modified files: release/doc/de_DE.ISO8859-1/readme article.sgml release/doc/de_DE.ISO8859-1/share/sgml release.ent Log: MFen: release.prev.stable Revision Changes Path 1.3 +3 -4 src/release/doc/de_DE.ISO8859-1/readme/article.sgml 1.2 +7 -2 src/release/doc/de_DE.ISO8859-1/share/sgml/release.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 8: 2:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BBBA37B404; Sun, 17 Mar 2002 08:02:33 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HG2Xe80526; Sun, 17 Mar 2002 08:02:33 -0800 (PST) (envelope-from kevlo) Message-Id: <200203171602.g2HG2Xe80526@freefall.freebsd.org> From: Kevin Lo Date: Sun, 17 Mar 2002 08:02:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/drm-kmod Makefile distinfo ports/graphics/drm-kmod/files patch-radeonstate X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/03/17 08:02:33 PST Modified files: graphics/drm-kmod Makefile distinfo Added files: graphics/drm-kmod/files patch-radeonstate Log: Update to 0.9.5 PR: 35997 Submitted by: MAINTAINER Revision Changes Path 1.4 +2 -2 ports/graphics/drm-kmod/Makefile 1.4 +1 -1 ports/graphics/drm-kmod/distinfo 1.1 +11 -0 ports/graphics/drm-kmod/files/patch-radeonstate (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 17 8: 2:59 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B291837B41A; Sun, 17 Mar 2002 08:02:56 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HG2u780572; Sun, 17 Mar 2002 08:02:56 -0800 (PST) (envelope-from kuriyama) Message-Id: <200203171602.g2HG2u780572@freefall.freebsd.org> From: Jun Kuriyama Date: Sun, 17 Mar 2002 08:02:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/ja_JP.eucJP/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/03/17 08:02:56 PST Modified files: release/doc/ja_JP.eucJP/relnotes/common new.sgml Log: Translate SA-02:13 entry. Revision Changes Path 1.52 +11 -11 src/release/doc/ja_JP.eucJP/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 8: 8: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 A468737B429; Sun, 17 Mar 2002 08:08:13 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HG8DP85115; Sun, 17 Mar 2002 08:08:13 -0800 (PST) (envelope-from kevlo) Message-Id: <200203171608.g2HG8DP85115@freefall.freebsd.org> From: Kevin Lo Date: Sun, 17 Mar 2002 08:08:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp Makefile ports/ftp/pftpd Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/03/17 08:08:13 PST Modified files: ftp Makefile Added files: ftp/pftpd Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Initial import of pftpd-0.31. Pftpd is the multithreaded anonymous FTP daemon. PR: 36012 Submitted by: Gea-Suan Lin Revision Changes Path 1.45 +1 -0 ports/ftp/Makefile 1.1 +23 -0 ports/ftp/pftpd/Makefile (new) 1.1 +1 -0 ports/ftp/pftpd/distinfo (new) 1.1 +1 -0 ports/ftp/pftpd/pkg-comment (new) 1.1 +6 -0 ports/ftp/pftpd/pkg-descr (new) 1.1 +1 -0 ports/ftp/pftpd/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 17 8: 8:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D902237B47C; Sun, 17 Mar 2002 08:08:33 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HG8XE85335; Sun, 17 Mar 2002 08:08:33 -0800 (PST) (envelope-from sobomax) Message-Id: <200203171608.g2HG8XE85335@freefall.freebsd.org> From: Maxim Sobolev Date: Sun, 17 Mar 2002 08:08:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gnomevfs Makefile distinfo pkg-plist ports/devel/gnomevfs/files patch-aa patch-ab patch-ac patch-libgnomevfs::Makefile.in patch-libgnomevfs::gnome-vfs-mime-info.c patch-libgnomevfs::libcharset::Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/17 08:08:33 PST Modified files: devel/gnomevfs Makefile distinfo pkg-plist devel/gnomevfs/files patch-aa patch-ab patch-ac patch-libgnomevfs::Makefile.in Added files: devel/gnomevfs/files patch-libgnomevfs::gnome-vfs-mime-info.c patch-libgnomevfs::libcharset::Makefile.in Log: Update to 1.0.5. PR: 35971 Submitted by: Joe Marcus Clarke Revision Changes Path 1.29 +6 -5 ports/devel/gnomevfs/Makefile 1.13 +1 -1 ports/devel/gnomevfs/distinfo 1.12 +41 -14 ports/devel/gnomevfs/files/patch-aa 1.9 +11 -9 ports/devel/gnomevfs/files/patch-ab 1.6 +6 -28 ports/devel/gnomevfs/files/patch-ac 1.2 +3 -3 ports/devel/gnomevfs/files/patch-libgnomevfs::Makefile.in 1.1 +14 -0 ports/devel/gnomevfs/files/patch-libgnomevfs::gnome-vfs-mime-info.c (new) 1.1 +23 -0 ports/devel/gnomevfs/files/patch-libgnomevfs::libcharset::Makefile.in (new) 1.15 +0 -1 ports/devel/gnomevfs/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 17 8: 8:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B118F37B477; Sun, 17 Mar 2002 08:08:26 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HG8QM85214; Sun, 17 Mar 2002 08:08:26 -0800 (PST) (envelope-from kevlo) Message-Id: <200203171608.g2HG8QM85214@freefall.freebsd.org> From: Kevin Lo Date: Sun, 17 Mar 2002 08:08:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/03/17 08:08:26 PST Modified files: . modules Log: pftpd --> ports/ftp/pftpd Revision Changes Path 1.4856 +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 17 8: 9:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4C2B537B432; Sun, 17 Mar 2002 08:09:29 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HG9TO85599; Sun, 17 Mar 2002 08:09:29 -0800 (PST) (envelope-from sobomax) Message-Id: <200203171609.g2HG9TO85599@freefall.freebsd.org> From: Maxim Sobolev Date: Sun, 17 Mar 2002 08:09:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gnomevfs Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/17 08:09:29 PST Modified files: devel/gnomevfs Makefile Log: Remove part of iconv cleanup patch leaked into last commit. Revision Changes Path 1.30 +1 -1 ports/devel/gnomevfs/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 17 8:15:53 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7CF3737B41A; Sun, 17 Mar 2002 08:15:50 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HGFoK86836; Sun, 17 Mar 2002 08:15:50 -0800 (PST) (envelope-from ijliao) Message-Id: <200203171615.g2HGFoK86836@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sun, 17 Mar 2002 08:15:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/pftpd pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/17 08:15:50 PST Modified files: ftp/pftpd pkg-descr Log: add WWW: Revision Changes Path 1.2 +1 -0 ports/ftp/pftpd/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 17 8:17: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 9DCBE37B42F; Sun, 17 Mar 2002 08:17:47 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HGHl687116; Sun, 17 Mar 2002 08:17:47 -0800 (PST) (envelope-from sobomax) Message-Id: <200203171617.g2HGHl687116@freefall.freebsd.org> From: Maxim Sobolev Date: Sun, 17 Mar 2002 08:17:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/gpaint Makefile distinfo pkg-descr pkg-plist ports/graphics/gpaint/files patch-src::Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/17 08:17:47 PST Modified files: graphics/gpaint Makefile distinfo pkg-descr pkg-plist graphics/gpaint/files patch-src::Makefile.in Log: Update to 0.2.2. Revision Changes Path 1.7 +3 -4 ports/graphics/gpaint/Makefile 1.4 +1 -1 ports/graphics/gpaint/distinfo 1.2 +7 -8 ports/graphics/gpaint/files/patch-src::Makefile.in 1.2 +1 -1 ports/graphics/gpaint/pkg-descr 1.3 +1 -0 ports/graphics/gpaint/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 17 8:23:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 36D6737B404; Sun, 17 Mar 2002 08:23:39 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HGNd488027; Sun, 17 Mar 2002 08:23:39 -0800 (PST) (envelope-from kevlo) Message-Id: <200203171623.g2HGNd488027@freefall.freebsd.org> From: Kevin Lo Date: Sun, 17 Mar 2002 08:23:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/gtkhx Makefile distinfo ports/net/gtkhx/files patch-Makefile.in patch-aa patch-ab patch-ac patch-configure patch-intl::Makefile.in patch-plugins::Makefile.in patch-po::Makefile.in.in patch-sounds::Makefile.in patch-src::Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/03/17 08:23:39 PST Modified files: net/gtkhx Makefile distinfo Added files: net/gtkhx/files patch-Makefile.in patch-configure patch-intl::Makefile.in patch-plugins::Makefile.in patch-po::Makefile.in.in patch-sounds::Makefile.in patch-src::Makefile.in Removed files: net/gtkhx/files patch-aa patch-ab patch-ac Log: Update to version 0.9.2 PR: 35936 Submitted by: MAINTAINER Revision Changes Path 1.3 +2 -1 ports/net/gtkhx/Makefile 1.2 +1 -1 ports/net/gtkhx/distinfo 1.1 +20 -0 ports/net/gtkhx/files/patch-Makefile.in (new) 1.2 +0 -10 ports/net/gtkhx/files/patch-aa (dead) 1.2 +0 -11 ports/net/gtkhx/files/patch-ab (dead) 1.2 +0 -10 ports/net/gtkhx/files/patch-ac (dead) 1.1 +11 -0 ports/net/gtkhx/files/patch-configure (new) 1.1 +11 -0 ports/net/gtkhx/files/patch-intl::Makefile.in (new) 1.1 +11 -0 ports/net/gtkhx/files/patch-plugins::Makefile.in (new) 1.1 +11 -0 ports/net/gtkhx/files/patch-po::Makefile.in.in (new) 1.1 +11 -0 ports/net/gtkhx/files/patch-sounds::Makefile.in (new) 1.1 +11 -0 ports/net/gtkhx/files/patch-src::Makefile.in (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 8:29: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 8C97D37B426; Sun, 17 Mar 2002 08:29:21 -0800 (PST) Received: (from lioux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HGTLj88828; Sun, 17 Mar 2002 08:29:21 -0800 (PST) (envelope-from lioux) Message-Id: <200203171629.g2HGTLj88828@freefall.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sun, 17 Mar 2002 08:29:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/games/hlserver-existence Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG lioux 2002/03/17 08:29:21 PST Modified files: games/hlserver-existence Makefile distinfo pkg-plist Log: Update to 1.4 beta Revision Changes Path 1.2 +4 -7 ports/games/hlserver-existence/Makefile 1.2 +1 -1 ports/games/hlserver-existence/distinfo 1.2 +167 -108 ports/games/hlserver-existence/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 17 8:34:27 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5454837B404; Sun, 17 Mar 2002 08:34:25 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HGYPZ89631; Sun, 17 Mar 2002 08:34:25 -0800 (PST) (envelope-from kevlo) Message-Id: <200203171634.g2HGYPZ89631@freefall.freebsd.org> From: Kevin Lo Date: Sun, 17 Mar 2002 08:34:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/palm/pilot_makedoc Makefile ports/palm/pilot_makedoc/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/03/17 08:34:25 PST Modified files: palm/pilot_makedoc Makefile palm/pilot_makedoc/files patch-aa Log: - Fix pilot_makedoc to always print enough \n's - Takeover maintainership - Bump PORTREVERSION PR: 35868 Submitted by: Simon Dick Revision Changes Path 1.14 +3 -2 ports/palm/pilot_makedoc/Makefile 1.3 +10 -3 ports/palm/pilot_makedoc/files/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 8:38:46 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 146FC37B431; Sun, 17 Mar 2002 08:38:43 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HGcgv90356; Sun, 17 Mar 2002 08:38:42 -0800 (PST) (envelope-from kevlo) Message-Id: <200203171638.g2HGcgv90356@freefall.freebsd.org> From: Kevin Lo Date: Sun, 17 Mar 2002 08:38:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/p5-Net-SSH-Perl Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/03/17 08:38:42 PST Modified files: net Makefile Added files: net/p5-Net-SSH-Perl Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Initial import of Net-SSH-Perl 1.23 This is the Perl5 module implements both the SSH1 and SSH2 protocols. PR: 35923 Submitted by: jesper Revision Changes Path 1.727 +1 -0 ports/net/Makefile 1.1 +73 -0 ports/net/p5-Net-SSH-Perl/Makefile (new) 1.1 +1 -0 ports/net/p5-Net-SSH-Perl/distinfo (new) 1.1 +1 -0 ports/net/p5-Net-SSH-Perl/pkg-comment (new) 1.1 +2 -0 ports/net/p5-Net-SSH-Perl/pkg-descr (new) 1.1 +55 -0 ports/net/p5-Net-SSH-Perl/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 17 8:39: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A11B37B404; Sun, 17 Mar 2002 08:38:47 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HGcls90392; Sun, 17 Mar 2002 08:38:47 -0800 (PST) (envelope-from kevlo) Message-Id: <200203171638.g2HGcls90392@freefall.freebsd.org> From: Kevin Lo Date: Sun, 17 Mar 2002 08:38:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/03/17 08:38:47 PST Modified files: . modules Log: p5-Net-SSH-Perl --> ports/net/p5-Net-SSH-Perl Revision Changes Path 1.4857 +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 17 8:43:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5749537B432; Sun, 17 Mar 2002 08:43:26 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HGhQj91210; Sun, 17 Mar 2002 08:43:26 -0800 (PST) (envelope-from kevlo) Message-Id: <200203171643.g2HGhQj91210@freefall.freebsd.org> From: Kevin Lo Date: Sun, 17 Mar 2002 08:43:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net Makefile ports/net/p5-JUNOScript Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/03/17 08:43:26 PST Modified files: net Makefile Added files: net/p5-JUNOScript Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Initial import of JUNOScript 5.2R1.4 JUNOScript is the API to exchange information with Juniper Networks routers. PR: 35896 Submitted by: jesper Revision Changes Path 1.728 +1 -0 ports/net/Makefile 1.1 +100 -0 ports/net/p5-JUNOScript/Makefile (new) 1.1 +1 -0 ports/net/p5-JUNOScript/distinfo (new) 1.1 +1 -0 ports/net/p5-JUNOScript/pkg-comment (new) 1.1 +6 -0 ports/net/p5-JUNOScript/pkg-descr (new) 1.1 +21 -0 ports/net/p5-JUNOScript/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 17 8:43:46 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BB5B237B43D; Sun, 17 Mar 2002 08:43:28 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HGhS991244; Sun, 17 Mar 2002 08:43:28 -0800 (PST) (envelope-from kevlo) Message-Id: <200203171643.g2HGhS991244@freefall.freebsd.org> From: Kevin Lo Date: Sun, 17 Mar 2002 08:43:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kevlo 2002/03/17 08:43:28 PST Modified files: . modules Log: p5-JUNOScript --> ports/net/p5-JUNOScript Revision Changes Path 1.4858 +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 17 9:17:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1BC0337B47A; Sun, 17 Mar 2002 09:17:13 -0800 (PST) Received: (from cy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HHHD798547; Sun, 17 Mar 2002 09:17:13 -0800 (PST) (envelope-from cy) Message-Id: <200203171717.g2HHHD798547@freefall.freebsd.org> From: Cy Schubert Date: Sun, 17 Mar 2002 09:17:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio Makefile ports/audio/xmms-musepack Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cy 2002/03/17 09:17:12 PST Modified files: audio Makefile Added files: audio/xmms-musepack Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add xmms-musepack 1.8.0 port, xMMS input plugin for playing MPC Musepack (.mpc, .mp+) files. PR: 35935 Submitted by: Walter Hop Revision Changes Path 1.285 +1 -0 ports/audio/Makefile 1.1 +25 -0 ports/audio/xmms-musepack/Makefile (new) 1.1 +1 -0 ports/audio/xmms-musepack/distinfo (new) 1.1 +1 -0 ports/audio/xmms-musepack/pkg-comment (new) 1.1 +13 -0 ports/audio/xmms-musepack/pkg-descr (new) 1.1 +1 -0 ports/audio/xmms-musepack/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 17 9:17:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C196737B47B; Sun, 17 Mar 2002 09:17:19 -0800 (PST) Received: (from cy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HHHJu98592; Sun, 17 Mar 2002 09:17:19 -0800 (PST) (envelope-from cy) Message-Id: <200203171717.g2HHHJu98592@freefall.freebsd.org> From: Cy Schubert Date: Sun, 17 Mar 2002 09:17:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cy 2002/03/17 09:17:19 PST Modified files: . modules Log: xmms-musepack --> ports/audio/xmms-musepack Revision Changes Path 1.4859 +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 17 9:38:41 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.musha.org (daemon.musha.org [218.44.187.2]) by hub.freebsd.org (Postfix) with ESMTP id D6E8037B476; Sun, 17 Mar 2002 09:38:36 -0800 (PST) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 2D5434D901; Mon, 18 Mar 2002 02:38:35 +0900 (JST) Date: Mon, 18 Mar 2002 02:38:35 +0900 Message-ID: <86lmcrccx0.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Doug Barton Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/net/bind9 Makefile distinfo pkg-plist In-Reply-To: <86n0x7d3br.wl@archon.local.idaemons.org> References: <200203170647.g2H6lPb65782@freefall.freebsd.org> <86n0x7d3br.wl@archon.local.idaemons.org> User-Agent: Wanderlust/2.9.7 (Unchained Melody) SEMI/1.14.3 (Ushinoya) LIMIT/1.14.7 (Fujiidera) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Sun, 17 Mar 2002 17:08:08 +0900, I wrote: > larger than 9.2.1 by definition. Instead, how about using 9.2.1.p1 > (note the dot before `p') as PORTVERSION and define another variable > with the value of `9.2.1rc1' for convenience? (${PORTVERSION:S/.p/rc/}) (snip) > Apply it if you like it. :) If you don't like 'p', you may want to use 'rc' to respect the original versioning scheme, although it slightly violates the specification. (the alphabet letters should not repeat) In any case, you should fix PORTVERSION soon or you'll have to bump PORTEPOCH when you update the port to the forthcoming 9.2.1 release. Regards, -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Somewhere out of a memory.. of lighted streets on quiet nights.." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 9:46: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 30A5537B43D; Sun, 17 Mar 2002 09:46:19 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HHkJG01987; Sun, 17 Mar 2002 09:46:19 -0800 (PST) (envelope-from sobomax) Message-Id: <200203171746.g2HHkJG01987@freefall.freebsd.org> From: Maxim Sobolev Date: Sun, 17 Mar 2002 09:46:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/compat3x pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/17 09:46:19 PST Modified files: misc/compat3x pkg-plist Log: Backout previous commit (addition of libperl), for some reason it isn't really installed. Submitted by: bento Pointy hat to: sobomax Revision Changes Path 1.5 +0 -1 ports/misc/compat3x/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 9:55:30 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 92BB937B476; Sun, 17 Mar 2002 09:55:26 -0800 (PST) Received: (from fenner@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HHtQ202918; Sun, 17 Mar 2002 09:55:26 -0800 (PST) (envelope-from fenner) Message-Id: <200203171755.g2HHtQ202918@freefall.freebsd.org> From: Bill Fenner Date: Sun, 17 Mar 2002 09:55:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/palm/syncmal Makefile pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG fenner 2002/03/17 09:55:26 PST Modified files: palm/syncmal Makefile pkg-descr Log: MASTER_SITE moved. Revision Changes Path 1.8 +1 -1 ports/palm/syncmal/Makefile 1.2 +1 -1 ports/palm/syncmal/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 17 10: 0:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DFE6B37B480; Sun, 17 Mar 2002 10:00:08 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HI08E03667; Sun, 17 Mar 2002 10:00:08 -0800 (PST) (envelope-from dinoex) Message-Id: <200203171800.g2HI08E03667@freefall.freebsd.org> From: Dirk Meyer Date: Sun, 17 Mar 2002 10:00:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/noattach Makefile distinfo pkg-plist ports/mail/noattach/files noattach.sh ports/mail/sendmail/files sm-client.sh ports/mail/vbsfilter/files vbsfilter.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/03/17 10:00:08 PST Modified files: mail/noattach Makefile distinfo pkg-plist mail/noattach/files noattach.sh mail/sendmail/files sm-client.sh mail/vbsfilter/files vbsfilter.sh Log: - Update noattach to 1.0beta11 - syncronize sample startup-scripts PR: 36005 Submitted by: oli@amun.isnic.is Revision Changes Path 1.4 +2 -2 ports/mail/noattach/Makefile 1.4 +1 -1 ports/mail/noattach/distinfo 1.2 +3 -3 ports/mail/noattach/files/noattach.sh 1.3 +1 -0 ports/mail/noattach/pkg-plist 1.2 +3 -3 ports/mail/sendmail/files/sm-client.sh 1.3 +3 -3 ports/mail/vbsfilter/files/vbsfilter.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 17 10:23:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A183037B47D; Sun, 17 Mar 2002 10:23:52 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HINqY10341; Sun, 17 Mar 2002 10:23:52 -0800 (PST) (envelope-from pat) Message-Id: <200203171823.g2HINqY10341@freefall.freebsd.org> From: Patrick Li Date: Sun, 17 Mar 2002 10:23:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/zipcodes 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/17 10:23:52 PST Modified files: japanese/zipcodes Makefile distinfo Log: Update to 20020201 PR: 35972 Submitted by: Kimura Fuyuki Revision Changes Path 1.21 +3 -3 ports/japanese/zipcodes/Makefile 1.10 +1 -1 ports/japanese/zipcodes/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 17 10:37:41 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B4E1F37B476; Sun, 17 Mar 2002 10:37:37 -0800 (PST) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HIbbg12300; Sun, 17 Mar 2002 10:37:37 -0800 (PST) (envelope-from alc) Message-Id: <200203171837.g2HIbbg12300@freefall.freebsd.org> From: Alan Cox Date: Sun, 17 Mar 2002 10:37:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm vm_object.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/17 10:37:37 PST Modified files: sys/vm vm_object.c Log: Remove vm_object_count: It's unused, incorrectly maintained and duplicates information maintained by the zone allocator. Revision Changes Path 1.203 +1 -4 src/sys/vm/vm_object.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 17 10:54: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 C2AB937B444; Sun, 17 Mar 2002 10:53:58 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HIrwV15111; Sun, 17 Mar 2002 10:53:58 -0800 (PST) (envelope-from phk) Message-Id: <200203171853.g2HIrwV15111@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sun, 17 Mar 2002 10:53:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/regression/geom Makefile geom.c geom_kernsim.c geom_sim.c geom_sim.h geom_simdev.c geom_simdisk.c geom_simdisk.h geom_simdisk_xml.c src/tools/regression/geom/ConfCmp ConfCmp.c Makefile a1.conf a1a.conf a1b.conf a1c.conf a1d.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 phk 2002/03/17 10:53:58 PST Added files: tools/regression/geom Makefile geom.c geom_kernsim.c geom_sim.c geom_sim.h geom_simdev.c geom_simdisk.c geom_simdisk.h geom_simdisk_xml.c tools/regression/geom/ConfCmp ConfCmp.c Makefile a1.conf a1a.conf a1b.conf a1c.conf a1d.conf a2.conf tools/regression/geom/Data disk.critter.ad0.xml disk.empty.flp.xml disk.far.ad0.xml disk.flat.da1.xml disk.kern.flp.xml disk.msdos.ext.xml disk.msdos.flp.xml disk.sun.da0.xml disk.sun.da1.xml disk.typo.ad0.xml tools/regression/geom/GLib Makefile tools/regression/geom/Test Makefile Makefile.inc tools/regression/geom/Test/T000 Makefile ref.conf testprg.c tools/regression/geom/Test/T001 Makefile ref.conf testprg.c tools/regression/geom/Test/T002 Makefile ref.conf testprg.c tools/regression/geom/Test/T003 Makefile ref.conf testprg.c tools/regression/geom/Test/T004 Makefile ref.conf testprg.c tools/regression/geom/Test/T005 Makefile ref.conf testprg.c tools/regression/geom/Test/T006 Makefile ref.conf testprg.c tools/regression/geom/Test/T007 Makefile ref.conf testprg.c tools/regression/geom/Test/T008 Makefile ref.conf testprg.c tools/regression/geom/Test/T009 Makefile ref.conf testprg.c tools/regression/geom/Test/T010 Makefile ref.conf testprg.c tools/regression/geom/Test/T011 Makefile ref.conf testprg.c tools/regression/geom/Test/T012 Makefile ref.conf testprg.c Log: Add the GEOM regression test framework. This is a set of userland shims in which GEOM can be run through simple tests. The simulation of kernel synchronization primitives is very primitive and consequently some times tests will fail because of races. Data/ contains a number of files in XML format which describe the key sectors for a number of disk images This is a very handy tool for people developing GEOM methods. The "simdisk" method can be told to read from a "real disk" and afterwards dump the accessed sectors in XML format for further use. I hope future method writes will see the benefit of this test collection and add to it when they write methods for GEOM. You will need ports/textproc/expat for the XML parser. Sponsored by: DARPA, NAI Labs. Revision Changes Path 1.1 +312 -0 src/tools/regression/geom/ConfCmp/ConfCmp.c (new) 1.1 +27 -0 src/tools/regression/geom/ConfCmp/Makefile (new) 1.1 +414 -0 src/tools/regression/geom/ConfCmp/a1.conf (new) 1.1 +414 -0 src/tools/regression/geom/ConfCmp/a1a.conf (new) 1.1 +414 -0 src/tools/regression/geom/ConfCmp/a1b.conf (new) 1.1 +414 -0 src/tools/regression/geom/ConfCmp/a1c.conf (new) 1.1 +414 -0 src/tools/regression/geom/ConfCmp/a1d.conf (new) 1.1 +436 -0 src/tools/regression/geom/ConfCmp/a2.conf (new) 1.1 +178 -0 src/tools/regression/geom/Data/disk.critter.ad0.xml (new) 1.1 +12 -0 src/tools/regression/geom/Data/disk.empty.flp.xml (new) 1.1 +51 -0 src/tools/regression/geom/Data/disk.far.ad0.xml (new) 1.1 +97 -0 src/tools/regression/geom/Data/disk.flat.da1.xml (new) 1.1 +51 -0 src/tools/regression/geom/Data/disk.kern.flp.xml (new) 1.1 +513 -0 src/tools/regression/geom/Data/disk.msdos.ext.xml (new) 1.1 +51 -0 src/tools/regression/geom/Data/disk.msdos.flp.xml (new) 1.1 +33 -0 src/tools/regression/geom/Data/disk.sun.da0.xml (new) 1.1 +33 -0 src/tools/regression/geom/Data/disk.sun.da1.xml (new) 1.1 +219 -0 src/tools/regression/geom/Data/disk.typo.ad0.xml (new) 1.1 +23 -0 src/tools/regression/geom/GLib/Makefile (new) 1.1 +18 -0 src/tools/regression/geom/Makefile (new) 1.1 +10 -0 src/tools/regression/geom/Test/Makefile (new) 1.1 +35 -0 src/tools/regression/geom/Test/Makefile.inc (new) 1.1 +3 -0 src/tools/regression/geom/Test/T000/Makefile (new) 1.1 +23 -0 src/tools/regression/geom/Test/T000/ref.conf (new) 1.1 +66 -0 src/tools/regression/geom/Test/T000/testprg.c (new) 1.1 +3 -0 src/tools/regression/geom/Test/T001/Makefile (new) 1.1 +414 -0 src/tools/regression/geom/Test/T001/ref.conf (new) 1.1 +69 -0 src/tools/regression/geom/Test/T001/testprg.c (new) 1.1 +3 -0 src/tools/regression/geom/Test/T002/Makefile (new) 1.1 +115 -0 src/tools/regression/geom/Test/T002/ref.conf (new) 1.1 +69 -0 src/tools/regression/geom/Test/T002/testprg.c (new) 1.1 +3 -0 src/tools/regression/geom/Test/T003/Makefile (new) 1.1 +729 -0 src/tools/regression/geom/Test/T003/ref.conf (new) 1.1 +69 -0 src/tools/regression/geom/Test/T003/testprg.c (new) 1.1 +3 -0 src/tools/regression/geom/Test/T004/Makefile (new) 1.1 +305 -0 src/tools/regression/geom/Test/T004/ref.conf (new) 1.1 +69 -0 src/tools/regression/geom/Test/T004/testprg.c (new) 1.1 +3 -0 src/tools/regression/geom/Test/T005/Makefile (new) 1.1 +138 -0 src/tools/regression/geom/Test/T005/ref.conf (new) 1.1 +69 -0 src/tools/regression/geom/Test/T005/testprg.c (new) 1.1 +3 -0 src/tools/regression/geom/Test/T006/Makefile (new) 1.1 +47 -0 src/tools/regression/geom/Test/T006/ref.conf (new) 1.1 +69 -0 src/tools/regression/geom/Test/T006/testprg.c (new) 1.1 +3 -0 src/tools/regression/geom/Test/T007/Makefile (new) 1.1 +23 -0 src/tools/regression/geom/Test/T007/ref.conf (new) 1.1 +73 -0 src/tools/regression/geom/Test/T007/testprg.c (new) 1.1 +3 -0 src/tools/regression/geom/Test/T008/Makefile (new) 1.1 +23 -0 src/tools/regression/geom/Test/T008/ref.conf (new) 1.1 +75 -0 src/tools/regression/geom/Test/T008/testprg.c (new) 1.1 +3 -0 src/tools/regression/geom/Test/T009/Makefile (new) 1.1 +23 -0 src/tools/regression/geom/Test/T009/ref.conf (new) 1.1 +89 -0 src/tools/regression/geom/Test/T009/testprg.c (new) 1.1 +3 -0 src/tools/regression/geom/Test/T010/Makefile (new) 1.1 +88 -0 src/tools/regression/geom/Test/T010/ref.conf (new) 1.1 +98 -0 src/tools/regression/geom/Test/T010/testprg.c (new) 1.1 +3 -0 src/tools/regression/geom/Test/T011/Makefile (new) 1.1 +47 -0 src/tools/regression/geom/Test/T011/ref.conf (new) 1.1 +78 -0 src/tools/regression/geom/Test/T011/testprg.c (new) 1.1 +3 -0 src/tools/regression/geom/Test/T012/Makefile (new) 1.1 +382 -0 src/tools/regression/geom/Test/T012/ref.conf (new) 1.1 +73 -0 src/tools/regression/geom/Test/T012/testprg.c (new) 1.1 +163 -0 src/tools/regression/geom/geom.c (new) 1.1 +339 -0 src/tools/regression/geom/geom_kernsim.c (new) 1.1 +185 -0 src/tools/regression/geom/geom_sim.c (new) 1.1 +151 -0 src/tools/regression/geom/geom_sim.h (new) 1.1 +159 -0 src/tools/regression/geom/geom_simdev.c (new) 1.1 +261 -0 src/tools/regression/geom/geom_simdisk.c (new) 1.1 +63 -0 src/tools/regression/geom/geom_simdisk.h (new) 1.1 +239 -0 src/tools/regression/geom/geom_simdisk_xml.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 10:57:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A9A2637B444; Sun, 17 Mar 2002 10:57:49 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HIvnN15482; Sun, 17 Mar 2002 10:57:49 -0800 (PST) (envelope-from phk) Message-Id: <200203171857.g2HIvnN15482@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sun, 17 Mar 2002 10:57:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom_bsd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/03/17 10:57:49 PST Modified files: sys/geom geom_bsd.c Log: Make this compile in the userland-regression testsuite again. Revision Changes Path 1.3 +3 -13 src/sys/geom/geom_bsd.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 17 11: 9:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 328CC37B476; Sun, 17 Mar 2002 11:09:10 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HJ9AW20620; Sun, 17 Mar 2002 11:09:10 -0800 (PST) (envelope-from dougb) Message-Id: <200203171909.g2HJ9AW20620@freefall.freebsd.org> From: Doug Barton Date: Sun, 17 Mar 2002 11:09:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/bind9 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dougb 2002/03/17 11:09:10 PST Modified files: net/bind9 Makefile Log: Fix PORTVERSION so that wacky things don't happen down the road. In my previous commit I forgot to mention that 'pkg_add -r bind' is only half the rationale for changing PORTNAME. The other half is so that people who really want to can 'pkg_add -r bind9'. Revision Changes Path 1.42 +9 -7 ports/net/bind9/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 17 11:11:14 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by hub.freebsd.org (Postfix) with ESMTP id 3848637B4A0; Sun, 17 Mar 2002 11:11:08 -0800 (PST) Received: from 12-234-22-238.client.attbi.com ([12.234.22.238]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020317191106.KMTP2626.rwcrmhc51.attbi.com@12-234-22-238.client.attbi.com>; Sun, 17 Mar 2002 19:11:06 +0000 Received: from master.gorean.org (master.gorean.org [10.0.0.2]) by 12-234-22-238.client.attbi.com (8.11.6/8.11.6) with ESMTP id g2HJB6h24090; Sun, 17 Mar 2002 11:11:06 -0800 (PST) (envelope-from DougB@FreeBSD.org) Received: from master.gorean.org (localhost [127.0.0.1]) by master.gorean.org (8.12.2/8.12.2) with ESMTP id g2HJB63s003814; Sun, 17 Mar 2002 11:11:06 -0800 (PST) (envelope-from DougB@FreeBSD.org) Received: from localhost (doug@localhost) by master.gorean.org (8.12.2/8.12.2/Submit) with ESMTP id g2HJB5hF003811; Sun, 17 Mar 2002 11:11:06 -0800 (PST) X-Authentication-Warning: master.gorean.org: doug owned process doing -bs Date: Sun, 17 Mar 2002 11:11:05 -0800 (PST) From: Doug Barton X-X-Sender: doug@master.gorean.org To: Akinori MUSHA Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: ports/net/bind9 Makefile distinfo pkg-plist In-Reply-To: <86n0x7d3br.wl@archon.local.idaemons.org> Message-ID: <20020317110954.I3758-100000@master.gorean.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 17 Mar 2002, Akinori MUSHA wrote: > Just ports style fixes, though, Thank you for your suggestion. I used a simplified version of it to fix PORTVERSION. As for the PORTNAME change, in addition to wanting 'pkg_add -r bind' to do the right thing, I also want 'pkg_add -r bind9' to be available to those who want it. Sorry for not making that clear. Doug -- "We have known freedom's price. We have shown freedom's power. And in this great conflict, ... we will see freedom's victory." - George W. Bush, President of the United States State of the Union, January 28, 2002 Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 11:15: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 4158C37B48C; Sun, 17 Mar 2002 11:15:28 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HJFSV21438; Sun, 17 Mar 2002 11:15:28 -0800 (PST) (envelope-from phk) Message-Id: <200203171915.g2HJFSV21438@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sun, 17 Mar 2002 11:15:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/geom geom.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/03/17 11:15:28 PST Modified files: sys/geom geom.h Log: Need a different #include for the userland regression test. Revision Changes Path 1.3 +1 -1 src/sys/geom/geom.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 17 11:16:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 14A9337B47D; Sun, 17 Mar 2002 11:16:15 -0800 (PST) Received: (from phk@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HJGFs21555; Sun, 17 Mar 2002 11:16:15 -0800 (PST) (envelope-from phk) Message-Id: <200203171916.g2HJGFs21555@freefall.freebsd.org> From: Poul-Henning Kamp Date: Sun, 17 Mar 2002 11:16:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/tools/regression/geom/ConfCmp ConfCmp.c Makefile src/tools/regression/geom/GLib Makefile src/tools/regression/geom/Test Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG phk 2002/03/17 11:16:15 PST Modified files: tools/regression/geom/ConfCmp ConfCmp.c Makefile tools/regression/geom/GLib Makefile tools/regression/geom/Test Makefile.inc Log: Some necesary fixups to cope with new location and FreeBSD CVS keyword. Revision Changes Path 1.2 +12 -0 src/tools/regression/geom/ConfCmp/ConfCmp.c 1.2 +7 -0 src/tools/regression/geom/ConfCmp/Makefile 1.2 +1 -1 src/tools/regression/geom/GLib/Makefile 1.2 +1 -1 src/tools/regression/geom/Test/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 11:23:29 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B799337B488; Sun, 17 Mar 2002 11:23:27 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HJNRF22453; Sun, 17 Mar 2002 11:23:27 -0800 (PST) (envelope-from sobomax) Message-Id: <200203171923.g2HJNRF22453@freefall.freebsd.org> From: Maxim Sobolev Date: Sun, 17 Mar 2002 11:23:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/djvulibre Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/17 11:23:27 PST Modified files: graphics/djvulibre Makefile Log: Correct LIB_DEPENDS. Submitted by: bento Revision Changes Path 1.7 +1 -1 ports/graphics/djvulibre/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 17 11:36: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 98D0337B416; Sun, 17 Mar 2002 11:36:41 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HJafK25020; Sun, 17 Mar 2002 11:36:41 -0800 (PST) (envelope-from dinoex) Message-Id: <200203171936.g2HJafK25020@freefall.freebsd.org> From: Dirk Meyer Date: Sun, 17 Mar 2002 11:36:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/openssh Makefile ports/security/openssh/files patch-auth1.c patch-auth2.c patch-session.c patch-ssh-Makefile patch-ssh-keyscan-Makefile sshd.sh X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/03/17 11:36:41 PST Modified files: security/openssh Makefile security/openssh/files patch-session.c patch-ssh-Makefile patch-ssh-keyscan-Makefile sshd.sh Added files: security/openssh/files patch-auth1.c patch-auth2.c Log: Merge patches from -stable with USE_PAM and HAVE_LOGIN_CAP Bump PORTREVISION PR: 35904 Revision Changes Path 1.87 +1 -1 ports/security/openssh/Makefile 1.1 +105 -0 ports/security/openssh/files/patch-auth1.c (new) 1.1 +98 -0 ports/security/openssh/files/patch-auth2.c (new) 1.2 +230 -27 ports/security/openssh/files/patch-session.c 1.2 +3 -3 ports/security/openssh/files/patch-ssh-Makefile 1.4 +4 -4 ports/security/openssh/files/patch-ssh-keyscan-Makefile 1.4 +20 -23 ports/security/openssh/files/sshd.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 17 12:14:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9BD4E37B405; Sun, 17 Mar 2002 12:14:11 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HKEBo34446; Sun, 17 Mar 2002 12:14:11 -0800 (PST) (envelope-from dougb) Message-Id: <200203172014.g2HKEBo34446@freefall.freebsd.org> From: Doug Barton Date: Sun, 17 Mar 2002 12:14:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc rc.sysctl X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dougb 2002/03/17 12:14:11 PST Modified files: etc rc rc.sysctl Log: Distinguish between first and last passes of rc.sysctl, and only set mibs whose values are not already what is specified in sysctl.conf. Revision Changes Path 1.302 +3 -4 src/etc/rc 1.8 +18 -2 src/etc/rc.sysctl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 12:15:32 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by hub.freebsd.org (Postfix) with ESMTP id ACECB37B400; Sun, 17 Mar 2002 12:15:28 -0800 (PST) Received: from 12-234-22-238.client.attbi.com ([12.234.22.238]) by rwcrmhc52.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020317201528.LYZI1147.rwcrmhc52.attbi.com@12-234-22-238.client.attbi.com>; Sun, 17 Mar 2002 20:15:28 +0000 Received: from master.gorean.org (master.gorean.org [10.0.0.2]) by 12-234-22-238.client.attbi.com (8.11.6/8.11.6) with ESMTP id g2HKFSh24255; Sun, 17 Mar 2002 12:15:28 -0800 (PST) (envelope-from DougB@FreeBSD.org) Received: from master.gorean.org (localhost [127.0.0.1]) by master.gorean.org (8.12.2/8.12.2) with ESMTP id g2HKFR3s004088; Sun, 17 Mar 2002 12:15:27 -0800 (PST) (envelope-from DougB@FreeBSD.org) Received: from localhost (doug@localhost) by master.gorean.org (8.12.2/8.12.2/Submit) with ESMTP id g2HKFRcD004085; Sun, 17 Mar 2002 12:15:27 -0800 (PST) X-Authentication-Warning: master.gorean.org: doug owned process doing -bs Date: Sun, 17 Mar 2002 12:15:27 -0800 (PST) From: Doug Barton X-X-Sender: doug@master.gorean.org To: Makoto Matsushita Cc: cvs-committers@FreeBSD.org, , Subject: Re: cvs commit: src/etc rc In-Reply-To: <20020317221213Y.matusita@jp.FreeBSD.org> Message-ID: <20020317121422.I3758-100000@master.gorean.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 17 Mar 2002, Makoto Matsushita wrote: > > dougb> Modified files: > dougb> etc rc > dougb> Log: > dougb> Add a late rc.sysctl pass to catch sysctl's for things that were > dougb> not loaded yet on the first pass. > > Are there any chances that we can distinguish "the early phase" and > "the latter phase" inside /etc/rc.sysctl? Well, I was trying to keep it simple, but take a look at the latest version. Just remember, you asked for it. :) Doug To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 12:17: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from web21106.mail.yahoo.com (web21106.mail.yahoo.com [216.136.227.108]) by hub.freebsd.org (Postfix) with SMTP id 1C5A637B404 for ; Sun, 17 Mar 2002 12:16:49 -0800 (PST) Message-ID: <20020317201648.98448.qmail@web21106.mail.yahoo.com> Received: from [62.254.0.5] by web21106.mail.yahoo.com via HTTP; Sun, 17 Mar 2002 12:16:48 PST Date: Sun, 17 Mar 2002 12:16:48 -0800 (PST) From: Hiten Pandya Reply-To: hiten@uk.FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_mtxpool.c src/sys/sys kernel.h src/sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h vm_pageout.c vm_zone.c To: Matthew Dillon Cc: current@FreeBSD.ORG, cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org, tanimura@r.dl.itc.u-tokyo.ac.jp In-Reply-To: <200203172010.g2HKAKl31259@apollo.backplane.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 Hi, Sorry to unwantedly butt in, but the patch supplied by Seigo actually solved the vm_map.c locking problems which used to come up on my system. Just some info. :) Regards, -- Hiten Pandya -- --- Matthew Dillon wrote: > I have no idea what the frig you guys are doing in vm_map.c. I would > recommend that all the changes be backed out. Then I would recommend > that the following be done: > > * change the lockmgr vm_map lock to be exclusive-only > * test & commit > * change the lockmgr vm_map lock to an exclusive SX lock > * test & commit > * Then work on re-optimizing the vm_map locks > > You guys are trying to bite off too much all at once. __________________________________________________ Do You Yahoo!? Yahoo! Sports - live college hoops coverage http://sports.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 12:24: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 1BCC937B404; Sun, 17 Mar 2002 12:24:25 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HKOPD35606; Sun, 17 Mar 2002 12:24:25 -0800 (PST) (envelope-from dinoex) Message-Id: <200203172024.g2HKOPD35606@freefall.freebsd.org> From: Dirk Meyer Date: Sun, 17 Mar 2002 12:24:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/openssh-portable Makefile ports/security/openssh-portable/files patch-auth.c patch-auth1.c patch-auth2.c patch-session.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dinoex 2002/03/17 12:24:24 PST Modified files: security/openssh-portable Makefile security/openssh-portable/files patch-auth.c patch-session.c Added files: security/openssh-portable/files patch-auth1.c patch-auth2.c Log: Merged patches for HAVE_LOGIN_CAP from stable PR: 35904 Revision Changes Path 1.27 +1 -1 ports/security/openssh-portable/Makefile 1.2 +3 -3 ports/security/openssh-portable/files/patch-auth.c 1.1 +56 -0 ports/security/openssh-portable/files/patch-auth1.c (new) 1.1 +60 -0 ports/security/openssh-portable/files/patch-auth2.c (new) 1.5 +177 -9 ports/security/openssh-portable/files/patch-session.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 17 12:27:33 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A2E4137B402; Sun, 17 Mar 2002 12:27:30 -0800 (PST) Received: (from dinoex@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HKRU836053; Sun, 17 Mar 2002 12:27:30 -0800 (PST) (envelope-from dinoex) Message-Id: <200203172027.g2HKRU836053@freefall.freebsd.org> From: Dirk Meyer Date: Sun, 17 Mar 2002 12:27:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/noattach Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/17 12:27:30 PST Modified files: mail/noattach Makefile Log: Fix noattach.sh.sample script, %%PREFIX%% was not replaced Revision Changes Path 1.5 +5 -1 ports/mail/noattach/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 17 12:36: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.musha.org (daemon.musha.org [218.44.187.2]) by hub.freebsd.org (Postfix) with ESMTP id E80E937B405; Sun, 17 Mar 2002 12:36:00 -0800 (PST) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 59DF94D8F3; Mon, 18 Mar 2002 05:35:57 +0900 (JST) Date: Mon, 18 Mar 2002 05:35:57 +0900 Message-ID: <86k7sbc4pe.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Doug Barton Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: ports/net/bind9 Makefile distinfo pkg-plist In-Reply-To: <20020317110954.I3758-100000@master.gorean.org> References: <86n0x7d3br.wl@archon.local.idaemons.org> <20020317110954.I3758-100000@master.gorean.org> User-Agent: Wanderlust/2.9.7 (Unchained Melody) SEMI/1.14.3 (Ushinoya) LIMIT/1.14.7 (Fujiidera) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Sun, 17 Mar 2002 11:11:05 -0800 (PST), Doug Barton wrote: > Thank you for your suggestion. I used a simplified version of it It's okay but it looks somewhat redundant to put the version number three times in Makefile, and you could remove a redundant '/' in the ${MASTER_SITE_RINGSERVER:...} line. > to fix PORTVERSION. As for the PORTNAME change, in addition to wanting > 'pkg_add -r bind' to do the right thing, I also want 'pkg_add -r bind9' to > be available to those who want it. Sorry for not making that clear. It was clear to me and I took account of it... Did you miss the below line in the patch? +LATEST_LINK= bind9 Also, I was trying to say that in this case you don't need to define WRKSRC if you define DISTNAME instead of DISTFILES. Hmm, looks like it was me who was not clear... although my patch said it all. ;) Sorry for the mess. -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Somewhere out of a memory.. of lighted streets on quiet nights.." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 12:49:46 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc54.attbi.com (rwcrmhc54.attbi.com [216.148.227.87]) by hub.freebsd.org (Postfix) with ESMTP id DCEAA37B402; Sun, 17 Mar 2002 12:49:38 -0800 (PST) Received: from 12-234-22-238.client.attbi.com ([12.234.22.238]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020317204938.JUZO1214.rwcrmhc54.attbi.com@12-234-22-238.client.attbi.com>; Sun, 17 Mar 2002 20:49:38 +0000 Received: from master.gorean.org (master.gorean.org [10.0.0.2]) by 12-234-22-238.client.attbi.com (8.11.6/8.11.6) with ESMTP id g2HKnch46946; Sun, 17 Mar 2002 12:49:38 -0800 (PST) (envelope-from DougB@FreeBSD.org) Received: from master.gorean.org (localhost [127.0.0.1]) by master.gorean.org (8.12.2/8.12.2) with ESMTP id g2HKnc3s004214; Sun, 17 Mar 2002 12:49:38 -0800 (PST) (envelope-from DougB@FreeBSD.org) Received: from localhost (doug@localhost) by master.gorean.org (8.12.2/8.12.2/Submit) with ESMTP id g2HKnbb2004211; Sun, 17 Mar 2002 12:49:38 -0800 (PST) X-Authentication-Warning: master.gorean.org: doug owned process doing -bs Date: Sun, 17 Mar 2002 12:49:37 -0800 (PST) From: Doug Barton X-X-Sender: doug@master.gorean.org To: Akinori MUSHA Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: ports/net/bind9 Makefile distinfo pkg-plist In-Reply-To: <86k7sbc4pe.wl@archon.local.idaemons.org> Message-ID: <20020317123901.I3758-100000@master.gorean.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 18 Mar 2002, Akinori MUSHA wrote: > At Sun, 17 Mar 2002 11:11:05 -0800 (PST), > Doug Barton wrote: > > Thank you for your suggestion. I used a simplified version of it > > It's okay but it looks somewhat redundant to put the version number > three times in Makefile, I count two. PORTVERSION and ISCVERSION. Can you show me the third? > and you could remove a redundant '/' in the > ${MASTER_SITE_RINGSERVER:...} line. I'm not sure what you mean by that. > > to fix PORTVERSION. As for the PORTNAME change, in addition to wanting > > 'pkg_add -r bind' to do the right thing, I also want 'pkg_add -r bind9' to > > be available to those who want it. Sorry for not making that clear. > > It was clear to me and I took account of it... Did you miss the below > line in the patch? > > +LATEST_LINK= bind9 I didn't miss it, frankly I'm not sure what it does. However, by changing PORTNAME I'm sure that 'pkg_add bind' and 'pkg_add bind9' do exactly what I want them to. Frankly, while some of what the ports do currently is quite elegant, in my opinion, too much of it tries too hard to be too clever, and ends up just being hopelessly obfuscated. My version of the port may not fit your idea of elegance, but it accomplishes the goals I had in mind, and that's good enough for me. -- "We have known freedom's price. We have shown freedom's power. And in this great conflict, ... we will see freedom's victory." - George W. Bush, President of the United States State of the Union, January 28, 2002 Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 13:13:27 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.musha.org (daemon.musha.org [218.44.187.2]) by hub.freebsd.org (Postfix) with ESMTP id 0DDA837B404; Sun, 17 Mar 2002 13:13:22 -0800 (PST) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 71C1C4D900; Mon, 18 Mar 2002 06:13:20 +0900 (JST) Date: Mon, 18 Mar 2002 06:13:20 +0900 Message-ID: <861yeiq4nj.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Doug Barton Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: ports/net/bind9 Makefile distinfo pkg-plist In-Reply-To: <20020317123901.I3758-100000@master.gorean.org> References: <86k7sbc4pe.wl@archon.local.idaemons.org> <20020317123901.I3758-100000@master.gorean.org> User-Agent: Wanderlust/2.9.7 (Unchained Melody) SEMI/1.14.3 (Ushinoya) LIMIT/1.14.7 (Fujiidera) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Sun, 17 Mar 2002 12:49:37 -0800 (PST), Doug Barton wrote: > On Mon, 18 Mar 2002, Akinori MUSHA wrote: > > > At Sun, 17 Mar 2002 11:11:05 -0800 (PST), > > Doug Barton wrote: > > > Thank you for your suggestion. I used a simplified version of it > > > > It's okay but it looks somewhat redundant to put the version number > > three times in Makefile, > > I count two. PORTVERSION and ISCVERSION. Can you show me the > third? It's in DISTFILES. You can use ${ISCVERSION} in it. DISTFILES= bind-9.2.1rc1.tar.gz > > and you could remove a redundant '/' in the > > ${MASTER_SITE_RINGSERVER:...} line. > > I'm not sure what you mean by that. ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/bind9/${ISCVERSION}/,} ~ This trailing '/' is redundant. > > +LATEST_LINK= bind9 > > I didn't miss it, frankly I'm not sure what it does. However, > by changing PORTNAME I'm sure that 'pkg_add bind' and 'pkg_add bind9' do > exactly what I want them to. It's fine. I just showed another solution in case you were thinking changing PORTNAME was an unwanted workaround. FYI, there is another way to add an arbitrary suffix to PKGNAME: the PKGNAMESUFFIX variable. > Frankly, while some of what the ports do currently is quite > elegant, in my opinion, too much of it tries too hard to be too clever, > and ends up just being hopelessly obfuscated. My version of the port may > not fit your idea of elegance, but it accomplishes the goals I had in > mind, and that's good enough for me. OK... I'm sorry if I sounded pushing. Next time I'll just simply inform you of a problem instead of issuing a verbose patch. -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Somewhere out of a memory.. of lighted streets on quiet nights.." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 13:20: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 6B14937B404; Sun, 17 Mar 2002 13:20:40 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HLKe545988; Sun, 17 Mar 2002 13:20:40 -0800 (PST) (envelope-from dougb) Message-Id: <200203172120.g2HLKe545988@freefall.freebsd.org> From: Doug Barton Date: Sun, 17 Mar 2002 13:20:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/xpdf Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dougb 2002/03/17 13:20:40 PST Modified files: graphics/xpdf Makefile Log: Try to help folks who can't seem to pick up the dependency on freetype. Revision Changes Path 1.42 +2 -2 ports/graphics/xpdf/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 17 13:21:32 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by hub.freebsd.org (Postfix) with ESMTP id 5B89037B402; Sun, 17 Mar 2002 13:21:22 -0800 (PST) Received: from 12-234-22-238.client.attbi.com ([12.234.22.238]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020317212119.NNYQ2626.rwcrmhc51.attbi.com@12-234-22-238.client.attbi.com>; Sun, 17 Mar 2002 21:21:19 +0000 Received: from master.gorean.org (master.gorean.org [10.0.0.2]) by 12-234-22-238.client.attbi.com (8.11.6/8.11.6) with ESMTP id g2HLLIh55319; Sun, 17 Mar 2002 13:21:18 -0800 (PST) (envelope-from DougB@FreeBSD.org) Received: from master.gorean.org (localhost [127.0.0.1]) by master.gorean.org (8.12.2/8.12.2) with ESMTP id g2HLLI3s006014; Sun, 17 Mar 2002 13:21:18 -0800 (PST) (envelope-from DougB@FreeBSD.org) Received: from localhost (doug@localhost) by master.gorean.org (8.12.2/8.12.2/Submit) with ESMTP id g2HLLI9X006011; Sun, 17 Mar 2002 13:21:18 -0800 (PST) X-Authentication-Warning: master.gorean.org: doug owned process doing -bs Date: Sun, 17 Mar 2002 13:21:18 -0800 (PST) From: Doug Barton X-X-Sender: doug@master.gorean.org To: Akinori MUSHA Cc: cvs-committers@FreeBSD.org, Subject: Re: cvs commit: ports/net/bind9 Makefile distinfo pkg-plist In-Reply-To: <861yeiq4nj.wl@archon.local.idaemons.org> Message-ID: <20020317131650.C3758-100000@master.gorean.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 18 Mar 2002, Akinori MUSHA wrote: > At Sun, 17 Mar 2002 12:49:37 -0800 (PST), > Doug Barton wrote: > > On Mon, 18 Mar 2002, Akinori MUSHA wrote: > > > > > At Sun, 17 Mar 2002 11:11:05 -0800 (PST), > > > Doug Barton wrote: > > > > Thank you for your suggestion. I used a simplified version of it > > > > > > It's okay but it looks somewhat redundant to put the version number > > > three times in Makefile, > > > > I count two. PORTVERSION and ISCVERSION. Can you show me the > > third? > > It's in DISTFILES. You can use ${ISCVERSION} in it. > > DISTFILES= bind-9.2.1rc1.tar.gz Ah, thanks.... as soon as the ISC releases a RELEASE version, all of that silliness goes away, so I didn't think it was worth it.... I will keep that suggestion in mind though, thanks. > > > and you could remove a redundant '/' in the > > > ${MASTER_SITE_RINGSERVER:...} line. > > > > I'm not sure what you mean by that. > > ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,net/bind9/${ISCVERSION}/,} > ~ > > This trailing '/' is redundant. Oh... well, that ring server stuff was added by someone else, so if they're watching...... > > > +LATEST_LINK= bind9 > > > > I didn't miss it, frankly I'm not sure what it does. However, > > by changing PORTNAME I'm sure that 'pkg_add bind' and 'pkg_add bind9' do > > exactly what I want them to. > > It's fine. I just showed another solution in case you were thinking > changing PORTNAME was an unwanted workaround. Ah, ok. That's what I thought, but thank you for clarifying. > OK... I'm sorry if I sounded pushing. Next time I'll just simply > inform you of a problem instead of issuing a verbose patch. You didn't. I just get frustrated sometimes with 12 different people offering me 14 different solutions. -- "We have known freedom's price. We have shown freedom's power. And in this great conflict, ... we will see freedom's victory." - George W. Bush, President of the United States State of the Union, January 28, 2002 Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 13:41:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00D4037B404; Sun, 17 Mar 2002 13:41:25 -0800 (PST) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HLfO649430; Sun, 17 Mar 2002 13:41:24 -0800 (PST) (envelope-from anders) Message-Id: <200203172141.g2HLfO649430@freefall.freebsd.org> From: Anders Nordby Date: Sun, 17 Mar 2002 13:41:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/math Makefile ports/math/p5-Math-TrulyRandom Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anders 2002/03/17 13:41:24 PST Modified files: math Makefile Added files: math/p5-Math-TrulyRandom Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add Math::TrulyRandom, a Perl interface to a truly random number generator function. Revision Changes Path 1.167 +1 -0 ports/math/Makefile 1.1 +30 -0 ports/math/p5-Math-TrulyRandom/Makefile (new) 1.1 +1 -0 ports/math/p5-Math-TrulyRandom/distinfo (new) 1.1 +1 -0 ports/math/p5-Math-TrulyRandom/pkg-comment (new) 1.1 +5 -0 ports/math/p5-Math-TrulyRandom/pkg-descr (new) 1.1 +12 -0 ports/math/p5-Math-TrulyRandom/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 17 13:41:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CAE6E37B419; Sun, 17 Mar 2002 13:41:26 -0800 (PST) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HLfQJ49479; Sun, 17 Mar 2002 13:41:26 -0800 (PST) (envelope-from anders) Message-Id: <200203172141.g2HLfQJ49479@freefall.freebsd.org> From: Anders Nordby Date: Sun, 17 Mar 2002 13:41:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anders 2002/03/17 13:41:26 PST Modified files: . modules Log: p5-Math-TrulyRandom --> ports/math/p5-Math-TrulyRandom Revision Changes Path 1.4860 +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 17 14: 2: 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 2D2B537B404; Sun, 17 Mar 2002 14:02:06 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HM26k54283; Sun, 17 Mar 2002 14:02:06 -0800 (PST) (envelope-from cjc) Message-Id: <200203172202.g2HM26k54283@freefall.freebsd.org> From: "Crist J. Clark" Date: Sun, 17 Mar 2002 14:02:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf NOTES X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjc 2002/03/17 14:02:06 PST Modified files: sys/i386/conf NOTES Log: Spelling: s/guesst/guessed/ Revision Changes Path 1.1008 +1 -1 src/sys/i386/conf/NOTES To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 14:42: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 769BA37B405; Sun, 17 Mar 2002 14:42:13 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HMgDC62155; Sun, 17 Mar 2002 14:42:13 -0800 (PST) (envelope-from will) Message-Id: <200203172242.g2HMgDC62155@freefall.freebsd.org> From: Will Andrews Date: Sun, 17 Mar 2002 14:42:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/XFree86-4 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 will 2002/03/17 14:42:13 PST Modified files: x11/XFree86-4 Makefile Removed files: x11/XFree86-4 distinfo Log: Fix some problems reported by people: - Makefile: [1] Typo in FONT[100,75]DPI... sigh. How did I miss this one? This is probably the main reason people are seeing "don't know how to make /usr/X11R6/bin/ucs2any.pl" when building the font ports, but I'm not certain. - distinfo: [2] Remove -- no longer needed. Submitted by: [1] Geoffrey C. Speicher [2] David Johnson Revision Changes Path 1.144 +2 -2 ports/x11/XFree86-4/Makefile 1.35 +0 -4 ports/x11/XFree86-4/distinfo (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 17 15: 3:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B739337B400; Sun, 17 Mar 2002 15:03:28 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HN3SO64556; Sun, 17 Mar 2002 15:03:28 -0800 (PST) (envelope-from will) Message-Id: <200203172303.g2HN3SO64556@freefall.freebsd.org> From: Will Andrews Date: Sun, 17 Mar 2002 15:03:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-servers/XFree86-4-Server Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG will 2002/03/17 15:03:28 PST Modified files: x11-servers/XFree86-4-Server Makefile distinfo pkg-plist Log: [1] Update MGA HAL drivers for XFree86 4.2.0. [2] If WITH_MATROX_GXX_DRIVER defined, bump PORTREVISION to preserve the upgrade path for users who already have 4.2.0 but not this. [3] Cosmetic cleanups. Submitted by: [1] Glenn Johnson Revision Changes Path 1.107 +16 -8 ports/x11-servers/XFree86-4-Server/Makefile 1.34 +1 -0 ports/x11-servers/XFree86-4-Server/distinfo 1.40 +0 -1 ports/x11-servers/XFree86-4-Server/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 15:11:22 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by hub.freebsd.org (Postfix) with ESMTP id 22A3A37B400; Sun, 17 Mar 2002 15:11:15 -0800 (PST) Received: from blossom.cjclark.org ([12.234.91.48]) by rwcrmhc52.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020317231114.QMXY1147.rwcrmhc52.attbi.com@blossom.cjclark.org>; Sun, 17 Mar 2002 23:11:14 +0000 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.6) id g2HNBDq57272; Sun, 17 Mar 2002 15:11:13 -0800 (PST) (envelope-from cjc) Date: Sun, 17 Mar 2002 15:11:13 -0800 From: "Crist J. Clark" To: Doug Barton Cc: Makoto Matsushita , cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, imp@FreeBSD.ORG Subject: Re: cvs commit: src/etc rc Message-ID: <20020317151113.W29705@blossom.cjclark.org> References: <20020317221213Y.matusita@jp.FreeBSD.org> <20020317121422.I3758-100000@master.gorean.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020317121422.I3758-100000@master.gorean.org>; from DougB@FreeBSD.ORG on Sun, Mar 17, 2002 at 12:15:27PM -0800 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Mar 17, 2002 at 12:15:27PM -0800, Doug Barton wrote: > On Sun, 17 Mar 2002, Makoto Matsushita wrote: > > > > > dougb> Modified files: > > dougb> etc rc > > dougb> Log: > > dougb> Add a late rc.sysctl pass to catch sysctl's for things that were > > dougb> not loaded yet on the first pass. > > > > Are there any chances that we can distinguish "the early phase" and > > "the latter phase" inside /etc/rc.sysctl? > > Well, I was trying to keep it simple, but take a look at the latest > version. Just remember, you asked for it. :) I still kind of like the idea of breaking /etc/sysctl.conf into sections and then being able to load these individual sections at separate times by running, /etc/rc.sysctl
Even if the quick implementation I wrote as a proof of concept is a quite kludgey http://docs.freebsd.org/cgi/getmsg.cgi?fetch=36719+0+archive/2002/freebsd-arch/20020210.freebsd-arch But I should also point out, doug, that if this is the kind of thing you are thinking about by adding those 'first' and 'last' arguments, it won't work the way it is written. When you load a file using the, . file Syntax, the commands in the file are run by the current shell, the environment is not changed, including the positional parameters ($1, $2, $*, etc.). As far as I know, . /etc/rc.sysctl first Just tosses out the 'first;' it isn't actually used at all. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 15:14:44 2002 Delivered-To: cvs-all@freebsd.org Received: from mao.stokely.org (mao.stokely.org [65.84.64.228]) by hub.freebsd.org (Postfix) with ESMTP id 4F2B937B405; Sun, 17 Mar 2002 15:14:40 -0800 (PST) Received: by mao.stokely.org (Postfix, from userid 2074) id 230674B65D; Sun, 17 Mar 2002 15:14:40 -0800 (PST) Date: Sun, 17 Mar 2002 15:14:40 -0800 From: Murray Stokely To: hiten@uk.FreeBSD.org Cc: Murray Stokely , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man7 build.7 Message-ID: <20020317231440.GC19657@freebsdmall.com> References: <200203171501.g2HF1TH70058@freefall.freebsd.org> <20020317154853.84690.qmail@web21104.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020317154853.84690.qmail@web21104.mail.yahoo.com> User-Agent: Mutt/1.3.25i X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > I have seen in one of your commits, that you have used "make spellcheck". Is > there really a target like that? Yes, I added it to the web tree. It is ispell based. I would like to add it to the doc/ tree, but first I need to write a simple stylesheet to ignore the contents of tags that we do not want to spell check (, etc..) to minimize the number of false positives. The main advantage that the "spellcheck" target gives you is a localized dictionary full of FreeBSD-specific lexicon (www/en/share/dict/words) and the ability to pre-format the source to remove elements that you would not like to spell check. I think it is silly that so much of our every day vocabulary is not recognized by ispell. I would like to maintain a local dictionary of technical terms somewhere in src/ so that it can be used to automatically check src, doc, and www for spelling-errors. - Murray To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 15:32: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 769ED37B405; Sun, 17 Mar 2002 15:32:44 -0800 (PST) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HNWi271157; Sun, 17 Mar 2002 15:32:44 -0800 (PST) (envelope-from dwcjr) Message-Id: <200203172332.g2HNWi271157@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Sun, 17 Mar 2002 15:32:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/samba Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2002/03/17 15:32:44 PST Modified files: net/samba Makefile Log: Fix ssl configure arg Submitted by: tom@linden.homeunix.net Revision Changes Path 1.77 +1 -1 ports/net/samba/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 15:38:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F167137B404; Sun, 17 Mar 2002 15:38:44 -0800 (PST) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HNciN71988; Sun, 17 Mar 2002 15:38:44 -0800 (PST) (envelope-from anders) Message-Id: <200203172338.g2HNciN71988@freefall.freebsd.org> From: Anders Nordby Date: Sun, 17 Mar 2002 15:38:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/oftpd Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anders 2002/03/17 15:38:44 PST Modified files: ftp/oftpd Makefile Log: Add MAX_NUM_CLIENTS option, to override command-line limit for maximum number of connections. PR: 36022 Submitted by: Gea-Suan Lin Revision Changes Path 1.8 +6 -1 ports/ftp/oftpd/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 17 15: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 97C5B37B400; Sun, 17 Mar 2002 15:48:24 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HNmOE73532; Sun, 17 Mar 2002 15:48:24 -0800 (PST) (envelope-from des) Message-Id: <200203172348.g2HNmOE73532@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 17 Mar 2002 15:48:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/conf GENERIC X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/17 15:48:24 PST Modified files: sys/i386/conf GENERIC Log: s/options\t\t/options \t/ Revision Changes Path 1.336 +1 -1 src/sys/i386/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 15:54: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 0F65D37B405; Sun, 17 Mar 2002 15:54:56 -0800 (PST) Received: (from benno@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HNsu374317; Sun, 17 Mar 2002 15:54:56 -0800 (PST) (envelope-from benno) Message-Id: <200203172354.g2HNsu374317@freefall.freebsd.org> From: Benno Rice Date: Sun, 17 Mar 2002 15:54:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/powerpc/powerpc trap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG benno 2002/03/17 15:54:56 PST Modified files: sys/powerpc/powerpc trap.c Log: Clean up and fix up copyin and copyout. Revision Changes Path 1.11 +20 -14 src/sys/powerpc/powerpc/trap.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 17 15:55:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A53037B498; Sun, 17 Mar 2002 15:55:11 -0800 (PST) Received: (from benno@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HNtBW74384; Sun, 17 Mar 2002 15:55:11 -0800 (PST) (envelope-from benno) Message-Id: <200203172355.g2HNtBW74384@freefall.freebsd.org> From: Benno Rice Date: Sun, 17 Mar 2002 15:55:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/powerpc/powerpc trap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG benno 2002/03/17 15:55:11 PST Modified files: sys/powerpc/powerpc trap.c Log: Lowercase all of the trap names. Revision Changes Path 1.12 +48 -48 src/sys/powerpc/powerpc/trap.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 17 15:56:51 2002 Delivered-To: cvs-all@freebsd.org Received: from web21107.mail.yahoo.com (web21107.mail.yahoo.com [216.136.227.109]) by hub.freebsd.org (Postfix) with SMTP id 3C2C937B417 for ; Sun, 17 Mar 2002 15:56:48 -0800 (PST) Message-ID: <20020317235648.66148.qmail@web21107.mail.yahoo.com> Received: from [62.254.0.5] by web21107.mail.yahoo.com via HTTP; Sun, 17 Mar 2002 15:56:48 PST Date: Sun, 17 Mar 2002 15:56:48 -0800 (PST) From: Hiten Pandya Reply-To: hiten@uk.FreeBSD.org Subject: Re: cvs commit: src/share/man/man7 build.7 To: Murray Stokely Cc: cvs-all@FreeBSD.org In-Reply-To: <20020317231440.GC19657@freebsdmall.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --- Murray Stokely wrote: > The main advantage that the "spellcheck" target gives you is a > localized dictionary full of FreeBSD-specific lexicon > (www/en/share/dict/words) and the ability to pre-format the source to > remove elements that you would not like to spell check. Are we talking about a plain text dictionary, such as /usr/share/dict/web2? I will start gathering some terms. Also, are we allowed to use terms from the 4.4 BSD Book? -- Hiten __________________________________________________ Do You Yahoo!? Yahoo! Sports - live college hoops coverage http://sports.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 15:58: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 4619C37B417; Sun, 17 Mar 2002 15:58:13 -0800 (PST) Received: (from benno@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2HNwDU74863; Sun, 17 Mar 2002 15:58:13 -0800 (PST) (envelope-from benno) Message-Id: <200203172358.g2HNwDU74863@freefall.freebsd.org> From: Benno Rice Date: Sun, 17 Mar 2002 15:58:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/powerpc/powerpc pmap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG benno 2002/03/17 15:58:12 PST Modified files: sys/powerpc/powerpc pmap.c Log: Changes and fixes in preparation for UMA: - Bootstrap pvo entries are now allocated by stealing pages. - Just return if we're pmap_enter'ing a mapping that's already there. Don't remove it and re-enter it. Revision Changes Path 1.21 +29 -12 src/sys/powerpc/powerpc/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 16:27: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3ACAD37B417; Sun, 17 Mar 2002 16:26:58 -0800 (PST) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I0QwX82138; Sun, 17 Mar 2002 16:26:58 -0800 (PST) (envelope-from anders) Message-Id: <200203180026.g2I0QwX82138@freefall.freebsd.org> From: Anders Nordby Date: Sun, 17 Mar 2002 16:26:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/imap-uw Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anders 2002/03/17 16:26:58 PST Modified files: mail/imap-uw Makefile Log: Remove broken master sites. Fix hostname for freenix.no master site. PR: 35875 Revision Changes Path 1.63 +2 -4 ports/mail/imap-uw/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 17 16:29: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 ECC9E37B400; Sun, 17 Mar 2002 16:29:39 -0800 (PST) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I0TdJ82592; Sun, 17 Mar 2002 16:29:39 -0800 (PST) (envelope-from anders) Message-Id: <200203180029.g2I0TdJ82592@freefall.freebsd.org> From: Anders Nordby Date: Sun, 17 Mar 2002 16:29:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/cclient Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anders 2002/03/17 16:29:39 PST Modified files: mail/cclient Makefile Log: Remove broken master site. Fix hostname for freenix.no master site. Revision Changes Path 1.18 +1 -2 ports/mail/cclient/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 17 16:49:51 2002 Delivered-To: cvs-all@freebsd.org Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by hub.freebsd.org (Postfix) with ESMTP id 46DC637B404; Sun, 17 Mar 2002 16:49:47 -0800 (PST) Received: (from dillon@localhost) by apollo.backplane.com (8.11.6/8.9.1) id g2I0mOc40231; Sun, 17 Mar 2002 16:48:24 -0800 (PST) (envelope-from dillon) Date: Sun, 17 Mar 2002 16:48:24 -0800 (PST) From: Matthew Dillon Message-Id: <200203180048.g2I0mOc40231@apollo.backplane.com> To: Hiten Pandya Cc: current@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, tanimura@r.dl.itc.u-tokyo.ac.jp Subject: Re: cvs commit: src/sys/kern kern_mtxpool.c src/sys/sys kernel.h src/sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h vm_pageout.c vm_zone.c References: <20020317201648.98448.qmail@web21106.mail.yahoo.com> Sender: owner-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, : :Sorry to unwantedly butt in, but the patch supplied by Seigo actually :solved the vm_map.c locking problems which used to come up on my system. :Just some info. :) : :Regards, : : -- Hiten Pandya : -- It fixed some things, it broke some things. Pretty much standard fare for anyone who has ever done work on the vm_map lock, including yours truely. John Dyson couldn't get it right, David Greenman couldn't get it right, I couldn't get it completely right... getting it to do the right thing even under -stable is difficult, which is why I am suggesting that it simply be made into an exclusive lock in -current. -Matt Matthew Dillon :--- Matthew Dillon wrote: :> I have no idea what the frig you guys are doing in vm_map.c. I would :> recommend that all the changes be backed out. Then I would recommend :> that the following be done: :> :> * change the lockmgr vm_map lock to be exclusive-only :> * test & commit :> * change the lockmgr vm_map lock to an exclusive SX lock :> * test & commit :> * Then work on re-optimizing the vm_map locks :> :> You guys are trying to bite off too much all at once. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 16:52: 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 25B7737B405; Sun, 17 Mar 2002 16:52:05 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I0q5q85728; Sun, 17 Mar 2002 16:52:05 -0800 (PST) (envelope-from will) Message-Id: <200203180052.g2I0q5q85728@freefall.freebsd.org> From: Will Andrews Date: Sun, 17 Mar 2002 16:52:05 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-servers/XFree86-4-Server Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG will 2002/03/17 16:52:05 PST Modified files: x11-servers/XFree86-4-Server Makefile Log: More cosmetic fixes: [1] Move warning about Matrox HAL drivers to pre-everything target, so the user gets the warning whether or not they enable the driver. [2] Tag Matrox-specific master sites and distfile. Revision Changes Path 1.108 +8 -5 ports/x11-servers/XFree86-4-Server/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 17 16:55:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3721337B404; Sun, 17 Mar 2002 16:55:24 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I0tOi86291; Sun, 17 Mar 2002 16:55:24 -0800 (PST) (envelope-from cjc) Message-Id: <200203180055.g2I0tOi86291@freefall.freebsd.org> From: "Crist J. Clark" Date: Sun, 17 Mar 2002 16:55:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/net bridge.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/17 16:55:24 PST Modified files: sys/net bridge.c Log: Add hooks for very basic IPFilter support in bridging. Set, # sysctl net.link.ether.bdg_ipf=1 To enable. Just like ipfw(8) bridging, only input packets are filtered in the bridge. Filtering works just like in the IP layer, ipf(8) first, then ipfw(8). And just like in the IP layer, both are independent, one need not be run to use the other. (Note: This will not work in, but doesn't break, the bridge.ko module. The ipl.ko module would need to be fixed before that is worth worrying about.) Reviewed by: luigi Revision Changes Path 1.48 +42 -5 src/sys/net/bridge.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 17 16:57: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 6800D37B41C; Sun, 17 Mar 2002 16:56:52 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I0upO86431; Sun, 17 Mar 2002 16:56:51 -0800 (PST) (envelope-from dougb) Message-Id: <200203180056.g2I0upO86431@freefall.freebsd.org> From: Doug Barton Date: Sun, 17 Mar 2002 16:56:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dougb 2002/03/17 16:56:51 PST Modified files: etc rc Log: Make sure that rc.syctl gets its own version of positional parameters Submitted by: cjc Revision Changes Path 1.303 +3 -3 src/etc/rc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 17: 0:11 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by hub.freebsd.org (Postfix) with ESMTP id A886B37B404; Sun, 17 Mar 2002 16:59:57 -0800 (PST) Received: from 12-234-22-238.client.attbi.com ([12.234.22.238]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020318005957.TCGK2626.rwcrmhc51.attbi.com@12-234-22-238.client.attbi.com>; Mon, 18 Mar 2002 00:59:57 +0000 Received: from master.gorean.org (master.gorean.org [10.0.0.2]) by 12-234-22-238.client.attbi.com (8.11.6/8.11.6) with ESMTP id g2I0xrh56213; Sun, 17 Mar 2002 16:59:53 -0800 (PST) (envelope-from DougB@FreeBSD.org) Received: from master.gorean.org (localhost [127.0.0.1]) by master.gorean.org (8.12.2/8.12.2) with ESMTP id g2I0xqYm000368; Sun, 17 Mar 2002 16:59:52 -0800 (PST) (envelope-from DougB@FreeBSD.org) Received: from localhost (doug@localhost) by master.gorean.org (8.12.2/8.12.2/Submit) with ESMTP id g2I0xnjp000365; Sun, 17 Mar 2002 16:59:49 -0800 (PST) X-Authentication-Warning: master.gorean.org: doug owned process doing -bs Date: Sun, 17 Mar 2002 16:59:49 -0800 (PST) From: Doug Barton X-X-Sender: doug@master.gorean.org To: "Crist J. Clark" Cc: Makoto Matsushita , , , Subject: Re: cvs commit: src/etc rc In-Reply-To: <20020317151113.W29705@blossom.cjclark.org> Message-ID: <20020317163932.Q3758-100000@master.gorean.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 17 Mar 2002, Crist J. Clark wrote: > On Sun, Mar 17, 2002 at 12:15:27PM -0800, Doug Barton wrote: > > On Sun, 17 Mar 2002, Makoto Matsushita wrote: > > > > > > > > dougb> Modified files: > > > dougb> etc rc > > > dougb> Log: > > > dougb> Add a late rc.sysctl pass to catch sysctl's for things that were > > > dougb> not loaded yet on the first pass. > > > > > > Are there any chances that we can distinguish "the early phase" and > > > "the latter phase" inside /etc/rc.sysctl? > > > > Well, I was trying to keep it simple, but take a look at the latest > > version. Just remember, you asked for it. :) > > I still kind of like the idea of breaking /etc/sysctl.conf into > sections The problem with that approach is that it requires users to know at which stages in the process different mibs are available to twiddle. I think that's asking too much. Quite frankly, I think the whole argument against setting things twice is silly, but given that it's fairly easy to fix (at the risk of obfuscating the code) I suppose it's better to have it clean. However, if someone else wants to make a groups-friendly version that doesn't require users to get things in the right group to get stuff set, I won't object. > But I should also point out, doug, that if this is the kind of thing > you are thinking about by adding those 'first' and 'last' arguments, > it won't work the way it is written. Thanks. I had the fixed version in /etc, but forgot to copy it to my tree before committing. Mea culpa. -- "We have known freedom's price. We have shown freedom's power. And in this great conflict, ... we will see freedom's victory." - George W. Bush, President of the United States State of the Union, January 28, 2002 Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 17: 5:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 34C1C37B404; Sun, 17 Mar 2002 17:05:31 -0800 (PST) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I15VL91024; Sun, 17 Mar 2002 17:05:31 -0800 (PST) (envelope-from anders) Message-Id: <200203180105.g2I15VL91024@freefall.freebsd.org> From: Anders Nordby Date: Sun, 17 Mar 2002 17:05:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils/httplog distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anders 2002/03/17 17:05:31 PST Modified files: sysutils/httplog distinfo Log: Correct checksum. The LICENSE file was changed. Requested by: kris Revision Changes Path 1.3 +1 -1 ports/sysutils/httplog/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 17 17:33: 7 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 8EC7F37B400; Sun, 17 Mar 2002 17:32:57 -0800 (PST) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.6/8.11.6) with SMTP id g2I1Wfk17026; Sun, 17 Mar 2002 20:32:41 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Sun, 17 Mar 2002 20:32:40 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Matthew Dillon Cc: Hiten Pandya , current@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, tanimura@r.dl.itc.u-tokyo.ac.jp Subject: Re: cvs commit: src/sys/kern kern_mtxpool.c src/sys/sys kernel.h src/sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h vm_pageout.c vm_zone.c In-Reply-To: <200203180048.g2I0mOc40231@apollo.backplane.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, 17 Mar 2002, Matthew Dillon wrote: > It fixed some things, it broke some things. Pretty much standard > fare for anyone who has ever done work on the vm_map lock, including > yours truely. John Dyson couldn't get it right, David Greenman couldn't > get it right, I couldn't get it completely right... getting it to do > the right thing even under -stable is difficult, which is why I am > suggesting that it simply be made into an exclusive lock in -current. Hmm. Ok, so right now the code that has been branched for DP1 makes use of Brian's recent locking commits. My original thought was we'd simply back it out of that branch to make sure that the DP is reliable. How hard would it be for us to switch to what you propose (just convert all slocks into xlocks, and simplify out the upgrade semantics), in particular, before we cut the DP? It sounds to me like the right approach is simply to fall back to lockmgr for the DP, and get these fixes into the main tree and they'll be there for the next DP in a few months. Can you take ownership of the task since you clearly know what's going on? Can I stick your name in the smp web page saying so? :-) 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 17 17:34: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 A00A337B423; Sun, 17 Mar 2002 17:34:24 -0800 (PST) Received: (from anders@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I1YOk95823; Sun, 17 Mar 2002 17:34:24 -0800 (PST) (envelope-from anders) Message-Id: <200203180134.g2I1YOk95823@freefall.freebsd.org> From: Anders Nordby Date: Sun, 17 Mar 2002 17:34:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mod_mp3 Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG anders 2002/03/17 17:34:24 PST Modified files: www/mod_mp3 Makefile distinfo Log: Fix hostname for freenix.no master site. Correct broken checksum for distfile. It was not updated for 0.33 => 0.35 upgrade. Pointy hat to: pat PR: 35186 Revision Changes Path 1.17 +1 -1 ports/www/mod_mp3/Makefile 1.15 +1 -1 ports/www/mod_mp3/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 17 17:52:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D873537B400; Sun, 17 Mar 2002 17:52:19 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I1qJj99392; Sun, 17 Mar 2002 17:52:19 -0800 (PST) (envelope-from dd) Message-Id: <200203180152.g2I1qJj99392@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 17 Mar 2002 17:52:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys socket.2 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2002/03/17 17:52:19 PST Modified files: lib/libc/sys socket.2 Log: Features are deprecated, not depreciated. PR: 35987 Submitted by: shill@free.fr Revision Changes Path 1.22 +2 -2 src/lib/libc/sys/socket.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 17:56:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 912D037B400; Sun, 17 Mar 2002 17:56:47 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I1ulY00352; Sun, 17 Mar 2002 17:56:47 -0800 (PST) (envelope-from dd) Message-Id: <200203180156.g2I1ulY00352@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 17 Mar 2002 17:56:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/faq book.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2002/03/17 17:56:47 PST Modified files: en_US.ISO8859-1/books/faq book.sgml Log: Improve a link description to contain the name of the article it's referring to instead of just "this article". PR: 36018 Submitted by: Martin Heinen Revision Changes Path 1.417 +3 -2 doc/en_US.ISO8859-1/books/faq/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 17:58: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 B33CB37B402; Sun, 17 Mar 2002 17:58:16 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I1wGm00649; Sun, 17 Mar 2002 17:58:16 -0800 (PST) (envelope-from rwatson) Message-Id: <200203180158.g2I1wGm00649@freefall.freebsd.org> From: Robert Watson Date: Sun, 17 Mar 2002 17:58:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/smp index.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/03/17 17:58:16 PST Modified files: en/smp index.sgml Log: Add a task to replace the shared/exclusive locking scheme in the VM system with a simple exclusive locking scheme, avoiding livelock and deadlock scenarios using the new locking primitives, per Matt Dillon's description on freebsd-current. Obtained from: 200203180048.g2I0mOc40231@apollo.backplane.com Revision Changes Path 1.50 +9 -1 www/en/smp/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 17:58: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 6BA7637B400; Sun, 17 Mar 2002 17:58:23 -0800 (PST) Received: (from demon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I1wNR00702; Sun, 17 Mar 2002 17:58:23 -0800 (PST) (envelope-from demon) Message-Id: <200203180158.g2I1wNR00702@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sun, 17 Mar 2002 17:58:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/calamaris pkg-comment X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2002/03/17 17:58:23 PST Modified files: www/calamaris pkg-comment Log: Fix typo. Submitted by: keramida Revision Changes Path 1.3 +1 -1 ports/www/calamaris/pkg-comment To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 17:59: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 2775A37B402; Sun, 17 Mar 2002 17:59:24 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I1xO600934; Sun, 17 Mar 2002 17:59:24 -0800 (PST) (envelope-from dd) Message-Id: <200203180159.g2I1xO600934@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 17 Mar 2002 17:59:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/faq book.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2002/03/17 17:59:24 PST Modified files: en_US.ISO8859-1/books/faq book.sgml Log: Spaces before tabs at the beginning of a line are a no-no. Revision Changes Path 1.418 +4 -5 doc/en_US.ISO8859-1/books/faq/book.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 18: 1:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B4AF37B402; Sun, 17 Mar 2002 18:01:09 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I219v01334; Sun, 17 Mar 2002 18:01:09 -0800 (PST) (envelope-from bmah) Message-Id: <200203180201.g2I219v01334@freefall.freebsd.org> From: "Bruce A. Mah" Date: Sun, 17 Mar 2002 18:01:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/03/17 18:01:09 PST Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Updated release notes: ACPI 20020308, OpenPAM Centaury. Revision Changes Path 1.300 +3 -3 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 18: 4: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 BAA9D37B402; Sun, 17 Mar 2002 18:04:47 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I24ls01830; Sun, 17 Mar 2002 18:04:47 -0800 (PST) (envelope-from bmah) Message-Id: <200203180204.g2I24ls01830@freefall.freebsd.org> From: "Bruce A. Mah" Date: Sun, 17 Mar 2002 18:04:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/03/17 18:04:47 PST Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Updated release notes: Perl 5.6.1, one-true-awk 2002-02-10. Revision Changes Path 1.301 +3 -3 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 18:13: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 152FC37B402; Sun, 17 Mar 2002 18:13:39 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I2DdQ07739; Sun, 17 Mar 2002 18:13:39 -0800 (PST) (envelope-from bde) Message-Id: <200203180213.g2I2DdQ07739@freefall.freebsd.org> From: Bruce Evans Date: Sun, 17 Mar 2002 18:13:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/newfs Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bde 2002/03/17 18:13:39 PST Modified files: sbin/newfs Makefile Log: Fixed 2 layers of breakage of WARNS. Setting WARNS unconditionally to 0 was bad and setting it unconditionally to 2 was worse. Revision Changes Path 1.16 +1 -1 src/sbin/newfs/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 17 18:15:49 2002 Delivered-To: cvs-all@freebsd.org Received: from apollo.backplane.com (apollo.backplane.com [216.240.41.2]) by hub.freebsd.org (Postfix) with ESMTP id 37DA537B400; Sun, 17 Mar 2002 18:15:40 -0800 (PST) Received: (from dillon@localhost) by apollo.backplane.com (8.11.6/8.9.1) id g2I2Feh42022; Sun, 17 Mar 2002 18:15:40 -0800 (PST) (envelope-from dillon) Date: Sun, 17 Mar 2002 18:15:40 -0800 (PST) From: Matthew Dillon Message-Id: <200203180215.g2I2Feh42022@apollo.backplane.com> To: Robert Watson Cc: Hiten Pandya , current@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, tanimura@r.dl.itc.u-tokyo.ac.jp Subject: Re: cvs commit: src/sys/kern kern_mtxpool.c src/sys/sys kernel.h src/sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h vm_pageout.c vm_zone.c References: Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG :Hmm. Ok, so right now the code that has been branched for DP1 makes use :of Brian's recent locking commits. My original thought was we'd simply :back it out of that branch to make sure that the DP is reliable. How hard :would it be for us to switch to what you propose (just convert all slocks :into xlocks, and simplify out the upgrade semantics), in particular, :before we cut the DP? It sounds to me like the right approach is simply :to fall back to lockmgr for the DP, and get these fixes into the main tree :and they'll be there for the next DP in a few months. : :Can you take ownership of the task since you clearly know what's going on? :Can I stick your name in the smp web page saying so? :-) : :Robert N M Watson FreeBSD Core Team, TrustedBSD Project :robert@fledge.watson.org NAI Labs, Safeport Network Services I think the developers currently working on it have the expertise to clean it up. My recommendation is that developer who committed the SX lock stuff back it out (fall back to the lockmgr locks), and then that same developer scan the code and determine if the lockmgr lock can just be made exclusive for all cases and, if so, to test and commit that. If the exclusive-only lockmgr lock works then that is what should go into the DP, else the original lockmgr stuff should go in. Until the critical_*() function issue is resolved I do not want to make extensive modifications or updates to my -current tree so I couldn't do this stuff in the time frame you are talking about even if I wanted to. -Matt Matthew Dillon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 18:23: 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 319E937B416; Sun, 17 Mar 2002 18:22:54 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I2Ms309830; Sun, 17 Mar 2002 18:22:54 -0800 (PST) (envelope-from cjc) Message-Id: <200203180222.g2I2Ms309830@freefall.freebsd.org> From: "Crist J. Clark" Date: Sun, 17 Mar 2002 18:22:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.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 cjc 2002/03/17 18:22:53 PST Modified files: usr.bin/chpass chpass.c pw_copy.c pw_copy.h Log: It was possible for an unprivileged user to tie up the password information (no one else can vipw(8), chpass(1), or even passwd(1)), either on purpose or by accident, until an administrator manually intervened. Instead, do not lock the master.passwd file while a user is editing his information. But once we go to write the new information, check that the modified user's information has not changed in the password database since we started. Abort the changes if it has. Add a $FreeBSD$ to pw_copy.h. PR: i386/35816 Obtained from: NetBSD MFC after: 1 week Revision Changes Path 1.19 +29 -22 src/usr.bin/chpass/chpass.c 1.11 +34 -2 src/usr.bin/chpass/pw_copy.c 1.2 +2 -2 src/usr.bin/chpass/pw_copy.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 17 18:23: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 B766437B417; Sun, 17 Mar 2002 18:23:43 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I2Nhn10005; Sun, 17 Mar 2002 18:23:43 -0800 (PST) (envelope-from bde) Message-Id: <200203180223.g2I2Nhn10005@freefall.freebsd.org> From: Bruce Evans Date: Sun, 17 Mar 2002 18:23:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/newfs Makefile newfs.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bde 2002/03/17 18:23:43 PST Modified files: sbin/newfs Makefile newfs.c Log: Removed vestiges of mount_mfs. Sorted the Makefile a bit. Revision Changes Path 1.17 +3 -7 src/sbin/newfs/Makefile 1.48 +0 -8 src/sbin/newfs/newfs.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 17 18:33: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE53237B405; Sun, 17 Mar 2002 18:32:53 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I2Wrv13971; Sun, 17 Mar 2002 18:32:53 -0800 (PST) (envelope-from dd) Message-Id: <200203180232.g2I2Wrv13971@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 17 Mar 2002 18:32:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen devname.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/17 18:32:53 PST Modified files: lib/libc/gen devname.3 Log: Update to reflect reality; devname(3) hasn't returned NULL on failure since revision 1.2 of devname.c (1999/07/18). While I'm here, note, in the BUGS section, that the returned pointer is to a static buffer. Revision Changes Path 1.12 +19 -7 src/lib/libc/gen/devname.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 17 18:36: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 B6FA037B405; Sun, 17 Mar 2002 18:36:43 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I2ahu14392; Sun, 17 Mar 2002 18:36:43 -0800 (PST) (envelope-from dd) Message-Id: <200203180236.g2I2ahu14392@freefall.freebsd.org> From: Dima Dorfman Date: Sun, 17 Mar 2002 18:36:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/gen devname.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/17 18:36:43 PST Modified files: lib/libc/gen devname.3 Log: mdoc(7) police: bump document date to the date of the last interface change (revision 1.2 of devname.c on 1999/07/18), don't put quotes around a path, and use .Dv where appropriate. Revision Changes Path 1.13 +6 -3 src/lib/libc/gen/devname.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 17 18:43:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 11E8C37B402; Sun, 17 Mar 2002 18:43:15 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I2hFe15082; Sun, 17 Mar 2002 18:43:15 -0800 (PST) (envelope-from bde) Message-Id: <200203180243.g2I2hFe15082@freefall.freebsd.org> From: Bruce Evans Date: Sun, 17 Mar 2002 18:43:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/newfs mkfs.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bde 2002/03/17 18:43:14 PST Modified files: sbin/newfs mkfs.c Log: Fixed some style bugs (mainly ones not fixed or made worse by rev.1.41). Old code obfuscates long (but single-line) messages by printing them in pieces using %s. Rev.1.41 obfuscated some new long messages using ISO string concatenation. This commit only fixes the new obfuscations. Revision Changes Path 1.43 +16 -12 src/sbin/newfs/mkfs.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 17 19: 5: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CBA5637B400; Sun, 17 Mar 2002 19:04:58 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I34wH17764; Sun, 17 Mar 2002 19:04:58 -0800 (PST) (envelope-from bde) Message-Id: <200203180304.g2I34wH17764@freefall.freebsd.org> From: Bruce Evans Date: Sun, 17 Mar 2002 19:04:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/newfs newfs.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bde 2002/03/17 19:04:58 PST Modified files: sbin/newfs newfs.c Log: Fixed some style bugs (mainly ones not fixed or made worse by rev.1.44). Don't use ISO string concatentation to obfuscate long single-line messages... Revision Changes Path 1.49 +9 -8 src/sbin/newfs/newfs.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 17 19:20:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D69237B405; Sun, 17 Mar 2002 19:19:57 -0800 (PST) Received: (from horikawa@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I3JvN23676; Sun, 17 Mar 2002 19:19:57 -0800 (PST) (envelope-from horikawa) Message-Id: <200203180319.g2I3JvN23676@freefall.freebsd.org> From: Kazuo Horikawa Date: Sun, 17 Mar 2002 19:19:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/ja_JP.eucJP/man/man1 Makefile at.1 bzip2.1 chmod.1 head.1 ktrace.1 last.1 ldd.1 mail.1 man.1 printf.1 ps.1 rm.1 uname.1 whois.1 ypcat.1 ypmatch.1 ypwhich.1 doc/ja_JP.eucJP/man/man2 accept.2 brk.2 kqueue.2 mmap.2 semctl.2 ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG horikawa 2002/03/17 19:19:57 PST Modified files: ja_JP.eucJP/man/man1 Makefile at.1 bzip2.1 chmod.1 head.1 ktrace.1 last.1 ldd.1 mail.1 man.1 printf.1 ps.1 rm.1 uname.1 whois.1 ypcat.1 ypmatch.1 ypwhich.1 ja_JP.eucJP/man/man2 accept.2 brk.2 kqueue.2 mmap.2 semctl.2 ja_JP.eucJP/man/man5 ethers.5 group.5 hosts.equiv.5 netid.5 passwd.5 periodic.conf.5 rc.conf.5 ja_JP.eucJP/man/man6 morse.6 ja_JP.eucJP/man/man7 security.7 ja_JP.eucJP/man/man8 accton.8 adduser.8 ancontrol.8 apm.8 arp.8 camcontrol.8 diskless.8 dump.8 dumpon.8 ftpd.8 growfs.8 ifconfig.8 ipfw.8 loader.8 mergemaster.8 mknetid.8 ngctl.8 periodic.8 ping.8 ping6.8 pppd.8 prefix.8 pw.8 revnetgroup.8 routed.8 rpc.yppasswdd.8 rpc.ypxfrd.8 stlload.8 tunefs.8 watch.8 ypbind.8 ypinit.8 yppoll.8 yppush.8 ypserv.8 ypset.8 ypxfr.8 ja_JP.eucJP/man/man9 malloc.9 Log: Catch up with 4.5-20020317-STABLE (picobsd.8 and yp.8 changes come later) Revision Changes Path 1.40 +1 -0 doc/ja_JP.eucJP/man/man1/Makefile 1.20 +6 -5 doc/ja_JP.eucJP/man/man1/at.1 1.2 +28 -11 doc/ja_JP.eucJP/man/man1/bzip2.1 1.24 +5 -5 doc/ja_JP.eucJP/man/man1/chmod.1 1.10 +6 -4 doc/ja_JP.eucJP/man/man1/head.1 1.11 +9 -5 doc/ja_JP.eucJP/man/man1/ktrace.1 1.10 +5 -3 doc/ja_JP.eucJP/man/man1/last.1 1.8 +4 -3 doc/ja_JP.eucJP/man/man1/ldd.1 1.24 +293 -197 doc/ja_JP.eucJP/man/man1/mail.1 1.18 +16 -11 doc/ja_JP.eucJP/man/man1/man.1 1.11 +3 -1 doc/ja_JP.eucJP/man/man1/printf.1 1.20 +1 -9 doc/ja_JP.eucJP/man/man1/ps.1 1.18 +3 -18 doc/ja_JP.eucJP/man/man1/rm.1 1.9 +3 -5 doc/ja_JP.eucJP/man/man1/uname.1 1.16 +6 -26 doc/ja_JP.eucJP/man/man1/whois.1 1.10 +3 -3 doc/ja_JP.eucJP/man/man1/ypcat.1 1.10 +3 -3 doc/ja_JP.eucJP/man/man1/ypmatch.1 1.10 +3 -3 doc/ja_JP.eucJP/man/man1/ypwhich.1 1.8 +1 -15 doc/ja_JP.eucJP/man/man2/accept.2 1.11 +9 -15 doc/ja_JP.eucJP/man/man2/brk.2 1.9 +13 -1 doc/ja_JP.eucJP/man/man2/kqueue.2 1.11 +5 -5 doc/ja_JP.eucJP/man/man2/mmap.2 1.8 +2 -1 doc/ja_JP.eucJP/man/man2/semctl.2 1.11 +3 -3 doc/ja_JP.eucJP/man/man5/ethers.5 1.12 +4 -4 doc/ja_JP.eucJP/man/man5/group.5 1.13 +4 -4 doc/ja_JP.eucJP/man/man5/hosts.equiv.5 1.2 +3 -3 doc/ja_JP.eucJP/man/man5/netid.5 1.18 +4 -4 doc/ja_JP.eucJP/man/man5/passwd.5 1.15 +99 -5 doc/ja_JP.eucJP/man/man5/periodic.conf.5 1.49 +16 -12 doc/ja_JP.eucJP/man/man5/rc.conf.5 1.7 +8 -9 doc/ja_JP.eucJP/man/man6/morse.6 1.21 +2 -2 doc/ja_JP.eucJP/man/man7/security.7 1.10 +1 -1 doc/ja_JP.eucJP/man/man8/accton.8 1.17 +4 -4 doc/ja_JP.eucJP/man/man8/adduser.8 1.12 +34 -19 doc/ja_JP.eucJP/man/man8/ancontrol.8 1.13 +2 -2 doc/ja_JP.eucJP/man/man8/apm.8 1.15 +2 -2 doc/ja_JP.eucJP/man/man8/arp.8 1.25 +2 -2 doc/ja_JP.eucJP/man/man8/camcontrol.8 1.14 +17 -14 doc/ja_JP.eucJP/man/man8/diskless.8 1.20 +9 -15 doc/ja_JP.eucJP/man/man8/dump.8 1.19 +11 -5 doc/ja_JP.eucJP/man/man8/dumpon.8 1.25 +4 -1 doc/ja_JP.eucJP/man/man8/ftpd.8 1.4 +2 -2 doc/ja_JP.eucJP/man/man8/growfs.8 1.28 +4 -1 doc/ja_JP.eucJP/man/man8/ifconfig.8 1.39 +17 -7 doc/ja_JP.eucJP/man/man8/ipfw.8 1.19 +7 -1 doc/ja_JP.eucJP/man/man8/loader.8 1.12 +3 -2 doc/ja_JP.eucJP/man/man8/mergemaster.8 1.12 +3 -3 doc/ja_JP.eucJP/man/man8/mknetid.8 1.10 +3 -2 doc/ja_JP.eucJP/man/man8/ngctl.8 1.17 +6 -1 doc/ja_JP.eucJP/man/man8/periodic.8 1.16 +13 -2 doc/ja_JP.eucJP/man/man8/ping.8 1.12 +14 -2 doc/ja_JP.eucJP/man/man8/ping6.8 1.14 +5 -2 doc/ja_JP.eucJP/man/man8/pppd.8 1.11 +20 -160 doc/ja_JP.eucJP/man/man8/prefix.8 1.19 +4 -11 doc/ja_JP.eucJP/man/man8/pw.8 1.9 +3 -3 doc/ja_JP.eucJP/man/man8/revnetgroup.8 1.19 +3 -2 doc/ja_JP.eucJP/man/man8/routed.8 1.14 +2 -2 doc/ja_JP.eucJP/man/man8/rpc.yppasswdd.8 1.8 +2 -2 doc/ja_JP.eucJP/man/man8/rpc.ypxfrd.8 1.10 +5 -2 doc/ja_JP.eucJP/man/man8/stlload.8 1.11 +1 -22 doc/ja_JP.eucJP/man/man8/tunefs.8 1.11 +41 -22 doc/ja_JP.eucJP/man/man8/watch.8 1.13 +3 -3 doc/ja_JP.eucJP/man/man8/ypbind.8 1.11 +3 -3 doc/ja_JP.eucJP/man/man8/ypinit.8 1.8 +3 -3 doc/ja_JP.eucJP/man/man8/yppoll.8 1.9 +2 -2 doc/ja_JP.eucJP/man/man8/yppush.8 1.16 +3 -3 doc/ja_JP.eucJP/man/man8/ypserv.8 1.10 +2 -2 doc/ja_JP.eucJP/man/man8/ypset.8 1.13 +2 -2 doc/ja_JP.eucJP/man/man8/ypxfr.8 1.9 +70 -15 doc/ja_JP.eucJP/man/man9/malloc.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 19:36:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B9B7637B402; Sun, 17 Mar 2002 19:36:35 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I3aZq25843; Sun, 17 Mar 2002 19:36:35 -0800 (PST) (envelope-from ijliao) Message-Id: <200203180336.g2I3aZq25843@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sun, 17 Mar 2002 19:36:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/jpeg Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/17 19:36:35 PST Modified files: graphics/jpeg Makefile Log: add "--enable-maxmem" configure option PR: 36013 Submitted by: Seva Gluschenko Revision Changes Path 1.31 +5 -0 ports/graphics/jpeg/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 17 19:43:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2748137B431; Sun, 17 Mar 2002 19:42:59 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I3guw27027; Sun, 17 Mar 2002 19:42:56 -0800 (PST) (envelope-from ijliao) Message-Id: <200203180342.g2I3guw27027@freefall.freebsd.org> From: Ying-Chieh Liao Date: Sun, 17 Mar 2002 19:42:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/display Makefile distinfo ports/misc/display/files patch-aa patch-ab X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/17 19:42:55 PST Modified files: misc/display Makefile distinfo misc/display/files patch-aa patch-ab Log: upgrade to 1.2 PR: 36025 Submitted by: Ports Fury Revision Changes Path 1.12 +10 -11 ports/misc/display/Makefile 1.4 +1 -1 ports/misc/display/distinfo 1.4 +16 -15 ports/misc/display/files/patch-aa 1.4 +3 -3 ports/misc/display/files/patch-ab To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 19:59: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C053937B404; Sun, 17 Mar 2002 19:58:59 -0800 (PST) Received: (from demon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I3wxL29302; Sun, 17 Mar 2002 19:58:59 -0800 (PST) (envelope-from demon) Message-Id: <200203180358.g2I3wxL29302@freefall.freebsd.org> From: Dmitry Sivachenko Date: Sun, 17 Mar 2002 19:58:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/pgpkeys demon.key X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG demon 2002/03/17 19:58:59 PST Modified files: en_US.ISO8859-1/books/handbook/pgpkeys demon.key Log: Update. Revision Changes Path 1.2 +29 -29 doc/en_US.ISO8859-1/books/handbook/pgpkeys/demon.key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 20:44:33 2002 Delivered-To: cvs-all@freebsd.org Received: from draco.over-yonder.net (draco.over-yonder.net [198.78.58.61]) by hub.freebsd.org (Postfix) with ESMTP id 75E5C37B402; Sun, 17 Mar 2002 20:44:27 -0800 (PST) Received: by draco.over-yonder.net (Postfix, from userid 100) id 0E8EAFC2; Sun, 17 Mar 2002 22:44:27 -0600 (CST) Date: Sun, 17 Mar 2002 22:44:27 -0600 From: "Matthew D. Fuller" To: David Malone Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/cron/crontab crontab.1 Message-ID: <20020317224427.B29148@over-yonder.net> References: <200203171403.g2HE3HG48388@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5-fullermd.1i In-Reply-To: <200203171403.g2HE3HG48388@freefall.freebsd.org>; from dwmalone@FreeBSD.org on Sun, Mar 17, 2002 at 06:03:17AM -0800 X-Editor: vi X-OS: FreeBSD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Mar 17, 2002 at 06:03:17AM -0800 I heard the voice of David Malone, and lo! it spake thus: > dwmalone 2002/03/17 06:03:17 PST > > Modified files: > usr.sbin/cron/crontab crontab.1 Note that the patch I had also included a slight change to the parsing logic for the allow/deny files in ..../cron/lib/misc.c, to allow a non-\n terminated line at the end of file to work right. > the patch Matthew submitted, but I broke the lines in a more FreeBSD > way and made one small wording change. Well, I broke them (or not, as the case may be) to match the rest of the file ;p -- Matthew Fuller (MF4839) | fullermd@over-yonder.net Unix Systems Administrator | fullermd@futuresouth.com Specializing in FreeBSD | http://www.over-yonder.net/ "The only reason I'm burning my candle at both ends, is because I haven't figured out how to light the middle yet" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 20:51: 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 E0FFF37B402; Sun, 17 Mar 2002 20:51:01 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I4p1d40553; Sun, 17 Mar 2002 20:51:01 -0800 (PST) (envelope-from imp) Message-Id: <200203180451.g2I4p1d40553@freefall.freebsd.org> From: Warner Losh Date: Sun, 17 Mar 2002 20:51:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc/defaults pccard.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 imp 2002/03/17 20:51:01 PST Modified files: etc/defaults pccard.conf Log: Home Wireless Network Airway wireless card Revision Changes Path 1.236 +7 -1 src/etc/defaults/pccard.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 17 20:52:29 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7643F37B402; Sun, 17 Mar 2002 20:52:24 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I4qOx40751; Sun, 17 Mar 2002 20:52:24 -0800 (PST) (envelope-from imp) Message-Id: <200203180452.g2I4qOx40751@freefall.freebsd.org> From: Warner Losh Date: Sun, 17 Mar 2002 20:52:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src UPDATING X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/03/17 20:52:24 PST Modified files: . UPDATING Log: Note comment about DP-1 Revision Changes Path 1.196 +3 -0 src/UPDATING To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 20:55:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E0C5C37B405; Sun, 17 Mar 2002 20:55:09 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I4t9D41178; Sun, 17 Mar 2002 20:55:09 -0800 (PST) (envelope-from imp) Message-Id: <200203180455.g2I4t9D41178@freefall.freebsd.org> From: Warner Losh Date: Sun, 17 Mar 2002 20:55:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/adjkerntz adjkerntz.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/03/17 20:55:09 PST Modified files: sbin/adjkerntz adjkerntz.c Log: o Use real prototypes o Remove __P. o main(int, char *[]) Revision Changes Path 1.27 +7 -9 src/sbin/adjkerntz/adjkerntz.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 17 20:56:38 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 88EF637B402; Sun, 17 Mar 2002 20:56:32 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I4uWh41597; Sun, 17 Mar 2002 20:56:32 -0800 (PST) (envelope-from des) Message-Id: <200203180456.g2I4uWh41597@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 17 Mar 2002 20:56:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/xargs xargs.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/17 20:56:32 PST Modified files: (Branch: RELENG_4) usr.bin/xargs xargs.c Log: MFC: synch with -CURRENT (warnings, __FBSDID, fork() -> vfork()) Revision Changes Path 1.9.2.2 +23 -15 src/usr.bin/xargs/xargs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 20:57:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4830737B400; Sun, 17 Mar 2002 20:57:09 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I4v9441724; Sun, 17 Mar 2002 20:57:09 -0800 (PST) (envelope-from imp) Message-Id: <200203180457.g2I4v9441724@freefall.freebsd.org> From: Warner Losh Date: Sun, 17 Mar 2002 20:57:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/badsect badsect.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/03/17 20:57:08 PST Modified files: sbin/badsect badsect.c Log: o Use real prototypes and ANSI function definitions. o Remove __P. Revision Changes Path 1.10 +6 -13 src/sbin/badsect/badsect.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 17 21: 0:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F3A037B402; Sun, 17 Mar 2002 21:00:52 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I50qO42443; Sun, 17 Mar 2002 21:00:52 -0800 (PST) (envelope-from imp) Message-Id: <200203180500.g2I50qO42443@freefall.freebsd.org> From: Warner Losh Date: Sun, 17 Mar 2002 21:00:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/ccdconfig ccdconfig.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/03/17 21:00:52 PST Modified files: sbin/ccdconfig ccdconfig.c Log: o __P removal. o Use ANSI function definitions. o main(int, char *[]) Revision Changes Path 1.23 +25 -42 src/sbin/ccdconfig/ccdconfig.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 17 21:24:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 159EC37B416; Sun, 17 Mar 2002 21:24:55 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I5Otw49335; Sun, 17 Mar 2002 21:24:55 -0800 (PST) (envelope-from murray) Message-Id: <200203180524.g2I5Otw49335@freefall.freebsd.org> From: Murray Stokely Date: Sun, 17 Mar 2002 21:24:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2002/03/17 21:24:55 PST Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Add Compaq to the list of companies that have contributed hardware to the FreeBSD Project. This currently only mentions the recent donation of 3 AlphaStation DS10s, but in the past I believe they donated about 8 PWS500 machines (most of which currently make up the Alpha ports cluster). Revision Changes Path 1.116 +8 -0 doc/en_US.ISO8859-1/articles/contributors/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 21:39:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0D0FF37B404; Sun, 17 Mar 2002 21:39:05 -0800 (PST) Received: (from mckusick@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I5d5351291; Sun, 17 Mar 2002 21:39:05 -0800 (PST) (envelope-from mckusick) Message-Id: <200203180539.g2I5d5351291@freefall.freebsd.org> From: Kirk McKusick Date: Sun, 17 Mar 2002 21:39:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/fs/nullfs null_vnops.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mckusick 2002/03/17 21:39:04 PST Modified files: sys/fs/nullfs null_vnops.c Log: Cannot release vnode underlying the nullfs vnode in null_inactive as it leaves the nullfs vnode allocated, but with no identity. The effect is that a null mount can slowly accumulate all the vnodes in the system, reclaiming them only when it is unmounted. Thus the null_inactive state instead accelerates the release of the null vnode by calling vrecycle which will in turn call the null_reclaim operator. The null_reclaim routine then does the freeing actions previosuly (incorrectly) done in null_inactive. Revision Changes Path 1.51 +27 -20 src/sys/fs/nullfs/null_vnops.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 21:47: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 6413437B405; Sun, 17 Mar 2002 21:47:15 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I5lFK52436; Sun, 17 Mar 2002 21:47:15 -0800 (PST) (envelope-from murray) Message-Id: <200203180547.g2I5lFK52436@freefall.freebsd.org> From: Murray Stokely Date: Sun, 17 Mar 2002 21:47:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributing article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2002/03/17 21:47:15 PST Modified files: en_US.ISO8859-1/articles/contributing article.sgml Log: Note that the FreeBSD Foundation can now accept donations through the web with PayPal. Revision Changes Path 1.479 +7 -2 doc/en_US.ISO8859-1/articles/contributing/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 22:18:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A057537B400; Sun, 17 Mar 2002 22:17:50 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I6Hoo60415; Sun, 17 Mar 2002 22:17:50 -0800 (PST) (envelope-from imp) Message-Id: <200203180617.g2I6Hoo60415@freefall.freebsd.org> From: Warner Losh Date: Sun, 17 Mar 2002 22:17:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/disklabel disklabel.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/03/17 22:17:50 PST Modified files: sbin/disklabel disklabel.c Log: o remove __P o Use ANSI function definitions o const poison o remove register Revision Changes Path 1.44 +48 -72 src/sbin/disklabel/disklabel.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 22:32: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 2849837B421; Sun, 17 Mar 2002 22:32:21 -0800 (PST) Received: (from kris@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I6WLW62559; Sun, 17 Mar 2002 22:32:21 -0800 (PST) (envelope-from kris) Message-Id: <200203180632.g2I6WLW62559@freefall.freebsd.org> From: Kris Kennaway Date: Sun, 17 Mar 2002 22:32:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/lang/nhc98 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kris 2002/03/17 22:32:21 PST Modified files: lang/nhc98 Makefile Log: Mark FORBIDDEN: this port loops infinitely during build: [...] gmake[1652]: Leaving directory `/x/tmp/a/ports/lang/nhc98/work/nhc98-1.10/src/prelude/Numeric' cd -FreeBSD; gmake fromC cd: Illegal option -F gmake[1652]: Entering directory `/x/tmp/a/ports/lang/nhc98/work/nhc98-1.10/src/prelude [...] Noticed by: bento Revision Changes Path 1.4 +2 -0 ports/lang/nhc98/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 17 23: 2:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 21E3A37B426; Sun, 17 Mar 2002 22:59:21 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I6xLS66725; Sun, 17 Mar 2002 22:59:21 -0800 (PST) (envelope-from imp) Message-Id: <200203180659.g2I6xLS66725@freefall.freebsd.org> From: Warner Losh Date: Sun, 17 Mar 2002 22:59:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/dumpon dumpon.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/03/17 22:59:15 PST Modified files: sbin/dumpon dumpon.c Log: o __P o Strict ANSI declarations. o return (foo); o main (int, char *[]) Revision Changes Path 1.13 +5 -5 src/sbin/dumpon/dumpon.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 17 23:12: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 E9F9B37B417; Sun, 17 Mar 2002 23:12:20 -0800 (PST) Received: (from clive@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I7CKn73920; Sun, 17 Mar 2002 23:12:20 -0800 (PST) (envelope-from clive) Message-Id: <200203180712.g2I7CKn73920@freefall.freebsd.org> From: Clive Lin Date: Sun, 17 Mar 2002 23:12:20 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/chinese/mutt Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG clive 2002/03/17 23:12:20 PST Modified files: chinese/mutt Makefile distinfo Log: Something wrong in my local configuration :) Most people do not have WANT_FULL_GETTEXT=YES in their /etc/make.conf. Revert to old patchset, and wait for gettext 0.10.40 becomes default. Noted by: ijliao Revision Changes Path 1.17 +1 -1 ports/chinese/mutt/Makefile 1.18 +1 -1 ports/chinese/mutt/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 23:13: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from ns.waishi.jp (ns.waishi.jp [61.199.233.194]) by hub.freebsd.org (Postfix) with ESMTP id 12A5D37B41F; Sun, 17 Mar 2002 23:12:56 -0800 (PST) Received: from ns.waishi.jp (ns.waishi.jp [61.199.233.194]) by ns.waishi.jp (Postfix) with SMTP id 6477F23233; Mon, 18 Mar 2002 16:12:50 +0900 (JST) Date: Mon, 18 Mar 2002 16:12:50 +0900 From: Shin-ichi YOSHIMOTO To: "Crist J. Clark" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.h Message-Id: <20020318161250.1c35600c.yosimoto@waishi.jp> In-Reply-To: <200203180222.g2I2Ms309830@freefall.freebsd.org> References: <200203180222.g2I2Ms309830@freefall.freebsd.org> Organization: WAISHI.JP X-Mailer: Sylpheed version 0.7.4 (GTK+ 1.2.10; i386-portbld-freebsd4.5) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Subject: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.h, On Sun, 17 Mar 2002 18:22:53 -0800 (PST), Crist J. Clark wrote: > cjc 2002/03/17 18:22:53 PST > > Modified files: > usr.bin/chpass chpass.c pw_copy.c pw_copy.h Where is ? -- Shin-ichi YOSHIMOTO http://www.waishi.jp/~yosimoto/diary/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 23:15: 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 4601D37B417; Sun, 17 Mar 2002 23:14:59 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I7ExE74376; Sun, 17 Mar 2002 23:14:59 -0800 (PST) (envelope-from imp) Message-Id: <200203180714.g2I7ExE74376@freefall.freebsd.org> From: Warner Losh Date: Sun, 17 Mar 2002 23:14:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/xtend user.c xtend.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/03/17 23:14:59 PST Modified files: libexec/xtend user.c xtend.c Log: o MAXPATHLEN is the correct constant to use for path names, it includes the NULL. o use snprintf in preference to unchecked strcat in a couple of places that likely can't overflow. Makes it easier to grep for strcpy :-) Revision Changes Path 1.11 +2 -4 src/libexec/xtend/user.c 1.13 +11 -15 src/libexec/xtend/xtend.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 17 23:21: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E391637B478; Sun, 17 Mar 2002 23:20:15 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I7KFd75153; Sun, 17 Mar 2002 23:20:15 -0800 (PST) (envelope-from imp) Message-Id: <200203180720.g2I7KFd75153@freefall.freebsd.org> From: Warner Losh Date: Sun, 17 Mar 2002 23:20:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/diskpart diskpart.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 imp 2002/03/17 23:20:15 PST Modified files: usr.sbin/diskpart diskpart.8 Log: Add xref to fdisk and disklabel to aid people looking around on how to partition disks. Suggested by: Dworkin Muller Revision Changes Path 1.10 +4 -2 src/usr.sbin/diskpart/diskpart.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 17 23:22:59 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 097CA37B41D; Sun, 17 Mar 2002 23:22:54 -0800 (PST) Received: (from gj@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I7MrY75652; Sun, 17 Mar 2002 23:22:53 -0800 (PST) (envelope-from gj) Message-Id: <200203180722.g2I7MrY75652@freefall.freebsd.org> From: Gary Jennejohn Date: Sun, 17 Mar 2002 23:22:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/vile Makefile distinfo ports/editors/xvile Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gj 2002/03/17 23:22:53 PST Modified files: editors/vile Makefile distinfo editors/xvile Makefile distinfo Log: Update to patch level z. This has mostly fixes for winvile, but there are some which are interesting to *IX users. Revision Changes Path 1.37 +3 -2 ports/editors/vile/Makefile 1.21 +1 -0 ports/editors/vile/distinfo 1.39 +3 -2 ports/editors/xvile/Makefile 1.22 +1 -0 ports/editors/xvile/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 23:23: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 6677737B41A; Sun, 17 Mar 2002 23:23:41 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I7Nfr75821; Sun, 17 Mar 2002 23:23:41 -0800 (PST) (envelope-from imp) Message-Id: <200203180723.g2I7Nfr75821@freefall.freebsd.org> From: Warner Losh Date: Sun, 17 Mar 2002 23:23:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/dev_mkdb dev_mkdb.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/03/17 23:23:41 PST Modified files: usr.sbin/dev_mkdb dev_mkdb.c Log: o remove __P o Use ansi function definitions o MAXPATHLEN already has the NUL at the end, so no need to add 1 (note that MAXNAMLEN doesn't, so the + 1 there is correct). o remove register. Revision Changes Path 1.7 +7 -9 src/usr.sbin/dev_mkdb/dev_mkdb.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 17 23:29:22 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id E412937B405; Sun, 17 Mar 2002 23:29:12 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 602025346; Mon, 18 Mar 2002 08:29:10 +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: Shin-ichi YOSHIMOTO Cc: "Crist J. Clark" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.h References: <200203180222.g2I2Ms309830@freefall.freebsd.org> <20020318161250.1c35600c.yosimoto@waishi.jp> From: Dag-Erling Smorgrav Date: 18 Mar 2002 08:29:10 +0100 In-Reply-To: <20020318161250.1c35600c.yosimoto@waishi.jp> Message-ID: Lines: 12 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Shin-ichi YOSHIMOTO writes: > Subject: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.h, > On Sun, 17 Mar 2002 18:22:53 -0800 (PST), Crist J. Clark wrote: > > Modified files: > > usr.bin/chpass chpass.c pw_copy.c pw_copy.h > Where is ? In vipw, IIRC; check the .PATH in usr.bin/chpass/Makefile. 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 17 23:39: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 C2A1837B405; Sun, 17 Mar 2002 23:39:28 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I7dS378798; Sun, 17 Mar 2002 23:39:28 -0800 (PST) (envelope-from imp) Message-Id: <200203180739.g2I7dS378798@freefall.freebsd.org> From: Warner Losh Date: Sun, 17 Mar 2002 23:39:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk sys.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/03/17 23:39:27 PST Modified files: share/mk sys.mk Log: __MAKE_CONF?=/etc/make.conf Use this where we are now using /etc/make.conf. This allows people to override the current default of always including /etc/make.conf. Setting __MAKE_CONF to /dev/null disables it completely, while setting it to something else allows one to override what is on the system. This can be desirable in situations where a machine has many users and some of them want different defaults, or defaults appropriate to cross building to be different than those for normal building. Not objected to by: arch@ Revision Changes Path 1.58 +3 -2 src/share/mk/sys.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 23:44:39 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id AED2837B404; Sun, 17 Mar 2002 23:44:33 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id A81785346; Mon, 18 Mar 2002 08:44:29 +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: Warner Losh Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk sys.mk References: <200203180739.g2I7dS378798@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 18 Mar 2002 08:44:29 +0100 In-Reply-To: <200203180739.g2I7dS378798@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 Warner Losh writes: > Log: > __MAKE_CONF?=/etc/make.conf > Use this where we are now using /etc/make.conf. Thank you! DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Sun Mar 17 23:45:39 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8110837B402; Sun, 17 Mar 2002 23:45:31 -0800 (PST) Received: (from arr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I7jVd79886; Sun, 17 Mar 2002 23:45:31 -0800 (PST) (envelope-from arr) Message-Id: <200203180745.g2I7jVd79886@freefall.freebsd.org> From: "Andrew R. Reiter" Date: Sun, 17 Mar 2002 23:45:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_linker.c kern_module.c kern_syscalls.c src/sys/sys module.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 arr 2002/03/17 23:45:31 PST Modified files: sys/kern kern_module.c kern_linker.c kern_syscalls.c sys/sys module.h Log: - Lock down the ``module'' structure by adding an SX lock that is used by all the global bits of ``module'' data. This commit adds a few generic macros, MOD_SLOCK, MOD_XLOCK, etc., that are meant to be used as ways of accessing the SX lock. It is also the first step in helping to lock down the kernel linker and module systems. Reviewed by: jhb, jake, smp@ Revision Changes Path 1.80 +8 -7 src/sys/kern/kern_linker.c 1.33 +58 -19 src/sys/kern/kern_module.c 1.9 +6 -1 src/sys/kern/kern_syscalls.c 1.20 +9 -0 src/sys/sys/module.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 0: 0: 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 89D5B37B402; Sun, 17 Mar 2002 23:59:58 -0800 (PST) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I7xwD84105; Sun, 17 Mar 2002 23:59:58 -0800 (PST) (envelope-from alc) Message-Id: <200203180759.g2I7xwD84105@freefall.freebsd.org> From: Alan Cox Date: Sun, 17 Mar 2002 23:59:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2002/03/17 23:59:58 PST Modified files: sys/i386/i386 machdep.c Log: Eliminate grow_stack() from (o)sendsig(). If the stack needs to grow, copyout() will page fault and perform grow_stack() from trap_pfault(). These calls to grow_stack() accomplish nothing. Reviewed by: bde Revision Changes Path 1.504 +4 -10 src/sys/i386/i386/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 0: 3:52 2002 Delivered-To: cvs-all@freebsd.org Received: from ns.waishi.jp (ns.waishi.jp [61.199.233.194]) by hub.freebsd.org (Postfix) with ESMTP id 6BDBC37B405; Mon, 18 Mar 2002 00:03:49 -0800 (PST) Received: from ns.waishi.jp (ns.waishi.jp [61.199.233.194]) by ns.waishi.jp (Postfix) with SMTP id 7962622F34; Mon, 18 Mar 2002 17:03:48 +0900 (JST) Date: Mon, 18 Mar 2002 17:03:48 +0900 From: Shin-ichi YOSHIMOTO To: Dag-Erling Smorgrav Cc: cjc@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.h Message-Id: <20020318170348.671ec4b5.yosimoto@waishi.jp> In-Reply-To: References: <200203180222.g2I2Ms309830@freefall.freebsd.org> <20020318161250.1c35600c.yosimoto@waishi.jp> Organization: WAISHI.JP X-Mailer: Sylpheed version 0.7.4 (GTK+ 1.2.10; i386-portbld-freebsd4.5) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.h, On 18 Mar 2002 08:29:10 +0100, Dag-Erling Smorgrav wrote: > In vipw, IIRC; check the .PATH in usr.bin/chpass/Makefile. really ? I can't find in vipw. > ls /usr/src/usr.sbin/vipw/ CVS/ Makefile pw_util.c pw_util.h vipw.8 vipw.c I found in ... > find /usr/src -name "pw_scan.h" -print /usr/src/lib/libc/gen/pw_scan.h -- Shin-ichi YOSHIMOTO http://www.waishi.jp/~yosimoto/diary/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 0:19:32 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by hub.freebsd.org (Postfix) with ESMTP id A354137B405; Mon, 18 Mar 2002 00:19:25 -0800 (PST) Received: from blossom.cjclark.org ([12.234.91.48]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020318081924.DAFE2626.rwcrmhc51.attbi.com@blossom.cjclark.org>; Mon, 18 Mar 2002 08:19:24 +0000 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.6) id g2I8JMM58490; Mon, 18 Mar 2002 00:19:22 -0800 (PST) (envelope-from cjc) Date: Mon, 18 Mar 2002 00:19:22 -0800 From: "Crist J. Clark" To: Shin-ichi YOSHIMOTO Cc: Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.h Message-ID: <20020318001922.Z29705@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <200203180222.g2I2Ms309830@freefall.freebsd.org> <20020318161250.1c35600c.yosimoto@waishi.jp> <20020318170348.671ec4b5.yosimoto@waishi.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020318170348.671ec4b5.yosimoto@waishi.jp>; from yosimoto@waishi.jp on Mon, Mar 18, 2002 at 05:03:48PM +0900 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Mar 18, 2002 at 05:03:48PM +0900, Shin-ichi YOSHIMOTO wrote: > Subject: Re: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.h, > On 18 Mar 2002 08:29:10 +0100, Dag-Erling Smorgrav wrote: > > In vipw, IIRC; check the .PATH in usr.bin/chpass/Makefile. > > really ? I can't find in vipw. > > > ls /usr/src/usr.sbin/vipw/ > CVS/ Makefile pw_util.c pw_util.h vipw.8 vipw.c > > I found in ... > > > find /usr/src -name "pw_scan.h" -print > /usr/src/lib/libc/gen/pw_scan.h chpass(8) is very, very naughty and uses __pw_scan(). It does use the one in libc. From it's Makefile, CFLAGS+=-I${.CURDIR}/../../usr.sbin/pwd_mkdb -I${.CURDIR}/../../usr.sbin/vipw -I${.CURDIR}/../../lib/libc/gen Don't blame me. It was already used in chpass.c and edit.c. This isn't an issue in -STABLE, where pw_scan() is exposed to the world properly in libc. chpass(8) is _old_ code (note I needed to add the $FreeBSD$ to pw_copy.h, pathnames.h isn't actually used by anything) and really could use a clean up. I have already gone through a round of clean ups locally, but want to let this commit settle, since it actually has functional differences, before I go making style changes and fixes. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 0:21:13 2002 Delivered-To: cvs-all@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id B93B937B404; Mon, 18 Mar 2002 00:20:42 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g2I8KaO38720; Mon, 18 Mar 2002 10:20:36 +0200 (EET) (envelope-from ru) Date: Mon, 18 Mar 2002 10:20:36 +0200 From: Ruslan Ermilov To: Mark Murray Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src Makefile.inc1 Message-ID: <20020318082036.GB37136@sunbay.com> References: <200203161455.g2GEtcB28572@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203161455.g2GEtcB28572@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 16, 2002 at 06:55:38AM -0800, Mark Murray wrote: > markm 2002/03/16 06:55:38 PST > > Modified files: > . Makefile.inc1 > Log: > Allow the use of NO_PERL as well as NOPERL. The latter is going to > be removed. > > Revision Changes Path > 1.242 +3 -2 src/Makefile.inc1 There's a bug here: Index: Makefile.inc1 =================================================================== RCS file: /home/ncvs/src/Makefile.inc1,v retrieving revision 1.243 diff -u -r1.243 Makefile.inc1 --- Makefile.inc1 16 Mar 2002 21:41:09 -0000 1.243 +++ Makefile.inc1 18 Mar 2002 08:17:09 -0000 @@ -582,7 +587,7 @@ _fortran= gnu/usr.bin/cc/f771 .endif -.if !defined(NOPERL) || defined(NO_PERL) +.if !defined(NOPERL) && !defined(NO_PERL) _perl= gnu/usr.bin/perl/miniperl .endif @@ -768,7 +773,7 @@ _libkeycap= usr.sbin/pcvt/keycap .endif -.if !defined(NOPERL) || defined(NO_PERL) +.if !defined(NOPERL) && !defined(NO_PERL) _libperl= gnu/usr.bin/perl/libperl .endif Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 0:32:47 2002 Delivered-To: cvs-all@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 7A84237B404; Mon, 18 Mar 2002 00:32:32 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g2I8WCv40069; Mon, 18 Mar 2002 10:32:12 +0200 (EET) (envelope-from ru) Date: Mon, 18 Mar 2002 10:32:12 +0200 From: Ruslan Ermilov To: Mark Murray Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/perl5 MAINTAIN README.posix-bc Todo-5.005 XSlock.h bytecode.h byterun.c byterun.h ebcdic.c interp.sym myconfig objpp.h perl_exp.SH thread.sym src/contrib/perl5/eg/cgi dna.small.gif.uu wilogo.gif.uu src/contrib/perl5/ext/B byteperl.c ... Message-ID: <20020318083212.GC37136@sunbay.com> References: <200203162235.g2GMZtu78275@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203162235.g2GMZtu78275@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 16, 2002 at 02:35:55PM -0800, Mark Murray wrote: > markm 2002/03/16 14:35:55 PST > > Removed files: > contrib/perl5 MAINTAIN README.posix-bc Todo-5.005 > XSlock.h bytecode.h byterun.c byterun.h > ebcdic.c interp.sym myconfig objpp.h > perl_exp.SH thread.sym [...] > Log: > Punt to attic files not in 5.6.1 OR not needed by FreeBSD. > It's also a good idea to delete files on vendor branch, so that ``cvs co -rLWALL'' checks out pristine (maybe stripped) version of 5.6.1. I.e., make ``co -rLWALL'' produce the same as ``co -rv5_006_01''. Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 0:33: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 2538B37B41C; Mon, 18 Mar 2002 00:33:03 -0800 (PST) Received: (from murray@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I8X3U93618; Mon, 18 Mar 2002 00:33:03 -0800 (PST) (envelope-from murray) Message-Id: <200203180833.g2I8X3U93618@freefall.freebsd.org> From: Murray Stokely Date: Mon, 18 Mar 2002 00:33:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 Makefile build.7 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG murray 2002/03/18 00:33:02 PST Modified files: (Branch: RELENG_4) share/man/man7 Makefile Added files: (Branch: RELENG_4) share/man/man7 build.7 Log: MFC: build(7) - A man page that explains the build infrastructure, including information about "make word", cross-builds, and other sundry topics. Revision Changes Path 1.10.2.6 +3 -3 src/share/man/man7/Makefile 1.19.2.1 +200 -0 src/share/man/man7/build.7 (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 0:34:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C46137B405; Mon, 18 Mar 2002 00:34:53 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I8YrZ93976; Mon, 18 Mar 2002 00:34:53 -0800 (PST) (envelope-from sos) Message-Id: <200203180834.g2I8YrZ93976@freefall.freebsd.org> From: Søren Schmidt Date: Mon, 18 Mar 2002 00:34:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys ata.h cdrio.h dvdio.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2002/03/18 00:34:53 PST Modified files: (Branch: RELENG_4) sys/sys ata.h cdrio.h dvdio.h Log: MFC: the entire ATA driver with all functionality as of 2002-03-18. Revision Changes Path 1.8.2.2 +2 -1 src/sys/sys/ata.h 1.1.2.2 +41 -11 src/sys/sys/cdrio.h 1.2.2.2 +2 -2 src/sys/sys/dvdio.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 0:35: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 8CC9037B405; Mon, 18 Mar 2002 00:35:40 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I8ZeG94133; Mon, 18 Mar 2002 00:35:40 -0800 (PST) (envelope-from sos) Message-Id: <200203180835.g2I8ZeG94133@freefall.freebsd.org> From: Søren Schmidt Date: Mon, 18 Mar 2002 00:35:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf files files.alpha files.i386 files.pc98 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2002/03/18 00:35:40 PST Modified files: (Branch: RELENG_4) sys/conf files files.alpha files.i386 files.pc98 Log: MFC: the entire ATA driver with all functionality as of 2002-03-18. Revision Changes Path 1.340.2.93 +13 -0 src/sys/conf/files 1.43.2.7 +1 -9 src/sys/conf/files.alpha 1.307.2.25 +0 -10 src/sys/conf/files.i386 1.140.2.32 +0 -10 src/sys/conf/files.pc98 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 0:36: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 6022C37B402; Mon, 18 Mar 2002 00:36:23 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I8aNL94279; Mon, 18 Mar 2002 00:36:23 -0800 (PST) (envelope-from sos) Message-Id: <200203180836.g2I8aNL94279@freefall.freebsd.org> From: Søren Schmidt Date: Mon, 18 Mar 2002 00:36:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc MAKEDEV X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2002/03/18 00:36:23 PST Modified files: (Branch: RELENG_4) etc MAKEDEV Log: MFC: the entire ATA driver with all functionality as of 2002-03-18. Revision Changes Path 1.243.2.45 +11 -2 src/etc/MAKEDEV To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 0:37:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9ABC037B400; Mon, 18 Mar 2002 00:37:44 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I8biY94563; Mon, 18 Mar 2002 00:37:44 -0800 (PST) (envelope-from sos) Message-Id: <200203180837.g2I8biY94563@freefall.freebsd.org> From: Søren Schmidt Date: Mon, 18 Mar 2002 00:37:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-disk.c ata-disk.h ata-dma.c ata-isa.c ata-pci.c ata-raid.c ata-raid.h atapi-all.c atapi-all.h atapi-cd.c atapi-cd.h atapi-fd.c atapi-fd.h atapi-tape.c atapi-tape.h X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-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/18 00:37:44 PST Modified files: (Branch: RELENG_4) sys/dev/ata ata-all.c ata-all.h ata-disk.c ata-disk.h ata-dma.c ata-raid.c ata-raid.h atapi-all.c atapi-all.h atapi-cd.c atapi-cd.h atapi-fd.c atapi-fd.h atapi-tape.c atapi-tape.h Added files: (Branch: RELENG_4) sys/dev/ata ata-card.c ata-isa.c ata-pci.c Log: MFC: the entire ATA driver with all functionality as of 2002-03-18. Revision Changes Path 1.50.2.30 +772 -1341 src/sys/dev/ata/ata-all.c 1.26.2.11 +139 -239 src/sys/dev/ata/ata-all.h 1.4.2.1 +108 -0 src/sys/dev/ata/ata-card.c (new) 1.60.2.20 +334 -296 src/sys/dev/ata/ata-disk.c 1.22.2.7 +10 -10 src/sys/dev/ata/ata-disk.h 1.35.2.19 +485 -469 src/sys/dev/ata/ata-dma.c 1.4.2.1 +146 -0 src/sys/dev/ata/ata-isa.c (new) 1.32.2.1 +815 -0 src/sys/dev/ata/ata-pci.c (new) 1.3.2.11 +974 -344 src/sys/dev/ata/ata-raid.c 1.2.2.5 +141 -87 src/sys/dev/ata/ata-raid.h 1.46.2.12 +231 -229 src/sys/dev/ata/atapi-all.c 1.22.2.9 +23 -33 src/sys/dev/ata/atapi-all.h 1.48.2.14 +519 -407 src/sys/dev/ata/atapi-cd.c 1.15.2.9 +20 -17 src/sys/dev/ata/atapi-cd.h 1.44.2.7 +103 -88 src/sys/dev/ata/atapi-fd.c 1.10.2.4 +5 -8 src/sys/dev/ata/atapi-fd.h 1.36.2.10 +84 -83 src/sys/dev/ata/atapi-tape.c 1.11.2.5 +6 -6 src/sys/dev/ata/atapi-tape.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 0:40: 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 9610537B416; Mon, 18 Mar 2002 00:40:01 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I8e1T95019; Mon, 18 Mar 2002 00:40:01 -0800 (PST) (envelope-from sos) Message-Id: <200203180840.g2I8e1T95019@freefall.freebsd.org> From: Søren Schmidt Date: Mon, 18 Mar 2002 00:40:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin Makefile src/sbin/atacontrol Makefile atacontrol.8 atacontrol.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2002/03/18 00:40:01 PST Modified files: (Branch: RELENG_4) sbin Makefile Added files: (Branch: RELENG_4) sbin/atacontrol Makefile atacontrol.8 atacontrol.c Log: MFC: the entire ATA driver with all functionality as of 2002-03-18. Revision Changes Path 1.77.2.7 +1 -0 src/sbin/Makefile 1.6.2.1 +7 -0 src/sbin/atacontrol/Makefile (new) 1.13.2.1 +138 -0 src/sbin/atacontrol/atacontrol.8 (new) 1.11.2.1 +311 -0 src/sbin/atacontrol/atacontrol.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 0:40: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 1742537B400; Mon, 18 Mar 2002 00:40:48 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I8em495191; Mon, 18 Mar 2002 00:40:48 -0800 (PST) (envelope-from sos) Message-Id: <200203180840.g2I8em495191@freefall.freebsd.org> From: Søren Schmidt Date: Mon, 18 Mar 2002 00:40:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/burncd burncd.8 burncd.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2002/03/18 00:40:45 PST Modified files: (Branch: RELENG_4) usr.sbin/burncd burncd.8 burncd.c Log: MFC: the entire ATA driver with all functionality as of 2002-03-18. Revision Changes Path 1.6.2.5 +42 -26 src/usr.sbin/burncd/burncd.8 1.10.2.4 +342 -98 src/usr.sbin/burncd/burncd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 0:52: 3 2002 Delivered-To: cvs-all@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id A0D5F37B400; Mon, 18 Mar 2002 00:51:46 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g2I8peL42334; Mon, 18 Mar 2002 10:51:40 +0200 (EET) (envelope-from ru) Date: Mon, 18 Mar 2002 10:51:40 +0200 From: Ruslan Ermilov To: Mark Murray Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.lib.mk sys.mk src/sys/conf kern.post.mk kmod.mk Message-ID: <20020318085140.GD37136@sunbay.com> References: <200203171005.g2HA5vt02562@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203171005.g2HA5vt02562@freefall.freebsd.org> User-Agent: Mutt/1.3.27i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Mar 17, 2002 at 02:05:57AM -0800, Mark Murray wrote: > markm 2002/03/17 02:05:57 PST > > Modified files: > share/mk bsd.lib.mk sys.mk > sys/conf kern.post.mk kmod.mk > Log: > Allow "make lint" to mostly work. Our sources are very unclean WRT > lint, so this is turned off by default. Setting WANT_LINT will turn > on generation of lint libraries for /usr/libdata/lint/*.ln. > > Reviewd by: silence in -audit. > > Revision Changes Path > 1.104 +34 -7 src/share/mk/bsd.lib.mk > 1.57 +5 -2 src/share/mk/sys.mk > 1.11 +3 -0 src/sys/conf/kern.post.mk > 1.114 +3 -0 src/sys/conf/kmod.mk > %%% Index: share/mk/bsd.lib.mk =================================================================== RCS file: /home/ncvs/src/share/mk/bsd.lib.mk,v retrieving revision 1.104 diff -u -r1.104 bsd.lib.mk --- share/mk/bsd.lib.mk 17 Mar 2002 10:05:57 -0000 1.104 +++ share/mk/bsd.lib.mk 18 Mar 2002 08:49:52 -0000 @@ -58,11 +58,11 @@ .c.ln: ${LINT} ${LINTOBJFLAGS} ${CFLAGS:M-[DIU]*} ${.IMPSRC} || \ - touch ${.TARGET} + touch ${.TARGET} .cc.ln .C.ln .cpp.ln .cxx.ln: - ${LINT} ${LINTOBJFLAGS} ${CFLAGS:M-[DIU]*} ${.IMPSRC} || \ - touch ${.TARGET} + ${LINT} ${LINTOBJFLAGS} ${CXXFLAGS:M-[DIU]*} ${.IMPSRC} || \ + touch ${.TARGET} .c.o: ${CC} ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET} @@ -167,10 +167,9 @@ LINTOBJS+= ${SRCS:M*.c:C/\..+$/.ln/} -.if defined(WANT_LINT) && defined(LIB) && defined(LINTOBJS) && (${LINTOBJS} != "") +.if defined(WANT_LINT) && defined(LIB) && defined(LINTOBJS) && !empty(LINTOBJS) LINTLIB=llib-l${LIB}.ln -.else -LINTLIB= +_LIBS+=${LINTLIB} .endif .if defined(SHLIB_NAME) @@ -189,9 +188,9 @@ .endif .if !defined(NOMAN) -all: objwarn ${_LIBS} all-man _SUBDIR ${LINTLIB} +all: objwarn ${_LIBS} all-man _SUBDIR .else -all: objwarn ${_LIBS} _SUBDIR ${LINTLIB} +all: objwarn ${_LIBS} _SUBDIR .endif OBJS+= ${SRCS:N*.h:R:S/$/.o/g} @@ -239,9 +238,9 @@ ${RANLIB} lib${LIB}_pic.a .endif -.if defined(WANT_LINT) && defined(LIB) && defined(LINTOBJS) && (${LINTOBJS} != "") +.if defined(WANT_LINT) && defined(LIB) && defined(LINTOBJS) && !empty(LINTOBJS) ${LINTLIB}: ${LINTOBJS} - @${ECHO} building lint library ${SHLIB_NAME} + @${ECHO} building lint library ${LINTLIB} @rm -f ${LINTLIB} ${LINT} ${LINTLIBFLAGS} ${CFLAGS:M-[DIU]*} ${.ALLSRC} .endif @@ -249,7 +248,7 @@ .if !target(clean) clean: _SUBDIR rm -f a.out ${OBJS} ${STATICOBJS} ${OBJS:S/$/.tmp/} ${CLEANFILES} - rm -f lib${LIB}.a ${LINTLIB} + rm -f lib${LIB}.a rm -f ${POBJS} ${POBJS:S/$/.tmp/} lib${LIB}_p.a rm -f ${SOBJS} ${SOBJS:.So=.so} ${SOBJS:S/$/.tmp/} \ ${SHLIB_NAME} ${SHLIB_LINK} \ @@ -348,7 +347,7 @@ ln -fs $$l $$t; \ done; true .endif -.if defined(WANT_LINT) && defined(LIB) && defined(LINTOBJS) && (${LINTOBJS} != "") +.if defined(WANT_LINT) && defined(LIB) && defined(LINTOBJS) && !empty(LINTOBJS) ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ ${_INSTALLFLAGS} ${LINTLIB} ${DESTDIR}${LINTLIBDIR} .endif @@ -375,9 +374,8 @@ .if !target(lint) lint: ${SRCS:M*.c} _SUBDIR - ${LINT} ${LINTOBJFLAGS} ${CFLAGS:M-[DIU]*} ${.ALLSRC} | more 2>&1 + ${LINT} ${LINTOBJFLAGS} ${CFLAGS:M-[DIU]*} ${.ALLSRC} .endif - .if !defined(NOMAN) .include Index: sys/conf/kern.post.mk =================================================================== RCS file: /home/ncvs/src/sys/conf/kern.post.mk,v retrieving revision 1.11 diff -u -r1.11 kern.post.mk --- sys/conf/kern.post.mk 17 Mar 2002 10:05:57 -0000 1.11 +++ sys/conf/kern.post.mk 18 Mar 2002 08:49:52 -0000 @@ -58,7 +58,7 @@ find . -type f ! -name version -delete lint: ${CFILES} - ${LINT} ${LINTKERNFLAGS} ${CFLAGS:M-[DILU]*} ${.ALLSRC} | more 2>&1 + ${LINT} ${LINTKERNFLAGS} ${CFLAGS:M-[DILU]*} ${.ALLSRC} locore.o: $S/$M/$M/locore.s assym.s ${NORMAL_S} Index: sys/conf/kmod.mk =================================================================== RCS file: /home/ncvs/src/sys/conf/kmod.mk,v retrieving revision 1.114 diff -u -r1.114 kmod.mk --- sys/conf/kmod.mk 17 Mar 2002 10:05:57 -0000 1.114 +++ sys/conf/kmod.mk 18 Mar 2002 08:49:52 -0000 @@ -339,7 +339,7 @@ regress: lint: ${SRCS} - ${LINT} ${LINTKERNFLAGS} ${CFLAGS:M-[DILU]*} ${.ALLSRC:M*.c} | more 2>&1 + ${LINT} ${LINTKERNFLAGS} ${CFLAGS:M-[DILU]*} ${.ALLSRC:M*.c} .include %%% Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 0:58:24 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 657B037B404; Mon, 18 Mar 2002 00:58:19 -0800 (PST) Received: (from maxim@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I8wJJ99146; Mon, 18 Mar 2002 00:58:19 -0800 (PST) (envelope-from maxim) Message-Id: <200203180858.g2I8wJJ99146@freefall.freebsd.org> From: Maxim Konovalov Date: Mon, 18 Mar 2002 00:58:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/ftpd ftpcmd.y X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG maxim 2002/03/18 00:58:19 PST Modified files: (Branch: RELENG_4) libexec/ftpd ftpcmd.y Log: MFC rev. 1.32: remove duplicated yacc nonterminals declarations, sort includes. No functional changes from rev. 1.16.2.7. Revision Changes Path 1.16.2.8 +3 -4 src/libexec/ftpd/ftpcmd.y To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 1: 9:22 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 2ED4437B400; Mon, 18 Mar 2002 01:09:15 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id A991E5346; Mon, 18 Mar 2002 10:09:13 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Murray Stokely Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man7 Makefile build.7 References: <200203180833.g2I8X3U93618@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 18 Mar 2002 10:09:12 +0100 In-Reply-To: <200203180833.g2I8X3U93618@freefall.freebsd.org> Message-ID: Lines: 11 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Murray Stokely writes: > Log: > MFC: build(7) - A man page that explains the build infrastructure, > including information about "make word", cross-builds, and other > sundry topics. Inspired by: NetBSD perhaps? Or just parallel evolution? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 1:16:48 2002 Delivered-To: cvs-all@freebsd.org Received: from mao.stokely.org (mao.stokely.org [65.84.64.228]) by hub.freebsd.org (Postfix) with ESMTP id 87A4A37B417; Mon, 18 Mar 2002 01:16:44 -0800 (PST) Received: by mao.stokely.org (Postfix, from userid 2074) id 491804B65D; Mon, 18 Mar 2002 01:16:44 -0800 (PST) Date: Mon, 18 Mar 2002 01:16:44 -0800 From: Murray Stokely To: Dag-Erling Smorgrav Cc: Murray Stokely , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man7 Makefile build.7 Message-ID: <20020318091644.GL19657@freebsdmall.com> References: <200203180833.g2I8X3U93618@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Fnm8lRGFTVS/3GuM" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.25i X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --Fnm8lRGFTVS/3GuM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 18, 2002 at 10:09:12AM +0100, Dag-Erling Smorgrav wrote: > > MFC: build(7) - A man page that explains the build infrastructure, > > including information about "make word", cross-builds, and other > > sundry topics. >=20 > Inspired by: NetBSD perhaps? Or just parallel evolution? I've never seen the NetBSD man page, but it's possible this document was inspired by that. Mike Meyer wrote it, I just added to it and decided that 16 months in -CURRENT was long enough before MFCing. - Murray --Fnm8lRGFTVS/3GuM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (SunOS) Comment: For info see http://www.gnupg.org iD8DBQE8lbB7tNcQog5FH30RAqEiAJ98Upa80ORIg4BKjvZmdsIr9RXOCQCfbene h8N7Rh7urY9eAhfjwsDrGsI= =dDPB -----END PGP SIGNATURE----- --Fnm8lRGFTVS/3GuM-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 1:29:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C0EB637B404; Mon, 18 Mar 2002 01:29:16 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I9TGS08396; Mon, 18 Mar 2002 01:29:16 -0800 (PST) (envelope-from dfr) Message-Id: <200203180929.g2I9TGS08396@freefall.freebsd.org> From: Doug Rabson Date: Mon, 18 Mar 2002 01:29:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 pmap.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dfr 2002/03/18 01:29:16 PST Modified files: sys/ia64/ia64 pmap.c Log: Fix spelling. Revision Changes Path 1.46 +1 -1 src/sys/ia64/ia64/pmap.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 1:30:33 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id CF55337B405; Mon, 18 Mar 2002 01:30:13 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g2I9UCc76783; Mon, 18 Mar 2002 09:30:12 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 g2I9QkNU098281; Mon, 18 Mar 2002 09:26:46 GMT (envelope-from mark@grimreaper.grondar.za) Message-Id: <200203180926.g2I9QkNU098281@grimreaper.grondar.org> To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.lib.mk sys.mk src/sys/conf kern.post.mk kmod.mk References: <20020318085140.GD37136@sunbay.com> In-Reply-To: <20020318085140.GD37136@sunbay.com> ; from Ruslan Ermilov "Mon, 18 Mar 2002 10:51:40 +0200." Date: Mon, 18 Mar 2002 09:26:46 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This looks cool! Go ahead and commit. M > On Sun, Mar 17, 2002 at 02:05:57AM -0800, Mark Murray wrote: > > markm 2002/03/17 02:05:57 PST > > > > Modified files: > > share/mk bsd.lib.mk sys.mk > > sys/conf kern.post.mk kmod.mk > > Log: > > Allow "make lint" to mostly work. Our sources are very unclean WRT > > lint, so this is turned off by default. Setting WANT_LINT will turn > > on generation of lint libraries for /usr/libdata/lint/*.ln. > > > > Reviewd by: silence in -audit. > > > > Revision Changes Path > > 1.104 +34 -7 src/share/mk/bsd.lib.mk > > 1.57 +5 -2 src/share/mk/sys.mk > > 1.11 +3 -0 src/sys/conf/kern.post.mk > > 1.114 +3 -0 src/sys/conf/kmod.mk > > > %%% > Index: share/mk/bsd.lib.mk > =================================================================== > RCS file: /home/ncvs/src/share/mk/bsd.lib.mk,v > retrieving revision 1.104 > diff -u -r1.104 bsd.lib.mk > --- share/mk/bsd.lib.mk 17 Mar 2002 10:05:57 -0000 1.104 > +++ share/mk/bsd.lib.mk 18 Mar 2002 08:49:52 -0000 > @@ -58,11 +58,11 @@ > > .c.ln: > ${LINT} ${LINTOBJFLAGS} ${CFLAGS:M-[DIU]*} ${.IMPSRC} || \ > - touch ${.TARGET} > + touch ${.TARGET} > > .cc.ln .C.ln .cpp.ln .cxx.ln: > - ${LINT} ${LINTOBJFLAGS} ${CFLAGS:M-[DIU]*} ${.IMPSRC} || \ > - touch ${.TARGET} > + ${LINT} ${LINTOBJFLAGS} ${CXXFLAGS:M-[DIU]*} ${.IMPSRC} || \ > + touch ${.TARGET} > > .c.o: > ${CC} ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET} > @@ -167,10 +167,9 @@ > > LINTOBJS+= ${SRCS:M*.c:C/\..+$/.ln/} > > -.if defined(WANT_LINT) && defined(LIB) && defined(LINTOBJS) && (${LINTOBJS} != "") > +.if defined(WANT_LINT) && defined(LIB) && defined(LINTOBJS) && !empty(LINTOBJS) > LINTLIB=llib-l${LIB}.ln > -.else > -LINTLIB= > +_LIBS+=${LINTLIB} > .endif > > .if defined(SHLIB_NAME) > @@ -189,9 +188,9 @@ > .endif > > .if !defined(NOMAN) > -all: objwarn ${_LIBS} all-man _SUBDIR ${LINTLIB} > +all: objwarn ${_LIBS} all-man _SUBDIR > .else > -all: objwarn ${_LIBS} _SUBDIR ${LINTLIB} > +all: objwarn ${_LIBS} _SUBDIR > .endif > > OBJS+= ${SRCS:N*.h:R:S/$/.o/g} > @@ -239,9 +238,9 @@ > ${RANLIB} lib${LIB}_pic.a > .endif > -.if defined(WANT_LINT) && defined(LIB) && defined(LINTOBJS) && (${LINTOBJS} != "") > +.if defined(WANT_LINT) && defined(LIB) && defined(LINTOBJS) && !empty(LINTOBJS) > ${LINTLIB}: ${LINTOBJS} > - @${ECHO} building lint library ${SHLIB_NAME} > + @${ECHO} building lint library ${LINTLIB} > @rm -f ${LINTLIB} > ${LINT} ${LINTLIBFLAGS} ${CFLAGS:M-[DIU]*} ${.ALLSRC} > .endif > @@ -249,7 +248,7 @@ > .if !target(clean) > clean: _SUBDIR > rm -f a.out ${OBJS} ${STATICOBJS} ${OBJS:S/$/.tmp/} ${CLEANFILES} > - rm -f lib${LIB}.a ${LINTLIB} > + rm -f lib${LIB}.a > rm -f ${POBJS} ${POBJS:S/$/.tmp/} lib${LIB}_p.a > rm -f ${SOBJS} ${SOBJS:.So=.so} ${SOBJS:S/$/.tmp/} \ > ${SHLIB_NAME} ${SHLIB_LINK} \ > @@ -348,7 +347,7 @@ > ln -fs $$l $$t; \ > done; true > .endif > -.if defined(WANT_LINT) && defined(LIB) && defined(LINTOBJS) && (${LINTOBJS} != "") > +.if defined(WANT_LINT) && defined(LIB) && defined(LINTOBJS) && !empty(LINTOBJS) > ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ > ${_INSTALLFLAGS} ${LINTLIB} ${DESTDIR}${LINTLIBDIR} > .endif > @@ -375,9 +374,8 @@ > > .if !target(lint) > lint: ${SRCS:M*.c} _SUBDIR > - ${LINT} ${LINTOBJFLAGS} ${CFLAGS:M-[DIU]*} ${.ALLSRC} | more 2>&1 > + ${LINT} ${LINTOBJFLAGS} ${CFLAGS:M-[DIU]*} ${.ALLSRC} > .endif > - > > .if !defined(NOMAN) > .include > Index: sys/conf/kern.post.mk > =================================================================== > RCS file: /home/ncvs/src/sys/conf/kern.post.mk,v > retrieving revision 1.11 > diff -u -r1.11 kern.post.mk > --- sys/conf/kern.post.mk 17 Mar 2002 10:05:57 -0000 1.11 > +++ sys/conf/kern.post.mk 18 Mar 2002 08:49:52 -0000 > @@ -58,7 +58,7 @@ > find . -type f ! -name version -delete > > lint: ${CFILES} > - ${LINT} ${LINTKERNFLAGS} ${CFLAGS:M-[DILU]*} ${.ALLSRC} | more 2>&1 > + ${LINT} ${LINTKERNFLAGS} ${CFLAGS:M-[DILU]*} ${.ALLSRC} > > locore.o: $S/$M/$M/locore.s assym.s > ${NORMAL_S} > Index: sys/conf/kmod.mk > =================================================================== > RCS file: /home/ncvs/src/sys/conf/kmod.mk,v > retrieving revision 1.114 > diff -u -r1.114 kmod.mk > --- sys/conf/kmod.mk 17 Mar 2002 10:05:57 -0000 1.114 > +++ sys/conf/kmod.mk 18 Mar 2002 08:49:52 -0000 > @@ -339,7 +339,7 @@ > regress: > > lint: ${SRCS} > - ${LINT} ${LINTKERNFLAGS} ${CFLAGS:M-[DILU]*} ${.ALLSRC:M*.c} | more 2>&1 > + ${LINT} ${LINTKERNFLAGS} ${CFLAGS:M-[DILU]*} ${.ALLSRC:M*.c} > > .include > > %%% > > > Cheers, > -- > Ruslan Ermilov Sysadmin and DBA, > ru@sunbay.com Sunbay Software AG, > ru@FreeBSD.org FreeBSD committer, > +380.652.512.251 Simferopol, Ukraine > > http://www.FreeBSD.org The Power To Serve > http://www.oracle.com Enabling The Information Age -- o Mark Murray \_ O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 1:35:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AC6D837B404; Mon, 18 Mar 2002 01:35:45 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I9Zjc09391; Mon, 18 Mar 2002 01:35:45 -0800 (PST) (envelope-from ru) Message-Id: <200203180935.g2I9Zjc09391@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 01:35:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.lib.mk src/sys/conf kern.post.mk kmod.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 01:35:45 PST Modified files: share/mk bsd.lib.mk sys/conf kern.post.mk kmod.mk Log: lint the previous lint commit. Reviewed by: markm Revision Changes Path 1.105 +12 -14 src/share/mk/bsd.lib.mk 1.12 +1 -1 src/sys/conf/kern.post.mk 1.115 +1 -1 src/sys/conf/kmod.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 1:43:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C99437B402; Mon, 18 Mar 2002 01:43:25 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I9hPF10938; Mon, 18 Mar 2002 01:43:25 -0800 (PST) (envelope-from sobomax) Message-Id: <200203180943.g2I9hPF10938@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 18 Mar 2002 01:43:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/converters/libiconv Makefile pkg-plist ports/converters/libiconv/files patch-aa patch-ab patch-ac patch-ad patch-ae patch-include::iconv.h.in patch-lib::iconv.c ports/converters/iconv Makefile pkg-plist ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/18 01:43:25 PST Modified files: converters/libiconv Makefile pkg-plist converters/libiconv/files patch-aa patch-ac patch-ad patch-ae converters/iconv Makefile pkg-plist converters/iconv/files patch-ai converters/iconv-extra Makefile converters/iconv-rfc1345 Makefile Added files: converters/libiconv/files patch-include::iconv.h.in patch-lib::iconv.c converters/iconv/files patch-ces::Makefile patch-util::Makefile converters/iconv-extra/files patch-ces::Makefile patch-ces::iso-2022-cn.c patch-ces::iso-2022-jp-2.c patch-ces::iso-2022-jp.c patch-ces::iso-2022-kr.c patch-ces::unicode-1-1-utf-7.c Removed files: converters/libiconv/files patch-ab Log: Iconv cleanup, stage 1a: remove `g' prefix from binaries, headers, libraries and manpages installed by libiconv (aka GNU iconv) and add similar `b'-prefixes into components installed by iconv (aka BSD iconv). The reason why we do this is because unfortunately BSD iconv become abadonware (author doesn't maintain it anymore), while number of ports that need functional iconv library grows very fast, thus creating significant overhead due to patches needed to make ports working with prefixed GNU iconv. For compatibility reasons create symlinks in GNU iconv, so that all ports that expect GNU iconv to have `g' prefix should work unmodified until all those `g'-hacks are wiped out. Prompted by: ache Reviewed by (in principle): freebsd-ports, freebsd-gnome Revision Changes Path 1.4 +1 -1 ports/converters/iconv-extra/Makefile 1.1 +14 -0 ports/converters/iconv-extra/files/patch-ces::Makefile (new) 1.1 +14 -0 ports/converters/iconv-extra/files/patch-ces::iso-2022-cn.c (new) 1.1 +14 -0 ports/converters/iconv-extra/files/patch-ces::iso-2022-jp-2.c (new) 1.1 +14 -0 ports/converters/iconv-extra/files/patch-ces::iso-2022-jp.c (new) 1.1 +14 -0 ports/converters/iconv-extra/files/patch-ces::iso-2022-kr.c (new) 1.1 +14 -0 ports/converters/iconv-extra/files/patch-ces::unicode-1-1-utf-7.c (new) 1.4 +1 -1 ports/converters/iconv-rfc1345/Makefile 1.9 +4 -4 ports/converters/iconv/Makefile 1.2 +51 -3 ports/converters/iconv/files/patch-ai 1.1 +14 -0 ports/converters/iconv/files/patch-ces::Makefile (new) 1.1 +24 -0 ports/converters/iconv/files/patch-util::Makefile (new) 1.7 +6 -6 ports/converters/iconv/pkg-plist 1.11 +9 -3 ports/converters/libiconv/Makefile 1.5 +2 -28 ports/converters/libiconv/files/patch-aa 1.5 +0 -25 ports/converters/libiconv/files/patch-ab (dead) 1.6 +1 -24 ports/converters/libiconv/files/patch-ac 1.5 +2 -88 ports/converters/libiconv/files/patch-ad 1.5 +1 -10 ports/converters/libiconv/files/patch-ae 1.1 +48 -0 ports/converters/libiconv/files/patch-include::iconv.h.in (new) 1.1 +58 -0 ports/converters/libiconv/files/patch-lib::iconv.c (new) 1.7 +5 -1 ports/converters/libiconv/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 1:46:59 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BD0F337B402; Mon, 18 Mar 2002 01:46:46 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I9kkN12559; Mon, 18 Mar 2002 01:46:46 -0800 (PST) (envelope-from sobomax) Message-Id: <200203180946.g2I9kkN12559@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 18 Mar 2002 01:46:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/djvulibre Makefile ports/x11-wm/icewm Makefile ports/x11-wm/xfce Makefile ports/databases/grass Makefile ports/graphics/gphoto2 Makefile ports/devel/gnomevfs Makefile ports/x11-toolkits/gal Makefile ports/x11-toolkits/wxgtk-devel ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/18 01:46:46 PST Modified files: graphics/djvulibre Makefile x11-wm/icewm Makefile x11-wm/xfce Makefile databases/grass Makefile graphics/gphoto2 Makefile devel/gnomevfs Makefile x11-toolkits/gal Makefile x11-toolkits/wxgtk-devel Makefile converters/siconv Makefile databases/freetds Makefile databases/sqlrelay Makefile devel/bison Makefile devel/gettext Makefile devel/styx Makefile devel/glib20 Makefile editors/AbiWord Makefile editors/dedit Makefile x11/gdkxft Makefile graphics/ogle-gui Makefile mail/elm+ME Makefile mail/mutt-devel Makefile math/gnumeric Makefile net/gtk+licq Makefile net/wol Makefile misc/pinfo Makefile misc/gnomemimedata Makefile news/tin Makefile textproc/libxml2 Makefile textproc/intltool Makefile textproc/minidom Makefile www/galeon Makefile irc/xchat Makefile palm/pilot-link Makefile science/vis5d+ Makefile ftp/wget+ipv6 Makefile japanese/mutt-devel Makefile audio/mpg123 Makefile audio/vorbis-tools Makefile converters/ruby-iconv Makefile converters/p5-Text-Iconv Makefile converters/py-iconv Makefile editors/koffice Makefile editors/nvi-devel Makefile graphics/graphviz Makefile graphics/mplayer Makefile mail/stuphead Makefile mail/nail Makefile net/dctc-gui Makefile net/gtkhx Makefile security/gnupg Makefile textproc/p5-XML-Sablotron Makefile textproc/sablotron Makefile textproc/ruby-sablot Makefile www/p5-AxKit Makefile japanese/libjconv Makefile korean/hanterm-xf86 Makefile korean/gaim Makefile Log: Iconv cleanup, stage 1b: correct {BUILD,LIB,RUN}_DEPENDS of all ports that need libiconv. Revision Changes Path 1.39 +1 -1 ports/audio/mpg123/Makefile 1.14 +1 -1 ports/audio/vorbis-tools/Makefile 1.6 +2 -2 ports/converters/p5-Text-Iconv/Makefile 1.4 +1 -1 ports/converters/py-iconv/Makefile 1.16 +1 -1 ports/converters/ruby-iconv/Makefile 1.2 +1 -1 ports/converters/siconv/Makefile 1.17 +1 -1 ports/databases/freetds/Makefile 1.11 +1 -1 ports/databases/grass/Makefile 1.6 +1 -1 ports/databases/sqlrelay/Makefile 1.27 +1 -1 ports/devel/bison/Makefile 1.24 +1 -1 ports/devel/gettext/Makefile 1.53 +1 -1 ports/devel/glib20/Makefile 1.31 +1 -1 ports/devel/gnomevfs/Makefile 1.5 +1 -1 ports/devel/styx/Makefile 1.39 +2 -3 ports/editors/AbiWord/Makefile 1.15 +1 -1 ports/editors/dedit/Makefile 1.37 +1 -1 ports/editors/koffice/Makefile 1.6 +1 -1 ports/editors/nvi-devel/Makefile 1.3 +1 -1 ports/ftp/wget+ipv6/Makefile 1.8 +1 -1 ports/graphics/djvulibre/Makefile 1.20 +1 -1 ports/graphics/gphoto2/Makefile 1.34 +1 -1 ports/graphics/graphviz/Makefile 1.15 +1 -1 ports/graphics/mplayer/Makefile 1.8 +1 -1 ports/graphics/ogle-gui/Makefile 1.92 +1 -1 ports/irc/xchat/Makefile 1.4 +3 -3 ports/japanese/libjconv/Makefile 1.32 +1 -1 ports/japanese/mutt-devel/Makefile 1.2 +1 -1 ports/korean/gaim/Makefile 1.25 +3 -3 ports/korean/hanterm-xf86/Makefile 1.75 +1 -1 ports/mail/elm+ME/Makefile 1.162 +1 -1 ports/mail/mutt-devel/Makefile 1.11 +1 -1 ports/mail/nail/Makefile 1.5 +2 -2 ports/mail/stuphead/Makefile 1.82 +2 -1 ports/math/gnumeric/Makefile 1.2 +1 -1 ports/misc/gnomemimedata/Makefile 1.15 +1 -1 ports/misc/pinfo/Makefile 1.13 +1 -1 ports/net/dctc-gui/Makefile 1.7 +2 -2 ports/net/gtk+licq/Makefile 1.4 +2 -2 ports/net/gtkhx/Makefile 1.3 +1 -1 ports/net/wol/Makefile 1.95 +1 -1 ports/news/tin/Makefile 1.48 +1 -1 ports/palm/pilot-link/Makefile 1.2 +1 -1 ports/science/vis5d+/Makefile 1.38 +1 -1 ports/security/gnupg/Makefile 1.12 +1 -1 ports/textproc/intltool/Makefile 1.63 +1 -1 ports/textproc/libxml2/Makefile 1.3 +2 -2 ports/textproc/minidom/Makefile 1.12 +1 -1 ports/textproc/p5-XML-Sablotron/Makefile 1.12 +1 -1 ports/textproc/ruby-sablot/Makefile 1.15 +1 -1 ports/textproc/sablotron/Makefile 1.64 +1 -1 ports/www/galeon/Makefile 1.5 +1 -1 ports/www/p5-AxKit/Makefile 1.28 +1 -1 ports/x11-toolkits/gal/Makefile 1.30 +1 -1 ports/x11-toolkits/wxgtk-devel/Makefile 1.70 +1 -1 ports/x11-wm/icewm/Makefile 1.53 +1 -1 ports/x11-wm/xfce/Makefile 1.8 +1 -1 ports/x11/gdkxft/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 1:49: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 EB25437B402; Mon, 18 Mar 2002 01:49:18 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I9nIS13587; Mon, 18 Mar 2002 01:49:18 -0800 (PST) (envelope-from cjc) Message-Id: <200203180949.g2I9nIS13587@freefall.freebsd.org> From: "Crist J. Clark" Date: Mon, 18 Mar 2002 01:49:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/chpass util.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjc 2002/03/18 01:49:18 PST Modified files: usr.bin/chpass util.c Log: Fix a bug that prevents "00" being used as a valid year. Why bother in 2002? It is a bug. Might as well close the PR. PR: misc/14511 Submitted by: Mike Pritchard MFC after: 3 days Revision Changes Path 1.9 +1 -1 src/usr.bin/chpass/util.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 1:55: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 4C3F537B402; Mon, 18 Mar 2002 01:55:08 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2I9t8M15107; Mon, 18 Mar 2002 01:55:08 -0800 (PST) (envelope-from des) Message-Id: <200203180955.g2I9t8M15107@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 18 Mar 2002 01:55:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh - Imported sources X-FreeBSD-CVS-Branch: OpenBSD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/18 01:55:08 PST src/crypto/openssh - Imported sources Update of /home/ncvs/src/crypto/openssh In directory freefall.freebsd.org:/c/tmp/cvs-serv15047 Log Message: Vendor import of OpenSSH 3.1 Status: Vendor Tag: OpenBSD Release Tags: OpenSSH_3_1 U src/crypto/openssh/LICENCE U src/crypto/openssh/Makefile U src/crypto/openssh/Makefile.inc U src/crypto/openssh/OVERVIEW U src/crypto/openssh/README N src/crypto/openssh/README.smartcard U src/crypto/openssh/RFC.nroff U src/crypto/openssh/atomicio.c U src/crypto/openssh/atomicio.h N src/crypto/openssh/auth-bsdauth.c C src/crypto/openssh/auth-chall.c C src/crypto/openssh/auth-krb4.c C src/crypto/openssh/auth-krb5.c U src/crypto/openssh/auth-options.c U src/crypto/openssh/auth-options.h C src/crypto/openssh/auth-passwd.c C src/crypto/openssh/auth-rh-rsa.c U src/crypto/openssh/auth-rhosts.c C src/crypto/openssh/auth-rsa.c C src/crypto/openssh/auth-skey.c C src/crypto/openssh/auth.c C src/crypto/openssh/auth.h C src/crypto/openssh/auth1.c U src/crypto/openssh/auth2-chall.c C src/crypto/openssh/auth2.c C src/crypto/openssh/authfd.c U src/crypto/openssh/authfd.h C src/crypto/openssh/authfile.c U src/crypto/openssh/authfile.h C src/crypto/openssh/bufaux.c U src/crypto/openssh/bufaux.h U src/crypto/openssh/buffer.c U src/crypto/openssh/buffer.h C src/crypto/openssh/canohost.c U src/crypto/openssh/canohost.h C src/crypto/openssh/channels.c C src/crypto/openssh/channels.h C src/crypto/openssh/cipher.c C src/crypto/openssh/cipher.h U src/crypto/openssh/clientloop.c U src/crypto/openssh/clientloop.h C src/crypto/openssh/compat.c C src/crypto/openssh/compat.h U src/crypto/openssh/compress.c U src/crypto/openssh/compress.h U src/crypto/openssh/crc32.c U src/crypto/openssh/crc32.h U src/crypto/openssh/dh.c U src/crypto/openssh/deattack.c U src/crypto/openssh/deattack.h U src/crypto/openssh/dh.h U src/crypto/openssh/dispatch.c U src/crypto/openssh/dispatch.h N src/crypto/openssh/fatal.c U src/crypto/openssh/getput.h U src/crypto/openssh/groupaccess.c U src/crypto/openssh/groupaccess.h C src/crypto/openssh/hostfile.c U src/crypto/openssh/hostfile.h C src/crypto/openssh/includes.h U src/crypto/openssh/kex.c U src/crypto/openssh/kex.h U src/crypto/openssh/kexdh.c U src/crypto/openssh/kexgex.c C src/crypto/openssh/key.c U src/crypto/openssh/key.h U src/crypto/openssh/log.c U src/crypto/openssh/log.h U src/crypto/openssh/mac.c U src/crypto/openssh/mac.h U src/crypto/openssh/match.c U src/crypto/openssh/match.h U src/crypto/openssh/misc.c U src/crypto/openssh/misc.h U src/crypto/openssh/mpaux.c U src/crypto/openssh/mpaux.h U src/crypto/openssh/myproposal.h U src/crypto/openssh/nchan.c U src/crypto/openssh/nchan.ms U src/crypto/openssh/nchan2.ms U src/crypto/openssh/packet.c C src/crypto/openssh/packet.h C src/crypto/openssh/pathnames.h U src/crypto/openssh/radix.c U src/crypto/openssh/radix.h C src/crypto/openssh/readconf.c C src/crypto/openssh/readconf.h U src/crypto/openssh/readpass.c U src/crypto/openssh/readpass.h U src/crypto/openssh/rijndael.c U src/crypto/openssh/rijndael.h C src/crypto/openssh/rsa.c C src/crypto/openssh/rsa.h N src/crypto/openssh/scard.c N src/crypto/openssh/scard.h U src/crypto/openssh/scp.1 U src/crypto/openssh/scp.c C src/crypto/openssh/servconf.c C src/crypto/openssh/servconf.h C src/crypto/openssh/serverloop.c U src/crypto/openssh/serverloop.h C src/crypto/openssh/session.c U src/crypto/openssh/sftp.1 U src/crypto/openssh/session.h U src/crypto/openssh/sftp-client.c U src/crypto/openssh/sftp-client.h U src/crypto/openssh/sftp-common.c U src/crypto/openssh/sftp-common.h U src/crypto/openssh/sftp-glob.c U src/crypto/openssh/sftp-glob.h U src/crypto/openssh/sftp-int.c U src/crypto/openssh/sftp-int.h U src/crypto/openssh/sftp-server.8 U src/crypto/openssh/sftp-server.c U src/crypto/openssh/sftp.c U src/crypto/openssh/sftp.h U src/crypto/openssh/ssh-add.1 C src/crypto/openssh/ssh-add.c U src/crypto/openssh/ssh-agent.1 C src/crypto/openssh/ssh-agent.c U src/crypto/openssh/ssh-dss.c U src/crypto/openssh/ssh-dss.h U src/crypto/openssh/ssh-keygen.1 U src/crypto/openssh/ssh-keygen.c U src/crypto/openssh/ssh-keyscan.1 U src/crypto/openssh/ssh-keyscan.c U src/crypto/openssh/ssh-rsa.c U src/crypto/openssh/ssh-rsa.h C src/crypto/openssh/ssh.1 C src/crypto/openssh/ssh.c C src/crypto/openssh/ssh.h U src/crypto/openssh/ssh1.h U src/crypto/openssh/ssh2.h C src/crypto/openssh/ssh_config C src/crypto/openssh/sshconnect.c C src/crypto/openssh/sshconnect.h C src/crypto/openssh/sshconnect1.c C src/crypto/openssh/sshconnect2.c C src/crypto/openssh/sshd.8 C src/crypto/openssh/sshd.c C src/crypto/openssh/sshd_config C src/crypto/openssh/sshlogin.c U src/crypto/openssh/sshlogin.h C src/crypto/openssh/sshpty.c U src/crypto/openssh/sshpty.h U src/crypto/openssh/sshtty.c U src/crypto/openssh/sshtty.h U src/crypto/openssh/tildexpand.c U src/crypto/openssh/tildexpand.h U src/crypto/openssh/ttymodes.c U src/crypto/openssh/ttymodes.h U src/crypto/openssh/uidswap.c U src/crypto/openssh/uidswap.h U src/crypto/openssh/uuencode.c U src/crypto/openssh/uuencode.h C src/crypto/openssh/version.h U src/crypto/openssh/xmalloc.c U src/crypto/openssh/xmalloc.h U src/crypto/openssh/lib/Makefile U src/crypto/openssh/scp/Makefile N src/crypto/openssh/scard/Makefile N src/crypto/openssh/scard/Ssh.bin.uu N src/crypto/openssh/scard/Ssh.java U src/crypto/openssh/sftp/Makefile U src/crypto/openssh/sftp-server/Makefile U src/crypto/openssh/ssh/Makefile U src/crypto/openssh/ssh-add/Makefile U src/crypto/openssh/ssh-agent/Makefile U src/crypto/openssh/ssh-keygen/Makefile U src/crypto/openssh/ssh-keyscan/Makefile U src/crypto/openssh/sshd/Makefile 50 conflicts created by this import. Use the following command to help the merge: cvs checkout -jOpenBSD:yesterday -jOpenBSD src/crypto/openssh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2: 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 2D2F937B400; Mon, 18 Mar 2002 02:01:54 -0800 (PST) Received: (from jkoshy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IA1sF17072; Mon, 18 Mar 2002 02:01:54 -0800 (PST) (envelope-from jkoshy) Message-Id: <200203181001.g2IA1sF17072@freefall.freebsd.org> From: Joseph Koshy Date: Mon, 18 Mar 2002 02:01:54 -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 jkoshy 2002/03/18 02:01:54 PST Modified files: en/news press.xml Log: Add Samag.com's July 2001 article benchmarking FreeBSD, Linux, Windows and Solaris as network servers. Also include the URL for the revised results from the benchmark using a 'tuned' FreeBSD configuration. Revision Changes Path 1.39 +20 -1 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 Mon Mar 18 2: 7:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0484737B416; Mon, 18 Mar 2002 02:07:23 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IA7Mt21897; Mon, 18 Mar 2002 02:07:22 -0800 (PST) (envelope-from ru) Message-Id: <200203181007.g2IA7Mt21897@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 02:07:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 ports.7 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 02:07:22 PST Modified files: share/man/man7 ports.7 Log: mdoc(7) police: tidy up. Revision Changes Path 1.31 +166 -135 src/share/man/man7/ports.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2: 9: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 28A7737B402; Mon, 18 Mar 2002 02:09:45 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IA9jI22591; Mon, 18 Mar 2002 02:09:45 -0800 (PST) (envelope-from des) Message-Id: <200203181009.g2IA9jI22591@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 18 Mar 2002 02:09:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh auth-chall.c auth-krb4.c auth-krb5.c auth-pam.c auth-passwd.c auth-rh-rsa.c auth-rsa.c auth.c auth.h auth1.c auth2.c authfd.c authfile.c bufaux.c canohost.c channels.c channels.h cipher.c cipher.h compat.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/18 02:09:45 PST Modified files: crypto/openssh auth-chall.c auth-krb4.c auth-krb5.c auth-pam.c auth-passwd.c auth-rh-rsa.c auth-rsa.c auth.c auth.h auth1.c auth2.c authfd.c authfile.c bufaux.c canohost.c channels.c channels.h cipher.c cipher.h compat.c compat.h hostfile.c includes.h key.c mpaux.c packet.h pathnames.h readconf.c readconf.h rijndael.c rsa.c rsa.h servconf.c servconf.h serverloop.c session.c ssh-add.c ssh-agent.c ssh.1 ssh.c ssh.h ssh_config sshconnect.c sshconnect.h sshconnect1.c sshconnect2.c sshd.8 sshd.c sshd_config sshlogin.c sshpty.c version.h Log: Fix conflicts. Revision Changes Path 1.3 +44 -66 src/crypto/openssh/auth-chall.c 1.10 +150 -168 src/crypto/openssh/auth-krb4.c 1.9 +231 -209 src/crypto/openssh/auth-krb5.c 1.6 +3 -3 src/crypto/openssh/auth-pam.c 1.9 +13 -15 src/crypto/openssh/auth-passwd.c 1.8 +8 -43 src/crypto/openssh/auth-rh-rsa.c 1.9 +47 -60 src/crypto/openssh/auth-rsa.c 1.8 +222 -8 src/crypto/openssh/auth.c 1.5 +85 -85 src/crypto/openssh/auth.h 1.19 +89 -173 src/crypto/openssh/auth1.c 1.13 +212 -264 src/crypto/openssh/auth2.c 1.9 +35 -16 src/crypto/openssh/authfd.c 1.9 +58 -60 src/crypto/openssh/authfile.c 1.9 +11 -14 src/crypto/openssh/bufaux.c 1.7 +24 -24 src/crypto/openssh/canohost.c 1.9 +900 -862 src/crypto/openssh/channels.c 1.5 +126 -216 src/crypto/openssh/channels.h 1.10 +329 -384 src/crypto/openssh/cipher.c 1.9 +23 -56 src/crypto/openssh/cipher.h 1.5 +80 -58 src/crypto/openssh/compat.c 1.4 +31 -26 src/crypto/openssh/compat.h 1.8 +3 -14 src/crypto/openssh/hostfile.c 1.11 +2 -8 src/crypto/openssh/includes.h 1.9 +83 -63 src/crypto/openssh/key.c 1.8 +0 -0 src/crypto/openssh/mpaux.c 1.9 +57 -192 src/crypto/openssh/packet.h 1.3 +25 -12 src/crypto/openssh/pathnames.h 1.13 +124 -101 src/crypto/openssh/readconf.c 1.9 +19 -58 src/crypto/openssh/readconf.h 1.2 +1219 -468 src/crypto/openssh/rijndael.c 1.11 +8 -5 src/crypto/openssh/rsa.c 1.9 +6 -7 src/crypto/openssh/rsa.h 1.23 +533 -503 src/crypto/openssh/servconf.c 1.10 +28 -40 src/crypto/openssh/servconf.h 1.4 +256 -186 src/crypto/openssh/serverloop.c 1.20 +620 -739 src/crypto/openssh/session.c 1.6 +153 -62 src/crypto/openssh/ssh-add.c 1.12 +259 -127 src/crypto/openssh/ssh-agent.c 1.20 +278 -144 src/crypto/openssh/ssh.1 1.18 +271 -171 src/crypto/openssh/ssh.c 1.18 +5 -5 src/crypto/openssh/ssh.h 1.10 +11 -13 src/crypto/openssh/ssh_config 1.19 +224 -324 src/crypto/openssh/sshconnect.c 1.5 +10 -19 src/crypto/openssh/sshconnect.h 1.13 +462 -281 src/crypto/openssh/sshconnect1.c 1.4 +133 -114 src/crypto/openssh/sshconnect2.c 1.18 +260 -134 src/crypto/openssh/sshd.8 1.27 +177 -131 src/crypto/openssh/sshd.c 1.18 +70 -47 src/crypto/openssh/sshd_config 1.4 +4 -4 src/crypto/openssh/sshlogin.c 1.3 +14 -12 src/crypto/openssh/sshpty.c 1.11 +5 -5 src/crypto/openssh/version.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2:10: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 4AADD37B400; Mon, 18 Mar 2002 02:10:55 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IAAt622886; Mon, 18 Mar 2002 02:10:55 -0800 (PST) (envelope-from ru) Message-Id: <200203181010.g2IAAt622886@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 02:10:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/perl Makefile.inc X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 02:10:55 PST Modified files: gnu/usr.bin/perl Makefile.inc Log: FreeBSD 4.x bootstrapping aid (no eaccess(2) syscall). Reviewed by: markm Revision Changes Path 1.30 +6 -0 src/gnu/usr.bin/perl/Makefile.inc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2:14: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 6601137B400; Mon, 18 Mar 2002 02:14:30 -0800 (PST) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IAEUE23586; Mon, 18 Mar 2002 02:14:30 -0800 (PST) (envelope-from brian) Message-Id: <200203181014.g2IAEUE23586@freefall.freebsd.org> From: Brian Somers Date: Mon, 18 Mar 2002 02:14:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2002/03/18 02:14:30 PST Modified files: . modules Log: p5-DataCash --> ports/misc/p5-DataCash Revision Changes Path 1.4861 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2:16: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B62437B417; Mon, 18 Mar 2002 02:16:04 -0800 (PST) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IAG4V24026; Mon, 18 Mar 2002 02:16:04 -0800 (PST) (envelope-from brian) Message-Id: <200203181016.g2IAG4V24026@freefall.freebsd.org> From: Brian Somers Date: Mon, 18 Mar 2002 02:16:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/p5-DataCash Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2002/03/18 02:16:04 PST Modified files: misc/p5-DataCash Makefile Log: Take MAINTAINERship (as FSL) Approved by: markm Revision Changes Path 1.4 +2 -2 ports/misc/p5-DataCash/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2:16: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 7FC3237B41C; Mon, 18 Mar 2002 02:16:35 -0800 (PST) Received: (from brian@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IAGZl24204; Mon, 18 Mar 2002 02:16:35 -0800 (PST) (envelope-from brian) Message-Id: <200203181016.g2IAGZl24204@freefall.freebsd.org> From: Brian Somers Date: Mon, 18 Mar 2002 02:16:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/misc/p5-DataCash Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG brian 2002/03/18 02:16:35 PST Modified files: misc/p5-DataCash Makefile Log: Depend on security/p5-Crypt-Blowfish Revision Changes Path 1.5 +1 -0 ports/misc/p5-DataCash/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2:17:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6155837B41D; Mon, 18 Mar 2002 02:16:57 -0800 (PST) Received: (from dfr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IAGve24316; Mon, 18 Mar 2002 02:16:57 -0800 (PST) (envelope-from dfr) Message-Id: <200203181016.g2IAGve24316@freefall.freebsd.org> From: Doug Rabson Date: Mon, 18 Mar 2002 02:16:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/contrib/dev/acpica acgcc.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dfr 2002/03/18 02:16:57 PST Modified files: sys/contrib/dev/acpica acgcc.h Log: Remove a couple of stray linuxisms to make this work for FreeBSD/ia64. Revision Changes Path 1.15 +2 -6 src/sys/contrib/dev/acpica/acgcc.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2:20: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 28C5E37B400; Mon, 18 Mar 2002 02:19:58 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IAJub25201; Mon, 18 Mar 2002 02:19:56 -0800 (PST) (envelope-from ru) Message-Id: <200203181019.g2IAJub25201@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 02:19:56 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man7 tuning.7 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 02:19:56 PST Modified files: share/man/man7 tuning.7 Log: mdoc(7) police: nit. Revision Changes Path 1.44 +1 -2 src/share/man/man7/tuning.7 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2:20:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6765637B417; Mon, 18 Mar 2002 02:20:33 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IAKXA25421; Mon, 18 Mar 2002 02:20:33 -0800 (PST) (envelope-from des) Message-Id: <200203181020.g2IAKXA25421@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 18 Mar 2002 02:20:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure/lib/libssh Makefile src/secure/usr.bin/scp Makefile src/secure/usr.bin/sftp Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/18 02:20:33 PST Modified files: secure/lib/libssh Makefile secure/usr.bin/scp Makefile secure/usr.bin/sftp Makefile Log: Adjust for OpenSSH 3.1. Sponsored by: DARPA, NAI Labs Revision Changes Path 1.14 +2 -2 src/secure/lib/libssh/Makefile 1.8 +1 -1 src/secure/usr.bin/scp/Makefile 1.4 +1 -1 src/secure/usr.bin/sftp/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2:28: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 3CEAF37B421; Mon, 18 Mar 2002 02:27:59 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IARwk28129; Mon, 18 Mar 2002 02:27:58 -0800 (PST) (envelope-from knu) Message-Id: <200203181027.g2IARwk28129@freefall.freebsd.org> From: Akinori MUSHA Date: Mon, 18 Mar 2002 02:27:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/mpg123 Makefile ports/audio/vorbis-tools Makefile ports/converters/p5-Text-Iconv Makefile ports/converters/py-iconv Makefile ports/converters/ruby-iconv Makefile ports/converters/siconv Makefile ports/databases/freetds ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/18 02:27:58 PST Modified files: audio/mpg123 Makefile audio/vorbis-tools Makefile converters/p5-Text-Iconv Makefile converters/py-iconv Makefile converters/ruby-iconv Makefile converters/siconv Makefile databases/freetds Makefile databases/grass Makefile databases/sqlrelay Makefile devel/bison Makefile devel/gettext Makefile devel/glib20 Makefile devel/gnomevfs Makefile devel/styx Makefile editors/AbiWord Makefile editors/dedit Makefile editors/koffice Makefile editors/nvi-devel Makefile ftp/wget+ipv6 Makefile graphics/djvulibre Makefile graphics/gphoto2 Makefile graphics/graphviz Makefile graphics/mplayer Makefile graphics/ogle-gui Makefile irc/xchat Makefile japanese/libjconv Makefile japanese/mutt-devel Makefile korean/hanterm-xf86 Makefile mail/elm+ME Makefile mail/mutt-devel Makefile mail/nail Makefile mail/stuphead Makefile math/gnumeric Makefile misc/gnomemimedata Makefile misc/pinfo Makefile net/dctc-gui Makefile net/gtk+licq Makefile net/gtkhx Makefile net/wol Makefile news/tin Makefile palm/pilot-link Makefile science/vis5d+ Makefile security/gnupg Makefile textproc/intltool Makefile textproc/libxml2 Makefile textproc/minidom Makefile textproc/p5-XML-Sablotron Makefile textproc/ruby-sablot Makefile textproc/sablotron Makefile www/galeon Makefile www/p5-AxKit Makefile x11/gdkxft Makefile x11-toolkits/gal Makefile x11-toolkits/wxgtk-devel Makefile x11-wm/icewm Makefile x11-wm/xfce Makefile Log: Bump PORTREVISION to reflect the (lib)iconv upgrade. Revision Changes Path 1.40 +1 -1 ports/audio/mpg123/Makefile 1.15 +1 -1 ports/audio/vorbis-tools/Makefile 1.7 +1 -0 ports/converters/p5-Text-Iconv/Makefile 1.5 +1 -0 ports/converters/py-iconv/Makefile 1.17 +1 -0 ports/converters/ruby-iconv/Makefile 1.3 +1 -0 ports/converters/siconv/Makefile 1.18 +1 -0 ports/databases/freetds/Makefile 1.12 +1 -1 ports/databases/grass/Makefile 1.7 +1 -0 ports/databases/sqlrelay/Makefile 1.28 +1 -0 ports/devel/bison/Makefile 1.25 +1 -0 ports/devel/gettext/Makefile 1.54 +1 -0 ports/devel/glib20/Makefile 1.32 +1 -0 ports/devel/gnomevfs/Makefile 1.6 +1 -0 ports/devel/styx/Makefile 1.40 +1 -0 ports/editors/AbiWord/Makefile 1.16 +1 -0 ports/editors/dedit/Makefile 1.38 +1 -0 ports/editors/koffice/Makefile 1.7 +1 -0 ports/editors/nvi-devel/Makefile 1.4 +1 -0 ports/ftp/wget+ipv6/Makefile 1.9 +1 -0 ports/graphics/djvulibre/Makefile 1.21 +1 -0 ports/graphics/gphoto2/Makefile 1.35 +1 -1 ports/graphics/graphviz/Makefile 1.16 +1 -1 ports/graphics/mplayer/Makefile 1.9 +1 -1 ports/graphics/ogle-gui/Makefile 1.93 +1 -0 ports/irc/xchat/Makefile 1.5 +1 -0 ports/japanese/libjconv/Makefile 1.33 +1 -0 ports/japanese/mutt-devel/Makefile 1.26 +1 -1 ports/korean/hanterm-xf86/Makefile 1.76 +1 -0 ports/mail/elm+ME/Makefile 1.163 +1 -1 ports/mail/mutt-devel/Makefile 1.12 +1 -1 ports/mail/nail/Makefile 1.6 +1 -0 ports/mail/stuphead/Makefile 1.83 +1 -0 ports/math/gnumeric/Makefile 1.3 +1 -0 ports/misc/gnomemimedata/Makefile 1.16 +1 -0 ports/misc/pinfo/Makefile 1.14 +1 -0 ports/net/dctc-gui/Makefile 1.8 +1 -0 ports/net/gtk+licq/Makefile 1.5 +1 -0 ports/net/gtkhx/Makefile 1.4 +1 -0 ports/net/wol/Makefile 1.96 +1 -0 ports/news/tin/Makefile 1.49 +1 -1 ports/palm/pilot-link/Makefile 1.3 +1 -0 ports/science/vis5d+/Makefile 1.39 +1 -1 ports/security/gnupg/Makefile 1.13 +1 -0 ports/textproc/intltool/Makefile 1.64 +1 -0 ports/textproc/libxml2/Makefile 1.4 +1 -0 ports/textproc/minidom/Makefile 1.13 +1 -0 ports/textproc/p5-XML-Sablotron/Makefile 1.13 +1 -1 ports/textproc/ruby-sablot/Makefile 1.16 +1 -0 ports/textproc/sablotron/Makefile 1.65 +1 -1 ports/www/galeon/Makefile 1.6 +1 -0 ports/www/p5-AxKit/Makefile 1.29 +1 -0 ports/x11-toolkits/gal/Makefile 1.31 +1 -0 ports/x11-toolkits/wxgtk-devel/Makefile 1.71 +1 -1 ports/x11-wm/icewm/Makefile 1.54 +1 -0 ports/x11-wm/xfce/Makefile 1.9 +1 -0 ports/x11/gdkxft/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2:32:17 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0E11037B442; Mon, 18 Mar 2002 02:31:33 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IAVXc29345; Mon, 18 Mar 2002 02:31:33 -0800 (PST) (envelope-from des) Message-Id: <200203181031.g2IAVXc29345@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 18 Mar 2002 02:31:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/crypto/openssh auth-skey.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/18 02:31:33 PST Added files: crypto/openssh auth-skey.c Log: Revive this file (which is used for opie rather than skey) Revision Changes Path 1.9 +97 -0 src/crypto/openssh/auth-skey.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2:33:37 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 32DDE37B41E; Mon, 18 Mar 2002 02:33:28 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 802F15346; Mon, 18 Mar 2002 11:33:26 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: cvs-committers@FreeBSD.org Cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh auth-chall.c auth-krb4.c auth-krb5.c auth-pam.c auth-passwd.c auth-rh-rsa.c auth-rsa.c auth.c auth.h auth1.c auth2.c authfd.c authfile.c bufaux.c canohost.c channels.c channels.h cipher.c cipher.h compat.c ... References: <200203181009.g2IA9jI22591@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 18 Mar 2002 11:33:25 +0100 In-Reply-To: <200203181009.g2IA9jI22591@freefall.freebsd.org> Message-ID: Lines: 46 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dag-Erling Smorgrav writes: > Log: > Fix conflicts. This was a real bitch... expect stuff to break. I've verified that it builds with krb4 and krb5 support, and that it works in !krb case, but the diffs are so huge I'm bound to have done *something* wrong. Some things worth pointing out: 1) I bungled the import (used the wrong vendor tag). Mark has already had my hide for this on IRC :) 2) I've aimed for minimal diffs vs. OpenBSD rather than minimal diffs vs. FreeBSD, to make future upgrades less painful than this one. 3) OpenSSH 3.1 has krb5 support, based mainly on our code but with some changes which I've adopted. 4) I've completely removed the ConnectionsPerPeriod option since it never existed in OpenBSD and has been deprecated in our tree for a while now. Conversely, I've revived CheckMail which OpenBSD had retired; since we had it on by default, I didn't feel it was right to take it out back and shoot it. 5) I've adopted OpenBSD's style for sshd_config: list every option, set it to the default value, but comment it out. Our sshd_config was already like that except that a) MaxStartups was commented out but set to a non-default value and b) a handful of options were set to their default values but not commented out. 6) I've also followed OpenBSD's lead in removing all mention of *2 from the documentation, since in OpenSSH 3.1, *2 files are still consulted but no longer updated. This is definitely worthy of a big mention in relnotes. 7) Once I've gotten some sleep I'm going to try to document all this in a README I'll put alongside the code. 8) I forgot to mention that all this was Sponsored by: DARPA, NAI Labs DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2:34: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 B793937B400; Mon, 18 Mar 2002 02:34:43 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IAYhB30179; Mon, 18 Mar 2002 02:34:43 -0800 (PST) (envelope-from ru) Message-Id: <200203181034.g2IAYhB30179@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 02:34:43 -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 ru 2002/03/18 02:34:43 PST Modified files: share/man/man8 crash.8 Log: mdoc(7) police: tidy up. Revision Changes Path 1.18 +33 -27 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 Mon Mar 18 2:40:14 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id 501FC37B416; Mon, 18 Mar 2002 02:39:59 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g2IAdw877304; Mon, 18 Mar 2002 10:39:58 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 g2IAaYH5001461; Mon, 18 Mar 2002 10:36:34 GMT (envelope-from mark@grimreaper.grondar.za) Message-Id: <200203181036.g2IAaYH5001461@grimreaper.grondar.org> To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh auth-skey.c References: <200203181031.g2IAVXc29345@freefall.freebsd.org> In-Reply-To: <200203181031.g2IAVXc29345@freefall.freebsd.org> ; from Dag-Erling Smorgrav "Mon, 18 Mar 2002 02:31:33 PST." Date: Mon, 18 Mar 2002 10:36:34 +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 > des 2002/03/18 02:31:33 PST > > Added files: > crypto/openssh auth-skey.c > Log: > Revive this file (which is used for opie rather than skey) EH? What about PAM? M -- o Mark Murray \_ O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2:43:52 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D0F1037B404; Mon, 18 Mar 2002 02:43:49 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IAhnl33409; Mon, 18 Mar 2002 02:43:49 -0800 (PST) (envelope-from ru) Message-Id: <200203181043.g2IAhnl33409@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 02:43:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 DEVICE_PROBE.9 sleep.9 spl.9 vnode.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 02:43:49 PST Modified files: share/man/man9 DEVICE_PROBE.9 sleep.9 spl.9 vnode.9 Log: mdoc(7) police: macroize UNIX. Revision Changes Path 1.13 +3 -1 src/share/man/man9/DEVICE_PROBE.9 1.34 +2 -1 src/share/man/man9/sleep.9 1.16 +3 -2 src/share/man/man9/spl.9 1.18 +4 -2 src/share/man/man9/vnode.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2:44:46 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc54.attbi.com (rwcrmhc54.attbi.com [216.148.227.87]) by hub.freebsd.org (Postfix) with ESMTP id E821A37B416; Mon, 18 Mar 2002 02:44:42 -0800 (PST) Received: from blossom.cjclark.org ([12.234.91.48]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020318104442.CAKH1214.rwcrmhc54.attbi.com@blossom.cjclark.org>; Mon, 18 Mar 2002 10:44:42 +0000 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.6) id g2IAigE59007; Mon, 18 Mar 2002 02:44:42 -0800 (PST) (envelope-from cjc) Date: Mon, 18 Mar 2002 02:44:41 -0800 From: "Crist J. Clark" To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh auth-chall.c auth-krb4.c auth-krb5.c auth-pam.c auth-passwd.c auth-rh-rsa.c auth-rsa.c auth.c auth.h auth1.c auth2.c authfd.c authfile.c bufaux.c canohost.c channels.c channels.h cipher.c cipher.h compat.c ... Message-ID: <20020318024441.B29705@blossom.cjclark.org> References: <200203181009.g2IA9jI22591@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Mon, Mar 18, 2002 at 11:33:25AM +0100 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Mar 18, 2002 at 11:33:25AM +0100, Dag-Erling Smorgrav wrote: [snip] > Conversely, I've revived CheckMail which OpenBSD had > retired; since we had it on by default, I didn't feel it was right > to take it out back and shoot it. Crush. Kill. Destroy. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2:47:31 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 6772737B404; Mon, 18 Mar 2002 02:47:28 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 910375346; Mon, 18 Mar 2002 11:47:26 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Mark Murray Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh auth-skey.c References: <200203181031.g2IAVXc29345@freefall.freebsd.org> <200203181036.g2IAaYH5001461@grimreaper.grondar.org> From: Dag-Erling Smorgrav Date: 18 Mar 2002 11:47:25 +0100 In-Reply-To: <200203181036.g2IAaYH5001461@grimreaper.grondar.org> Message-ID: Lines: 17 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Mark Murray writes: > > Log: > > Revive this file (which is used for opie rather than skey) > What about PAM? I don't think we've ever used PAM for S/Key authentication, have we? This code used to be in auth-chall.c but moved into a separate file, that's all. We built and used it in 2.9 and we still build and use it in 3.1 In any case, I'm not done yet - there are still issues with session.c that I want to look over, and that will include reviewing all of the PAM stuff. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2:52:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6657237B404; Mon, 18 Mar 2002 02:52:09 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IAq9n35040; Mon, 18 Mar 2002 02:52:09 -0800 (PST) (envelope-from ru) Message-Id: <200203181052.g2IAq9n35040@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 02:52:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 malloc.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 02:52:09 PST Modified files: share/man/man9 malloc.9 Log: mdoc(7) police: fixed some wording, kill whitespace at EOL. Revision Changes Path 1.23 +6 -4 src/share/man/man9/malloc.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 2:53: 4 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 8110A37B402; Mon, 18 Mar 2002 02:53:00 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id F0D065346; Mon, 18 Mar 2002 11:52:58 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Mark Murray Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh auth-skey.c References: <200203181031.g2IAVXc29345@freefall.freebsd.org> <200203181036.g2IAaYH5001461@grimreaper.grondar.org> From: Dag-Erling Smorgrav Date: 18 Mar 2002 11:52:58 +0100 In-Reply-To: Message-ID: Lines: 16 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dag-Erling Smorgrav writes: > Mark Murray writes: > > > Log: > > > Revive this file (which is used for opie rather than skey) > > What about PAM? > I don't think we've ever used PAM for S/Key authentication, have we? > This code used to be in auth-chall.c but moved into a separate file, > that's all. We built and used it in 2.9 and we still build and use it > in 3.1 I just verified that S/Key authentication still works just like it used to. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 3: 0: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C9B7837B402; Mon, 18 Mar 2002 02:59:58 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IAxwH41126; Mon, 18 Mar 2002 02:59:58 -0800 (PST) (envelope-from ru) Message-Id: <200203181059.g2IAxwH41126@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 02:59:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 physio.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 02:59:58 PST Modified files: share/man/man9 physio.9 Log: mdoc(7) police: tidy up. Revision Changes Path 1.13 +21 -15 src/share/man/man9/physio.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 3: 0:35 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 86A2F37B402; Mon, 18 Mar 2002 03:00:05 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g2IAxvm77495; Mon, 18 Mar 2002 10:59:57 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 g2IAxfH5001916; Mon, 18 Mar 2002 10:59:41 GMT (envelope-from mark@grimreaper.grondar.za) Message-Id: <200203181059.g2IAxfH5001916@grimreaper.grondar.org> To: Dag-Erling Smorgrav Cc: Mark Murray , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh auth-skey.c References: In-Reply-To: ; from Dag-Erling Smorgrav "18 Mar 2002 11:47:25 +0100." Date: Mon, 18 Mar 2002 10:59:40 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Mark Murray writes: > > > Log: > > > Revive this file (which is used for opie rather than skey) > > What about PAM? > > I don't think we've ever used PAM for S/Key authentication, have we? No - but we use PAM for OPIE, and this file is used for OPIE (as you saty above). > This code used to be in auth-chall.c but moved into a separate file, > that's all. We built and used it in 2.9 and we still build and use it > in 3.1 OK. > In any case, I'm not done yet - there are still issues with session.c > that I want to look over, and that will include reviewing all of the > PAM stuff. OK. NP then. M -- o Mark Murray \_ O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 3: 4: 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 4FF5C37B400; Mon, 18 Mar 2002 03:03:57 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IB3v253121; Mon, 18 Mar 2002 03:03:57 -0800 (PST) (envelope-from ru) Message-Id: <200203181103.g2IB3v253121@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 03:03:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 style.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 03:03:57 PST Modified files: share/man/man9 style.9 Log: mdoc(7) police: markup nit. Revision Changes Path 1.83 +2 -1 src/share/man/man9/style.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 3: 6:58 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 21CD737B400; Mon, 18 Mar 2002 03:06:48 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 851A85346; Mon, 18 Mar 2002 12:06:46 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Mark Murray Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh auth-skey.c References: <200203181059.g2IAxfH5001916@grimreaper.grondar.org> From: Dag-Erling Smorgrav Date: 18 Mar 2002 12:06:45 +0100 In-Reply-To: <200203181059.g2IAxfH5001916@grimreaper.grondar.org> Message-ID: Lines: 20 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Mark Murray writes: > > I don't think we've ever used PAM for S/Key authentication, have we? > No - but we use PAM for OPIE, and this file is used for OPIE (as you > saty above). What I mean is that our version of OpenSSH has never used PAM for what it calls S/Key, which in our tree is actually OPIE. ISTR Eivind ran into some trouble related to this when he first PAMified OpenSSH, regarding assumptions that challenge / response based authentication had to be S/Key. As far as I can determine, this was still true of OpenSSH 2.9 but is no longer true of OpenSSH 3.1, which has an elaborate mechanism for defining new authentication methods (gee, you'd think they'd heard of PAM...) I'm going to see if I can make PAM fit into this mechanism instead of hacking it into auth[12].c and session.c like we do now. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 3: 8:39 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 A923937B405; Mon, 18 Mar 2002 03:08:32 -0800 (PST) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 18 Mar 2002 11:08:31 +0000 (GMT) To: "Matthew D. Fuller" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/cron/crontab crontab.1 In-reply-to: Your message of "Sun, 17 Mar 2002 22:44:27 CST." <20020317224427.B29148@over-yonder.net> X-Request-Do: Date: Mon, 18 Mar 2002 11:08:31 +0000 From: David Malone Message-ID: <200203181108.aa90382@salmon.maths.tcd.ie> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > Note that the patch I had also included a slight change to the parsing > logic for the allow/deny files in ..../cron/lib/misc.c, to allow a non-\n > terminated line at the end of file to work right. I read the patch and decided it had already been applied, however I see now that I wasn't reading carefully enough. I'll commit it later today. > > the patch Matthew submitted, but I broke the lines in a more FreeBSD > > way and made one small wording change. > Well, I broke them (or not, as the case may be) to match the rest of the > file ;p I couldn't decide which was clearly better - I guess it is six of one and a half-dozen of the other. David. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 3: 9: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 45AAE37B42A; Mon, 18 Mar 2002 03:08:53 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IB8rU58713; Mon, 18 Mar 2002 03:08:53 -0800 (PST) (envelope-from ru) Message-Id: <200203181108.g2IB8rU58713@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 03:08:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 vm_page_alloc.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 03:08:53 PST Modified files: share/man/man9 vm_page_alloc.9 Log: mdoc(7) police: pedantry. Revision Changes Path 1.3 +3 -2 src/share/man/man9/vm_page_alloc.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 3:10:17 2002 Delivered-To: cvs-all@freebsd.org Received: from phoenix.dmnshq.net (phoenix.dmnshq.net [194.19.34.94]) by hub.freebsd.org (Postfix) with SMTP id E4F4E37B400; Mon, 18 Mar 2002 03:10:08 -0800 (PST) Received: (from eivind@localhost) by phoenix.dmnshq.net (8.11.6/8.11.6) id g2IB9nW72776; Mon, 18 Mar 2002 12:09:49 +0100 (CET) (envelope-from eivind) Date: Mon, 18 Mar 2002 12:09:49 +0100 From: Eivind Eklund To: Dag-Erling Smorgrav Cc: Mark Murray , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh auth-skey.c Message-ID: <20020318120949.B72319@phoenix.dmnshq.net> References: <200203181031.g2IAVXc29345@freefall.freebsd.org> <200203181036.g2IAaYH5001461@grimreaper.grondar.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: ; from des@ofug.org on Mon, Mar 18, 2002 at 11:47:25AM +0100 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Mar 18, 2002 at 11:47:25AM +0100, Dag-Erling Smorgrav wrote: > Mark Murray writes: > > > Log: > > > Revive this file (which is used for opie rather than skey) > > What about PAM? > > I don't think we've ever used PAM for S/Key authentication, have we? We have, at least for SSH rev 1. The challenge/response PAM work I did in ssh moved the internal use of S/Key to use through PAM, so at that point we used PAM for S/Key. This is visible e.g. as commit 1.12 of the now defunct pam.conf. (I don't remember if I fixed this for protocol version 2 or not - I remember planning to, but I don't remember if I got around to it...) Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 3:13:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1AB0937B419; Mon, 18 Mar 2002 03:13:34 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IBDYL59686; Mon, 18 Mar 2002 03:13:34 -0800 (PST) (envelope-from knu) Message-Id: <200203181113.g2IBDYL59686@freefall.freebsd.org> From: Akinori MUSHA Date: Mon, 18 Mar 2002 03:13:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/converters/iconv Makefile ports/converters/iconv/files patch-lib::converter.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/18 03:13:34 PST Modified files: converters/iconv Makefile Added files: converters/iconv/files patch-lib::converter.c Log: Add a patch to fix a bug where iconv() did not return -1 properly on conversion error. This fixes null conversion and all the case where errno is set. Bump PORTREVISION. Approved by: Konstantin Chuguev (MAINTAINER, Author) Reported by: Nobuyoshi Nakada Revision Changes Path 1.10 +1 -1 ports/converters/iconv/Makefile 1.1 +55 -0 ports/converters/iconv/files/patch-lib::converter.c (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 3:22: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 0342A37B41A; Mon, 18 Mar 2002 03:22:12 -0800 (PST) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IBMBs61008; Mon, 18 Mar 2002 03:22:11 -0800 (PST) (envelope-from joe) Message-Id: <200203181122.g2IBMBs61008@freefall.freebsd.org> From: Josef Karthauser Date: Mon, 18 Mar 2002 03:22:11 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11-wm/fvw2m-devel Makefile distinfo pkg-comment pkg-descr pkg-plist ports/x11-wm/fvw2m-devel/files patch-FvwmM4.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2002/03/18 03:22:11 PST Removed files: x11-wm/fvw2m-devel Makefile distinfo pkg-comment pkg-descr pkg-plist x11-wm/fvw2m-devel/files patch-FvwmM4.c Log: Remove this port. It was repocopied in error to this name, and should have been fvwm2-devel instead. Revision Changes Path 1.40 +0 -65 ports/x11-wm/fvw2m-devel/Makefile (dead) 1.21 +0 -2 ports/x11-wm/fvw2m-devel/distinfo (dead) 1.2 +0 -11 ports/x11-wm/fvw2m-devel/files/patch-FvwmM4.c (dead) 1.8 +0 -1 ports/x11-wm/fvw2m-devel/pkg-comment (dead) 1.7 +0 -10 ports/x11-wm/fvw2m-devel/pkg-descr (dead) 1.21 +0 -405 ports/x11-wm/fvw2m-devel/pkg-plist (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 3:26: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 00E4A37B404; Mon, 18 Mar 2002 03:26:13 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IBQDD61810; Mon, 18 Mar 2002 03:26:13 -0800 (PST) (envelope-from sobomax) Message-Id: <200203181126.g2IBQDD61810@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 18 Mar 2002 03:26:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/gnucash/files patch-intl::gettextP.h ports/deskutils/mrproject/files patch-configure ports/devel/gnomevfs/files patch-libgnomevfs::gnome-vfs-mime-info.c ports/devel/gtranslator/files patch-src::convert.c ports/editors/AbiWord/files patch-..::wv::configure patch-..::wv::text.c ports/graphics/djvulibre/files ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/18 03:26:13 PST Removed files: deskutils/gnucash/files patch-intl::gettextP.h deskutils/mrproject/files patch-configure devel/gnomevfs/files patch-libgnomevfs::gnome-vfs-mime-info.c devel/gtranslator/files patch-src::convert.c editors/AbiWord/files patch-..::wv::configure patch-..::wv::text.c graphics/djvulibre/files patch-iconv japanese/mutt-devel/files patch-aa patch-ab patch-ad patch-ae patch-af patch-ah mail/balsa/files patch-libbalsa::address-book-ldap.c patch-libmutt::charset.c patch-libmutt::charset.h patch-libmutt::rfc2047.c patch-src::print.c mail/elm+ME/files patch-shared_libs-iconv-elmiconv.h mail/mutt-devel/files patch-06 patch-07 patch-09 patch-10 patch-11 patch-12 patch-13 net/gnomeicu/files patch-configure patch-src::kanji_conv.c news/tin/files patch-ad x11-toolkits/gal/files patch-aa patch-gal::util::e-iconv.h x11-toolkits/wxgtk-devel/files patch-src::common::strconv.cpp x11-wm/icewm/files patch-aq x11/gdkxft/files patch-src::gdkxft.c Log: Iconv cleanup, stage 2a: remove patches that only replacing with or -liconv with -lgiconv. Revision Changes Path 1.2 +0 -14 ports/deskutils/gnucash/files/patch-intl::gettextP.h (dead) 1.2 +0 -26 ports/deskutils/mrproject/files/patch-configure (dead) 1.2 +0 -14 ports/devel/gnomevfs/files/patch-libgnomevfs::gnome-vfs-mime-info.c (dead) 1.2 +0 -14 ports/devel/gtranslator/files/patch-src::convert.c (dead) 1.6 +0 -148 ports/editors/AbiWord/files/patch-..::wv::configure (dead) 1.2 +0 -14 ports/editors/AbiWord/files/patch-..::wv::text.c (dead) 1.2 +0 -11 ports/graphics/djvulibre/files/patch-iconv (dead) 1.17 +0 -20 ports/japanese/mutt-devel/files/patch-aa (dead) 1.6 +0 -11 ports/japanese/mutt-devel/files/patch-ab (dead) 1.5 +0 -11 ports/japanese/mutt-devel/files/patch-ad (dead) 1.4 +0 -11 ports/japanese/mutt-devel/files/patch-ae (dead) 1.5 +0 -11 ports/japanese/mutt-devel/files/patch-af (dead) 1.2 +0 -40 ports/japanese/mutt-devel/files/patch-ah (dead) 1.2 +0 -11 ports/mail/balsa/files/patch-libbalsa::address-book-ldap.c (dead) 1.2 +0 -14 ports/mail/balsa/files/patch-libmutt::charset.c (dead) 1.2 +0 -14 ports/mail/balsa/files/patch-libmutt::charset.h (dead) 1.2 +0 -11 ports/mail/balsa/files/patch-libmutt::rfc2047.c (dead) 1.2 +0 -14 ports/mail/balsa/files/patch-src::print.c (dead) 1.2 +0 -11 ports/mail/elm+ME/files/patch-shared_libs-iconv-elmiconv.h (dead) 1.2 +0 -11 ports/mail/mutt-devel/files/patch-06 (dead) 1.2 +0 -29 ports/mail/mutt-devel/files/patch-07 (dead) 1.3 +0 -11 ports/mail/mutt-devel/files/patch-09 (dead) 1.2 +0 -11 ports/mail/mutt-devel/files/patch-10 (dead) 1.2 +0 -11 ports/mail/mutt-devel/files/patch-11 (dead) 1.2 +0 -40 ports/mail/mutt-devel/files/patch-12 (dead) 1.2 +0 -11 ports/mail/mutt-devel/files/patch-13 (dead) 1.3 +0 -29 ports/net/gnomeicu/files/patch-configure (dead) 1.3 +0 -11 ports/net/gnomeicu/files/patch-src::kanji_conv.c (dead) 1.4 +0 -11 ports/news/tin/files/patch-ad (dead) 1.10 +0 -45 ports/x11-toolkits/gal/files/patch-aa (dead) 1.2 +0 -14 ports/x11-toolkits/gal/files/patch-gal::util::e-iconv.h (dead) 1.2 +0 -14 ports/x11-toolkits/wxgtk-devel/files/patch-src::common::strconv.cpp (dead) 1.2 +0 -20 ports/x11-wm/icewm/files/patch-aq (dead) 1.4 +0 -11 ports/x11/gdkxft/files/patch-src::gdkxft.c (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 3:50: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 DA66037B417; Mon, 18 Mar 2002 03:50:39 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IBodZ66469; Mon, 18 Mar 2002 03:50:39 -0800 (PST) (envelope-from sobomax) Message-Id: <200203181150.g2IBodZ66469@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 18 Mar 2002 03:50:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/databases/freetds Makefile ports/deskutils/mrproject Makefile ports/devel/glib20 Makefile ports/devel/styx Makefile ports/editors/dedit Makefile ports/graphics/gphoto2 Makefile ports/irc/xchat Makefile ports/mail/balsa Makefile ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/18 03:50:39 PST Modified files: databases/freetds Makefile deskutils/mrproject Makefile devel/glib20 Makefile devel/styx Makefile editors/dedit Makefile graphics/gphoto2 Makefile irc/xchat Makefile mail/balsa Makefile mail/evolution Makefile mail/gbiff Makefile math/gnumeric Makefile misc/pinfo Makefile net/gabber Makefile net/wol Makefile palm/pilot-link Makefile science/vis5d+ Makefile textproc/gxmlviewer Makefile textproc/libxml2 Makefile textproc/wv Makefile www/galeon Makefile x11-toolkits/gal Makefile x11-wm/xfce Makefile Log: Iconv cleanup, stage 2b: remove regex hacks that change iconv.h to giconv.h and -liconv to -lgiconv. Revision Changes Path 1.19 +0 -4 ports/databases/freetds/Makefile 1.8 +0 -2 ports/deskutils/mrproject/Makefile 1.55 +0 -2 ports/devel/glib20/Makefile 1.7 +0 -3 ports/devel/styx/Makefile 1.17 +0 -2 ports/editors/dedit/Makefile 1.22 +1 -3 ports/graphics/gphoto2/Makefile 1.94 +0 -3 ports/irc/xchat/Makefile 1.53 +1 -3 ports/mail/balsa/Makefile 1.56 +0 -2 ports/mail/evolution/Makefile 1.4 +0 -2 ports/mail/gbiff/Makefile 1.84 +0 -2 ports/math/gnumeric/Makefile 1.17 +0 -4 ports/misc/pinfo/Makefile 1.21 +0 -2 ports/net/gabber/Makefile 1.5 +0 -3 ports/net/wol/Makefile 1.50 +0 -4 ports/palm/pilot-link/Makefile 1.4 +0 -5 ports/science/vis5d+/Makefile 1.3 +1 -3 ports/textproc/gxmlviewer/Makefile 1.65 +0 -3 ports/textproc/libxml2/Makefile 1.16 +0 -6 ports/textproc/wv/Makefile 1.66 +1 -4 ports/www/galeon/Makefile 1.30 +0 -2 ports/x11-toolkits/gal/Makefile 1.55 +1 -4 ports/x11-wm/xfce/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 3:59: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from straylight.ringlet.net (discworld.nanolink.com [217.75.135.248]) by hub.freebsd.org (Postfix) with SMTP id 62EC937B41D for ; Mon, 18 Mar 2002 03:58:41 -0800 (PST) Received: (qmail 1378 invoked by uid 1000); 18 Mar 2002 11:58:24 -0000 Date: Mon, 18 Mar 2002 13:58:24 +0200 From: Peter Pentchev To: "Crist J. Clark" Cc: Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.h Message-ID: <20020318135824.A1326@straylight.oblivion.bg> Mail-Followup-To: "Crist J. Clark" , Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200203180222.g2I2Ms309830@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="IS0zKkzwUGydFO0o" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200203180222.g2I2Ms309830@freefall.freebsd.org>; from cjc@FreeBSD.org on Sun, Mar 17, 2002 at 06:22:53PM -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 --IS0zKkzwUGydFO0o Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Mar 17, 2002 at 06:22:53PM -0800, Crist J. Clark wrote: > cjc 2002/03/17 18:22:53 PST >=20 > Modified files: > usr.bin/chpass chpass.c pw_copy.c pw_copy.h=20 > Log: > It was possible for an unprivileged user to tie up the password > information (no one else can vipw(8), chpass(1), or even passwd(1)), > either on purpose or by accident, until an administrator manually > intervened. Instead, do not lock the master.passwd file while a user > is editing his information. But once we go to write the new > information, check that the modified user's information has not > changed in the password database since we started. Abort the changes > if it has. > =20 > Add a $FreeBSD$ to pw_copy.h. > =20 > PR: i386/35816 > Obtained from: NetBSD > MFC after: 1 week [des@ CC'd because of a proposed libpam patch] Errr... did this really go through a buildworld? :) I think that at least the attached patches are needed to catch up with pw_copy.c's including pw_scan.h and pw_copy()'s growing a fourth parameter.. Still, great work! The chpass(8) locking the password file has bitten me several times, badly (and yes, it was trivial to handle, but still..) G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 This sentence every third, but it still comprehensible. Index: src/lib/libpam/modules/pam_unix/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/lib/libpam/modules/pam_unix/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- src/lib/libpam/modules/pam_unix/Makefile 7 Mar 2002 16:56:19 -0000 1.12 +++ src/lib/libpam/modules/pam_unix/Makefile 18 Mar 2002 10:33:06 -0000 @@ -31,7 +31,8 @@ -I${.OBJDIR} \ -I${.CURDIR}/../../../../libexec/ypxfr \ -I${.CURDIR}/../../../../usr.sbin/vipw \ - -I${.CURDIR}/../../../../usr.bin/chpass + -I${.CURDIR}/../../../../usr.bin/chpass \ + -I${.CURDIR}/../../../../lib/libc/gen DPADD=3D ${LIBUTIL} ${LIBCRYPT} ${LIBRPCSVC} LDADD=3D -lutil -lcrypt -lrpcsvc MAN=3D pam_unix.8 Index: src/lib/libpam/modules/pam_unix/pam_unix.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/lib/libpam/modules/pam_unix/pam_unix.c,v retrieving revision 1.25 diff -u -r1.25 pam_unix.c --- src/lib/libpam/modules/pam_unix/pam_unix.c 14 Mar 2002 23:27:59 -0000 1= .25 +++ src/lib/libpam/modules/pam_unix/pam_unix.c 18 Mar 2002 10:51:00 -0000 @@ -578,7 +578,7 @@ =20 pfd =3D pw_lock(); tfd =3D pw_tmp(); - pw_copy(pfd, tfd, pwd); + pw_copy(pfd, tfd, pwd, NULL); =20 if (!pw_mkdb(user)) pw_error((char *)NULL, 0, 1); Index: src/usr.bin/passwd/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/usr.bin/passwd/Makefile,v retrieving revision 1.42 diff -u -r1.42 Makefile --- src/usr.bin/passwd/Makefile 13 Sep 2001 06:48:17 -0000 1.42 +++ src/usr.bin/passwd/Makefile 18 Mar 2002 11:12:51 -0000 @@ -20,6 +20,7 @@ CFLAGS+=3D -DLOGIN_CAP -DCRYPT -I. -I${.CURDIR} \ -I${.CURDIR}/../../usr.sbin/vipw \ -I${.CURDIR}/../../usr.bin/chpass \ + -I${.CURDIR}/../../lib/libc/gen \ -Dyp_error=3Dwarnx -DLOGGING =20 .else @@ -42,6 +43,7 @@ -I${.CURDIR}/../../usr.bin/chpass \ -I${.CURDIR}/../../libexec/ypxfr \ -I${.CURDIR}/../../usr.sbin/rpc.yppasswdd \ + -I${.CURDIR}/../../lib/libc/gen \ -Dyp_error=3Dwarnx -DLOGGING =20 .endif Index: src/usr.bin/passwd/local_passwd.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/usr.bin/passwd/local_passwd.c,v retrieving revision 1.27 diff -u -r1.27 local_passwd.c --- src/usr.bin/passwd/local_passwd.c 11 Mar 2001 16:37:30 -0000 1.27 +++ src/usr.bin/passwd/local_passwd.c 18 Mar 2002 11:13:32 -0000 @@ -223,7 +223,7 @@ =20 pfd =3D pw_lock(); tfd =3D pw_tmp(); - pw_copy(pfd, tfd, pw); + pw_copy(pfd, tfd, pw, NULL); =20 if (!pw_mkdb(uname)) pw_error((char *)NULL, 0, 1); --IS0zKkzwUGydFO0o 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 iEYEARECAAYFAjyV1mAACgkQ7Ri2jRYZRVOjpQCcDVOEIM8cx6MMY1QyLg3EKmXR 2scAn03yOXFW1JjMaLXLzwv03R0/kRZ6 =X3gF -----END PGP SIGNATURE----- --IS0zKkzwUGydFO0o-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 4: 4:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 56BA037B400; Mon, 18 Mar 2002 04:04:52 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IC4qa75950; Mon, 18 Mar 2002 04:04:52 -0800 (PST) (envelope-from ru) Message-Id: <200203181204.g2IC4qa75950@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 04:04:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man8 picobsd.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 04:04:52 PST Modified files: share/man/man8 picobsd.8 Log: mdoc(7) police: tidy up. Revision Changes Path 1.16 +169 -159 src/share/man/man8/picobsd.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 4:10:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 71BF437B41D; Mon, 18 Mar 2002 04:10:45 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ICAjx80654; Mon, 18 Mar 2002 04:10:45 -0800 (PST) (envelope-from ru) Message-Id: <200203181210.g2ICAjx80654@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 04:10:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 bpf.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 04:10:45 PST Modified files: share/man/man4 bpf.4 Log: mdoc(7) police: markup nit. Revision Changes Path 1.36 +3 -1 src/share/man/man4/bpf.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 4:13:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 58F8337B417; Mon, 18 Mar 2002 04:13:14 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ICDDA81393; Mon, 18 Mar 2002 04:13:13 -0800 (PST) (envelope-from sos) Message-Id: <200203181213.g2ICDDA81393@freefall.freebsd.org> From: Søren Schmidt Date: Mon, 18 Mar 2002 04:13:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-dma.c ata-pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/18 04:13:13 PST Modified files: sys/dev/ata ata-dma.c ata-pci.c Log: Add support for the ServerWorks CSB5 chips Revision Changes Path 1.89 +43 -0 src/sys/dev/ata/ata-dma.c 1.33 +17 -5 src/sys/dev/ata/ata-pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 4:19:24 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by hub.freebsd.org (Postfix) with ESMTP id 609AD37B43F; Mon, 18 Mar 2002 04:19:04 -0800 (PST) Received: from blossom.cjclark.org ([12.234.91.48]) by rwcrmhc52.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020318121903.GMWD1147.rwcrmhc52.attbi.com@blossom.cjclark.org>; Mon, 18 Mar 2002 12:19:03 +0000 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.6) id g2ICJ1t59550; Mon, 18 Mar 2002 04:19:01 -0800 (PST) (envelope-from cjc) Date: Mon, 18 Mar 2002 04:19:01 -0800 From: "Crist J. Clark" To: Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.h Message-ID: <20020318041901.A59516@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <200203180222.g2I2Ms309830@freefall.freebsd.org> <20020318135824.A1326@straylight.oblivion.bg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020318135824.A1326@straylight.oblivion.bg>; from roam@ringlet.net on Mon, Mar 18, 2002 at 01:58:24PM +0200 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Mar 18, 2002 at 01:58:24PM +0200, Peter Pentchev wrote: > On Sun, Mar 17, 2002 at 06:22:53PM -0800, Crist J. Clark wrote: > > cjc 2002/03/17 18:22:53 PST > > > > Modified files: > > usr.bin/chpass chpass.c pw_copy.c pw_copy.h > > Log: > > It was possible for an unprivileged user to tie up the password > > information (no one else can vipw(8), chpass(1), or even passwd(1)), > > either on purpose or by accident, until an administrator manually > > intervened. Instead, do not lock the master.passwd file while a user > > is editing his information. But once we go to write the new > > information, check that the modified user's information has not > > changed in the password database since we started. Abort the changes > > if it has. > > > > Add a $FreeBSD$ to pw_copy.h. > > > > PR: i386/35816 > > Obtained from: NetBSD > > MFC after: 1 week > > [des@ CC'd because of a proposed libpam patch] > > Errr... did this really go through a buildworld? :) > I think that at least the attached patches are needed to catch up > with pw_copy.c's including pw_scan.h and pw_copy()'s growing a fourth > parameter.. Sorry, that kind of dependency never occurred to me. But I thought they did survive a buildworld (not that I actually did it to check these changes). This is all quite a mess. We have chpass(8) using __pw_scan from libc and source in vipw(8), and PAM modules sharing all of this code too. Wouldn't the Right Thing be to put these functions in a library somewhere? I think NetBSD has a lot of this stuffed in libutil. Thanks for the patches. The PAM stuff look good, DES? -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 4:19:49 2002 Delivered-To: cvs-all@freebsd.org Received: from straylight.ringlet.net (discworld.nanolink.com [217.75.135.248]) by hub.freebsd.org (Postfix) with SMTP id B7DC237B404 for ; Mon, 18 Mar 2002 04:17:40 -0800 (PST) Received: (qmail 7191 invoked by uid 1000); 18 Mar 2002 12:16:39 -0000 Date: Mon, 18 Mar 2002 14:16:39 +0200 From: Peter Pentchev To: Warner Losh Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/libexec/xtend user.c xtend.c Message-ID: <20020318141639.B1326@straylight.oblivion.bg> Mail-Followup-To: Warner Losh , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200203180714.g2I7ExE74376@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="dTy3Mrz/UPE2dbVg" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200203180714.g2I7ExE74376@freefall.freebsd.org>; from imp@FreeBSD.org on Sun, Mar 17, 2002 at 11:14:59PM -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 --dTy3Mrz/UPE2dbVg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Mar 17, 2002 at 11:14:59PM -0800, Warner Losh wrote: > imp 2002/03/17 23:14:59 PST >=20 > Modified files: > libexec/xtend user.c xtend.c=20 > Log: > o MAXPATHLEN is the correct constant to use for path names, it includes > the NULL. > o use snprintf in preference to unchecked strcat in a couple of places = that > likely can't overflow. Makes it easier to grep for strcpy :-) /me sprinkles some magic comma dust over the naughty-naughty imp :) [IOW, please try the attached patch :] G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 This sentence would be seven words long if it were six words shorter. Index: src/libexec/xtend/user.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/libexec/xtend/user.c,v retrieving revision 1.11 diff -u -r1.11 user.c --- src/libexec/xtend/user.c 18 Mar 2002 07:14:59 -0000 1.11 +++ src/libexec/xtend/user.c 18 Mar 2002 12:04:14 -0000 @@ -89,7 +89,7 @@ fprintf(User, "OK\n"); } } else if(!strcmp("dump\n", cmd)) { - snprintf(dumppath, sizeof(dumppath), "%s/%s" X10DIR, X10DUMPNAME); + snprintf(dumppath, sizeof(dumppath), "%s/%s", X10DIR, X10DUMPNAME); if((dumpf =3D fopen(dumppath, "w")) !=3D NULL) { for(h =3D 0; h < 16; h++) { for(i =3D 0; i < 16; i++) { Index: src/libexec/xtend/xtend.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/libexec/xtend/xtend.c,v retrieving revision 1.13 diff -u -r1.13 xtend.c --- src/libexec/xtend/xtend.c 18 Mar 2002 07:14:59 -0000 1.13 +++ src/libexec/xtend/xtend.c 18 Mar 2002 11:57:16 -0000 @@ -126,7 +126,7 @@ errx(1, "can't create directory '%s'", X10DIR); } } - snprintf(logpath, sizeof(logpath), "%s/%s" X10DIR, X10LOGNAME); + snprintf(logpath, sizeof(logpath), "%s/%s", X10DIR, X10LOGNAME); if((Log =3D fopen(logpath, "a")) =3D=3D NULL) errx(1, "can't open log file '%s'", logpath); chown(logpath, pw->pw_uid, gr->gr_gid); @@ -363,7 +363,7 @@ =20 fprintf(Log, "%s: SIGHUP received, reopening Log\n", thedate()); fclose(Log); - snprintf(logpath, sizeof(logpath), "%s/%s" X10DIR, X10LOGNAME); + snprintf(logpath, sizeof(logpath), "%s/%s", X10DIR, X10LOGNAME); if((Log =3D fopen(logpath, "a")) =3D=3D NULL) errx(1, "can't open log file '%s'", logpath); hup_flag =3D 0; --dTy3Mrz/UPE2dbVg 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 iEYEARECAAYFAjyV2qcACgkQ7Ri2jRYZRVNa7ACfVFcpmr+vF+S8byl7pxhGSXi5 ZPoAoIdFgAKmXSbaiVWkZDnS26ptkRhX =XTdH -----END PGP SIGNATURE----- --dTy3Mrz/UPE2dbVg-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 4:25:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3BD0737B405; Mon, 18 Mar 2002 04:25:33 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ICPXn83483; Mon, 18 Mar 2002 04:25:33 -0800 (PST) (envelope-from ru) Message-Id: <200203181225.g2ICPXn83483@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 04:25:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 em.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 04:25:33 PST Modified files: share/man/man4 em.4 Log: mdoc(7) police: Re-apply fixes from revision 1.2 that got completely backed out by revision 1.4. Fixed some more. Revision Changes Path 1.5 +64 -54 src/share/man/man4/em.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 4:34:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C66637B404; Mon, 18 Mar 2002 04:34:41 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ICYfP85185; Mon, 18 Mar 2002 04:34:41 -0800 (PST) (envelope-from ru) Message-Id: <200203181234.g2ICYfP85185@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 04:34:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 gif.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 04:34:41 PST Modified files: share/man/man4 gif.4 Log: mdoc(7) police: nits. Revision Changes Path 1.18 +1 -4 src/share/man/man4/gif.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 4:38:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 34E9A37B400; Mon, 18 Mar 2002 04:38:34 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ICcYR86066; Mon, 18 Mar 2002 04:38:34 -0800 (PST) (envelope-from ru) Message-Id: <200203181238.g2ICcYR86066@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 04:38:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 intro.4 vinum.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 04:38:34 PST Modified files: share/man/man4 intro.4 vinum.4 Log: mdoc(7) police: macroize UNIX. Revision Changes Path 1.23 +3 -1 src/share/man/man4/intro.4 1.39 +4 -2 src/share/man/man4/vinum.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 4:39: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 F308C37B400; Mon, 18 Mar 2002 04:39:32 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ICdWx86238; Mon, 18 Mar 2002 04:39:32 -0800 (PST) (envelope-from ru) Message-Id: <200203181239.g2ICdWx86238@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 04:39:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 netintro.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 04:39:32 PST Modified files: share/man/man4 netintro.4 Log: s/UNIX/FreeBSD/ Revision Changes Path 1.20 +1 -1 src/share/man/man4/netintro.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 4:49: 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 AEE1737B402; Mon, 18 Mar 2002 04:49:03 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ICn3m88116; Mon, 18 Mar 2002 04:49:03 -0800 (PST) (envelope-from ru) Message-Id: <200203181249.g2ICn3m88116@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 04:49:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4/man4.i386 npx.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 04:49:03 PST Modified files: share/man/man4/man4.i386 npx.4 Log: Remove the confusing XXX that should have been deleted in revision 1.5. Revision Changes Path 1.15 +0 -2 src/share/man/man4/man4.i386/npx.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 4:55:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CCBA237B402; Mon, 18 Mar 2002 04:55:28 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ICtS689387; Mon, 18 Mar 2002 04:55:28 -0800 (PST) (envelope-from cjc) Message-Id: <200203181255.g2ICtS689387@freefall.freebsd.org> From: "Crist J. Clark" Date: Mon, 18 Mar 2002 04:55:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_unix Makefile pam_unix.c src/usr.bin/passwd Makefile local_passwd.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjc 2002/03/18 04:55:28 PST Modified files: lib/libpam/modules/pam_unix Makefile pam_unix.c usr.bin/passwd Makefile local_passwd.c Log: Fix world breakage introduced by my recent modifications to chpass(8). The relations between libc, libpam, chpass, passwd, and vipw are a mess and probably should be cleaned up. Submitted by: Peter Pentchev Revision Changes Path 1.13 +2 -1 src/lib/libpam/modules/pam_unix/Makefile 1.26 +1 -1 src/lib/libpam/modules/pam_unix/pam_unix.c 1.43 +3 -1 src/usr.bin/passwd/Makefile 1.28 +2 -2 src/usr.bin/passwd/local_passwd.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 5: 1: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9C28037B402; Mon, 18 Mar 2002 05:00:58 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ID0wb90526; Mon, 18 Mar 2002 05:00:58 -0800 (PST) (envelope-from rwatson) Message-Id: <200203181300.g2ID0wb90526@freefall.freebsd.org> From: Robert Watson Date: Mon, 18 Mar 2002 05:00:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/smp index.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/03/18 05:00:58 PST Modified files: en/smp index.sgml Log: Move kernel linker locking task from WIP to Done, thanks to . Another module locked down and (assuming no bugs crop up :-)) completed! Revision Changes Path 1.51 +8 -8 www/en/smp/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 5: 2:36 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6547D37B402; Mon, 18 Mar 2002 05:02:33 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ID2XR90775; Mon, 18 Mar 2002 05:02:33 -0800 (PST) (envelope-from ru) Message-Id: <200203181302.g2ID2XR90775@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 05:02:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4/man4.i386 npx.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 05:02:33 PST Modified files: share/man/man4/man4.i386 npx.4 Log: mdoc(7) police: tidy up. Revision Changes Path 1.16 +50 -28 src/share/man/man4/man4.i386/npx.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 5: 4:24 2002 Delivered-To: cvs-all@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id E048537B402; Mon, 18 Mar 2002 05:04:13 -0800 (PST) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.6/8.11.6) with SMTP id g2ID4Ck24921; Mon, 18 Mar 2002 08:04:12 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Mon, 18 Mar 2002 08:04:12 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Ruslan Ermilov Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/perl Makefile.inc In-Reply-To: <200203181010.g2IAAt622886@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Just FYI for everyone interested -- I ended up deciding (along with Kris) not to MFC eaccess() just yet due to concern about race conditions and correctness when moved to -STABLE, which are not present in -CURRENT due to per-thread credentials. In a few days, I hope to finish up some cleanup work on namei() that will make it possible to handle this correctly in -STABLE. Robert N M Watson FreeBSD Core Team, TrustedBSD Project robert@fledge.watson.org NAI Labs, Safeport Network Services On Mon, 18 Mar 2002, Ruslan Ermilov wrote: > ru 2002/03/18 02:10:55 PST > > Modified files: > gnu/usr.bin/perl Makefile.inc > Log: > FreeBSD 4.x bootstrapping aid (no eaccess(2) syscall). > > Reviewed by: markm > > Revision Changes Path > 1.30 +6 -0 src/gnu/usr.bin/perl/Makefile.inc > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 5: 6:38 2002 Delivered-To: cvs-all@freebsd.org Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.139.170]) by hub.freebsd.org (Postfix) with ESMTP id 3BF3E37B402; Mon, 18 Mar 2002 05:06:18 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g2ID5oF78423; Mon, 18 Mar 2002 13:05:50 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 g2ID28H5020685; Mon, 18 Mar 2002 13:02:08 GMT (envelope-from mark@grimreaper.grondar.za) Message-Id: <200203181302.g2ID28H5020685@grimreaper.grondar.org> To: cjclark@alum.mit.edu Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.h References: <20020318041901.A59516@blossom.cjclark.org> In-Reply-To: <20020318041901.A59516@blossom.cjclark.org> ; from "Crist J. Clark" "Mon, 18 Mar 2002 04:19:01 PST." Date: Mon, 18 Mar 2002 13:02:08 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > This is all quite a mess. We have chpass(8) using __pw_scan from libc > and source in vipw(8), and PAM modules sharing all of this code > too. Wouldn't the Right Thing be to put these functions in a library > somewhere? I think NetBSD has a lot of this stuffed in libutil. There is a lot of password-related stuff spread about the tree in this messy way (chpass, vipw, chsh(and friends), passwd and so on). I would vote very strongly for such a change. I started doing it some time ago, and lost track in the tangled thread. M -- o Mark Murray \_ O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 5: 7: 6 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B36D237B400; Mon, 18 Mar 2002 05:06:57 -0800 (PST) Received: (from mux@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ID6vE95076; Mon, 18 Mar 2002 05:06:57 -0800 (PST) (envelope-from mux) Message-Id: <200203181306.g2ID6vE95076@freefall.freebsd.org> From: Maxime Henrion Date: Mon, 18 Mar 2002 05:06:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/modules/smbfs Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG mux 2002/03/18 05:06:57 PST Modified files: sys/modules/smbfs Makefile Log: Unbreak the build of smbfs.ko. Reviewed by: sheldonh Revision Changes Path 1.5 +6 -0 src/sys/modules/smbfs/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 5:11:34 2002 Delivered-To: cvs-all@freebsd.org Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 6122337B41A; Mon, 18 Mar 2002 05:11:28 -0800 (PST) Received: from fledge.watson.org (fledge.pr.watson.org [192.0.2.3]) by fledge.watson.org (8.11.6/8.11.6) with SMTP id g2IDBKk24996; Mon, 18 Mar 2002 08:11:20 -0500 (EST) (envelope-from robert@fledge.watson.org) Date: Mon, 18 Mar 2002 08:11:20 -0500 (EST) From: Robert Watson X-Sender: robert@fledge.watson.org To: Mark Murray Cc: cjclark@alum.mit.edu, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.h In-Reply-To: <200203181302.g2ID28H5020685@grimreaper.grondar.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 18 Mar 2002, Mark Murray wrote: > > This is all quite a mess. We have chpass(8) using __pw_scan from libc > > and source in vipw(8), and PAM modules sharing all of this code > > too. Wouldn't the Right Thing be to put these functions in a library > > somewhere? I think NetBSD has a lot of this stuffed in libutil. > > There is a lot of password-related stuff spread about the tree in this > messy way (chpass, vipw, chsh(and friends), passwd and so on). I would > vote very strongly for such a change. > > I started doing it some time ago, and lost track in the tangled thread. A remarkably number of userland tools assume that access to passwd information is in libc. Would such a change move this completely out of libc and require modifying the linkages involved for all of these, or is this a lower-level kind of thing? Robert N M Watson FreeBSD Core Team, TrustedBSD Project robert@fledge.watson.org NAI Labs, Safeport Network Services To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 5:28:23 2002 Delivered-To: cvs-all@freebsd.org Received: from straylight.ringlet.net (discworld.nanolink.com [217.75.135.248]) by hub.freebsd.org (Postfix) with SMTP id 9D3EB37B435 for ; Mon, 18 Mar 2002 05:28:08 -0800 (PST) Received: (qmail 9184 invoked by uid 1000); 18 Mar 2002 13:28:01 -0000 Date: Mon, 18 Mar 2002 15:28:01 +0200 From: Peter Pentchev To: "Crist J. Clark" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libpam/modules/pam_unix Makefile pam_unix.c src/usr.bin/passwd Makefile local_passwd.c Message-ID: <20020318152801.C1326@straylight.oblivion.bg> Mail-Followup-To: "Crist J. Clark" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200203181255.g2ICtS689387@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200203181255.g2ICtS689387@freefall.freebsd.org>; from cjc@FreeBSD.org on Mon, Mar 18, 2002 at 04:55:28AM -0800 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Mar 18, 2002 at 04:55:28AM -0800, Crist J. Clark wrote: > cjc 2002/03/18 04:55:28 PST > > Modified files: > lib/libpam/modules/pam_unix Makefile pam_unix.c > usr.bin/passwd Makefile local_passwd.c > Log: > Fix world breakage introduced by my recent modifications to > chpass(8). The relations between libc, libpam, chpass, passwd, and > vipw are a mess and probably should be cleaned up. > > Submitted by: Peter Pentchev ...a.k.a. 'roam@FreeBSD.org', or, in commit messages, simply 'roam' :P G'luck, Peter -- Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 If this sentence were in Chinese, it would say something else. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 5:35:19 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 C051837B404; Mon, 18 Mar 2002 05:34:59 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g2IDYvx78597; Mon, 18 Mar 2002 13:34:57 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 g2IDUgH5023774; Mon, 18 Mar 2002 13:30:42 GMT (envelope-from mark@grimreaper.grondar.za) Message-Id: <200203181330.g2IDUgH5023774@grimreaper.grondar.org> To: Robert Watson Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.h References: In-Reply-To: ; from Robert Watson "Mon, 18 Mar 2002 08:11:20 EST." Date: Mon, 18 Mar 2002 13:30:42 +0000 From: Mark Murray Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG > > There is a lot of password-related stuff spread about the tree in this > > messy way (chpass, vipw, chsh(and friends), passwd and so on). I would > > vote very strongly for such a change. > > > > I started doing it some time ago, and lost track in the tangled thread. > > A remarkably number of userland tools assume that access to passwd > information is in libc. Would such a change move this completely out of > libc and require modifying the linkages involved for all of these, or is > this a lower-level kind of thing? It is a messed-up kind of thing. I'd like to see this moved back to either libc or libutil. There are repocopies of some of the pw_*.[ch] files that are now divergent and annoyingly incompatable. I think these need to go to some system library (after being cleaned up). M -- o Mark Murray \_ O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 5:49: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1A8BC37B417; Mon, 18 Mar 2002 05:49:00 -0800 (PST) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IDn0m05196; Mon, 18 Mar 2002 05:49:00 -0800 (PST) (envelope-from iedowse) Message-Id: <200203181349.g2IDn0m05196@freefall.freebsd.org> From: Ian Dowse Date: Mon, 18 Mar 2002 05:49:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ufs/ufs ufs_dirhash.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG iedowse 2002/03/18 05:49:00 PST Modified files: (Branch: RELENG_4) sys/ufs/ufs ufs_dirhash.c Log: MFC: 1.8; Fix a bug in ufsdirhash_adjfree() that caused it to incorrectly update the free-space statistics in some cases. Revision Changes Path 1.3.2.5 +7 -10 src/sys/ufs/ufs/ufs_dirhash.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 5:52: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 8FC3037B400; Mon, 18 Mar 2002 05:52:30 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IDqUw06091; Mon, 18 Mar 2002 05:52:30 -0800 (PST) (envelope-from ru) Message-Id: <200203181352.g2IDqUw06091@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 05:52:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 bridge.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 05:52:30 PST Modified files: share/man/man4 bridge.4 Log: mdoc(7) police: tidy up. Revision Changes Path 1.20 +83 -50 src/share/man/man4/bridge.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 5:56:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 24E2D37B416; Mon, 18 Mar 2002 05:56:45 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IDujp07269; Mon, 18 Mar 2002 05:56:45 -0800 (PST) (envelope-from sos) Message-Id: <200203181356.g2IDujp07269@freefall.freebsd.org> From: Søren Schmidt Date: Mon, 18 Mar 2002 05:56:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-pci.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2002/03/18 05:56:45 PST Modified files: sys/dev/ata ata-pci.c Log: Cleanup the chipset setup a bit. Add some (for all I know unneeded) setup code for the rosb4. Revision Changes Path 1.34 +12 -6 src/sys/dev/ata/ata-pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 6:35: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 5541E37B400; Mon, 18 Mar 2002 06:35:25 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IEZOt22673; Mon, 18 Mar 2002 06:35:25 -0800 (PST) (envelope-from ru) Message-Id: <200203181435.g2IEZOt22673@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 06:35:22 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 usb.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 06:35:22 PST Modified files: share/man/man4 usb.4 Log: mdoc(7) police: tidy up. Revision Changes Path 1.22 +48 -34 src/share/man/man4/usb.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 6:37:34 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BB12837B404; Mon, 18 Mar 2002 06:37:30 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IEbUt23225; Mon, 18 Mar 2002 06:37:30 -0800 (PST) (envelope-from sobomax) Message-Id: <200203181437.g2IEbUt23225@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 18 Mar 2002 06:37:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/evas Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/18 06:37:30 PST Modified files: graphics/evas Makefile Log: Fix breakage caused by recent freetype1 overhaul. Submitted by: bento Revision Changes Path 1.11 +2 -1 ports/graphics/evas/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 6:42:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5146037B419; Mon, 18 Mar 2002 06:41:47 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IEfl624958; Mon, 18 Mar 2002 06:41:47 -0800 (PST) (envelope-from ru) Message-Id: <200203181441.g2IEfl624958@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 06:41:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 bridge.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 06:41:47 PST Modified files: share/man/man4 bridge.4 Log: Unobfuscate VLAN trunking description. Reviewed by: luigi Revision Changes Path 1.21 +11 -11 src/share/man/man4/bridge.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 6:53:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C2BE37B405; Mon, 18 Mar 2002 06:53:44 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IEriV30214; Mon, 18 Mar 2002 06:53:44 -0800 (PST) (envelope-from sobomax) Message-Id: <200203181453.g2IEriV30214@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 18 Mar 2002 06:53:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/japanese/dvi2ps/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/18 06:53:44 PST Modified files: japanese/dvi2ps/files patch-aa Log: Fix breakage cause by recent freetype overhaul. Revision Changes Path 1.7 +14 -2 ports/japanese/dvi2ps/files/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 6:54:35 2002 Delivered-To: cvs-all@freebsd.org Received: from green.bikeshed.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3664D37B417; Mon, 18 Mar 2002 06:54:18 -0800 (PST) Received: from localhost (green@localhost) by green.bikeshed.org (8.11.6/8.11.6) with ESMTP id g2IEsHE88877; Mon, 18 Mar 2002 09:54:17 -0500 (EST) (envelope-from green@green.bikeshed.org) Message-Id: <200203181454.g2IEsHE88877@green.bikeshed.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Matthew Dillon Cc: Hiten Pandya , current@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-committers@FreeBSD.ORG, tanimura@r.dl.itc.u-tokyo.ac.jp Subject: Re: cvs commit: src/sys/kern kern_mtxpool.c src/sys/sys kernel.h src/sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h vm_pageout.c vm_zone.c In-Reply-To: Your message of "Sun, 17 Mar 2002 16:48:24 PST." <200203180048.g2I0mOc40231@apollo.backplane.com> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 18 Mar 2002 09:54:17 -0500 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Matthew Dillon wrote: > > : > :Hi, > : > :Sorry to unwantedly butt in, but the patch supplied by Seigo actually > :solved the vm_map.c locking problems which used to come up on my system. > :Just some info. :) > : > :Regards, > : > : -- Hiten Pandya > : -- > > It fixed some things, it broke some things. Pretty much standard > fare for anyone who has ever done work on the vm_map lock, including > yours truely. John Dyson couldn't get it right, David Greenman couldn't > get it right, I couldn't get it completely right... getting it to do > the right thing even under -stable is difficult, which is why I am > suggesting that it simply be made into an exclusive lock in -current. In addition to the fact it doesn't actually serialize the general modification of the vm_map {} structure itself, just certain kinds of changes, so is easily a primary reason that the VM system as it stands now is inherently single-threaded. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org <> bfeldman@tislabs.com \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 6:55: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 01D4437B400; Mon, 18 Mar 2002 06:55:54 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IEtrH31064; Mon, 18 Mar 2002 06:55:53 -0800 (PST) (envelope-from sobomax) Message-Id: <200203181455.g2IEtrH31064@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 18 Mar 2002 06:55:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/korean/ghostscript55httf/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/18 06:55:53 PST Modified files: korean/ghostscript55httf/files patch-aa Log: Fix breakage cause by the recent freetype overhaul. Revision Changes Path 1.6 +1 -1 ports/korean/ghostscript55httf/files/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 6:56: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 45C2937B422; Mon, 18 Mar 2002 06:56:36 -0800 (PST) Received: (from ambrisko@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IEuak31370; Mon, 18 Mar 2002 06:56:36 -0800 (PST) (envelope-from ambrisko) Message-Id: <200203181456.g2IEuak31370@freefall.freebsd.org> From: Doug Ambrisko Date: Mon, 18 Mar 2002 06:56:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/an if_an.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ambrisko 2002/03/18 06:56:35 PST Modified files: (Branch: RELENG_4) sys/dev/an if_an.c Log: MFC: suser check for Linux compatible ioctls. Revision Changes Path 1.2.2.11 +4 -0 src/sys/dev/an/if_an.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7: 1: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 26E1937B41C; Mon, 18 Mar 2002 06:58:53 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IEwrT32150; Mon, 18 Mar 2002 06:58:53 -0800 (PST) (envelope-from sobomax) Message-Id: <200203181458.g2IEwrT32150@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 18 Mar 2002 06:58:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/py-paint Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/18 06:58:53 PST Modified files: graphics/py-paint Makefile Log: Fix breakage caused by the recent freetype overhaul. Submitted by: bento Revision Changes Path 1.7 +1 -1 ports/graphics/py-paint/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:16: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 6ECEA37B6DF; Mon, 18 Mar 2002 07:08:59 -0800 (PST) Received: (from green@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IF8Am41245; Mon, 18 Mar 2002 07:08:10 -0800 (PST) (envelope-from green) Message-Id: <200203181508.g2IF8Am41245@freefall.freebsd.org> From: Brian Feldman Date: Mon, 18 Mar 2002 07:08:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h vm_pageout.c vm_zone.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG green 2002/03/18 07:08:10 PST Modified files: sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h vm_pageout.c vm_zone.c Log: Back out the modification of vm_map locks from lockmgr to sx locks. The best path forward now is likely to change the lockmgr locks to simple sleep mutexes, then see if any extra contention it generates is greater than removed overhead of managing local locking state information, cost of extra calls into lockmgr, etc. Additionally, making the vm_map lock a mutex and respecting it properly will put us much closer to not needing Giant magic in vm. Revision Changes Path 1.132 +10 -16 src/sys/vm/vm_fault.c 1.131 +3 -1 src/sys/vm/vm_glue.c 1.217 +58 -60 src/sys/vm/vm_map.c 1.72 +10 -20 src/sys/vm/vm_map.h 1.192 +2 -1 src/sys/vm/vm_pageout.c 1.54 +6 -6 src/sys/vm/vm_zone.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:17: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 DAE3237B81A; Mon, 18 Mar 2002 07:15:45 -0800 (PST) Received: (from jedgar@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IFFek45399; Mon, 18 Mar 2002 07:15:40 -0800 (PST) (envelope-from jedgar) Message-Id: <200203181515.g2IFFek45399@freefall.freebsd.org> From: "Chris D. Faulhaber" Date: Mon, 18 Mar 2002 07:15:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/security security.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jedgar 2002/03/18 07:15:40 PST Modified files: en/security security.sgml Log: Catch up on advisories: FreeBSD-SA-02:14.pam-pgsql FreeBSD-SA-02:15.cyrus-sasl FreeBSD-SA-02:16.netscape FreeBSD-SA-02:17.mod_frontpage FreeBSD-SA-02:18.zlib Revision Changes Path 1.87 +7 -2 www/en/security/security.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:20: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 6C5A837B878; Mon, 18 Mar 2002 07:17:06 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IFH6M45695; Mon, 18 Mar 2002 07:17:06 -0800 (PST) (envelope-from sobomax) Message-Id: <200203181517.g2IFH6M45695@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 18 Mar 2002 07:17:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/gnomepim Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/18 07:17:06 PST Modified files: deskutils/gnomepim Makefile Log: Provide backup MASTER_SITE. Submitted by: Joe Marcus Clarke Revision Changes Path 1.37 +2 -1 ports/deskutils/gnomepim/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:23:58 2002 Delivered-To: cvs-all@freebsd.org Received: from goliath.siemens.de (goliath.siemens.de [192.35.17.28]) by hub.freebsd.org (Postfix) with ESMTP id 722C037B9C6; Mon, 18 Mar 2002 07:22:15 -0800 (PST) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by goliath.siemens.de (8.11.6/8.11.6) with ESMTP id g2IFLuR06508; Mon, 18 Mar 2002 16:21:56 +0100 (MET) Received: from mars.cert.siemens.de (ust.mchp.siemens.de [139.23.201.17]) by mail1.siemens.de (8.11.6/8.11.6) with ESMTP id g2IFLup12112; Mon, 18 Mar 2002 16:21:56 +0100 (MET) Received: from reims.mchp.siemens.de (alaska [139.23.202.134]) by mars.cert.siemens.de (8.12.2/8.12.1/Siemens CERT [ $Revision: 1.23 ]) with ESMTP id g2IFLt6P034334; Mon, 18 Mar 2002 16:21:55 +0100 (CET) Received: from reims.mchp.siemens.de (localhost [127.0.0.1]) by reims.mchp.siemens.de (8.12.2/8.12.2/alaska [ $Revision: 1.11 ]) with ESMTP id g2IFLtnI091874; Mon, 18 Mar 2002 16:21:55 +0100 (CET) Received: (from ust@localhost) by reims.mchp.siemens.de (8.12.2/8.12.2/alaska [ $Revision: 1.2 ]) id g2IFLtY6091873; Mon, 18 Mar 2002 16:21:55 +0100 (CET) Date: Mon, 18 Mar 2002 16:21:55 +0100 From: Udo Schweigert To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh auth-skey.c Message-ID: <20020318152155.GA91545@alaska.cert.siemens.de> Mail-Followup-To: Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200203181031.g2IAVXc29345@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203181031.g2IAVXc29345@freefall.freebsd.org> User-Agent: Mutt/1.3.28i X-Operating-System: FreeBSD 4.5-STABLE Sender: owner-cvs-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 18, 2002 at 02:31:33 -0800, Dag-Erling Smorgrav wrote: > Added files: > crypto/openssh auth-skey.c > Log: > Revive this file (which is used for opie rather than skey) > This (and some other commit) broke world, because the Makefile does not know about this file. Something like this will fix it: --- secure/usr.sbin/sshd/Makefile.orig Mon Jan 28 12:43:39 2002 +++ secure/usr.sbin/sshd/Makefile Mon Mar 18 16:12:18 2002 @@ -6,7 +6,7 @@ PROG= sshd SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \ sshpty.c sshlogin.c servconf.c serverloop.c \ - auth.c auth1.c auth2.c auth-options.c session.c \ + auth.c auth1.c auth2.c auth-options.c session.c auth-skey.c \ auth-chall.c auth2-chall.c auth-pam.c login_access.c groupaccess.c MAN= sshd.8 Best regards -- Udo Schweigert, Siemens AG | Voice : +49 89 636 42170 CT IC 3, Siemens CERT | Fax : +49 89 636 41166 D-81730 Muenchen / Germany | email : udo.schweigert@siemens.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:30: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 4B0DC37B499; Mon, 18 Mar 2002 07:30:08 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IFTfs48078; Mon, 18 Mar 2002 07:29:41 -0800 (PST) (envelope-from ru) Message-Id: <200203181529.g2IFTfs48078@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 07:29:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 07:29:41 PST Modified files: . modules Log: kerberos5 -> src/kerberos5. Revision Changes Path 1.4862 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:32: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 DB1CB37B426; Mon, 18 Mar 2002 07:32:15 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IFVUA48409; Mon, 18 Mar 2002 07:31:30 -0800 (PST) (envelope-from sobomax) Message-Id: <200203181531.g2IFVUA48409@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 18 Mar 2002 07:31:30 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics/qdraw/files patch-unix_gcc.mk X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/18 07:31:30 PST Modified files: graphics/qdraw/files patch-unix_gcc.mk Log: Unbroke on 4.5-STABLE. Submitted by: bento Revision Changes Path 1.5 +7 -5 ports/graphics/qdraw/files/patch-unix_gcc.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:33: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 D029D37B431; Mon, 18 Mar 2002 07:32:37 -0800 (PST) Received: (from iedowse@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IFVia48452; Mon, 18 Mar 2002 07:31:44 -0800 (PST) (envelope-from iedowse) Message-Id: <200203181531.g2IFVia48452@freefall.freebsd.org> From: Ian Dowse Date: Mon, 18 Mar 2002 07:31:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/newfs mkfs.c newfs.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG iedowse 2002/03/18 07:31:44 PST Modified files: sbin/newfs mkfs.c newfs.c Log: Remove yet more vestiges of mount_mfs. Revision Changes Path 1.44 +0 -2 src/sbin/newfs/mkfs.c 1.50 +0 -6 src/sbin/newfs/newfs.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:34: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 3DCF737B431; Mon, 18 Mar 2002 07:34:15 -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 g2IFYN3b020895; Mon, 18 Mar 2002 10:34:32 -0500 (EST) (envelope-from mi@aldan.algebra.com) Message-Id: <200203181534.g2IFYN3b020895@aldan.algebra.com> Date: Mon, 18 Mar 2002 10:34:23 -0500 (EST) From: Mikhail Teterin Subject: Re: cvs commit: src/libexec/xtend user.c xtend.c To: roam@ringlet.net Cc: imp@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20020318141639.B1326@straylight.oblivion.bg> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 18 Mar, Peter Pentchev wrote: > On Sun, Mar 17, 2002 at 11:14:59PM -0800, Warner Losh wrote: >> imp 2002/03/17 23:14:59 PST >> >> Modified files: >> libexec/xtend user.c xtend.c >> Log: >> o MAXPATHLEN is the correct constant to use for path names, it includes >> the NULL. >> o use snprintf in preference to unchecked strcat in a couple of places that >> likely can't overflow. Makes it easier to grep for strcpy :-) > > /me sprinkles some magic comma dust over the naughty-naughty imp :) > [IOW, please try the attached patch :] Since the X10DIR and X10DUMPNAME are both known at compile time, why not - snprintf(dumppath, sizeof(dumppath), "%s/%s", X10DIR, X10DUMPNAME); + strncpy(dumppath, X10DIR "/" X10DUMPNAME, sizeof(dumppath)); and so on? (The plain strcpy would do just fine here too, IMO :) -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:44: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 61FEC37B405; Mon, 18 Mar 2002 07:44:28 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IFiSm50965; Mon, 18 Mar 2002 07:44:28 -0800 (PST) (envelope-from ru) Message-Id: <200203181544.g2IFiSm50965@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 07:44:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/locale digittoint.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 07:44:27 PST Modified files: lib/libc/locale digittoint.3 Log: mdoc(7) police: tidy up. Revision Changes Path 1.2 +8 -8 src/lib/libc/locale/digittoint.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:46:12 2002 Delivered-To: cvs-all@freebsd.org Received: from straylight.ringlet.net (discworld.nanolink.com [217.75.135.248]) by hub.freebsd.org (Postfix) with SMTP id 2CC6437B432 for ; Mon, 18 Mar 2002 07:45:09 -0800 (PST) Received: (qmail 32397 invoked by uid 1000); 18 Mar 2002 15:41:46 -0000 Date: Mon, 18 Mar 2002 17:41:45 +0200 From: Peter Pentchev To: Mikhail Teterin Cc: imp@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/libexec/xtend user.c xtend.c Message-ID: <20020318174145.A10603@straylight.oblivion.bg> Mail-Followup-To: Mikhail Teterin , imp@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <20020318141639.B1326@straylight.oblivion.bg> <200203181534.g2IFYN3b020895@aldan.algebra.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="XsQoSWH+UP9D9v3l" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200203181534.g2IFYN3b020895@aldan.algebra.com>; from mi@aldan.algebra.com on Mon, Mar 18, 2002 at 10:34:23AM -0500 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 18, 2002 at 10:34:23AM -0500, Mikhail Teterin wrote: > On 18 Mar, Peter Pentchev wrote: > > On Sun, Mar 17, 2002 at 11:14:59PM -0800, Warner Losh wrote: > >> imp 2002/03/17 23:14:59 PST > >>=20 > >> Modified files: > >> libexec/xtend user.c xtend.c=20 > >> Log: > >> o MAXPATHLEN is the correct constant to use for path names, it inclu= des > >> the NULL. > >> o use snprintf in preference to unchecked strcat in a couple of plac= es that > >> likely can't overflow. Makes it easier to grep for strcpy :-) > >=20 > > /me sprinkles some magic comma dust over the naughty-naughty imp :) > > [IOW, please try the attached patch :] >=20 > Since the X10DIR and X10DUMPNAME are both known at compile time, why not >=20 > - snprintf(dumppath, sizeof(dumppath), "%s/%s", X10DIR, X10DUMPNAME); > + strncpy(dumppath, X10DIR "/" X10DUMPNAME, sizeof(dumppath));=20 >=20 > and so on? (The plain strcpy would do just fine here too, IMO :) strncpy() does not null-terminate properly; strcpy() requires attention from the programmer to make sure that long enough buffers have been provided. snprintf() avoids both of these :) And anyway, the decision to use snprintf() over strcpy() was Warner's -- not that I am trying to evade responsiblity, I fully support it; still, I was just fixing the bugs he introduced in the transition :) G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 What would this sentence be like if it weren't self-referential? --XsQoSWH+UP9D9v3l Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iEYEARECAAYFAjyWCrkACgkQ7Ri2jRYZRVPYkgCcCXnsu9I33nj+YAVXrLaieFwv YQkAn3spQWGlcOn6cFCXS2NKaRXksYDB =y25F -----END PGP SIGNATURE----- --XsQoSWH+UP9D9v3l-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:49: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 75DCD37B400; Mon, 18 Mar 2002 07:49:18 -0800 (PST) Received: (from ceri@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IFnIx51640; Mon, 18 Mar 2002 07:49:18 -0800 (PST) (envelope-from ceri) Message-Id: <200203181549.g2IFnIx51640@freefall.freebsd.org> From: Ceri Davies Date: Mon, 18 Mar 2002 07:49:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/share/sgml authors.ent X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ceri 2002/03/18 07:49:18 PST Modified files: en_US.ISO8859-1/share/sgml authors.ent Log: Add an entity for myself. Reviewed by: murray Approved by: murray Revision Changes Path 1.216 +2 -0 doc/en_US.ISO8859-1/share/sgml/authors.ent To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:51:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 093EB37B404; Mon, 18 Mar 2002 07:51:17 -0800 (PST) Received: (from ceri@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IFpHj52143; Mon, 18 Mar 2002 07:51:17 -0800 (PST) (envelope-from ceri) Message-Id: <200203181551.g2IFpHj52143@freefall.freebsd.org> From: Ceri Davies Date: Mon, 18 Mar 2002 07:51:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors article.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ceri 2002/03/18 07:51:16 PST Modified files: en_US.ISO8859-1/articles/contributors article.sgml Log: Move myself from the contributors list to the developers list Reviewed by: murray Approved by: murray Revision Changes Path 1.117 +4 -4 doc/en_US.ISO8859-1/articles/contributors/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:52: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 D696237B402; Mon, 18 Mar 2002 07:52:28 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IFqSK52401; Mon, 18 Mar 2002 07:52:28 -0800 (PST) (envelope-from ru) Message-Id: <200203181552.g2IFqSK52401@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 07:52:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_lastlog pam_lastlog.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 07:52:28 PST Modified files: lib/libpam/modules/pam_lastlog pam_lastlog.8 Log: mdoc(7) police: sort xrefs, kill extra whitespace. Revision Changes Path 1.4 +3 -3 src/lib/libpam/modules/pam_lastlog/pam_lastlog.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:54:36 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 AA80037B404; Mon, 18 Mar 2002 07:54:13 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id RAA20687; Mon, 18 Mar 2002 17:53:18 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h245.234.dialup.iptcom.net [212.9.234.245]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id RAA23251; Mon, 18 Mar 2002 17:53:15 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id g2IFqi101320; Mon, 18 Mar 2002 17:52:44 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C960D8E.E89B684F@FreeBSD.org> Date: Mon, 18 Mar 2002 17:53:50 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Peter Pentchev Cc: Mikhail Teterin , imp@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/libexec/xtend user.c xtend.c References: <20020318141639.B1326@straylight.oblivion.bg> <200203181534.g2IFYN3b020895@aldan.algebra.com> <20020318174145.A10603@straylight.oblivion.bg> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Peter Pentchev wrote: > > On Mon, Mar 18, 2002 at 10:34:23AM -0500, Mikhail Teterin wrote: > > On 18 Mar, Peter Pentchev wrote: > > > On Sun, Mar 17, 2002 at 11:14:59PM -0800, Warner Losh wrote: > > >> imp 2002/03/17 23:14:59 PST > > >> > > >> Modified files: > > >> libexec/xtend user.c xtend.c > > >> Log: > > >> o MAXPATHLEN is the correct constant to use for path names, it includes > > >> the NULL. > > >> o use snprintf in preference to unchecked strcat in a couple of places that > > >> likely can't overflow. Makes it easier to grep for strcpy :-) > > > > > > /me sprinkles some magic comma dust over the naughty-naughty imp :) > > > [IOW, please try the attached patch :] > > > > Since the X10DIR and X10DUMPNAME are both known at compile time, why not > > > > - snprintf(dumppath, sizeof(dumppath), "%s/%s", X10DIR, X10DUMPNAME); > > + strncpy(dumppath, X10DIR "/" X10DUMPNAME, sizeof(dumppath)); > > > > and so on? (The plain strcpy would do just fine here too, IMO :) > > strncpy() does not null-terminate properly; strcpy() requires attention > from the programmer to make sure that long enough buffers have been > provided. /me hands strlcpy() to roam :) -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:56: 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 2EE7C37B405; Mon, 18 Mar 2002 07:55:54 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IFtsB52990; Mon, 18 Mar 2002 07:55:54 -0800 (PST) (envelope-from ru) Message-Id: <200203181555.g2IFtsB52990@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 07:55:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_login_access pam_login_access.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 07:55:53 PST Modified files: lib/libpam/modules/pam_login_access pam_login_access.8 Log: mdoc(7) police: nits. Revision Changes Path 1.4 +5 -3 src/lib/libpam/modules/pam_login_access/pam_login_access.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:59:38 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B925137B417; Mon, 18 Mar 2002 07:59:31 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IFxV453402; Mon, 18 Mar 2002 07:59:31 -0800 (PST) (envelope-from sobomax) Message-Id: <200203181559.g2IFxV453402@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 18 Mar 2002 07:59:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/p5-Lingua-Preferred Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/18 07:59:31 PST Modified files: textproc/p5-Lingua-Preferred Makefile Log: Fix RUN_DEPENDS. Submitted by: bento Revision Changes Path 1.3 +1 -1 ports/textproc/p5-Lingua-Preferred/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 7:59: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 7004A37B404; Mon, 18 Mar 2002 07:59:53 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IFxri53492; Mon, 18 Mar 2002 07:59:53 -0800 (PST) (envelope-from ru) Message-Id: <200203181559.g2IFxri53492@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 07:59:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libpam/modules/pam_opieaccess pam_opieaccess.8 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 07:59:53 PST Modified files: lib/libpam/modules/pam_opieaccess pam_opieaccess.8 Log: mdoc(7) police: fix SYNOPSIS, sort xrefs, kill extra whitespace. Revision Changes Path 1.4 +8 -6 src/lib/libpam/modules/pam_opieaccess/pam_opieaccess.8 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8: 3:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 29C9E37B402; Mon, 18 Mar 2002 08:03:08 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IG38T54032; Mon, 18 Mar 2002 08:03:08 -0800 (PST) (envelope-from sobomax) Message-Id: <200203181603.g2IG38T54032@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 18 Mar 2002 08:03:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc/p5-Lingua-Preferred Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/18 08:03:07 PST Modified files: textproc/p5-Lingua-Preferred Makefile Log: Actually fix RUN_DEPENDS. Submitted by: bento Revision Changes Path 1.4 +1 -1 ports/textproc/p5-Lingua-Preferred/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:10:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0DBD637B405; Mon, 18 Mar 2002 08:10:03 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGA2h59025; Mon, 18 Mar 2002 08:10:02 -0800 (PST) (envelope-from imp) Message-Id: <200203181610.g2IGA2h59025@freefall.freebsd.org> From: Warner Losh Date: Mon, 18 Mar 2002 08:10:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/libexec/xtend user.c xtend.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/03/18 08:10:02 PST Modified files: libexec/xtend user.c xtend.c Log: Add missing commas. At least I didn't miss a period. Revision Changes Path 1.12 +1 -1 src/libexec/xtend/user.c 1.14 +2 -2 src/libexec/xtend/xtend.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:10:24 2002 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id CE71137B402; Mon, 18 Mar 2002 08:10:04 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g2IGA3i62255; Mon, 18 Mar 2002 09:10:03 -0700 (MST) (envelope-from imp@village.org) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id g2IGA2L19679; Mon, 18 Mar 2002 09:10:02 -0700 (MST) (envelope-from imp@village.org) Date: Mon, 18 Mar 2002 09:09:52 -0700 (MST) Message-Id: <20020318.090952.70169752.imp@village.org> To: roam@ringlet.net Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/libexec/xtend user.c xtend.c From: "M. Warner Losh" In-Reply-To: <20020318141639.B1326@straylight.oblivion.bg> References: <200203180714.g2I7ExE74376@freefall.freebsd.org> <20020318141639.B1326@straylight.oblivion.bg> X-Mailer: Mew version 2.1 on Emacs 21.1 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Fixed. Thanks! Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:10: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 E010A37B41B; Mon, 18 Mar 2002 08:10:13 -0800 (PST) Received: (from ceri@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGADY59081; Mon, 18 Mar 2002 08:10:13 -0800 (PST) (envelope-from ceri) Message-Id: <200203181610.g2IGADY59081@freefall.freebsd.org> From: Ceri Davies Date: Mon, 18 Mar 2002 08:10:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/news news.xml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ceri 2002/03/18 08:10:13 PST Modified files: en/news news.xml Log: Announce myself as a new committer. Reviewed by: murray Approved by: murray Revision Changes Path 1.71 +10 -1 www/en/news/news.xml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:16:39 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 241AF37B404; Mon, 18 Mar 2002 08:16:33 -0800 (PST) Received: (from ceri@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGGWw60538; Mon, 18 Mar 2002 08:16:32 -0800 (PST) (envelope-from ceri) Message-Id: <200203181616.g2IGGWw60538@freefall.freebsd.org> From: Ceri Davies Date: Mon, 18 Mar 2002 08:16:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/astro/xearth/files freebsd.committers.markers X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ceri 2002/03/18 08:16:32 PST Modified files: astro/xearth/files freebsd.committers.markers Log: Use my privilege as a new committer to soak up another one of those ICBMs. Reviewed by: murray Approved by: murray Revision Changes Path 1.90 +1 -0 ports/astro/xearth/files/freebsd.committers.markers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:17:50 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 03D5837B402; Mon, 18 Mar 2002 08:17:44 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 6063C5347; Mon, 18 Mar 2002 17:17:30 +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: Udo Schweigert Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh auth-skey.c References: <200203181031.g2IAVXc29345@freefall.freebsd.org> <20020318152155.GA91545@alaska.cert.siemens.de> From: Dag-Erling Smorgrav Date: 18 Mar 2002 17:17:29 +0100 In-Reply-To: <20020318152155.GA91545@alaska.cert.siemens.de> 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 Udo Schweigert writes: > This (and some other commit) broke world, because the Makefile does not > know about this file. Something like this will fix it: Damn! I though I'd committed that, but I see now that I left this one file out :( DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:18:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8287537B400; Mon, 18 Mar 2002 08:17:57 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGHvc60950; Mon, 18 Mar 2002 08:17:57 -0800 (PST) (envelope-from des) Message-Id: <200203181617.g2IGHvc60950@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 18 Mar 2002 08:17:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/secure/usr.sbin/sshd Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/18 08:17:57 PST Modified files: secure/usr.sbin/sshd Makefile Log: Don't forget auth-skey.c. Revision Changes Path 1.21 +2 -1 src/secure/usr.sbin/sshd/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:18: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 9CFA637B402; Mon, 18 Mar 2002 08:18:33 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGIXU61102; Mon, 18 Mar 2002 08:18:33 -0800 (PST) (envelope-from ru) Message-Id: <200203181618.g2IGIXU61102@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 08:18:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man3 timeradd.3 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 08:18:33 PST Modified files: share/man/man3 timeradd.3 Log: mdoc(7) police: tidy up. Revision Changes Path 1.2 +31 -33 src/share/man/man3/timeradd.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:20:58 2002 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id CC17E37B417; Mon, 18 Mar 2002 08:20:50 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g2IGKki62333; Mon, 18 Mar 2002 09:20:46 -0700 (MST) (envelope-from imp@village.org) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id g2IGKjL19784; Mon, 18 Mar 2002 09:20:45 -0700 (MST) (envelope-from imp@village.org) Date: Mon, 18 Mar 2002 09:20:36 -0700 (MST) Message-Id: <20020318.092036.74041872.imp@village.org> To: rwatson@FreeBSD.org Cc: ru@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/perl Makefile.inc From: "M. Warner Losh" In-Reply-To: References: <200203181010.g2IAAt622886@freefall.freebsd.org> X-Mailer: Mew version 2.1 on Emacs 21.1 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message: Robert Watson writes: : Just FYI for everyone interested -- I ended up deciding (along with Kris) : not to MFC eaccess() just yet due to concern about race conditions and : correctness when moved to -STABLE, which are not present in -CURRENT due : to per-thread credentials. In a few days, I hope to finish up some : cleanup work on namei() that will make it possible to handle this : correctly in -STABLE. From an upgrade point of view, we do need to deal with machines that don't have eaccess for the upgrade path... So even if you MFC it, we'll need the patch for a while to support bootstrapping. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:21:47 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 60D4937B420; Mon, 18 Mar 2002 08:21:11 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id E95875346; Mon, 18 Mar 2002 17:20:56 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: cjclark@alum.mit.edu Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.h References: <200203180222.g2I2Ms309830@freefall.freebsd.org> <20020318135824.A1326@straylight.oblivion.bg> <20020318041901.A59516@blossom.cjclark.org> From: Dag-Erling Smorgrav Date: 18 Mar 2002 17:20:56 +0100 In-Reply-To: <20020318041901.A59516@blossom.cjclark.org> Message-ID: Lines: 15 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "Crist J. Clark" writes: > This is all quite a mess. We have chpass(8) using __pw_scan from libc > and source in vipw(8), and PAM modules sharing all of this code > too. Wouldn't the Right Thing be to put these functions in a library > somewhere? Yes; it's called pam_unix(8). I just haven't gotten around to it yet. > Thanks for the patches. The PAM stuff look good, DES? Yes. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:22:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2AC3C37B405; Mon, 18 Mar 2002 08:22:43 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGMh461814; Mon, 18 Mar 2002 08:22:43 -0800 (PST) (envelope-from rwatson) Message-Id: <200203181622.g2IGMh461814@freefall.freebsd.org> From: Robert Watson Date: Mon, 18 Mar 2002 08:22:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/smp index.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/03/18 08:22:43 PST Modified files: en/smp index.sgml Log: Various task updates relating to VM locking task: - Break out lockmgr exclusive and sx/mutex tasks from one another, and leave the original (completed) movement of mutex pool initialization task as it's own thing. - Create the task for moving to purely exclusive locks in VM rather than lockmgr shared locks. This task will involve implementation, then testing to see if it actually hurts. If this is possible, it will greatly simplify the transition to new locking primitives. Assign this to green since he's expressed willingness to work on it. - Create the task for moving from lockmgr to either mutexes or exclusive sxlocks for VM. At that point, it should be possible to start pushing Giant down into VM somewhere, subject to lack of locking for a few primitives that will still require it, and for VFS/pmap interactions. Revision Changes Path 1.52 +16 -8 www/en/smp/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:28: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 66CF237B405; Mon, 18 Mar 2002 08:28:32 -0800 (PST) Received: (from yoichi@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGSWS63024; Mon, 18 Mar 2002 08:28:32 -0800 (PST) (envelope-from yoichi) Message-Id: <200203181628.g2IGSWS63024@freefall.freebsd.org> From: Yoichi NAKAYAMA Date: Mon, 18 Mar 2002 08:28:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/speedbar Makefile distinfo pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG yoichi 2002/03/18 08:28:32 PST Modified files: editors/speedbar Makefile distinfo pkg-plist Log: Update to 0.14.b4 PR: ports/36043 Submitted by: maintainer Revision Changes Path 1.4 +2 -2 ports/editors/speedbar/Makefile 1.4 +1 -1 ports/editors/speedbar/distinfo 1.4 +9 -0 ports/editors/speedbar/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:29:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D71CD37B402; Mon, 18 Mar 2002 08:29:26 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGTQq63537; Mon, 18 Mar 2002 08:29:26 -0800 (PST) (envelope-from ru) Message-Id: <200203181629.g2IGTQq63537@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 08:29:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 polling.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 08:29:26 PST Modified files: share/man/man4 polling.4 Log: mdoc(7) police: tidy up. Revision Changes Path 1.3 +47 -26 src/share/man/man4/polling.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:32: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 A3D1F37B400; Mon, 18 Mar 2002 08:32:18 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGWIN64248; Mon, 18 Mar 2002 08:32:18 -0800 (PST) (envelope-from ijliao) Message-Id: <200203181632.g2IGWIN64248@freefall.freebsd.org> From: Ying-Chieh Liao Date: Mon, 18 Mar 2002 08:32:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/Maaate Makefile distinfo pkg-plist ports/audio/Maaate/files patch-configure.in patch-test::Makefile.in X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/18 08:32:18 PST Modified files: audio/Maaate Makefile distinfo pkg-plist Removed files: audio/Maaate/files patch-configure.in patch-test::Makefile.in Log: upgrade to 0.2.1 drop maintainership Revision Changes Path 1.2 +7 -7 ports/audio/Maaate/Makefile 1.2 +1 -1 ports/audio/Maaate/distinfo 1.2 +0 -10 ports/audio/Maaate/files/patch-configure.in (dead) 1.2 +0 -32 ports/audio/Maaate/files/patch-test::Makefile.in (dead) 1.2 +13 -12 ports/audio/Maaate/pkg-plist To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:33: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 820BF37B404; Mon, 18 Mar 2002 08:33:26 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGXQQ64676; Mon, 18 Mar 2002 08:33:26 -0800 (PST) (envelope-from ijliao) Message-Id: <200203181633.g2IGXQQ64676@freefall.freebsd.org> From: Ying-Chieh Liao Date: Mon, 18 Mar 2002 08:33:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/Maaate pkg-descr X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ijliao 2002/03/18 08:33:26 PST Modified files: audio/Maaate pkg-descr Log: oops... forget to update WWW Revision Changes Path 1.2 +1 -1 ports/audio/Maaate/pkg-descr To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:35:48 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EBEA737B419; Mon, 18 Mar 2002 08:35:07 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGZ7965062; Mon, 18 Mar 2002 08:35:07 -0800 (PST) (envelope-from ru) Message-Id: <200203181635.g2IGZ7965062@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 08:35:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 puc.4 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 08:35:07 PST Modified files: share/man/man4 puc.4 Log: mdoc(7) police: tidy up. Revision Changes Path 1.2 +15 -11 src/share/man/man4/puc.4 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:40: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 06FC537B402; Mon, 18 Mar 2002 08:40:08 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGe7V66120; Mon, 18 Mar 2002 08:40:07 -0800 (PST) (envelope-from ru) Message-Id: <200203181640.g2IGe7V66120@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 08:40:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 VOP_REVOKE.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 08:40:07 PST Modified files: share/man/man9 VOP_REVOKE.9 Log: mdoc(7) police: tidy up. Revision Changes Path 1.5 +8 -7 src/share/man/man9/VOP_REVOKE.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:43: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 E9D5C37B405; Mon, 18 Mar 2002 08:43:49 -0800 (PST) Received: (from will@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGhnW66937; Mon, 18 Mar 2002 08:43:49 -0800 (PST) (envelope-from will) Message-Id: <200203181643.g2IGhnW66937@freefall.freebsd.org> From: Will Andrews Date: Mon, 18 Mar 2002 08:43:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/x11/XFree86-4 Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG will 2002/03/18 08:43:49 PST Modified files: x11/XFree86-4 Makefile Log: Add Cyrillic fonts & bump PORTREVISION. While not that many users would use them, they're fairly small and were part of the previous generation of XFree86 ports. Requested by: roam Revision Changes Path 1.145 +3 -0 ports/x11/XFree86-4/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:45: 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 79B8537B404; Mon, 18 Mar 2002 08:44:59 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGixJ67344; Mon, 18 Mar 2002 08:44:59 -0800 (PST) (envelope-from rwatson) Message-Id: <200203181644.g2IGixJ67344@freefall.freebsd.org> From: Robert Watson Date: Mon, 18 Mar 2002 08:44:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/events/2002 bsdcon-devsummit.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/03/18 08:44:59 PST Modified files: en/events/2002 bsdcon-devsummit.sgml Log: Expand sponsorship, venue, and location information. Indicate that this was the second FreeBSD Developer Summit. Revision Changes Path 1.2 +7 -4 www/en/events/2002/bsdcon-devsummit.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:49:27 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 9ED1A37B402; Mon, 18 Mar 2002 08:49:01 -0800 (PST) Received: from ipcard.iptcom.net (ipcard.iptcom.net [212.9.224.5]) by alcatraz.iptelecom.net.ua (8.9.3/8.9.3) with ESMTP id SAA78116; Mon, 18 Mar 2002 18:48:58 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h44.229.dialup.iptcom.net [212.9.229.44]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id SAA51359; Mon, 18 Mar 2002 18:48:56 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id g2IGmP101600; Mon, 18 Mar 2002 18:48:25 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C961A9A.6DD7C45@FreeBSD.org> Date: Mon, 18 Mar 2002 18:49:30 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Akinori MUSHA Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/audio/mpg123 Makefile ports/audio/vorbis-toolsMakefile ports/converters/p5-Text-Iconv Makefileports/converters/py-iconv Makefile ports/converters/ruby-iconvMakefile ports/converters/siconv Makefile ports/databases/freetds ... References: <200203181027.g2IARwk28129@freefall.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Thank you for doing this, but please note that some of the bumps were superfluous, as the ports in question have libiconv only in {RUN,BUILD}_DEPENDS, not in LIB_DEPENDS. Please be more careful in the future. -Maxim Akinori MUSHA wrote: > > knu 2002/03/18 02:27:58 PST > > Modified files: > audio/mpg123 Makefile > audio/vorbis-tools Makefile > converters/p5-Text-Iconv Makefile > converters/py-iconv Makefile > converters/ruby-iconv Makefile > converters/siconv Makefile > databases/freetds Makefile > databases/grass Makefile > databases/sqlrelay Makefile > devel/bison Makefile > devel/gettext Makefile > devel/glib20 Makefile > devel/gnomevfs Makefile > devel/styx Makefile > editors/AbiWord Makefile > editors/dedit Makefile > editors/koffice Makefile > editors/nvi-devel Makefile > ftp/wget+ipv6 Makefile > graphics/djvulibre Makefile > graphics/gphoto2 Makefile > graphics/graphviz Makefile > graphics/mplayer Makefile > graphics/ogle-gui Makefile > irc/xchat Makefile > japanese/libjconv Makefile > japanese/mutt-devel Makefile > korean/hanterm-xf86 Makefile > mail/elm+ME Makefile > mail/mutt-devel Makefile > mail/nail Makefile > mail/stuphead Makefile > math/gnumeric Makefile > misc/gnomemimedata Makefile > misc/pinfo Makefile > net/dctc-gui Makefile > net/gtk+licq Makefile > net/gtkhx Makefile > net/wol Makefile > news/tin Makefile > palm/pilot-link Makefile > science/vis5d+ Makefile > security/gnupg Makefile > textproc/intltool Makefile > textproc/libxml2 Makefile > textproc/minidom Makefile > textproc/p5-XML-Sablotron Makefile > textproc/ruby-sablot Makefile > textproc/sablotron Makefile > www/galeon Makefile > www/p5-AxKit Makefile > x11/gdkxft Makefile > x11-toolkits/gal Makefile > x11-toolkits/wxgtk-devel Makefile > x11-wm/icewm Makefile > x11-wm/xfce Makefile > Log: > Bump PORTREVISION to reflect the (lib)iconv upgrade. > > Revision Changes Path > 1.40 +1 -1 ports/audio/mpg123/Makefile > 1.15 +1 -1 ports/audio/vorbis-tools/Makefile > 1.7 +1 -0 ports/converters/p5-Text-Iconv/Makefile > 1.5 +1 -0 ports/converters/py-iconv/Makefile > 1.17 +1 -0 ports/converters/ruby-iconv/Makefile > 1.3 +1 -0 ports/converters/siconv/Makefile > 1.18 +1 -0 ports/databases/freetds/Makefile > 1.12 +1 -1 ports/databases/grass/Makefile > 1.7 +1 -0 ports/databases/sqlrelay/Makefile > 1.28 +1 -0 ports/devel/bison/Makefile > 1.25 +1 -0 ports/devel/gettext/Makefile > 1.54 +1 -0 ports/devel/glib20/Makefile > 1.32 +1 -0 ports/devel/gnomevfs/Makefile > 1.6 +1 -0 ports/devel/styx/Makefile > 1.40 +1 -0 ports/editors/AbiWord/Makefile > 1.16 +1 -0 ports/editors/dedit/Makefile > 1.38 +1 -0 ports/editors/koffice/Makefile > 1.7 +1 -0 ports/editors/nvi-devel/Makefile > 1.4 +1 -0 ports/ftp/wget+ipv6/Makefile > 1.9 +1 -0 ports/graphics/djvulibre/Makefile > 1.21 +1 -0 ports/graphics/gphoto2/Makefile > 1.35 +1 -1 ports/graphics/graphviz/Makefile > 1.16 +1 -1 ports/graphics/mplayer/Makefile > 1.9 +1 -1 ports/graphics/ogle-gui/Makefile > 1.93 +1 -0 ports/irc/xchat/Makefile > 1.5 +1 -0 ports/japanese/libjconv/Makefile > 1.33 +1 -0 ports/japanese/mutt-devel/Makefile > 1.26 +1 -1 ports/korean/hanterm-xf86/Makefile > 1.76 +1 -0 ports/mail/elm+ME/Makefile > 1.163 +1 -1 ports/mail/mutt-devel/Makefile > 1.12 +1 -1 ports/mail/nail/Makefile > 1.6 +1 -0 ports/mail/stuphead/Makefile > 1.83 +1 -0 ports/math/gnumeric/Makefile > 1.3 +1 -0 ports/misc/gnomemimedata/Makefile > 1.16 +1 -0 ports/misc/pinfo/Makefile > 1.14 +1 -0 ports/net/dctc-gui/Makefile > 1.8 +1 -0 ports/net/gtk+licq/Makefile > 1.5 +1 -0 ports/net/gtkhx/Makefile > 1.4 +1 -0 ports/net/wol/Makefile > 1.96 +1 -0 ports/news/tin/Makefile > 1.49 +1 -1 ports/palm/pilot-link/Makefile > 1.3 +1 -0 ports/science/vis5d+/Makefile > 1.39 +1 -1 ports/security/gnupg/Makefile > 1.13 +1 -0 ports/textproc/intltool/Makefile > 1.64 +1 -0 ports/textproc/libxml2/Makefile > 1.4 +1 -0 ports/textproc/minidom/Makefile > 1.13 +1 -0 ports/textproc/p5-XML-Sablotron/Makefile > 1.13 +1 -1 ports/textproc/ruby-sablot/Makefile > 1.16 +1 -0 ports/textproc/sablotron/Makefile > 1.65 +1 -1 ports/www/galeon/Makefile > 1.6 +1 -0 ports/www/p5-AxKit/Makefile > 1.29 +1 -0 ports/x11-toolkits/gal/Makefile > 1.31 +1 -0 ports/x11-toolkits/wxgtk-devel/Makefile > 1.71 +1 -1 ports/x11-wm/icewm/Makefile > 1.54 +1 -0 ports/x11-wm/xfce/Makefile > 1.9 +1 -0 ports/x11/gdkxft/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:49: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 8C1C437B419; Mon, 18 Mar 2002 08:49:24 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGnOZ68259; Mon, 18 Mar 2002 08:49:24 -0800 (PST) (envelope-from ru) Message-Id: <200203181649.g2IGnOZ68259@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 08:49:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 random_harvest.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 08:49:24 PST Modified files: share/man/man9 random_harvest.9 Log: mdoc(7) police: tidy up. Revision Changes Path 1.2 +37 -28 src/share/man/man9/random_harvest.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:50:11 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8492C37B402; Mon, 18 Mar 2002 08:50:07 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGo7i68413; Mon, 18 Mar 2002 08:50:07 -0800 (PST) (envelope-from rwatson) Message-Id: <200203181650.g2IGo7i68413@freefall.freebsd.org> From: Robert Watson Date: Mon, 18 Mar 2002 08:50:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/events/2002 bsdcon-devsummit.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/03/18 08:50:07 PST Modified files: en/events/2002 bsdcon-devsummit.sgml Log: Spelling fix. Revision Changes Path 1.3 +2 -2 www/en/events/2002/bsdcon-devsummit.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 8:52: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 ED97537B402; Mon, 18 Mar 2002 08:52:32 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IGqWd69075; Mon, 18 Mar 2002 08:52:32 -0800 (PST) (envelope-from ru) Message-Id: <200203181652.g2IGqWd69075@freefall.freebsd.org> From: Ruslan Ermilov Date: Mon, 18 Mar 2002 08:52:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man9 rijndael.9 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/18 08:52:32 PST Modified files: share/man/man9 rijndael.9 Log: mdoc(7) police: tidy up. Revision Changes Path 1.3 +16 -17 src/share/man/man9/rijndael.9 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 9: 7:11 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.musha.org (daemon.musha.org [218.44.187.2]) by hub.freebsd.org (Postfix) with ESMTP id 3CF9D37B42A; Mon, 18 Mar 2002 09:06:46 -0800 (PST) Received: from archon.local.idaemons.org (archon.local.idaemons.org [192.168.1.32]) by mail.musha.org (Postfix) with ESMTP id 9492F4D906; Tue, 19 Mar 2002 02:06:44 +0900 (JST) Date: Tue, 19 Mar 2002 02:06:44 +0900 Message-ID: <86ofhlolej.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Maxim Sobolev Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/audio/mpg123 Makefile ports/audio/vorbis-toolsMakefile ports/converters/p5-Text-Iconv Makefileports/converters/py-iconv Makefile ports/converters/ruby-iconvMakefile ports/converters/siconv Makefile ports/databases/freetds ... In-Reply-To: <3C961A9A.6DD7C45@FreeBSD.org> References: <200203181027.g2IARwk28129@freefall.freebsd.org> <3C961A9A.6DD7C45@FreeBSD.org> User-Agent: Wanderlust/2.9.7 (Unchained Melody) SEMI/1.14.3 (Ushinoya) LIMIT/1.14.7 (Fujiidera) APEL/10.3 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) Organization: Associated I. Daemons X-PGP-Public-Key: finger knu@FreeBSD.org X-PGP-Fingerprint: 081D 099C 1705 861D 4B70 B04A 920B EFC7 9FD9 E1EE MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At Mon, 18 Mar 2002 18:49:30 +0200, sobomax wrote: > Thank you for doing this, but please note that some of the bumps were > superfluous, as the ports in question have libiconv only in > {RUN,BUILD}_DEPENDS, not in LIB_DEPENDS. Please be more careful in the > future. OK. I was kind of in a hurry in awe of "*** stopped working!" screams and I might have missed that. I'll try to be more careful next time. -- / /__ __ Akinori.org / MUSHA.org / ) ) ) ) / FreeBSD.org / Ruby-lang.org Akinori MUSHA aka / (_ / ( (__( @ iDaemons.org / and.or.jp "Somewhere out of a memory.. of lighted streets on quiet nights.." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 9:23:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F0B0037B400; Mon, 18 Mar 2002 09:23:06 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IHN6J77747; Mon, 18 Mar 2002 09:23:06 -0800 (PST) (envelope-from sobomax) Message-Id: <200203181723.g2IHN6J77747@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 18 Mar 2002 09:23:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/bonobo-activation/files patch-intltool-merge.in ports/devel/gnomevfs2/files patch-intltool-merge.in ports/devel/gtranslator/files patch-intltool-merge.in ports/devel/libbonobo/files patch-intltool-merge.in ports/misc/gnomemimedata/files patch-intltool-merge.in ports/net/gnomemeeting/files patch-ac X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/18 09:23:06 PST Removed files: devel/bonobo-activation/files patch-intltool-merge.in devel/gnomevfs2/files patch-intltool-merge.in devel/gtranslator/files patch-intltool-merge.in devel/libbonobo/files patch-intltool-merge.in misc/gnomemimedata/files patch-intltool-merge.in net/gnomemeeting/files patch-ac Log: Remove patches not needed anymore (iconv --> giconv). Revision Changes Path 1.2 +0 -14 ports/devel/bonobo-activation/files/patch-intltool-merge.in (dead) 1.4 +0 -14 ports/devel/gnomevfs2/files/patch-intltool-merge.in (dead) 1.4 +0 -14 ports/devel/gtranslator/files/patch-intltool-merge.in (dead) 1.3 +0 -14 ports/devel/libbonobo/files/patch-intltool-merge.in (dead) 1.2 +0 -14 ports/misc/gnomemimedata/files/patch-intltool-merge.in (dead) 1.4 +0 -19 ports/net/gnomemeeting/files/patch-ac (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 9:30:32 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1845237B438; Mon, 18 Mar 2002 09:30:05 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IHU4i78994; Mon, 18 Mar 2002 09:30:04 -0800 (PST) (envelope-from sobomax) Message-Id: <200203181730.g2IHU4i78994@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 18 Mar 2002 09:30:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/gnomevfs/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/18 09:30:04 PST Modified files: devel/gnomevfs/files patch-aa Log: Remove giconv hacks. Revision Changes Path 1.13 +1 -28 ports/devel/gnomevfs/files/patch-aa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 9:34: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 3AE0337B404; Mon, 18 Mar 2002 09:34:29 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IHYTY79776; Mon, 18 Mar 2002 09:34:29 -0800 (PST) (envelope-from bmah) Message-Id: <200203181734.g2IHYTY79776@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 18 Mar 2002 09:34:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall menus.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/03/18 09:34:29 PST Modified files: usr.sbin/sysinstall menus.c Log: Add the ERRATA file to the documentation menu and index. While I'm here, make the menu entries on the documentation menu begin with "1" instead of "2". Reviewed by: imp, rwatson, murray Approved by: imp, rwatson, murray MFC after: 1 week Revision Changes Path 1.338 +3 -1 src/usr.sbin/sysinstall/menus.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 9:46:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 64EBC37B417; Mon, 18 Mar 2002 09:46:50 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IHkoB81711; Mon, 18 Mar 2002 09:46:50 -0800 (PST) (envelope-from rwatson) Message-Id: <200203181746.g2IHkoB81711@freefall.freebsd.org> From: Robert Watson Date: Mon, 18 Mar 2002 09:46:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/events/2002 bsdcon-devsummit.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/03/18 09:46:50 PST Modified files: en/events/2002 bsdcon-devsummit.sgml Log: Blame Murray for the markup of this document in the header. Revision Changes Path 1.4 +2 -2 www/en/events/2002/bsdcon-devsummit.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 10:23: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 E729437B400; Mon, 18 Mar 2002 10:23:42 -0800 (PST) Received: (from joe@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IINgL91681; Mon, 18 Mar 2002 10:23:42 -0800 (PST) (envelope-from joe) Message-Id: <200203181823.g2IINgL91681@freefall.freebsd.org> From: Josef Karthauser Date: Mon, 18 Mar 2002 10:23:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb ucom.c ucomvar.h uplcom.c usbdevs uvscom.c src/sys/i386/conf NOTES src/sys/modules Makefile src/sys/modules/ucom Makefile src/sys/modules/uplcom Makefile src/sys/modules/uvscom Makefile src/sys/conf files X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG joe 2002/03/18 10:23:42 PST Modified files: sys/dev/usb usbdevs sys/i386/conf NOTES sys/modules Makefile sys/conf files Added files: sys/dev/usb ucom.c ucomvar.h uplcom.c uvscom.c sys/modules/ucom Makefile sys/modules/uplcom Makefile sys/modules/uvscom Makefile Log: Add a USB comm driver. Ported from NetBSD by: akiyama Revision Changes Path 1.612 +0 -0 src/sys/conf/files 1.15 +1130 -0 src/sys/dev/usb/ucom.c (new) 1.1 +189 -0 src/sys/dev/usb/ucomvar.h (new) 1.1 +810 -0 src/sys/dev/usb/uplcom.c (new) 1.79 +8 -0 src/sys/dev/usb/usbdevs 1.1 +888 -0 src/sys/dev/usb/uvscom.c (new) 1.1009 +5 -0 src/sys/i386/conf/NOTES 1.235 +3 -0 src/sys/modules/Makefile 1.1 +10 -0 src/sys/modules/ucom/Makefile (new) 1.1 +10 -0 src/sys/modules/uplcom/Makefile (new) 1.1 +10 -0 src/sys/modules/uvscom/Makefile (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 10:24:40 2002 Delivered-To: cvs-all@freebsd.org Received: from mail12.speakeasy.net (mail12.speakeasy.net [216.254.0.212]) by hub.freebsd.org (Postfix) with ESMTP id 95F4C37B41B for ; Mon, 18 Mar 2002 10:24:16 -0800 (PST) Received: (qmail 21580 invoked from network); 18 Mar 2002 18:24:16 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail12.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 18 Mar 2002 18:24:16 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g2IIOiv53753; Mon, 18 Mar 2002 13:24:44 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200203181508.g2IF8Am41245@freefall.freebsd.org> Date: Mon, 18 Mar 2002 13:24:18 -0500 (EST) From: John Baldwin To: Brian Feldman Subject: RE: cvs commit: src/sys/vm vm_fault.c vm_glue.c vm_map.c vm_map. Cc: cvs-all@FreeBSD.org, cvs-committers@FreeBSD.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 18-Mar-2002 Brian Feldman wrote: > green 2002/03/18 07:08:10 PST > > Modified files: > sys/vm vm_fault.c vm_glue.c vm_map.c vm_map.h > vm_pageout.c vm_zone.c > Log: > Back out the modification of vm_map locks from lockmgr to sx locks. The > best path forward now is likely to change the lockmgr locks to simple > sleep mutexes, then see if any extra contention it generates is greater > than removed overhead of managing local locking state information, > cost of extra calls into lockmgr, etc. You can't sleep while holding a mutex. The problem here is that sx locks and lockmgr locks intentionally do not have identical semantics. I would follow Matt's suggested plan of "dumbing down" the lockmgr locks to a common base with sx locks, then change to sx locks, then do the optimizations for upgrades using the upgrade/downgrade mechanism sx locks provide (which will require a slightly different algorithm). -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 10:24:51 2002 Delivered-To: cvs-all@freebsd.org Received: from mail6.speakeasy.net (mail6.speakeasy.net [216.254.0.206]) by hub.freebsd.org (Postfix) with ESMTP id 5CB5637B41A for ; Mon, 18 Mar 2002 10:24:24 -0800 (PST) Received: (qmail 7725 invoked from network); 18 Mar 2002 18:24:23 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail6.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 18 Mar 2002 18:24:23 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g2IIOpv53757; Mon, 18 Mar 2002 13:24:51 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20020317041801.GA6618@hades.hell.gr> Date: Mon, 18 Mar 2002 13:24:25 -0500 (EST) From: John Baldwin To: Giorgos Keramidas Subject: Re: cvs commit: CVSROOT access Cc: cvs-all@freebsd.org, cvs-committers@freebsd.org, ceri@freebsd.org, Murray Stokely Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 17-Mar-2002 Giorgos Keramidas wrote: > On 2002-03-16 17:34, Murray Stokely wrote: >> murray 2002/03/16 17:34:27 PST >> >> Modified files: >> . access >> Log: >> Welcome Ceri Davies as a doc/ committer >> >> ceri@FreeBSD.org > > And high rang the trumpets of the Noldor in the halls of Nargothrond, > celebrating the joy of all... err, oops! Sorry, that was Tolkien, damn. Enter Glaurung... :-P -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 10:33: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 C456D37B405; Mon, 18 Mar 2002 10:33:13 -0800 (PST) Received: (from rwatson@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IIXDl93572; Mon, 18 Mar 2002 10:33:13 -0800 (PST) (envelope-from rwatson) Message-Id: <200203181833.g2IIXDl93572@freefall.freebsd.org> From: Robert Watson Date: Mon, 18 Mar 2002 10:33:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/smp index.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG rwatson 2002/03/18 10:33:13 PST Modified files: en/smp index.sgml Log: Update VM tasks owned by green to include alc, who has volunteered to help out with the VM locking work. All victims of some horrible scheme to conquer the world. Revision Changes Path 1.53 +3 -3 www/en/smp/index.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 10:47:27 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 E6E3A37B405; Mon, 18 Mar 2002 10:47:16 -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 UAA66106; Mon, 18 Mar 2002 20:47:12 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from vega.vega.com (h7.229.dialup.iptcom.net [212.9.229.7]) by ipcard.iptcom.net (8.9.3/8.9.3) with ESMTP id UAA03769; Mon, 18 Mar 2002 20:47:10 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vega.vega.com (8.11.6/8.11.3) with ESMTP id g2IIkQ101976; Mon, 18 Mar 2002 20:46:26 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3C963643.4104E8A4@FreeBSD.org> Date: Mon, 18 Mar 2002 20:47:31 +0200 From: Maxim Sobolev Organization: Vega International Capital X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en,uk,ru MIME-Version: 1.0 To: Josef Karthauser Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/usb ucom.c ucomvar.h uplcom.c usbdevsuvscom.c src/sys/i386/conf NOTES src/sys/modules Makefilesrc/sys/modules/ucom Makefile src/sys/modules/uplcom Makefilesrc/sys/modules/uvscom Makefile src/sys/conf files References: <200203181823.g2IINgL91681@freefall.freebsd.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Josef Karthauser wrote: > > joe 2002/03/18 10:23:42 PST > > Modified files: > sys/dev/usb usbdevs > sys/i386/conf NOTES > sys/modules Makefile > sys/conf files > Added files: > sys/dev/usb ucom.c ucomvar.h uplcom.c uvscom.c > sys/modules/ucom Makefile > sys/modules/uplcom Makefile > sys/modules/uvscom Makefile > Log: > Add a USB comm driver. Manpage? -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 10:53: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 BF6BD37B400; Mon, 18 Mar 2002 10:53:20 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IIrIK97059; Mon, 18 Mar 2002 10:53:18 -0800 (PST) (envelope-from alfred) Message-Id: <200203181853.g2IIrIK97059@freefall.freebsd.org> From: Alfred Perlstein Date: Mon, 18 Mar 2002 10:53:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/sys sysent.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/03/18 10:53:18 PST Modified files: sys/sys sysent.h Log: have the SYSCALL_MODULES macro provide an initializer for the 'old_sysent' to avoid pedandic warnings. Revision Changes Path 1.35 +1 -1 src/sys/sys/sysent.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 10:56:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 79FA337B47C; Mon, 18 Mar 2002 10:56:28 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IIuSl97547; Mon, 18 Mar 2002 10:56:28 -0800 (PST) (envelope-from sobomax) Message-Id: <200203181856.g2IIuSl97547@freefall.freebsd.org> From: Maxim Sobolev Date: Mon, 18 Mar 2002 10:56:28 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/audio/fmio Makefile distinfo ports/audio/fmio/files patch-Makefile patch-mixer.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/18 10:56:28 PST Modified files: audio/fmio Makefile distinfo Removed files: audio/fmio/files patch-Makefile patch-mixer.c Log: - Update to 1.2.18; - pass over maintainership to Olexander Kunitsa (maintainer timeout). Submitted by: Olexander Kunitsa Revision Changes Path 1.4 +3 -4 ports/audio/fmio/Makefile 1.2 +1 -1 ports/audio/fmio/distinfo 1.2 +0 -11 ports/audio/fmio/files/patch-Makefile (dead) 1.2 +0 -37 ports/audio/fmio/files/patch-mixer.c (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 11:11:58 2002 Delivered-To: cvs-all@freebsd.org Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by hub.freebsd.org (Postfix) with ESMTP id BFB0137B421; Mon, 18 Mar 2002 11:11:19 -0800 (PST) Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.11.0/8.11.0) id g2IJAtl05526; Mon, 18 Mar 2002 11:10:55 -0800 Date: Mon, 18 Mar 2002 11:10:55 -0800 From: Brooks Davis To: Wilko Bulte Cc: Warner Losh , Alfred Perlstein , Kirk McKusick , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_fat.c msdosfs_vnops.c ... Message-ID: <20020318111055.A12561@Odin.AC.HMC.Edu> References: <20020315185427.GK4857@elvis.mu.org> <200203151849.g2FInlW38440@freefall.freebsd.org> <20020315185427.GK4857@elvis.mu.org> <200203152325.g2FNPwL61201@harmony.village.org> <20020316105245.A19669@freebie.xs4all.nl> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="pf9I7BMVVzbSWLtt" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020316105245.A19669@freebie.xs4all.nl>; from wkb@freebie.xs4all.nl on Sat, Mar 16, 2002 at 10:52:45AM +0100 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --pf9I7BMVVzbSWLtt Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Mar 16, 2002 at 10:52:45AM +0100, Wilko Bulte wrote: >=20 > FWIW: the biggest RFP I ever saw was a customer who wanted us to supply= =20 > 1 PB in a single order. Which is approx 65 19" 42 racks > at the moment. Soon to be half that number ;-) Well, I know SLAC/Fermi National Accelerator Laboratory have and experiment with .5PB online and they are talking about generating that much data _daily_ in a few years. I'm working on another project that that will generate 2PB and given today's prices, may well just put it all online rather then using tape given the price of IDE disks. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --pf9I7BMVVzbSWLtt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: For info see http://www.gnupg.org iD8DBQE8lju+XY6L6fI4GtQRAqFcAJ9sIZcktCcnkf85AGuN5fiw/M3bqgCfSEDW FTMLKu0zKtEc7ceJnyotVaA= =+HFh -----END PGP SIGNATURE----- --pf9I7BMVVzbSWLtt-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 11:28:38 2002 Delivered-To: cvs-all@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 545D837B405; Mon, 18 Mar 2002 11:28:17 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.6) id g2IJSGm33846; Mon, 18 Mar 2002 14:28:16 -0500 (EST) (envelope-from wollman) Date: Mon, 18 Mar 2002 14:28:16 -0500 (EST) From: Garrett Wollman Message-Id: <200203181928.g2IJSGm33846@khavrinen.lcs.mit.edu> To: Warner Losh Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/dev_mkdb dev_mkdb.c In-Reply-To: <200203180723.g2I7Nfr75821@freefall.freebsd.org> References: <200203180723.g2I7Nfr75821@freefall.freebsd.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG < said: > o remove __P > o Use ansi function definitions > o MAXPATHLEN already has the NUL at the end, so no need to add 1 (note that > MAXNAMLEN doesn't, so the + 1 there is correct). [Not just for Warner:] If you're doing to do this, please use POSIX {PATH_MAX} instead. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 11:41:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 82BF537B400; Mon, 18 Mar 2002 11:41:51 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IJfpX12522; Mon, 18 Mar 2002 11:41:51 -0800 (PST) (envelope-from ue) Message-Id: <200203181941.g2IJfpX12522@freefall.freebsd.org> From: Udo Erdelhoff Date: Mon, 18 Mar 2002 11:41:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/03/18 11:41:51 PST Modified files: release/doc/de_DE.ISO8859-1/relnotes/common new.sgml Log: MFen 1.301 Revision Changes Path 1.3 +12 -12 src/release/doc/de_DE.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 11:46:55 2002 Delivered-To: cvs-all@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id B571F37B400; Mon, 18 Mar 2002 11:46:50 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.6) id g2IJkmT34221; Mon, 18 Mar 2002 14:46:48 -0500 (EST) (envelope-from wollman) Date: Mon, 18 Mar 2002 14:46:48 -0500 (EST) From: Garrett Wollman Message-Id: <200203181946.g2IJkmT34221@khavrinen.lcs.mit.edu> To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh auth-skey.c In-Reply-To: References: <200203181059.g2IAxfH5001916@grimreaper.grondar.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG < said: > was still true of OpenSSH 2.9 but is no longer true of OpenSSH 3.1, > which has an elaborate mechanism for defining new authentication > methods (gee, you'd think they'd heard of PAM...) Category error. PAM's authentication model is designed for interacting with humans. The secure shell protocol's authentication protocol is designed for interacting with other programs, which may or may not be acting on behalf of humans. (See also GSS-API, SASL, EAP, etc.) Users are unlikely to be performing public-key authentication at a login prompt. The protocol provides the `keyboard-interactive' authentication method for the use of PAM-like interfaces, which certainly looks like the Right Thing to me. I can't speak for whether the PAM code in auth2-pam.c is actually sensible or not. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 12: 3:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B88A37B423; Mon, 18 Mar 2002 12:03:40 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IK3eE16897; Mon, 18 Mar 2002 12:03:40 -0800 (PST) (envelope-from ue) Message-Id: <200203182003.g2IK3eE16897@freefall.freebsd.org> From: Udo Erdelhoff Date: Mon, 18 Mar 2002 12:03:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook/basics chapter.sgml doc/de_DE.ISO8859-1/books/handbook/boot chapter.sgml doc/de_DE.ISO8859-1/books/handbook/config chapter.sgml doc/de_DE.ISO8859-1/books/handbook/disks chapter.sgml doc/de_DE.ISO8859-1/books/handbook/kernelconfig chapter.sgml doc/de_DE.ISO8859-1/books/handbook/l10n chapter.sgml ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/03/18 12:03:39 PST Modified files: de_DE.ISO8859-1/books/handbook/basics chapter.sgml de_DE.ISO8859-1/books/handbook/boot chapter.sgml de_DE.ISO8859-1/books/handbook/config chapter.sgml de_DE.ISO8859-1/books/handbook/disks chapter.sgml de_DE.ISO8859-1/books/handbook/kernelconfig chapter.sgml de_DE.ISO8859-1/books/handbook/l10n chapter.sgml de_DE.ISO8859-1/books/handbook/ports chapter.sgml de_DE.ISO8859-1/books/handbook/security chapter.sgml de_DE.ISO8859-1/books/handbook/serialcomms chapter.sgml de_DE.ISO8859-1/books/handbook/sound chapter.sgml de_DE.ISO8859-1/books/handbook/users chapter.sgml Log: MFbed: various spelling and grammar fixes Revision Changes Path 1.5 +7 -7 doc/de_DE.ISO8859-1/books/handbook/basics/chapter.sgml 1.4 +11 -11 doc/de_DE.ISO8859-1/books/handbook/boot/chapter.sgml 1.6 +4 -4 doc/de_DE.ISO8859-1/books/handbook/config/chapter.sgml 1.7 +9 -9 doc/de_DE.ISO8859-1/books/handbook/disks/chapter.sgml 1.4 +3 -3 doc/de_DE.ISO8859-1/books/handbook/kernelconfig/chapter.sgml 1.2 +2 -2 doc/de_DE.ISO8859-1/books/handbook/l10n/chapter.sgml 1.5 +15 -15 doc/de_DE.ISO8859-1/books/handbook/ports/chapter.sgml 1.4 +21 -21 doc/de_DE.ISO8859-1/books/handbook/security/chapter.sgml 1.3 +9 -9 doc/de_DE.ISO8859-1/books/handbook/serialcomms/chapter.sgml 1.6 +5 -5 doc/de_DE.ISO8859-1/books/handbook/sound/chapter.sgml 1.4 +8 -8 doc/de_DE.ISO8859-1/books/handbook/users/chapter.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 12:10:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by hub.freebsd.org (Postfix) with ESMTP id B9F6337B400; Mon, 18 Mar 2002 12:10:40 -0800 (PST) Received: (from wkb@localhost) by freebie.xs4all.nl (8.11.6/8.11.6) id g2IKAEj31164; Mon, 18 Mar 2002 21:10:14 +0100 (CET) (envelope-from wkb) Date: Mon, 18 Mar 2002 21:10:14 +0100 From: Wilko Bulte To: Brooks Davis Cc: Warner Losh , Alfred Perlstein , Kirk McKusick , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_fat.c msdosfs_vnops.c ... Message-ID: <20020318211014.A31140@freebie.xs4all.nl> References: <20020315185427.GK4857@elvis.mu.org> <200203151849.g2FInlW38440@freefall.freebsd.org> <20020315185427.GK4857@elvis.mu.org> <200203152325.g2FNPwL61201@harmony.village.org> <20020316105245.A19669@freebie.xs4all.nl> <20020318111055.A12561@Odin.AC.HMC.Edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020318111055.A12561@Odin.AC.HMC.Edu>; from brooks@one-eyed-alien.net on Mon, Mar 18, 2002 at 11:10:55AM -0800 X-OS: FreeBSD 4.5-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Mar 18, 2002 at 11:10:55AM -0800, Brooks Davis wrote: > On Sat, Mar 16, 2002 at 10:52:45AM +0100, Wilko Bulte wrote: > > > > FWIW: the biggest RFP I ever saw was a customer who wanted us to supply > > 1 PB in a single order. Which is approx 65 19" 42 racks > > at the moment. Soon to be half that number ;-) > > Well, I know SLAC/Fermi National Accelerator Laboratory have and > experiment with .5PB online and they are talking about generating that > much data _daily_ in a few years. I'm working on another project that > that will generate 2PB and given today's prices, may well just put it Yeah, I've run into some discussions around CERN in Geneva. More particle physics folks, just as data hungry ;) -- | / o / /_ _ wilko@FreeBSD.org |/|/ / / /( (_) Bulte Arnhem, the Netherlands To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 12:14:57 2002 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 460C737B402; Mon, 18 Mar 2002 12:14:51 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g2IKEoi63703; Mon, 18 Mar 2002 13:14:50 -0700 (MST) (envelope-from imp@village.org) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id g2IKEmL68054; Mon, 18 Mar 2002 13:14:49 -0700 (MST) (envelope-from imp@village.org) Date: Mon, 18 Mar 2002 13:14:51 -0700 (MST) Message-Id: <20020318.131451.127090285.imp@village.org> To: wollman@lcs.mit.edu Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/dev_mkdb dev_mkdb.c From: "M. Warner Losh" In-Reply-To: <200203181928.g2IJSGm33846@khavrinen.lcs.mit.edu> References: <200203180723.g2I7Nfr75821@freefall.freebsd.org> <200203181928.g2IJSGm33846@khavrinen.lcs.mit.edu> X-Mailer: Mew version 2.1 on Emacs 21.1 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message: <200203181928.g2IJSGm33846@khavrinen.lcs.mit.edu> Garrett Wollman writes: : If you're doing to do this, please use POSIX {PATH_MAX} instead. OK. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 12:16:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A016B37B400; Mon, 18 Mar 2002 12:16:44 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IKGin22688; Mon, 18 Mar 2002 12:16:44 -0800 (PST) (envelope-from ue) Message-Id: <200203182016.g2IKGin22688@freefall.freebsd.org> From: Udo Erdelhoff Date: Mon, 18 Mar 2002 12:16:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/de_DE.ISO8859-1/books/handbook appendix.decl chapter.decl X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/18 12:16:44 PST Modified files: de_DE.ISO8859-1/books/handbook appendix.decl chapter.decl Log: Update to use DocBook 4.1, add ID block to convince freefall to accept these files. Revision Changes Path 1.2 +5 -1 doc/de_DE.ISO8859-1/books/handbook/appendix.decl 1.2 +5 -1 doc/de_DE.ISO8859-1/books/handbook/chapter.decl To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 12:26: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C330B37B416; Mon, 18 Mar 2002 12:26:04 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IKQ4624278; Mon, 18 Mar 2002 12:26:04 -0800 (PST) (envelope-from bmah) Message-Id: <200203182026.g2IKQ4624278@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 18 Mar 2002 12:26:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/03/18 12:26:04 PST Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Fix wording (hopefully for the last time) of my summary of SA-02:13. Submitted by: ue Reviewed by: nectar Revision Changes Path 1.302 +3 -3 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 12:30:56 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 70DF037B400; Mon, 18 Mar 2002 12:30:54 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IKUsH25270; Mon, 18 Mar 2002 12:30:54 -0800 (PST) (envelope-from bmah) Message-Id: <200203182030.g2IKUsH25270@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 18 Mar 2002 12:30:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/03/18 12:30:54 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: Fix SA-02:13 item. Revision Changes Path 1.22.2.209 +3 -3 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 12:49:27 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9B4A837B404; Mon, 18 Mar 2002 12:49:23 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IKnN728783; Mon, 18 Mar 2002 12:49:23 -0800 (PST) (envelope-from imp) Message-Id: <200203182049.g2IKnN728783@freefall.freebsd.org> From: Warner Losh Date: Mon, 18 Mar 2002 12:49:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/amr amr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/03/18 12:49:23 PST Modified files: sys/dev/amr amr.c Log: Formats that print the block number need to be changed from %u to %llu due to recent changes in bio_pblkno's type. Revision Changes Path 1.30 +2 -2 src/sys/dev/amr/amr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 12:50: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 0F5B337B400; Mon, 18 Mar 2002 12:50:05 -0800 (PST) Received: (from imp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IKo5M28903; Mon, 18 Mar 2002 12:50:05 -0800 (PST) (envelope-from imp) Message-Id: <200203182050.g2IKo5M28903@freefall.freebsd.org> From: Warner Losh Date: Mon, 18 Mar 2002 12:50:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/mlx mlx.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG imp 2002/03/18 12:50:04 PST Modified files: sys/dev/mlx mlx.c Log: Formats that print the block number need to be changed from %u to %llu due to recent changes in bio_pblkno's type. Revision Changes Path 1.32 +2 -2 src/sys/dev/mlx/mlx.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 12:57:48 2002 Delivered-To: cvs-all@freebsd.org Received: from d13225.upc-d.chello.nl (d13225.upc-d.chello.nl [213.46.13.225]) by hub.freebsd.org (Postfix) with ESMTP id BCDCA37B400; Mon, 18 Mar 2002 12:57:34 -0800 (PST) Received: from adv.devet.org (adv.devet.org [192.168.1.2]) by d13225.upc-d.chello.nl (Postfix) with ESMTP id 2FDC5689D; Mon, 18 Mar 2002 21:57:33 +0100 (CET) Received: by adv.devet.org (Postfix, from userid 100) id EE5C14281; Mon, 18 Mar 2002 21:57:32 +0100 (CET) Date: Mon, 18 Mar 2002 21:57:32 +0100 To: cjc@FreeBSD.org Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/etc rc.network Message-ID: <20020318205732.GA1013@adv.devet.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203122025.g2CKPP966458@freefall.freebsd.org> User-Agent: Mutt/1.3.27i X-Newsgroups: list.freebsd.cvs.all Organization: Eindhoven, the Netherlands From: devet@devet.org (Arjan de Vet) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In article <200203122025.g2CKPP966458@freefall.freebsd.org> you write: >cjc 2002/03/12 12:25:25 PST > > Modified files: > etc rc.network > Log: > The reload of ipf(8) rules should depend on $ipfilter_enable, not > $ipfilter_active. $ipfilter_enable is set to "NO" if modules fail to > load, and $ipfilter_active can be "YES" when we are not using ipf(8). I'm not sure this is right. $ipfilter_active is true if $ipfilter_enable or $ipnat_enable are "YES". In both cases the in-kernel interface list should be resync'ed, not only the $ipfilter_enable case. 'ipf -y' is not the reloading of ipf rules btw. A better fix might be to unset $ipfilter_active in case the ipf module fails to load (diff relative to 1.128): Index: rc.network =================================================================== RCS file: /home/freebsd/CVS/src/etc/rc.network,v retrieving revision 1.128 diff -u -r1.128 rc.network --- rc.network 12 Mar 2002 20:25:25 -0000 1.128 +++ rc.network 18 Mar 2002 20:52:21 -0000 @@ -89,6 +89,7 @@ ipfilter_enable="NO" ipnat_enable="NO" ipfs_enable="NO" + ipfilter_active="NO" fi fi # start ipmon before loading any rules @@ -298,11 +299,12 @@ # Re-Sync ipfilter so it picks up any new network interfaces # - case ${ipfilter_enable} in + case ${ipfilter_active} in [Yy][Ee][Ss]) ${ipfilter_program:-/sbin/ipf} -y ${ipfilter_flags} >/dev/null ;; esac + unset ipfilter_active # Initialize IP filtering using ipfw # This should solve the problem of calling 'ipf -y' when the ipfilter kernel module fails to load without losing the 'ipf -y' functionality in case only ipnat is used. Arjan -- Arjan de Vet, Eindhoven, The Netherlands URL : http://www.iae.nl/users/devet/ Work: http://www.madison-gurkha.com/ (Security, Open Source, Education) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 12:59:20 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 69C8637B402; Mon, 18 Mar 2002 12:59:14 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id HAA22250; Tue, 19 Mar 2002 07:56:29 +1100 Date: Tue, 19 Mar 2002 07:56:32 +1100 (EST) From: Bruce Evans X-X-Sender: To: "M. Warner Losh" Cc: , , Subject: Re: cvs commit: src/usr.sbin/dev_mkdb dev_mkdb.c In-Reply-To: <20020318.131451.127090285.imp@village.org> Message-ID: <20020319075504.D2872-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 18 Mar 2002, M. Warner Losh wrote: > In message: <200203181928.g2IJSGm33846@khavrinen.lcs.mit.edu> > Garrett Wollman writes: > : If you're doing to do this, please use POSIX {PATH_MAX} instead. > > OK. I prefer keeping MXPATHLEN unless {PATH_MAX} is used in its full glory (you can't just use PATH_MAX in portable programs; you must handle the case where it is not a compile-time constant). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 13: 2: 9 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B22AA37B404; Mon, 18 Mar 2002 13:02:02 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IL22J30783; Mon, 18 Mar 2002 13:02:02 -0800 (PST) (envelope-from bmah) Message-Id: <200203182102.g2IL22J30783@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 18 Mar 2002 13:02:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/03/18 13:02:02 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml Log: MFC: Update SA-02:13 synopsis. Revision Changes Path 1.1.2.58 +3 -3 src/release/doc/en_US.ISO8859-1/errata/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 13: 6:11 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id B4A0F37B41D; Mon, 18 Mar 2002 13:05:42 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id IAA23051; Tue, 19 Mar 2002 08:05:40 +1100 Date: Tue, 19 Mar 2002 08:05:43 +1100 (EST) From: Bruce Evans X-X-Sender: To: Ruslan Ermilov Cc: Mark Murray , , Subject: Re: cvs commit: src/share/mk bsd.lib.mk sys.mk src/sys/conf kern.post.mk kmod.mk In-Reply-To: <20020318085140.GD37136@sunbay.com> Message-ID: <20020319075726.I2912-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 18 Mar 2002, Ruslan Ermilov wrote: > %%% > Index: share/mk/bsd.lib.mk > =================================================================== > RCS file: /home/ncvs/src/share/mk/bsd.lib.mk,v > retrieving revision 1.104 > diff -u -r1.104 bsd.lib.mk > --- share/mk/bsd.lib.mk 17 Mar 2002 10:05:57 -0000 1.104 > +++ share/mk/bsd.lib.mk 18 Mar 2002 08:49:52 -0000 > ... > @@ -375,9 +374,8 @@ > > .if !target(lint) > lint: ${SRCS:M*.c} _SUBDIR > - ${LINT} ${LINTOBJFLAGS} ${CFLAGS:M-[DIU]*} ${.ALLSRC} | more 2>&1 > + ${LINT} ${LINTOBJFLAGS} ${CFLAGS:M-[DIU]*} ${.ALLSRC} Mark wanted to keep all these. I removed all the "more" pipelines, but left the redirections. Now the redirection actually works (lint's error output should have been redirected, not more's). > Index: sys/conf/kmod.mk > =================================================================== > RCS file: /home/ncvs/src/sys/conf/kmod.mk,v > retrieving revision 1.114 > diff -u -r1.114 kmod.mk > --- sys/conf/kmod.mk 17 Mar 2002 10:05:57 -0000 1.114 > +++ sys/conf/kmod.mk 18 Mar 2002 08:49:52 -0000 > @@ -339,7 +339,7 @@ > regress: > > lint: ${SRCS} > - ${LINT} ${LINTKERNFLAGS} ${CFLAGS:M-[DILU]*} ${.ALLSRC:M*.c} | more 2>&1 > + ${LINT} ${LINTKERNFLAGS} ${CFLAGS:M-[DILU]*} ${.ALLSRC:M*.c} > > .include > > %%% I changed DILU to DIU here. cc's -L directories are normally just wrong for lint. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 13:23: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 F0B3237B402; Mon, 18 Mar 2002 13:23:13 -0800 (PST) Received: (from dwcjr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2ILNC137714; Mon, 18 Mar 2002 13:23:12 -0800 (PST) (envelope-from dwcjr) Message-Id: <200203182123.g2ILNC137714@freefall.freebsd.org> From: "David W. Chapman Jr." Date: Mon, 18 Mar 2002 13:23:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/postfix Makefile distinfo pkg-install ports/mail/postfix/scripts configure.postfix X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dwcjr 2002/03/18 13:23:12 PST Modified files: mail/postfix Makefile distinfo pkg-install mail/postfix/scripts configure.postfix Log: Update to 1.1.5 PR: 36058 Submitted by: maintainer Revision Changes Path 1.54 +1 -1 ports/mail/postfix/Makefile 1.25 +2 -2 ports/mail/postfix/distinfo 1.11 +3 -1 ports/mail/postfix/pkg-install 1.18 +3 -3 ports/mail/postfix/scripts/configure.postfix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 13:23:58 2002 Delivered-To: cvs-all@freebsd.org Received: from gw.nectar.cc (gw.nectar.cc [208.42.49.153]) by hub.freebsd.org (Postfix) with ESMTP id 7D60937B402; Mon, 18 Mar 2002 13:23:52 -0800 (PST) Received: from madman.nectar.cc (madman.nectar.cc [10.0.1.111]) by gw.nectar.cc (Postfix) with ESMTP id E44E14C; Mon, 18 Mar 2002 15:23:51 -0600 (CST) Received: (from nectar@localhost) by madman.nectar.cc (8.11.6/8.11.6) id g2ILNnD29147; Mon, 18 Mar 2002 15:23:49 -0600 (CST) (envelope-from nectar) Date: Mon, 18 Mar 2002 15:23:49 -0600 From: "Jacques A. Vidrine" To: cjclark@alum.mit.edu Cc: Shin-ichi YOSHIMOTO , Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.h Message-ID: <20020318212349.GA29060@madman.nectar.cc> Mail-Followup-To: "Jacques A. Vidrine" , cjclark@alum.mit.edu, Shin-ichi YOSHIMOTO , Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200203180222.g2I2Ms309830@freefall.freebsd.org> <20020318161250.1c35600c.yosimoto@waishi.jp> <20020318170348.671ec4b5.yosimoto@waishi.jp> <20020318001922.Z29705@blossom.cjclark.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020318001922.Z29705@blossom.cjclark.org> User-Agent: Mutt/1.3.27i X-Url: http://www.nectar.cc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Mar 18, 2002 at 12:19:22AM -0800, Crist J. Clark wrote: > chpass(8) is very, very naughty and uses __pw_scan(). The underscores are a warning that it is being naughty. In this case, I was not ready to commit to an API for `pw_scan', so when it needed to be moved to libc, I hid it. I meant to revisit the issue one day, but so it goes. Do not rename it unless you intend for it to be a public API that will be maintained across releases. And don't forget to document it in that case. [snip] > This isn't an issue in -STABLE, where pw_scan() is exposed to the > world properly in libc. No, it's not. There is no pw_scan in -STABLE's libc. Cheers, -- Jacques A. Vidrine http://www.nectar.cc/ NTT/Verio SME . FreeBSD UNIX . Heimdal Kerberos jvidrine@verio.net . nectar@FreeBSD.org . nectar@kth.se To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 13:47:50 2002 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id B818C37B400; Mon, 18 Mar 2002 13:47:43 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2ILlilv015112; Mon, 18 Mar 2002 13:47:44 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2ILkTiM015111; Mon, 18 Mar 2002 13:46:29 -0800 (PST) Date: Mon, 18 Mar 2002 13:46:28 -0800 From: "David O'Brien" To: Kirk McKusick Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_fat.c msdosfs_vnops.c ... Message-ID: <20020318134628.A15033@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200203151849.g2FInlW38440@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200203151849.g2FInlW38440@freefall.freebsd.org>; from mckusick@FreeBSD.org on Fri, Mar 15, 2002 at 10:49:47AM -0800 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Fri, Mar 15, 2002 at 10:49:47AM -0800, Kirk McKusick wrote: > mckusick 2002/03/15 10:49:47 PST ... > Log: > Introduce the new 64-bit size disk block, daddr64_t. Change > the bio and buffer structures to have daddr64_t bio_pblkno, > b_blkno, and b_lblkno fields which allows access to disks Objects of type daddr64_t need to be cast to `(long long)' before printing them out with %lld. Failure to do so adds build warnings on 64-bit hosts. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 13:50:23 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 5FE9137B416; Mon, 18 Mar 2002 13:50:13 -0800 (PST) Received: (from uucp@localhost) by storm.FreeBSD.org.uk (8.11.6/8.11.6) with UUCP id g2ILo2Y83598; Mon, 18 Mar 2002 21:50:02 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 g2ILj6H5035663; Mon, 18 Mar 2002 21:45:06 GMT (envelope-from mark@grimreaper.grondar.za) Message-Id: <200203182145.g2ILj6H5035663@grimreaper.grondar.org> To: Bruce Evans Cc: ru@FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.lib.mk sys.mk src/sys/conf kern.post.mk kmod.mk References: <20020319075726.I2912-100000@gamplex.bde.org> In-Reply-To: <20020319075726.I2912-100000@gamplex.bde.org> ; from Bruce Evans "Tue, 19 Mar 2002 08:05:43 +1100." Date: Mon, 18 Mar 2002 21:45:06 +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 > > lint: ${SRCS:M*.c} _SUBDIR > > - ${LINT} ${LINTOBJFLAGS} ${CFLAGS:M-[DIU]*} ${.ALLSRC} | more 2>&1 > > + ${LINT} ${LINTOBJFLAGS} ${CFLAGS:M-[DIU]*} ${.ALLSRC} > > Mark wanted to keep all these. I removed all the "more" pipelines, but > left the redirections. Now the redirection actually works (lint's error > output should have been redirected, not more's). If these are going to be revisited, I wouldn't mind if the end-of-line redirector was set to " 2>&1 | cat". This would help make "make lint | less" more sane in the face of mixed stdout and stderr output. M -- o Mark Murray \_ O.\_ Warning: this .sig is umop ap!sdn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 14:34: 1 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id 03B1C37B417; Mon, 18 Mar 2002 14:33:40 -0800 (PST) Received: from blossom.cjclark.org ([12.234.91.48]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020318223339.NONG2951.rwcrmhc53.attbi.com@blossom.cjclark.org>; Mon, 18 Mar 2002 22:33:39 +0000 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.6) id g2IMXcP60802; Mon, 18 Mar 2002 14:33:38 -0800 (PST) (envelope-from cjc) Date: Mon, 18 Mar 2002 14:33:38 -0800 From: "Crist J. Clark" To: "Jacques A. Vidrine" , Shin-ichi YOSHIMOTO , Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/chpass chpass.c pw_copy.c pw_copy.h Message-ID: <20020318143338.B60554@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <200203180222.g2I2Ms309830@freefall.freebsd.org> <20020318161250.1c35600c.yosimoto@waishi.jp> <20020318170348.671ec4b5.yosimoto@waishi.jp> <20020318001922.Z29705@blossom.cjclark.org> <20020318212349.GA29060@madman.nectar.cc> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020318212349.GA29060@madman.nectar.cc>; from nectar@FreeBSD.org on Mon, Mar 18, 2002 at 03:23:49PM -0600 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Mar 18, 2002 at 03:23:49PM -0600, Jacques A. Vidrine wrote: > On Mon, Mar 18, 2002 at 12:19:22AM -0800, Crist J. Clark wrote: > > chpass(8) is very, very naughty and uses __pw_scan(). > > The underscores are a warning that it is being naughty. In this case, > I was not ready to commit to an API for `pw_scan', so when it needed > to be moved to libc, I hid it. I meant to revisit the issue one day, > but so it goes. > > Do not rename it unless you intend for it to be a public API that will > be maintained across releases. And don't forget to document it in > that case. Something else we can borrow from NetBSD. But I'm not sure if I like the way pw_scan() is split across libc and libutil with them. > [snip] > > This isn't an issue in -STABLE, where pw_scan() is exposed to the > > world properly in libc. > > No, it's not. There is no pw_scan in -STABLE's libc. Whoops. You're right, chpass(8) is getting it out of pwd_mkdb(8) in -STABLE. I probably was confusing our -STABLE implementation with NetBSD 1.5.x. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 14:39:28 2002 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 9FA0A37B405; Mon, 18 Mar 2002 14:39:21 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g2IMdKi64642; Mon, 18 Mar 2002 15:39:20 -0700 (MST) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id g2IMdGL96585; Mon, 18 Mar 2002 15:39:16 -0700 (MST) (envelope-from imp@harmony.village.org) Message-Id: <200203182239.g2IMdGL96585@harmony.village.org> To: obrien@FreeBSD.org Subject: Re: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_fat.c msdosfs_vnops.c ... Cc: Kirk McKusick , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-reply-to: Your message of "Mon, 18 Mar 2002 13:46:28 PST." <20020318134628.A15033@dragon.nuxi.com> References: <20020318134628.A15033@dragon.nuxi.com> <200203151849.g2FInlW38440@freefall.freebsd.org> Date: Mon, 18 Mar 2002 15:39:16 -0700 From: Warner Losh Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message <20020318134628.A15033@dragon.nuxi.com> "David O'Brien" writes: : On Fri, Mar 15, 2002 at 10:49:47AM -0800, Kirk McKusick wrote: : > mckusick 2002/03/15 10:49:47 PST : ... : > Log: : > Introduce the new 64-bit size disk block, daddr64_t. Change : > the bio and buffer structures to have daddr64_t bio_pblkno, : > b_blkno, and b_lblkno fields which allows access to disks : : Objects of type daddr64_t need to be cast to `(long long)' before : printing them out with %lld. Failure to do so adds build warnings on : 64-bit hosts. And on non-64-bit hosts. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 14:40:38 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 614EA37B404; Mon, 18 Mar 2002 14:40:33 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IMeXP54344; Mon, 18 Mar 2002 14:40:33 -0800 (PST) (envelope-from alfred) Message-Id: <200203182240.g2IMeXP54344@freefall.freebsd.org> From: Alfred Perlstein Date: Mon, 18 Mar 2002 14:40:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/contrib/smbfs/lib/smb ctx.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/03/18 14:40:33 PST Modified files: contrib/smbfs/lib/smb ctx.c Log: Don't segv if getpwuid() fails. PR: bin/36041 MFC After: 3 days Revision Changes Path 1.2 +14 -5 src/contrib/smbfs/lib/smb/ctx.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 14:52: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 B33E737B44B; Mon, 18 Mar 2002 14:52:43 -0800 (PST) Received: (from cy@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2IMqh856213; Mon, 18 Mar 2002 14:52:43 -0800 (PST) (envelope-from cy) Message-Id: <200203182252.g2IMqh856213@freefall.freebsd.org> From: Cy Schubert Date: Mon, 18 Mar 2002 14:52:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/security/krb5 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 cy 2002/03/18 14:52:43 PST Modified files: security/krb5 Makefile distinfo Log: MIT currently distributes their KRB5 distribution in a tarball (.tar) that contains the distribution itself, in a tar.gz file, and a signature certificate, contained in a detached .tar.gz.asc file. Prior to this patch, users installing MIT KRB5 had to extract the tarball into /usr/ports/distfiles, then proceed with the installation. This caused confusion among those installing the port. This patch addresses the problem by extracting the .tar.gz file from the tarball, then unpacking the .tar.gz file before continuing with the build. Revision Changes Path 1.33 +7 -0 ports/security/krb5/Makefile 1.10 +1 -1 ports/security/krb5/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 15: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 660A737B429; Mon, 18 Mar 2002 15:10:09 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2INA9F62906; Mon, 18 Mar 2002 15:10:09 -0800 (PST) (envelope-from petef) Message-Id: <200203182310.g2INA9F62906@freefall.freebsd.org> From: Pete Fritchman Date: Mon, 18 Mar 2002 15:10:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/sysutils Makefile ports/sysutils/flasher Makefile distinfo pkg-comment pkg-descr pkg-plist ports/sysutils/flasher/files patch-Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/03/18 15:10:09 PST Modified files: sysutils Makefile Added files: sysutils/flasher Makefile distinfo pkg-comment pkg-descr pkg-plist sysutils/flasher/files patch-Makefile Log: Add flasher 1.2, monitors log or mail files for writes, and flashes a keyboard LED. PR: 35768 Submitted by: Murray Nesbitt Revision Changes Path 1.245 +1 -0 ports/sysutils/Makefile 1.1 +18 -0 ports/sysutils/flasher/Makefile (new) 1.1 +1 -0 ports/sysutils/flasher/distinfo (new) 1.1 +16 -0 ports/sysutils/flasher/files/patch-Makefile (new) 1.1 +1 -0 ports/sysutils/flasher/pkg-comment (new) 1.1 +24 -0 ports/sysutils/flasher/pkg-descr (new) 1.1 +1 -0 ports/sysutils/flasher/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 15:10:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DA64937B42B; Mon, 18 Mar 2002 15:10:13 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2INADR62955; Mon, 18 Mar 2002 15:10:13 -0800 (PST) (envelope-from petef) Message-Id: <200203182310.g2INADR62955@freefall.freebsd.org> From: Pete Fritchman Date: Mon, 18 Mar 2002 15:10:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/03/18 15:10:13 PST Modified files: . modules Log: flasher --> ports/sysutils/flasher Revision Changes Path 1.4863 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 15:11:40 2002 Delivered-To: cvs-all@freebsd.org Received: from newsguy.com (smtp.newsguy.com [209.155.56.71]) by hub.freebsd.org (Postfix) with ESMTP id 789EE37B404; Mon, 18 Mar 2002 15:11:29 -0800 (PST) Received: from newsguy.com (cbace202219.dial.telebrasilia.net.br [200.181.82.219]) by newsguy.com (8.9.1a/8.9.1) with ESMTP id PAA59114; Mon, 18 Mar 2002 15:11:18 -0800 (PST) Message-ID: <3C96742F.12AFE590@newsguy.com> Date: Mon, 18 Mar 2002 20:11:43 -0300 From: "Daniel C. Sobral" X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en,pt-BR,pt,en-GB,en-US,ja MIME-Version: 1.0 To: Will Andrews Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11/XFree86-4 Makefile References: <200203181643.g2IGhnW66937@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Will Andrews wrote: > > will 2002/03/18 08:43:49 PST > > Modified files: > x11/XFree86-4 Makefile > Log: > Add Cyrillic fonts & bump PORTREVISION. While not that many users would > use them, they're fairly small and were part of the previous generation > of XFree86 ports. I must be living in the twilight zone. XFree86-4 is totally broken for me and a friend of mine, but I see no thread about it here! XFree clients is broken during install for lack of a -LGLU (well, the library is missing, not the option), and xfree fonts is broken because some utility is missing, but I'm guessing the latter would be solved if the installation of clients finished (portupgrade was kind enough to install the clients even though there was an error and to restore the erased previous xfree even though it failed to upgrade). And, without X, I'm without xchat, so I can't even complain to people directly... :-) -- Daniel C. Sobral (8-DCS) dcs@newsguy.com dcs@freebsd.org capo@international.bsdconspiracy.net "They did what they could to help her, using human skills -- and then, when that failed, left it in the hands of the gods. In this case," he bowed slightly, "myself. Like it or not," the demon continued, "that is my status in this region. Take it up with my priests if it bothers you." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 15:15: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from tao.org.uk (genius.tao.org.uk [212.135.162.51]) by hub.freebsd.org (Postfix) with ESMTP id 16D8F37B404; Mon, 18 Mar 2002 15:14:51 -0800 (PST) Received: by tao.org.uk (Postfix, from userid 100) id A571D1E9; Mon, 18 Mar 2002 23:13:54 +0000 (GMT) Date: Mon, 18 Mar 2002 23:13:54 +0000 From: Josef Karthauser To: "Daniel C. Sobral" Cc: Will Andrews , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11/XFree86-4 Makefile Message-ID: <20020318231354.GA17607@genius.tao.org.uk> References: <200203181643.g2IGhnW66937@freefall.freebsd.org> <3C96742F.12AFE590@newsguy.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="fUYQa+Pmc3FrFX/N" Content-Disposition: inline In-Reply-To: <3C96742F.12AFE590@newsguy.com> User-Agent: Mutt/1.3.28i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --fUYQa+Pmc3FrFX/N Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 18, 2002 at 08:11:43PM -0300, Daniel C. Sobral wrote: > Will Andrews wrote: > >=20 > > will 2002/03/18 08:43:49 PST > >=20 > > Modified files: > > x11/XFree86-4 Makefile > > Log: > > Add Cyrillic fonts & bump PORTREVISION. While not that many users wo= uld > > use them, they're fairly small and were part of the previous generati= on > > of XFree86 ports. >=20 > I must be living in the twilight zone. XFree86-4 is totally broken for > me and a friend of mine, but I see no thread about it here! XFree > clients is broken during install for lack of a -LGLU (well, the library Yes, I get this too (just this second). Strangly enough I appear to have some libGLU's installed though, unless portupgrade removed them during /usr/X11R6/lib/libGLU.a /usr/X11R6/lib/libGLU.so@ -> libGLU.so.1 /usr/X11R6/lib/libGLU.so.1* /usr/X11R6/lib/libMesaGLU.so@ -> /usr/X11R6/lib/libGLU.so Joe --fUYQa+Pmc3FrFX/N 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 iEYEARECAAYFAjyWdLIACgkQXVIcjOaxUBbHXACfeFKMfIaJ0YJ5JrXEcIyOkEUE h2kAn1q9oDONaM0uAMGOsvUb1XbYuEgK =FKDL -----END PGP SIGNATURE----- --fUYQa+Pmc3FrFX/N-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 15:24: 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 BC7CF37B417; Mon, 18 Mar 2002 15:24:00 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2INO0r69436; Mon, 18 Mar 2002 15:24:00 -0800 (PST) (envelope-from bde) Message-Id: <200203182324.g2INO0r69436@freefall.freebsd.org> From: Bruce Evans Date: Mon, 18 Mar 2002 15:24:00 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/amr amr.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bde 2002/03/18 15:24:00 PST Modified files: sys/dev/amr amr.c Log: Fixed printf format errors in previous commit. %llu is no more suitable than %u for printing signed 64-bit types. It fails on different machines, and has the wrong signdness. Fixed old printf format error on the same line. %u is not suitable for printing 32-bit types on all machines. Revision Changes Path 1.31 +3 -2 src/sys/dev/amr/amr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 15:26: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 49B5B37B419; Mon, 18 Mar 2002 15:26:13 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2INQDb71549; Mon, 18 Mar 2002 15:26:13 -0800 (PST) (envelope-from des) Message-Id: <200203182326.g2INQDb71549@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 18 Mar 2002 15:26:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/xinstall xinstall.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/18 15:26:13 PST Modified files: usr.bin/xinstall xinstall.c Log: Bump the cutoff mark for comparing files from 8 MB to 16 MB. Revision Changes Path 1.48 +3 -1 src/usr.bin/xinstall/xinstall.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 15:38:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C1F1B37B402; Mon, 18 Mar 2002 15:38:16 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2INcGk77293; Mon, 18 Mar 2002 15:38:16 -0800 (PST) (envelope-from bde) Message-Id: <200203182338.g2INcGk77293@freefall.freebsd.org> From: Bruce Evans Date: Mon, 18 Mar 2002 15:38:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/mlx mlx.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bde 2002/03/18 15:38:16 PST Modified files: sys/dev/mlx mlx.c Log: Fixed printf format errors in previous commit. %llu is no more suitable than %u for printing signed 64-bit types. It fails on different machines, and has the wrong signdness. Fixed old printf format error on the same line. %u is not suitable for printing 32-bit types on all machines. "Fixed" format printf error in previous commit. This file is not formatted in KNF. Partially restore bug for bug compatibility: indent the printf args too much, but don't format them for 160-column terminals. Revision Changes Path 1.33 +4 -2 src/sys/dev/mlx/mlx.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 15:44: 3 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 F224037B400; Mon, 18 Mar 2002 15:43:53 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 16BB266C39; Mon, 18 Mar 2002 15:43:53 -0800 (PST) Date: Mon, 18 Mar 2002 15:43:52 -0800 From: Kris Kennaway To: Josef Karthauser Cc: "Daniel C. Sobral" , Will Andrews , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11/XFree86-4 Makefile Message-ID: <20020318154352.C71020@xor.obsecurity.org> References: <200203181643.g2IGhnW66937@freefall.freebsd.org> <3C96742F.12AFE590@newsguy.com> <20020318231354.GA17607@genius.tao.org.uk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="Pk6IbRAofICFmK5e" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20020318231354.GA17607@genius.tao.org.uk>; from joe@tao.org.uk on Mon, Mar 18, 2002 at 11:13:54PM +0000 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --Pk6IbRAofICFmK5e Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 18, 2002 at 11:13:54PM +0000, Josef Karthauser wrote: > On Mon, Mar 18, 2002 at 08:11:43PM -0300, Daniel C. Sobral wrote: > > Will Andrews wrote: > > >=20 > > > will 2002/03/18 08:43:49 PST > > >=20 > > > Modified files: > > > x11/XFree86-4 Makefile > > > Log: > > > Add Cyrillic fonts & bump PORTREVISION. While not that many users = would > > > use them, they're fairly small and were part of the previous genera= tion > > > of XFree86 ports. > >=20 > > I must be living in the twilight zone. XFree86-4 is totally broken for > > me and a friend of mine, but I see no thread about it here! XFree > > clients is broken during install for lack of a -LGLU (well, the library >=20 > Yes, I get this too (just this second). Strangly enough I appear to > have some libGLU's installed though, unless portupgrade removed them duri= ng >=20 > /usr/X11R6/lib/libGLU.a > /usr/X11R6/lib/libGLU.so@ -> libGLU.so.1 > /usr/X11R6/lib/libGLU.so.1* > /usr/X11R6/lib/libMesaGLU.so@ -> /usr/X11R6/lib/libGLU.so Knu and Will have worked out that this is caused by portupgrade's default behaviour of preserving shared libraries when deinstalling a package. portupgrade deinstalls XFree86-4 during the rebuild process, but leaves the shlibs in place, and they're detected by the ports collection. Using the '-u' flag to portupgrade should fix this. Kris --Pk6IbRAofICFmK5e 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 iD8DBQE8lnu4Wry0BWjoQKURAqDuAKC3w2MMc/lPE/ziOK+v+0kv4ETj6QCfWpeN /LEbxNNNBpsMYzQ6HfjIfO8= =oAon -----END PGP SIGNATURE----- --Pk6IbRAofICFmK5e-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 15:56: 8 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 00B2837B400; Mon, 18 Mar 2002 15:56:05 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2INu4r80682; Mon, 18 Mar 2002 15:56:04 -0800 (PST) (envelope-from des) Message-Id: <200203182356.g2INu4r80682@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 18 Mar 2002 15:56:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/send-pr categories X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/18 15:56:04 PST Modified files: gnu/usr.bin/send-pr categories Log: Add an ia64 category; we'll need it sooner or later. Also add a commented- out entry for powerpc; I'll enable it when the powerpc port gets its own mailing list. Revision Changes Path 1.9 +3 -0 src/gnu/usr.bin/send-pr/categories To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16: 5:39 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 67FCC37B419 for ; Mon, 18 Mar 2002 16:05:26 -0800 (PST) Received: (qmail 42488 invoked by uid 3130); 19 Mar 2002 00:02:25 -0000 Date: Mon, 18 Mar 2002 19:02:25 -0500 From: Garrett Rooney To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/send-pr categories Message-ID: <20020319000224.GA22582@electricjellyfish.net> References: <200203182356.g2INu4r80682@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203182356.g2INu4r80682@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 Mon, Mar 18, 2002 at 03:56:04PM -0800, Dag-Erling Smorgrav wrote: > des 2002/03/18 15:56:04 PST > > Modified files: > gnu/usr.bin/send-pr categories > Log: > Add an ia64 category; we'll need it sooner or later. Also add a commented- > out entry for powerpc; I'll enable it when the powerpc port gets its own > mailing list. the powerpc port has a mailing list (freebsd-ppc@freebsd.org), it just doesn't have all that much traffic (well, other than the occasional 'subscribe me' message that should have gone to majordomo@freebsd.org). or did you mean a more specific list for bug reports or something? -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 Mon Mar 18 16:19: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 BE72137B402; Mon, 18 Mar 2002 16:19:53 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J0JrY11011; Mon, 18 Mar 2002 16:19:53 -0800 (PST) (envelope-from bmah) Message-Id: <200203190019.g2J0JrY11011@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 18 Mar 2002 16:19:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/03/18 16:19:53 PST Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release note: SA-02:18. Revision Changes Path 1.303 +12 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:20:27 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 D4C4337B427; Mon, 18 Mar 2002 16:20:09 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id E04C95346; Tue, 19 Mar 2002 01:20:07 +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: Garrett Rooney Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/send-pr categories References: <200203182356.g2INu4r80682@freefall.freebsd.org> <20020319000224.GA22582@electricjellyfish.net> From: Dag-Erling Smorgrav Date: 19 Mar 2002 01:20:07 +0100 In-Reply-To: <20020319000224.GA22582@electricjellyfish.net> Message-ID: Lines: 11 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Garrett Rooney writes: > the powerpc port has a mailing list (freebsd-ppc@freebsd.org) Ah, I was looking for "freebsd-powerpc" since the platform is actually called powerpc. I think it is a bad idea to use two different names for it; we should either rename the mailing list to freebsd-powerpc or rename sys/powerpc to sys/ppc. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:22: 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 373A437B402; Mon, 18 Mar 2002 16:22:03 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J0M3Z13376; Mon, 18 Mar 2002 16:22:03 -0800 (PST) (envelope-from des) Message-Id: <200203190022.g2J0M3Z13376@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 18 Mar 2002 16:22:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/send-pr categories X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/18 16:22:03 PST Modified files: gnu/usr.bin/send-pr categories Log: Add a "standards" category at mike@'s request. Revision Changes Path 1.10 +1 -0 src/gnu/usr.bin/send-pr/categories To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:25: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 91C2B37B402; Mon, 18 Mar 2002 16:25:02 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J0P2Q16520; Mon, 18 Mar 2002 16:25:02 -0800 (PST) (envelope-from bmah) Message-Id: <200203190025.g2J0P2Q16520@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 18 Mar 2002 16:25:02 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/en_US.ISO8859-1/errata article.sgml src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/03/18 16:25:02 PST Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/errata article.sgml release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: SA-02:18. Revision Changes Path 1.1.2.59 +11 -1 src/release/doc/en_US.ISO8859-1/errata/article.sgml 1.22.2.210 +11 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:28:28 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4352237B402; Mon, 18 Mar 2002 16:28:25 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J0SPs20123; Mon, 18 Mar 2002 16:28:25 -0800 (PST) (envelope-from des) Message-Id: <200203190028.g2J0SPs20123@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 18 Mar 2002 16:28:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/send-pr categories X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/18 16:28:25 PST Modified files: gnu/usr.bin/send-pr categories Log: Uncomment the powerpc category. It maps to the freebsd-ppc mailing list. Revision Changes Path 1.11 +1 -1 src/gnu/usr.bin/send-pr/categories To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:29:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C77C037B419; Mon, 18 Mar 2002 16:29:10 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J0TAA20929; Mon, 18 Mar 2002 16:29:10 -0800 (PST) (envelope-from des) Message-Id: <200203190029.g2J0TAA20929@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 18 Mar 2002 16:29:10 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/send-pr categories X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/18 16:29:10 PST Modified files: (Branch: RELENG_4) gnu/usr.bin/send-pr categories Log: MFC: add ia64, powerpc and standards Revision Changes Path 1.8.2.1 +4 -0 src/gnu/usr.bin/send-pr/categories To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:29:27 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.jeamland.net (rafe.jeamland.net [203.18.243.114]) by hub.freebsd.org (Postfix) with ESMTP id 3F84637B41A; Mon, 18 Mar 2002 16:29:14 -0800 (PST) Received: from [192.168.9.176] (rtr1.snc.schools.net.au [203.2.135.22]) by mail.jeamland.net (Postfix) with ESMTP id 39CD870601; Tue, 19 Mar 2002 11:29:04 +1100 (EST) Subject: Re: cvs commit: src/gnu/usr.bin/send-pr categories From: Benno Rice To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: References: <200203182356.g2INu4r80682@freefall.freebsd.org> <20020319000224.GA22582@electricjellyfish.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-6sX7x2IeO0gn7eLbzceo" X-Mailer: Evolution/1.0.2 Date: 19 Mar 2002 12:29:02 +1200 Message-Id: <1016497744.359.1.camel@ratchet.jeamland.net> Mime-Version: 1.0 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-6sX7x2IeO0gn7eLbzceo Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2002-03-19 at 12:20, Dag-Erling Smorgrav wrote: > Garrett Rooney writes: > > the powerpc port has a mailing list (freebsd-ppc@freebsd.org) >=20 > Ah, I was looking for "freebsd-powerpc" since the platform is actually > called powerpc. I think it is a bad idea to use two different names > for it; we should either rename the mailing list to freebsd-powerpc or > rename sys/powerpc to sys/ppc. I'd prefer to change the mailing list name if anything. It's probably not too much of a big deal given the low traffic levels at the moment. --=20 Benno Rice benno@FreeBSD.org --=-6sX7x2IeO0gn7eLbzceo 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 iEYEABECAAYFAjyWhk4ACgkQXjRwWofFmQm20ACghrCGBZlqgiCllOkq58tZZU0d LzcAoImfX3UVrpIUQSc+FxyvXfJFq+gE =rLTN -----END PGP SIGNATURE----- --=-6sX7x2IeO0gn7eLbzceo-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:33: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6548A37B402; Mon, 18 Mar 2002 16:32:59 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J0WxW24650; Mon, 18 Mar 2002 16:32:59 -0800 (PST) (envelope-from kuriyama) Message-Id: <200203190032.g2J0WxW24650@freefall.freebsd.org> From: Jun Kuriyama Date: Mon, 18 Mar 2002 16:32:59 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/mail/p5-MIME-Tools 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 kuriyama 2002/03/18 16:32:58 PST Modified files: mail/p5-MIME-Tools Makefile distinfo Log: Upgrade to 5.411a. PR: ports/36051 Reported by: Emil Sit Revision Changes Path 1.18 +3 -2 ports/mail/p5-MIME-Tools/Makefile 1.9 +1 -1 ports/mail/p5-MIME-Tools/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:33: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 91D6137B405; Mon, 18 Mar 2002 16:33:35 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J0XZX25327; Mon, 18 Mar 2002 16:33:35 -0800 (PST) (envelope-from des) Message-Id: <200203190033.g2J0XZX25327@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 18 Mar 2002 16:33:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/send-pr send-pr.sh X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/18 16:33:35 PST Modified files: (Branch: RELENG_4) gnu/usr.bin/send-pr send-pr.sh Log: MFC: fix attachment bug. PR: 34831 Revision Changes Path 1.13.2.11 +1 -0 src/gnu/usr.bin/send-pr/send-pr.sh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:34:32 2002 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id B0F1737B402; Mon, 18 Mar 2002 16:34:21 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2J0YLlv017286; Mon, 18 Mar 2002 16:34:21 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2J0X5JP017268; Mon, 18 Mar 2002 16:33:05 -0800 (PST) Date: Mon, 18 Mar 2002 16:33:05 -0800 From: "David O'Brien" To: Murray Stokely Cc: hiten@uk.FreeBSD.org, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man7 build.7 Message-ID: <20020318163305.D15965@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200203171501.g2HF1TH70058@freefall.freebsd.org> <20020317154853.84690.qmail@web21104.mail.yahoo.com> <20020317231440.GC19657@freebsdmall.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020317231440.GC19657@freebsdmall.com>; from murray@FreeBSD.org on Sun, Mar 17, 2002 at 03:14:40PM -0800 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Mar 17, 2002 at 03:14:40PM -0800, Murray Stokely wrote: > I think it is silly that so much of our every day vocabulary is not > recognized by ispell. I would like to maintain a local dictionary of > technical terms somewhere in src/ so that it can be used to > automatically check src, doc, and www for spelling-errors. Please do. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:37:53 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.22.40]) by hub.freebsd.org (Postfix) with ESMTP id 53C8B37B400; Mon, 18 Mar 2002 16:37:45 -0800 (PST) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.12.1/8.12.1) with ESMTP id g2J0bhC8033084; Mon, 18 Mar 2002 19:37:43 -0500 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <20020318154352.C71020@xor.obsecurity.org> References: <200203181643.g2IGhnW66937@freefall.freebsd.org> <3C96742F.12AFE590@newsguy.com> <20020318231354.GA17607@genius.tao.org.uk> <20020318154352.C71020@xor.obsecurity.org> Date: Mon, 18 Mar 2002 19:37:42 -0500 To: Kris Kennaway , Josef Karthauser From: Garance A Drosihn Subject: Re: cvs commit: ports/x11/XFree86-4 Makefile Cc: "Daniel C. Sobral" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Scanned-By: MIMEDefang 2.3 (www dot roaringpenguin dot com slash mimedefang) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 3:43 PM -0800 3/18/02, Kris Kennaway wrote: >Knu and Will have worked out that this is caused by >portupgrade's default behaviour of preserving shared >libraries when deinstalling a package. portupgrade >deinstalls XFree86-4 during the rebuild process, but >leaves the shlibs in place, and they're detected by >the ports collection. > >Using the '-u' flag to portupgrade should fix this. ...and Garance maintains that everyone is misunderstanding the basic problem here. I do not wish to annoy everyone who has obviously put orders of magnitude of work into this port, but I would suggest that anyone who had the original "megaport" installed might want to try: /usr/local/sbin/pkg_deinstall XFree86 /usr/local/sbin/portupgrade -n XFree86 -> say 'no' to XFree86, 'yes' to XFree86-4 /usr/local/sbin/portupgrade -n imake -> say 'no' to imake, 'yes' to imake-4 /usr/local/sbin/pkgdb -F shutdown -r now You shouldn't really have to install imake-4, but pkgdb will be confused if you do not. People who did not already have the "4.2 megaport" installed should probably just ignore me. With the above strategy I have successfully upgraded from the megaport to the metaport, with no particularly strange problems. It does mean that you effectively have no X installed from the time you do the pkg_deinstall until the portupgrade completes, and I can understand that is annoying. However, it did work fine for me, and it is a perfectly sensible strategy (except maybe the 'imake' part...). -- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:40: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2147537B402; Mon, 18 Mar 2002 16:39:56 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J0dum31531; Mon, 18 Mar 2002 16:39:56 -0800 (PST) (envelope-from des) Message-Id: <200203190039.g2J0dum31531@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 18 Mar 2002 16:39:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/send-pr categories X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/18 16:39:55 PST Modified files: gnu/usr.bin/send-pr categories Log: Rename the (not really new but so far unused) sparc category to sparc64. Revision Changes Path 1.12 +1 -1 src/gnu/usr.bin/send-pr/categories To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:41:35 2002 Delivered-To: cvs-all@freebsd.org Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id AF1B637B400; Mon, 18 Mar 2002 16:41:30 -0800 (PST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id DA00E78317; Tue, 19 Mar 2002 11:11:28 +1030 (CST) Date: Tue, 19 Mar 2002 11:11:28 +1030 From: Greg 'groggy' Lehey To: Benno Rice Cc: Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/gnu/usr.bin/send-pr categories Message-ID: <20020319111128.E91646@wantadilla.lemis.com> References: <200203182356.g2INu4r80682@freefall.freebsd.org> <20020319000224.GA22582@electricjellyfish.net> <1016497744.359.1.camel@ratchet.jeamland.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1016497744.359.1.camel@ratchet.jeamland.net> User-Agent: Mutt/1.3.23i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 6B 7B C3 8C 61 CD 54 AF 13 24 52 F8 6D A4 95 EF Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tuesday, 19 March 2002 at 12:29:02 +1200, Benno Rice wrote: > On Tue, 2002-03-19 at 12:20, Dag-Erling Smorgrav wrote: >> Garrett Rooney writes: >>> the powerpc port has a mailing list (freebsd-ppc@freebsd.org) >> >> Ah, I was looking for "freebsd-powerpc" since the platform is actually >> called powerpc. I think it is a bad idea to use two different names >> for it; we should either rename the mailing list to freebsd-powerpc or >> rename sys/powerpc to sys/ppc. > > I'd prefer to change the mailing list name if anything. And I was going to say the opposite. FWIW, it's called ppc in the Linux source tree. And since IBM persists in calling some of the processors POWER, powerpc isn't that accurate either. Greg -- See complete headers for address and phone numbers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:42: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B176437B41C; Mon, 18 Mar 2002 16:41:43 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J0fhU33478; Mon, 18 Mar 2002 16:41:43 -0800 (PST) (envelope-from des) Message-Id: <200203190041.g2J0fhU33478@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 18 Mar 2002 16:41:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/gnu/usr.bin/send-pr categories X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/18 16:41:41 PST Modified files: (Branch: RELENG_4) gnu/usr.bin/send-pr categories Log: MFC: sparc -> sparc64 Revision Changes Path 1.8.2.2 +1 -1 src/gnu/usr.bin/send-pr/categories To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:42: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AC31F37B435; Mon, 18 Mar 2002 16:41:57 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J0fvm33672; Mon, 18 Mar 2002 16:41:57 -0800 (PST) (envelope-from kuriyama) Message-Id: <200203190041.g2J0fvm33672@freefall.freebsd.org> From: Jun Kuriyama Date: Mon, 18 Mar 2002 16:41:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/ja_JP.eucJP/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG kuriyama 2002/03/18 16:41:57 PST Modified files: release/doc/ja_JP.eucJP/relnotes/common new.sgml Log: MFen. Revision Changes Path 1.53 +10 -8 src/release/doc/ja_JP.eucJP/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:44:11 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 50EF637B402; Mon, 18 Mar 2002 16:44:07 -0800 (PST) Received: (from jmallett@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J0i7C35496; Mon, 18 Mar 2002 16:44:07 -0800 (PST) (envelope-from jmallett) Message-Id: <200203190044.g2J0i7C35496@freefall.freebsd.org> From: "J. Mallett" Date: Mon, 18 Mar 2002 16:44:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/uudecode uudecode.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jmallett 2002/03/18 16:44:07 PST Modified files: usr.bin/uudecode uudecode.c Log: Make uudecode(1) use setmode(3) and getmode(3) instead of just blindly chmodding using an octal mode, as uudecode needs to handle symbolic modes as chmod and such do. Suggested by: Tim J. Robbins Also move meta-character (~ in this case) globbing to only if we are reading the filename from the encoded file, as otherwise it is the shell's job. Reviewed by: mike Approved by: mike Revision Changes Path 1.20 +50 -39 src/usr.bin/uudecode/uudecode.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:54: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 86AA237B405; Mon, 18 Mar 2002 16:53:52 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J0rqg46196; Mon, 18 Mar 2002 16:53:52 -0800 (PST) (envelope-from peter) Message-Id: <200203190053.g2J0rqg46196@freefall.freebsd.org> From: Peter Wemm Date: Mon, 18 Mar 2002 16:53:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/cgi getmsg.cgi X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/18 16:53:52 PST Modified files: en/cgi getmsg.cgi Log: Add p4 archives to the allowed-list Revision Changes Path 1.34 +3 -3 www/en/cgi/getmsg.cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 16:54:36 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.jeamland.net (rafe.jeamland.net [203.18.243.114]) by hub.freebsd.org (Postfix) with ESMTP id AD12F37B437; Mon, 18 Mar 2002 16:54:03 -0800 (PST) Received: from [192.168.9.176] (rtr1.snc.schools.net.au [203.2.135.22]) by mail.jeamland.net (Postfix) with ESMTP id 15D8F7060A; Tue, 19 Mar 2002 11:53:56 +1100 (EST) Subject: Re: cvs commit: src/gnu/usr.bin/send-pr categories From: Benno Rice To: Greg 'groggy' Lehey Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <20020319111128.E91646@wantadilla.lemis.com> References: <200203182356.g2INu4r80682@freefall.freebsd.org> <20020319000224.GA22582@electricjellyfish.net> <1016497744.359.1.camel@ratchet.jeamland.net> <20020319111128.E91646@wantadilla.lemis.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-eelbNKIq7o6U40e8IvjW" X-Mailer: Evolution/1.0.2 Date: 19 Mar 2002 12:53:54 +1200 Message-Id: <1016499236.359.6.camel@ratchet.jeamland.net> Mime-Version: 1.0 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=-eelbNKIq7o6U40e8IvjW Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2002-03-19 at 12:41, Greg 'groggy' Lehey wrote: > On Tuesday, 19 March 2002 at 12:29:02 +1200, Benno Rice wrote: > > On Tue, 2002-03-19 at 12:20, Dag-Erling Smorgrav wrote: > >> Garrett Rooney writes: > >>> the powerpc port has a mailing list (freebsd-ppc@freebsd.org) > >> > >> Ah, I was looking for "freebsd-powerpc" since the platform is actually > >> called powerpc. I think it is a bad idea to use two different names > >> for it; we should either rename the mailing list to freebsd-powerpc or > >> rename sys/powerpc to sys/ppc. > > > > I'd prefer to change the mailing list name if anything. >=20 > And I was going to say the opposite. FWIW, it's called ppc in the > Linux source tree. And since IBM persists in calling some of the > processors POWER, powerpc isn't that accurate either. PowerPC is what Motorola calls it, and that's essentially what the port's targetting right now. The IBM chips that it will support are derivatives of the Motorola architecture. I believe that IBM calls it's 4xx series PowerPC as well. The POWER chips (at least the current ones) are mostly 64-bit, IIRC.=20 These will not be supported by this port, at least in it's current form. Just because Linux uses the wrong name for the architecture doesn't mean we should. =3D) =20 --=20 Benno Rice benno@FreeBSD.org --=-eelbNKIq7o6U40e8IvjW 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 iEYEABECAAYFAjyWjCIACgkQXjRwWofFmQn/GQCfTUsTxMOC/eVAnRDo7wdKlgwz DcAAnR7LoxO2S+NTEwcywAjMF9CJH9Av =glUa -----END PGP SIGNATURE----- --=-eelbNKIq7o6U40e8IvjW-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 17: 1:55 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc51.attbi.com (rwcrmhc51.attbi.com [204.127.198.38]) by hub.freebsd.org (Postfix) with ESMTP id A896437B402; Mon, 18 Mar 2002 17:01:47 -0800 (PST) Received: from peter3.wemm.org ([12.232.27.13]) by rwcrmhc51.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020319010147.DMRS2626.rwcrmhc51.attbi.com@peter3.wemm.org>; Tue, 19 Mar 2002 01:01:47 +0000 Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id g2J11ks62028; Mon, 18 Mar 2002 17:01:46 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id B1F17390B; Mon, 18 Mar 2002 17:01:46 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/amr amr.c In-Reply-To: <200203182324.g2INO0r69436@freefall.freebsd.org> Date: Mon, 18 Mar 2002 17:01:46 -0800 From: Peter Wemm Message-Id: <20020319010146.B1F17390B@overcee.wemm.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Bruce Evans wrote: > bde 2002/03/18 15:24:00 PST > > Modified files: > sys/dev/amr amr.c > Log: > Fixed printf format errors in previous commit. %llu is no more suitable > than %u for printing signed 64-bit types. It fails on different machines, > and has the wrong signdness. Also, 64 bit types are not 'long long' on all of our 64 bit platforms. They are plain %ld o4 %lu. Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 17: 7:35 2002 Delivered-To: cvs-all@freebsd.org Received: from squall.waterspout.com (squall.waterspout.com [208.13.56.12]) by hub.freebsd.org (Postfix) with ESMTP id 1F79D37B416; Mon, 18 Mar 2002 17:07:17 -0800 (PST) Received: by squall.waterspout.com (Postfix, from userid 1050) id 198449B19; Mon, 18 Mar 2002 20:06:53 -0500 (EST) Date: Mon, 18 Mar 2002 20:06:52 -0500 From: Will Andrews To: Garance A Drosihn Cc: Kris Kennaway , Josef Karthauser , "Daniel C. Sobral" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: ports/x11/XFree86-4 Makefile Message-ID: <20020319010652.GA22998@squall.waterspout.com> Mail-Followup-To: Garance A Drosihn , Kris Kennaway , Josef Karthauser , "Daniel C. Sobral" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200203181643.g2IGhnW66937@freefall.freebsd.org> <3C96742F.12AFE590@newsguy.com> <20020318231354.GA17607@genius.tao.org.uk> <20020318154352.C71020@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.26i Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Mar 18, 2002 at 07:37:42PM -0500, Garance A Drosihn wrote: > ...and Garance maintains that everyone is misunderstanding > the basic problem here. I do not wish to annoy everyone Your message here does not indicate that you understand it either. Kris is absolutely right, people need to use -u. This applies regardless of how you had X installed before. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 17:18: 7 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id 7F50137B405; Mon, 18 Mar 2002 17:18:04 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 8B92A5346; Tue, 19 Mar 2002 02:18:02 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: obrien@FreeBSD.org Cc: Kirk McKusick , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_fat.c msdosfs_vnops.c ... References: <200203151849.g2FInlW38440@freefall.freebsd.org> <20020318134628.A15033@dragon.nuxi.com> From: Dag-Erling Smorgrav Date: 19 Mar 2002 02:18:01 +0100 In-Reply-To: <20020318134628.A15033@dragon.nuxi.com> Message-ID: Lines: 12 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "David O'Brien" writes: > Objects of type daddr64_t need to be cast to `(long long)' before > printing them out with %lld. Failure to do so adds build warnings on > 64-bit hosts. Umm, better use int64_t and PRId64, like this: printf("block no: %" PRId64 "\n", (int64_t)b->b_blkno); DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 17:18:42 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.22.40]) by hub.freebsd.org (Postfix) with ESMTP id 7707937B404; Mon, 18 Mar 2002 17:18:36 -0800 (PST) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.12.1/8.12.1) with ESMTP id g2J1IYC8137324; Mon, 18 Mar 2002 20:18:34 -0500 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <20020319010652.GA22998@squall.waterspout.com> References: <200203181643.g2IGhnW66937@freefall.freebsd.org> <3C96742F.12AFE590@newsguy.com> <20020318231354.GA17607@genius.tao.org.uk> <20020318154352.C71020@xor.obsecurity.org> <20020319010652.GA22998@squall.waterspout.com> Date: Mon, 18 Mar 2002 20:18:33 -0500 To: Will Andrews From: Garance A Drosihn Subject: Re: cvs commit: ports/x11/XFree86-4 Makefile Cc: Kris Kennaway , Josef Karthauser , "Daniel C. Sobral" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Scanned-By: MIMEDefang 2.3 (www dot roaringpenguin dot com slash mimedefang) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 8:06 PM -0500 3/18/02, Will Andrews wrote: >On Mon, Mar 18, 2002 at 07:37:42PM -0500, Garance A Drosihn wrote: >> ...and Garance maintains that everyone is misunderstanding >> the basic problem here. I do not wish to annoy everyone > >Your message here does not indicate that you understand it >either. Kris is absolutely right, people need to use -u. >This applies regardless of how you had X installed before. What about my suggestion does not work? I am curious, because it is the strategy I followed, and it is in fact working fine for me. I have noted in other messages that it would not surprise me if other strategies might also work. -- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 17:39:12 2002 Delivered-To: cvs-all@freebsd.org Received: from finntroll.newgold.net (durham-ar1-175-175.durham.dsl.gtei.net [4.40.175.175]) by hub.freebsd.org (Postfix) with SMTP id 29A9337B41B for ; Mon, 18 Mar 2002 17:38:53 -0800 (PST) Received: (qmail 5049 invoked by uid 1001); 19 Mar 2002 01:46:56 -0000 Date: Tue, 19 Mar 2002 01:46:56 +0000 From: "J. Mallett" To: "J. Mallett" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/uudecode uudecode.c Message-ID: <20020319014655.GA9503@FreeBSD.ORG> References: <200203190044.g2J0i7C35496@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="oyUTqETQ0mS9luUI" Content-Disposition: inline In-Reply-To: <200203190044.g2J0i7C35496@freefall.freebsd.org> User-Agent: Mutt/1.3.27i Organisation: FreeBSD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 18, 2002 at 04:44:07PM -0800, J. Mallett wrote: > jmallett 2002/03/18 16:44:07 PST >=20 > Modified files: > usr.bin/uudecode uudecode.c=20 > Log: > Make uudecode(1) use setmode(3) and getmode(3) instead of just blindly > chmodding using an octal mode, as uudecode needs to handle symbolic mod= es > as chmod and such do. I broke what was fixed in rev1.12, reported in PR 2882, which is uuencoding= to a file name specified with a space in its name, by including a space in the list of delimiters for strtok(3), here's a patch: Index: uudecode.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/src/usr.bin/uudecode/uudecode.c,v retrieving revision 1.20 diff -u -r1.20 uudecode.c --- uudecode.c 19 Mar 2002 00:44:07 -0000 1.20 +++ uudecode.c 19 Mar 2002 01:24:38 -0000 @@ -193,7 +193,7 @@ err(1, "strdup()"); } if (!oflag) { - outfile =3D strtok(NULL, " \r\n"); + outfile =3D strtok(NULL, "\r\n"); if (outfile =3D=3D NULL) errx(1, "no filename in input file"); } I'll commit it given mentor approval, or being told I don't need it in a bug-fixing immediate followup commit. Sorry, /j. --oyUTqETQ0mS9luUI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia iQCVAwUBPJaYfIlNtGTEXmf1AQFf9AQAqDieztLiI3Eetu4HVfFfuxZ2Ci8mRXBH omNBdUwCK5NgzVM5xme5Zkh2MBFMBiphmFtu9++O61BWv7DS1G3pTtaO6aEMepPS vAVagzRKnCGwMnkxb85P+FxyuEWlWQVWRIyYkhszvcFqXXm5icFzhVGDE43g3ENJ ToCPhbNDdSw= =lp+g -----END PGP SIGNATURE----- --oyUTqETQ0mS9luUI-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 17:39:44 2002 Delivered-To: cvs-all@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.22.40]) by hub.freebsd.org (Postfix) with ESMTP id 0E85437B41C; Mon, 18 Mar 2002 17:39:28 -0800 (PST) Received: from [128.113.24.47] (gilead.acs.rpi.edu [128.113.24.47]) by mail.rpi.edu (8.12.1/8.12.1) with ESMTP id g2J1d4C8063966; Mon, 18 Mar 2002 20:39:05 -0500 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <20020319010652.GA22998@squall.waterspout.com> References: <200203181643.g2IGhnW66937@freefall.freebsd.org> <3C96742F.12AFE590@newsguy.com> <20020318231354.GA17607@genius.tao.org.uk> <20020318154352.C71020@xor.obsecurity.org> <20020319010652.GA22998@squall.waterspout.com> Date: Mon, 18 Mar 2002 20:39:03 -0500 To: Will Andrews From: Garance A Drosihn Subject: Re: cvs commit: ports/x11/XFree86-4 Makefile Cc: Kris Kennaway , Josef Karthauser , "Daniel C. Sobral" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Scanned-By: MIMEDefang 2.3 (www dot roaringpenguin dot com slash mimedefang) Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG At 8:06 PM -0500 3/18/02, Will Andrews wrote: >On Mon, Mar 18, 2002 at 07:37:42PM -0500, Garance A Drosihn wrote: >> ...and Garance maintains that everyone is misunderstanding >> the basic problem here. I do not wish to annoy everyone > >Your message here does not indicate that you understand it >either. Kris is absolutely right, people need to use -u. >This applies regardless of how you had X installed before. Let me also note that I do understand the issue you are talking about. My position is that there is a larger issue, an issue that is totally unrelated to the libraries that you are discussing. I believe there is an issue which is specifically related to the "megaport" going into several "subports" and a meta-port. The package-handling programs can not handle that situation very well. I do understand the point that you and Kris are talking about. Let me try it this way. Why is -u an issue in this case? Why isn't this an issue which has come up in many other ports, as people have been port-upgraded one thing after another for the last several months? Is this the first time we have ever upgraded something with a library in it? I really do feel bad that I may seem to be coming across like someone who is arguing just to argue, but I am pretty sure that people are just fixing a symptom of the bigger issue. Now it may be that fixing the symptom will be good enough, but I think the bigger issue is also interesting to think about. The painful part about debating it over this port is that this port is so time-consuming to do anything with, so it isn't much fun to do many separate builds of it. -- Garance Alistair Drosehn = gad@eclipse.acs.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 17:45:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C167537B41E; Mon, 18 Mar 2002 17:45:04 -0800 (PST) Received: (from gallatin@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J1j4D09853; Mon, 18 Mar 2002 17:45:04 -0800 (PST) (envelope-from gallatin) Message-Id: <200203190145.g2J1j4D09853@freefall.freebsd.org> From: Andrew Gallatin Date: Mon, 18 Mar 2002 17:45:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/md md.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG gallatin 2002/03/18 17:45:04 PST Modified files: sys/dev/md md.c Log: Fix printf warning caused by recent changes in bio_pblkno's type. Revision Changes Path 1.55 +2 -1 src/sys/dev/md/md.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 17:49:59 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B90137B402; Mon, 18 Mar 2002 17:49:55 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J1ntp14677; Mon, 18 Mar 2002 17:49:55 -0800 (PST) (envelope-from dd) Message-Id: <200203190149.g2J1ntp14677@freefall.freebsd.org> From: Dima Dorfman Date: Mon, 18 Mar 2002 17:49:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libutil _secure_path.3 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2002/03/18 17:49:55 PST Modified files: (Branch: RELENG_4) lib/libutil _secure_path.3 Log: MFC 1.11: fix typo. Revision Changes Path 1.7.2.4 +1 -1 src/lib/libutil/_secure_path.3 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 17:51:13 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 65C4937B429; Mon, 18 Mar 2002 17:50:50 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J1oof15801; Mon, 18 Mar 2002 17:50:50 -0800 (PST) (envelope-from dd) Message-Id: <200203190150.g2J1oof15801@freefall.freebsd.org> From: Dima Dorfman Date: Mon, 18 Mar 2002 17:50:50 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man5 rc.conf.5 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-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/18 17:50:50 PST Modified files: (Branch: RELENG_4) share/man/man5 rc.conf.5 Log: MFC 1.153: {keberos,kadmind}5_enable Revision Changes Path 1.64.2.42 +18 -3 src/share/man/man5/rc.conf.5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 17:55: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 67C1A37B41B; Mon, 18 Mar 2002 17:55:49 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J1tnB21632; Mon, 18 Mar 2002 17:55:49 -0800 (PST) (envelope-from dd) Message-Id: <200203190155.g2J1tnB21632@freefall.freebsd.org> From: Dima Dorfman Date: Mon, 18 Mar 2002 17:55:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/games/fortune/datfiles fortunes fortunes-o.real fortunes2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-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/18 17:55:49 PST Modified files: (Branch: RELENG_4) games/fortune/datfiles fortunes fortunes-o.real fortunes2 Log: MFC: assorted mechanical fixes. Revision Changes Path 1.34.2.9 +2 -2 src/games/fortune/datfiles/fortunes 1.4.2.4 +1 -1 src/games/fortune/datfiles/fortunes-o.real 1.17.2.5 +1 -1 src/games/fortune/datfiles/fortunes2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 17:56:11 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A159637B41A; Mon, 18 Mar 2002 17:56:04 -0800 (PST) Received: (from cjc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J1u4F21916; Mon, 18 Mar 2002 17:56:04 -0800 (PST) (envelope-from cjc) Message-Id: <200203190156.g2J1u4F21916@freefall.freebsd.org> From: "Crist J. Clark" Date: Mon, 18 Mar 2002 17:56:04 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc.network X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG cjc 2002/03/18 17:56:04 PST Modified files: etc rc.network Log: IPFilter may need to be re-sync'ed even if we are not filtering, but only doing ipnat(8). Go back to using $ipfilter_active, but turn off $ipfilter_active when loading ipl.ko has failed. Submitted by: devet@devet.org (Arjan de Vet) MFC after: 3 days Revision Changes Path 1.130 +4 -2 src/etc/rc.network To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 17:56:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3049D37B420; Mon, 18 Mar 2002 17:56:16 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J1uGE22275; Mon, 18 Mar 2002 17:56:16 -0800 (PST) (envelope-from dd) Message-Id: <200203190156.g2J1uGE22275@freefall.freebsd.org> From: Dima Dorfman Date: Mon, 18 Mar 2002 17:56:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys mincore.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2002/03/18 17:56:16 PST Modified files: (Branch: RELENG_4) lib/libc/sys mincore.2 Log: MFC 1.19: fix typo. Revision Changes Path 1.13.2.5 +1 -1 src/lib/libc/sys/mincore.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 17:57: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 827B537B427; Mon, 18 Mar 2002 17:56:58 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J1uwQ23314; Mon, 18 Mar 2002 17:56:58 -0800 (PST) (envelope-from dd) Message-Id: <200203190156.g2J1uwQ23314@freefall.freebsd.org> From: Dima Dorfman Date: Mon, 18 Mar 2002 17:56:58 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/disklabel disklabel.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 dd 2002/03/18 17:56:58 PST Modified files: (Branch: RELENG_4) sbin/disklabel disklabel.8 Log: MFC 1.36: nuke inappropriate .Op calls. Revision Changes Path 1.15.2.17 +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 Mon Mar 18 17:57:19 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C809437B420; Mon, 18 Mar 2002 17:56:38 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J1uc122808; Mon, 18 Mar 2002 17:56:38 -0800 (PST) (envelope-from dd) Message-Id: <200203190156.g2J1uc122808@freefall.freebsd.org> From: Dima Dorfman Date: Mon, 18 Mar 2002 17:56:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sbin/mknod mknod.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 dd 2002/03/18 17:56:38 PST Modified files: (Branch: RELENG_4) sbin/mknod mknod.8 Log: MFC 1.21: minor English fixes. Revision Changes Path 1.11.2.8 +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 Mon Mar 18 17:57:49 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9089237B42A; Mon, 18 Mar 2002 17:57:27 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J1vRS24049; Mon, 18 Mar 2002 17:57:27 -0800 (PST) (envelope-from dd) Message-Id: <200203190157.g2J1vRS24049@freefall.freebsd.org> From: Dima Dorfman Date: Mon, 18 Mar 2002 17:57:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man8 crash.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 dd 2002/03/18 17:57:27 PST Modified files: (Branch: RELENG_4) share/man/man8 crash.8 Log: MFC 1.17: the chapter on kernel debugging is in the Developers' Handbook. Revision Changes Path 1.9.2.5 +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 Mon Mar 18 17:58:39 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 351A737B477; Mon, 18 Mar 2002 17:57:51 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J1vpv24657; Mon, 18 Mar 2002 17:57:51 -0800 (PST) (envelope-from dd) Message-Id: <200203190157.g2J1vpv24657@freefall.freebsd.org> From: Dima Dorfman Date: Mon, 18 Mar 2002 17:57:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/stdio scanf.3 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2002/03/18 17:57:51 PST Modified files: (Branch: RELENG_4) lib/libc/stdio scanf.3 Log: MFC 1.14: pedantry. Revision Changes Path 1.7.2.5 +3 -1 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 Mon Mar 18 17:58: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 B822E37B4AD; Mon, 18 Mar 2002 17:58:31 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J1wTV25332; Mon, 18 Mar 2002 17:58:29 -0800 (PST) (envelope-from dd) Message-Id: <200203190158.g2J1wTV25332@freefall.freebsd.org> From: Dima Dorfman Date: Mon, 18 Mar 2002 17:58:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/man/man4 Makefile X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2002/03/18 17:58:29 PST Modified files: (Branch: RELENG_4) share/man/man4 Makefile Log: MFC 1.150: scbus(4) -> scsi(4) Revision Changes Path 1.83.2.38 +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 Mon Mar 18 17:59:52 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C346D37B4B9; Mon, 18 Mar 2002 17:58:48 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J1wm925609; Mon, 18 Mar 2002 17:58:48 -0800 (PST) (envelope-from dd) Message-Id: <200203190158.g2J1wm925609@freefall.freebsd.org> From: Dima Dorfman Date: Mon, 18 Mar 2002 17:58:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libc/sys socket.2 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2002/03/18 17:58:48 PST Modified files: (Branch: RELENG_4) lib/libc/sys socket.2 Log: MFC 1.22: depreciated -> deprecated Revision Changes Path 1.12.2.10 +1 -1 src/lib/libc/sys/socket.2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 18: 0:40 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A800837B4E4; Mon, 18 Mar 2002 17:59:34 -0800 (PST) Received: (from dd@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J1xY026452; Mon, 18 Mar 2002 17:59:34 -0800 (PST) (envelope-from dd) Message-Id: <200203190159.g2J1xY026452@freefall.freebsd.org> From: Dima Dorfman Date: Mon, 18 Mar 2002 17:59:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc inetd.conf X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dd 2002/03/18 17:59:34 PST Modified files: (Branch: RELENG_4) etc inetd.conf Log: MFC 1.55: there is no `cvs' service. Revision Changes Path 1.44.2.9 +2 -2 src/etc/inetd.conf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 18: 1:33 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc54.attbi.com (rwcrmhc54.attbi.com [216.148.227.87]) by hub.freebsd.org (Postfix) with ESMTP id 0AE3137B4BE; Mon, 18 Mar 2002 18:01:21 -0800 (PST) Received: from blossom.cjclark.org ([12.234.91.48]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020319020117.HIEB1214.rwcrmhc54.attbi.com@blossom.cjclark.org>; Tue, 19 Mar 2002 02:01:17 +0000 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.6) id g2J21GQ61569; Mon, 18 Mar 2002 18:01:16 -0800 (PST) (envelope-from cjc) Date: Mon, 18 Mar 2002 18:01:16 -0800 From: "Crist J. Clark" To: Arjan de Vet Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/etc rc.network Message-ID: <20020318180116.E60554@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <200203122025.g2CKPP966458@freefall.freebsd.org> <20020318205732.GA1013@adv.devet.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020318205732.GA1013@adv.devet.org>; from devet@devet.org on Mon, Mar 18, 2002 at 09:57:32PM +0100 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Mar 18, 2002 at 09:57:32PM +0100, Arjan de Vet wrote: > In article <200203122025.g2CKPP966458@freefall.freebsd.org> you write: > > >cjc 2002/03/12 12:25:25 PST > > > > Modified files: > > etc rc.network > > Log: > > The reload of ipf(8) rules should depend on $ipfilter_enable, not > > $ipfilter_active. $ipfilter_enable is set to "NO" if modules fail to > > load, and $ipfilter_active can be "YES" when we are not using ipf(8). > > I'm not sure this is right. $ipfilter_active is true if $ipfilter_enable > or $ipnat_enable are "YES". In both cases the in-kernel interface list > should be resync'ed, not only the $ipfilter_enable case. Good point. > 'ipf -y' is not > the reloading of ipf rules btw. I know, but "resync" doesn't really sound right to me either. > A better fix might be to unset $ipfilter_active in case the ipf module > fails to load (diff relative to 1.128): [snip] There _was_ a reason I didn't do that... but I can't remember now so it cannot be that important. Fixing the potential problems with ipnat(8)-only configurations is more important. Thanks for catching this. Too bad it didn't get caught before I MFC'ed it to -STABLE. :( -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 18: 5: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 EFD0337B41A; Mon, 18 Mar 2002 18:05:27 -0800 (PST) Received: (from jmallett@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J25Ru35647; Mon, 18 Mar 2002 18:05:27 -0800 (PST) (envelope-from jmallett) Message-Id: <200203190205.g2J25Ru35647@freefall.freebsd.org> From: "J. Mallett" Date: Mon, 18 Mar 2002 18:05:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/uudecode uudecode.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jmallett 2002/03/18 18:05:27 PST Modified files: usr.bin/uudecode uudecode.c Log: Fix handling of filenames with spaces in them in the input file to uudecode(1), as this behaviour was explicitly added in revision 1.12 as the result of PR 2882. Remove space (' ') from the delimiter characters handed to strtok(3). Reviewed by: mike Approved by: mike Pointy hat to: me Revision Changes Path 1.21 +1 -1 src/usr.bin/uudecode/uudecode.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 18:18:50 2002 Delivered-To: cvs-all@freebsd.org Received: from finntroll.newgold.net (durham-ar1-175-175.durham.dsl.gtei.net [4.40.175.175]) by hub.freebsd.org (Postfix) with SMTP id 4355A37B416 for ; Mon, 18 Mar 2002 18:18:41 -0800 (PST) Received: (qmail 20454 invoked by uid 1001); 19 Mar 2002 02:26:45 -0000 Date: Tue, 19 Mar 2002 02:26:44 +0000 From: "J. Mallett" To: "J. Mallett" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/uudecode uudecode.c Message-ID: <20020319022644.GA12281@FreeBSD.ORG> References: <200203190205.g2J25Ru35647@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="AqsLC8rIMeq19msA" Content-Disposition: inline In-Reply-To: <200203190205.g2J25Ru35647@freefall.freebsd.org> User-Agent: Mutt/1.3.27i Organisation: FreeBSD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --AqsLC8rIMeq19msA Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 18, 2002 at 06:05:27PM -0800, J. Mallett wrote: > jmallett 2002/03/18 18:05:27 PST >=20 > Modified files: > usr.bin/uudecode uudecode.c=20 > Log: > Fix handling of filenames with spaces in them in the input file to > uudecode(1), as this behaviour was explicitly added in revision 1.12 as > the result of PR 2882. Remove space (' ') from the delimiter characters PR 4882 even. --AqsLC8rIMeq19msA Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia iQCVAwUBPJahzYlNtGTEXmf1AQFftAP/XpmWghVBRQ0iVjfcR3xx4n4E40872VWw hCA2N7q43WN1SqSSQNNvJxRlSs2pnm6gWTGAT1iK97XYAMOUaxpCim5DImuSrVBc 8PbBAckiMBiNiytkhoavczfRAfZ86d7/vD1nNc1AXZhz9ZkMnzPnFRXSw1ZwAKn7 cBnTgwypDi0= =bQqw -----END PGP SIGNATURE----- --AqsLC8rIMeq19msA-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 18:35:54 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 5226437B400; Mon, 18 Mar 2002 18:35:51 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 80F7D5346; Tue, 19 Mar 2002 03:35:49 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: "J. Mallett" Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/uudecode uudecode.c References: <200203190205.g2J25Ru35647@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: 19 Mar 2002 03:35:48 +0100 In-Reply-To: <200203190205.g2J25Ru35647@freefall.freebsd.org> Message-ID: Lines: 9 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "J. Mallett" writes: > Reviewed by: mike > Approved by: mike You don't need both when it's the same person. DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 18: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 944A737B404; Mon, 18 Mar 2002 18:45:38 -0800 (PST) Received: (from pat@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J2jcZ80846; Mon, 18 Mar 2002 18:45:38 -0800 (PST) (envelope-from pat) Message-Id: <200203190245.g2J2jcZ80846@freefall.freebsd.org> From: Patrick Li Date: Mon, 18 Mar 2002 18:45:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/irc/blackened 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/18 18:45:38 PST Modified files: irc/blackened Makefile distinfo Log: Update to 1.8.1 PR: 36052 Submitted by: maintainer Revision Changes Path 1.13 +1 -5 ports/irc/blackened/Makefile 1.5 +1 -1 ports/irc/blackened/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 18:52:19 2002 Delivered-To: cvs-all@freebsd.org Received: from espresso.q9media.com (espresso.q9media.com [216.254.138.122]) by hub.freebsd.org (Postfix) with ESMTP id 4860A37B402; Mon, 18 Mar 2002 18:52:05 -0800 (PST) Received: (from mike@localhost) by espresso.q9media.com (8.11.6/8.11.6) id g2J2kGK78387; Mon, 18 Mar 2002 21:46:16 -0500 (EST) (envelope-from mike) Date: Mon, 18 Mar 2002 21:46:16 -0500 From: Mike Barcroft To: Dag-Erling Smorgrav Cc: "J. Mallett" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/uudecode uudecode.c Message-ID: <20020318214616.K56122@espresso.q9media.com> References: <200203190205.g2J25Ru35647@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: ; from des@ofug.org on Tue, Mar 19, 2002 at 03:35:48AM +0100 Organization: The FreeBSD Project Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dag-Erling Smorgrav writes: > "J. Mallett" writes: > > Reviewed by: mike > > Approved by: mike > > You don't need both when it's the same person. Have you changed your mind since July? : Message-ID: : : "David O'Brien" writes: : > On Fri, Jul 20, 2001 at 12:05:55AM +0200, Dag-Erling Smorgrav wrote: : > > Mike Barcroft writes: : > > > Approved by: des : > > also reviewed by same. : > The assumption is if you approved something, you reviewed it. : : Not necessarily - I sometimes approve commits to code I maintain on : the basis of trust in the requesting committer's abilities. In this : particular case, however, Mike is my mentee, so I review every patch : he commits to pieces before I approve it. Best regards, Mike Barcroft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 18:56:48 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id D0B7C37B402; Mon, 18 Mar 2002 18:56:44 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 990155346; Tue, 19 Mar 2002 03:56:42 +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: Mike Barcroft Cc: "J. Mallett" , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/uudecode uudecode.c References: <200203190205.g2J25Ru35647@freefall.freebsd.org> <20020318214616.K56122@espresso.q9media.com> From: Dag-Erling Smorgrav Date: 19 Mar 2002 03:56:41 +0100 In-Reply-To: <20020318214616.K56122@espresso.q9media.com> 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 Mike Barcroft writes: > Dag-Erling Smorgrav writes: > > You don't need both when it's the same person. > Have you changed your mind since July? Aren't I allowed to? :) DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 19: 1: 0 2002 Delivered-To: cvs-all@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 643DC37B400; Mon, 18 Mar 2002 19:00:51 -0800 (PST) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id g2J30mi66124; Mon, 18 Mar 2002 20:00:49 -0700 (MST) (envelope-from imp@village.org) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.11.6/8.11.6) with ESMTP id g2J30lL98351; Mon, 18 Mar 2002 20:00:47 -0700 (MST) (envelope-from imp@village.org) Date: Mon, 18 Mar 2002 20:00:46 -0700 (MST) Message-Id: <20020318.200046.61902984.imp@village.org> To: des@ofug.org Cc: obrien@FreeBSD.org, mckusick@mckusick.com, cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_fat.c msdosfs_vnops.c ... From: "M. Warner Losh" In-Reply-To: References: <200203151849.g2FInlW38440@freefall.freebsd.org> <20020318134628.A15033@dragon.nuxi.com> X-Mailer: Mew version 2.1 on Emacs 21.1 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG In message: Dag-Erling Smorgrav writes: : "David O'Brien" writes: : > Objects of type daddr64_t need to be cast to `(long long)' before : > printing them out with %lld. Failure to do so adds build warnings on : > 64-bit hosts. : : Umm, better use int64_t and PRId64, like this: : : printf("block no: %" PRId64 "\n", (int64_t)b->b_blkno); IMHO, it is better to nail your to a tree in winter than to start using PRI*. I find them an unspeakable evil that are best forgotten as a mistake as foul as "noalias". IMHO, naturally :-) Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 19:17: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id F105C37B404; Mon, 18 Mar 2002 19:16:56 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2J3Gvlv018775; Mon, 18 Mar 2002 19:16:57 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2J3Fgbo018772; Mon, 18 Mar 2002 19:15:42 -0800 (PST) Date: Mon, 18 Mar 2002 19:15:42 -0800 From: "David O'Brien" To: Dag-Erling Smorgrav Cc: Kirk McKusick , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_fat.c msdosfs_vnops.c ... Message-ID: <20020318191542.A18453@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200203151849.g2FInlW38440@freefall.freebsd.org> <20020318134628.A15033@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Tue, Mar 19, 2002 at 02:18:01AM +0100 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Mar 19, 2002 at 02:18:01AM +0100, Dag-Erling Smorgrav wrote: > "David O'Brien" writes: > > Objects of type daddr64_t need to be cast to `(long long)' before > > printing them out with %lld. Failure to do so adds build warnings on > > 64-bit hosts. > > Umm, better use int64_t and PRId64, like this: > > printf("block no: %" PRId64 "\n", (int64_t)b->b_blkno); Are you sure one can do this in the kernel? PRId64 was not found for me when I tried. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 19:26: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 8665337B400; Mon, 18 Mar 2002 19:26:27 -0800 (PST) Received: (from nobutaka@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J3QR031537; Mon, 18 Mar 2002 19:26:27 -0800 (PST) (envelope-from nobutaka) Message-Id: <200203190326.g2J3QR031537@freefall.freebsd.org> From: MANTANI Nobutaka Date: Mon, 18 Mar 2002 19:26:27 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/emacs21 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 nobutaka 2002/03/18 19:26:27 PST Modified files: editors/emacs21 Makefile distinfo Log: Update to 21.2. Revision Changes Path 1.12 +3 -4 ports/editors/emacs21/Makefile 1.5 +2 -2 ports/editors/emacs21/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 19:27:55 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EE41D37B419; Mon, 18 Mar 2002 19:27:38 -0800 (PST) Received: (from nobutaka@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J3Rch33143; Mon, 18 Mar 2002 19:27:38 -0800 (PST) (envelope-from nobutaka) Message-Id: <200203190327.g2J3Rch33143@freefall.freebsd.org> From: MANTANI Nobutaka Date: Mon, 18 Mar 2002 19:27:38 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/editors/leim21 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 nobutaka 2002/03/18 19:27:38 PST Modified files: editors/leim21 Makefile distinfo Log: Update to 21.2. Approved by: shige Revision Changes Path 1.3 +2 -2 ports/editors/leim21/Makefile 1.2 +1 -1 ports/editors/leim21/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 19:28:54 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B08537B404; Mon, 18 Mar 2002 19:28:51 -0800 (PST) Received: (from nobutaka@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J3SpU34602; Mon, 18 Mar 2002 19:28:51 -0800 (PST) (envelope-from nobutaka) Message-Id: <200203190328.g2J3SpU34602@freefall.freebsd.org> From: MANTANI Nobutaka Date: Mon, 18 Mar 2002 19:28:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/Mk bsd.emacs.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 nobutaka 2002/03/18 19:28:51 PST Modified files: Mk bsd.emacs.mk Log: Sync with emacs21 update. Approved by: shige Revision Changes Path 1.17 +2 -2 ports/Mk/bsd.emacs.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 19:42:58 2002 Delivered-To: cvs-all@freebsd.org Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by hub.freebsd.org (Postfix) with ESMTP id E275B37B402; Mon, 18 Mar 2002 19:42:54 -0800 (PST) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 15B405346; Tue, 19 Mar 2002 04:42:52 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: obrien@FreeBSD.org Cc: Kirk McKusick , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_fat.c msdosfs_vnops.c ... References: <200203151849.g2FInlW38440@freefall.freebsd.org> <20020318134628.A15033@dragon.nuxi.com> <20020318191542.A18453@dragon.nuxi.com> From: Dag-Erling Smorgrav Date: 19 Mar 2002 04:42:52 +0100 In-Reply-To: <20020318191542.A18453@dragon.nuxi.com> Message-ID: Lines: 9 User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG "David O'Brien" writes: > Are you sure one can do this in the kernel? PRId64 was not found for me > when I tried. It's in . DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 19:43:58 2002 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 2812A37B404; Mon, 18 Mar 2002 19:43:53 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2J3hrlv019031; Mon, 18 Mar 2002 19:43:53 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2J3gbRY019022; Mon, 18 Mar 2002 19:42:37 -0800 (PST) Date: Mon, 18 Mar 2002 19:42:37 -0800 From: "David O'Brien" To: Doug Barton Cc: "Crist J. Clark" , Makoto Matsushita , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, imp@FreeBSD.org Subject: Re: cvs commit: src/etc rc Message-ID: <20020318194237.A18907@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <20020317151113.W29705@blossom.cjclark.org> <20020317163932.Q3758-100000@master.gorean.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020317163932.Q3758-100000@master.gorean.org>; from DougB@FreeBSD.org on Sun, Mar 17, 2002 at 04:59:49PM -0800 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Sun, Mar 17, 2002 at 04:59:49PM -0800, Doug Barton wrote: > > I still kind of like the idea of breaking /etc/sysctl.conf into > > sections > > The problem with that approach is that it requires users to know > at which stages in the process different mibs are available to twiddle. I > think that's asking too much. Totally agreed. I guess the fix to that, though, is for someone to create a config file that seperated the MIB entries into "sections". Thus "/etc/rc.sysctl first" would know to DTRT w/o the user having to. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 19:45: 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 17FF437B404; Mon, 18 Mar 2002 19:45:03 -0800 (PST) Received: (from des@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J3j3l49544; Mon, 18 Mar 2002 19:45:03 -0800 (PST) (envelope-from des) Message-Id: <200203190345.g2J3j3l49544@freefall.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 18 Mar 2002 19:45:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/etc rc.network X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG des 2002/03/18 19:45:02 PST Modified files: etc rc.network Log: Don't try to generate ssh keys if ssh isn't installed. Revision Changes Path 1.131 +12 -8 src/etc/rc.network To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 20: 7: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 81AB537B404; Mon, 18 Mar 2002 20:07:29 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J47T672628; Mon, 18 Mar 2002 20:07:29 -0800 (PST) (envelope-from bde) Message-Id: <200203190407.g2J47T672628@freefall.freebsd.org> From: Bruce Evans Date: Mon, 18 Mar 2002 20:07:29 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/md md.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bde 2002/03/18 20:07:29 PST Modified files: sys/dev/md md.c Log: The previous commit missed fixing 2 old printf format errors and introduced a format printf error. Revision Changes Path 1.56 +3 -3 src/sys/dev/md/md.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 20: 9: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 97A1F37B400; Mon, 18 Mar 2002 20:09:21 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J49Ln74056; Mon, 18 Mar 2002 20:09:21 -0800 (PST) (envelope-from bde) Message-Id: <200203190409.g2J49Ln74056@freefall.freebsd.org> From: Bruce Evans Date: Mon, 18 Mar 2002 20:09:21 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_bio.c src/sys/ufs/ffs ffs_snapshot.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bde 2002/03/18 20:09:21 PST Modified files: sys/kern vfs_bio.c sys/ufs/ffs ffs_snapshot.c Log: Fixed some printf format errors (hopefully all of the remaining daddr64_t ones for GENERIC, and all others on the same line as those). Reformat the printfs if necessary to avoid new long lones or old format printf errors. Revision Changes Path 1.306 +10 -8 src/sys/kern/vfs_bio.c 1.33 +6 -5 src/sys/ufs/ffs/ffs_snapshot.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 20:14:23 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id 7B24C37B405; Mon, 18 Mar 2002 20:14:16 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id PAA16331; Tue, 19 Mar 2002 15:14:07 +1100 Date: Tue, 19 Mar 2002 15:14:11 +1100 (EST) From: Bruce Evans X-X-Sender: To: Warner Losh Cc: , Kirk McKusick , , Subject: Re: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/f In-Reply-To: <200203182239.g2IMdGL96585@harmony.village.org> Message-ID: <20020319150911.H4131-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 18 Mar 2002, Warner Losh wrote: > In message <20020318134628.A15033@dragon.nuxi.com> "David O'Brien" writes: > : On Fri, Mar 15, 2002 at 10:49:47AM -0800, Kirk McKusick wrote: > : > mckusick 2002/03/15 10:49:47 PST > : ... > : > Log: > : > Introduce the new 64-bit size disk block, daddr64_t. Change > : > the bio and buffer structures to have daddr64_t bio_pblkno, > : > b_blkno, and b_lblkno fields which allows access to disks > : > : Objects of type daddr64_t need to be cast to `(long long)' before > : printing them out with %lld. Failure to do so adds build warnings on > : 64-bit hosts. > > And on non-64-bit hosts. On some non-64-bit hosts, but not on i386's. daddr_t happens to have type long long on i386's. Failure to convert %u to %lld was fatal on on i386's in amr.c and mlx.c. %u was already doubly wrong: it assmed that daddr_t is u_int, but daddr_t is actually (signed) int32_t. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 20:17:25 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 82CE237B400; Mon, 18 Mar 2002 20:17:23 -0800 (PST) Received: (from sumikawa@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J4HNO80313; Mon, 18 Mar 2002 20:17:23 -0800 (PST) (envelope-from sumikawa) Message-Id: <200203190417.g2J4HNO80313@freefall.freebsd.org> From: Munechika SUMIKAWA Date: Mon, 18 Mar 2002 20:17:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/net/totd Makefile distinfo ports/net/totd/files patch-aa X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sumikawa 2002/03/18 20:17:23 PST Modified files: net/totd Makefile distinfo Removed files: net/totd/files patch-aa Log: Upgrade to 1.3. Approved by: kris Revision Changes Path 1.5 +2 -2 ports/net/totd/Makefile 1.4 +1 -1 ports/net/totd/distinfo 1.2 +0 -14 ports/net/totd/files/patch-aa (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 20:30:21 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 04DA937B405; Mon, 18 Mar 2002 20:30:07 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J4U6u91559; Mon, 18 Mar 2002 20:30:06 -0800 (PST) (envelope-from alfred) Message-Id: <200203190430.g2J4U6u91559@freefall.freebsd.org> From: Alfred Perlstein Date: Mon, 18 Mar 2002 20:30:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_descrip.c vfs_syscalls.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/03/18 20:30:06 PST Modified files: sys/kern kern_descrip.c vfs_syscalls.c Log: Close a race when vfs_syscalls.c:checkdirs() runs. To do this protect the filedesc pointer in the proc with PROC_LOCK in both checkdirs() and kern_descrip.c:fdfree(). Revision Changes Path 1.129 +7 -1 src/sys/kern/kern_descrip.c 1.232 +12 -7 src/sys/kern/vfs_syscalls.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 20:39:48 2002 Delivered-To: cvs-all@freebsd.org Received: from espresso.q9media.com (espresso.q9media.com [216.254.138.122]) by hub.freebsd.org (Postfix) with ESMTP id 3021737B404; Mon, 18 Mar 2002 20:39:44 -0800 (PST) Received: (from mike@localhost) by espresso.q9media.com (8.11.6/8.11.6) id g2J4XtD83435; Mon, 18 Mar 2002 23:33:55 -0500 (EST) (envelope-from mike) Date: Mon, 18 Mar 2002 23:33:55 -0500 From: Mike Barcroft To: Dag-Erling Smorgrav Cc: obrien@FreeBSD.org, Kirk McKusick , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_fat.c msdosfs_vnops.c ... Message-ID: <20020318233355.L56122@espresso.q9media.com> References: <200203151849.g2FInlW38440@freefall.freebsd.org> <20020318134628.A15033@dragon.nuxi.com> <20020318191542.A18453@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: ; from des@ofug.org on Tue, Mar 19, 2002 at 04:42:52AM +0100 Organization: The FreeBSD Project Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Dag-Erling Smorgrav writes: > "David O'Brien" writes: > > Are you sure one can do this in the kernel? PRId64 was not found for me > > when I tried. > > It's in . Don't include this directly though. If this is felt to be a useful feature for kernel developers, can be moved to , and can become a symbolic link to . Best regards, Mike Barcroft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 20:42:30 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id AA6A437B41C; Mon, 18 Mar 2002 20:42:21 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id PAA19728; Tue, 19 Mar 2002 15:41:53 +1100 Date: Tue, 19 Mar 2002 15:41:57 +1100 (EST) From: Bruce Evans X-X-Sender: To: Peter Wemm Cc: Bruce Evans , , Subject: Re: cvs commit: src/sys/dev/amr amr.c In-Reply-To: <20020319010146.B1F17390B@overcee.wemm.org> Message-ID: <20020319153037.A4516-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 18 Mar 2002, Peter Wemm wrote: > Bruce Evans wrote: > > bde 2002/03/18 15:24:00 PST > > > > Modified files: > > sys/dev/amr amr.c > > Log: > > Fixed printf format errors in previous commit. %llu is no more suitable > > than %u for printing signed 64-bit types. It fails on different machines, > > and has the wrong signdness. > > Also, 64 bit types are not 'long long' on all of our 64 bit platforms. > They are plain %ld o4 %lu. I think int64_t == "long long" is the unusual case for 64-bit arches. %qd is no better, since although int64_t == quad_t for must arches, %q is not suitable for printing quad_t's. gcc's format checker thinks it is an alias for %ll, and printf(3) now agrees (printf(3) doesn't use quad_t internally, in preparation for fully deprecating it). Th fix should use %jd, since it really wants to use a maximal integral type, but %j is not available yet (it is is in printf(3), but not in the kernel, and gcc-2 doesn't understand it). Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 20:43: 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 6630037B404; Mon, 18 Mar 2002 20:42:57 -0800 (PST) Received: (from obrien@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J4gvh03220; Mon, 18 Mar 2002 20:42:57 -0800 (PST) (envelope-from obrien) Message-Id: <200203190442.g2J4gvh03220@freefall.freebsd.org> From: "David E. O'Brien" Date: Mon, 18 Mar 2002 20:42:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/deskutils/ical Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/18 20:42:57 PST Modified files: deskutils/ical Makefile Log: Backout my backout of rev 1.31. We can now build with Tcl/Tk 8.3. Revision Changes Path 1.33 +8 -7 ports/deskutils/ical/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 20:46:25 2002 Delivered-To: cvs-all@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 4C07937B404; Mon, 18 Mar 2002 20:46:22 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2J4kMlv057194; Mon, 18 Mar 2002 20:46:22 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2J4j6AR054873; Mon, 18 Mar 2002 20:45:06 -0800 (PST) Date: Mon, 18 Mar 2002 20:45:06 -0800 From: "David O'Brien" To: Dag-Erling Smorgrav Cc: Kirk McKusick , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/fs/msdosfs msdosfs_fat.c msdosfs_vnops.c ... Message-ID: <20020318204506.A54843@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <200203151849.g2FInlW38440@freefall.freebsd.org> <20020318134628.A15033@dragon.nuxi.com> <20020318191542.A18453@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Tue, Mar 19, 2002 at 04:42:52AM +0100 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, Mar 19, 2002 at 04:42:52AM +0100, Dag-Erling Smorgrav wrote: > "David O'Brien" writes: > > Are you sure one can do this in the kernel? PRId64 was not found for me > > when I tried. > > It's in . You aren't suppose to include _*.h directly. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 20:49:37 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id DF94437B402; Mon, 18 Mar 2002 20:49:32 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id PAA20721; Tue, 19 Mar 2002 15:49:27 +1100 Date: Tue, 19 Mar 2002 15:49:31 +1100 (EST) From: Bruce Evans X-X-Sender: To: Dag-Erling Smorgrav Cc: , Kirk McKusick , , Subject: Re: cvs commit: src/sys/coda coda_vnops.c src/sys/dev/ccd ccd.c src/sys/dev/md md.c src/sys/dev/vinum vinumdaemon.c vinuminterrupt.c vinumrequest.c vinumrevive.c src/sys/fs/hpfs hpfs_vnops.c src/sys/f In-Reply-To: Message-ID: <20020319154637.D4570-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 19 Mar 2002, Dag-Erling Smorgrav wrote: > "David O'Brien" writes: > > Are you sure one can do this in the kernel? PRId64 was not found for me > > when I tried. > > It's in . This is only to support . Including this header in the kernel would be almost as much a mistake as using its contents. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 20:54:35 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 19F4237B416; Mon, 18 Mar 2002 20:54:31 -0800 (PST) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J4sVt13596; Mon, 18 Mar 2002 20:54:31 -0800 (PST) (envelope-from alc) Message-Id: <200203190454.g2J4sVt13596@freefall.freebsd.org> From: Alan Cox Date: Mon, 18 Mar 2002 20:54:31 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/linux linux_sysvec.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alc 2002/03/18 20:54:31 PST Modified files: sys/i386/linux linux_sysvec.c Log: Eliminate unnecessary calls to grow_stack() and useracc() from linux_sendsig() and linux_rt_sendsig(). (See i386/i386/machdep.c revisions 1.503 and 1.504.) Revision Changes Path 1.96 +5 -49 src/sys/i386/linux/linux_sysvec.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 21:14:26 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B9E9E37B404; Mon, 18 Mar 2002 21:14:23 -0800 (PST) Received: (from jeff@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J5ENe20072; Mon, 18 Mar 2002 21:14:23 -0800 (PST) (envelope-from jeff) Message-Id: <200203190514.g2J5ENe20072@freefall.freebsd.org> From: Jeff Roberson Date: Mon, 18 Mar 2002 21:14:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/txp if_txp.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeff 2002/03/18 21:14:23 PST Modified files: sys/dev/txp if_txp.c Log: Initialize variables before use. This was needed to pass -Werror. Reviewed by: jake Revision Changes Path 1.9 +4 -0 src/sys/dev/txp/if_txp.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 21:14:58 2002 Delivered-To: cvs-all@freebsd.org Received: from mrout1.yahoo.com (mrout1.yahoo.com [216.145.54.171]) by hub.freebsd.org (Postfix) with ESMTP id 5493F37B402; Mon, 18 Mar 2002 21:14:52 -0800 (PST) Received: from zoot.corp.yahoo.com (zoot.corp.yahoo.com [216.145.52.89]) by mrout1.yahoo.com (8.11.6/8.11.6/y.out) with ESMTP id g2J5EnA51866; Mon, 18 Mar 2002 21:14:49 -0800 (PST) Received: from localhost (dougb@localhost) by zoot.corp.yahoo.com (8.11.6/8.11.6) with ESMTP id g2J5Ei557405; Mon, 18 Mar 2002 21:14:44 -0800 (PST) (envelope-from DougB@FreeBSD.org) Date: Mon, 18 Mar 2002 21:14:44 -0800 (PST) From: Doug Barton X-X-Sender: dougb@zoot.corp.yahoo.com To: "David O'Brien" Cc: "Crist J. Clark" , Makoto Matsushita , , , Subject: Re: cvs commit: src/etc rc In-Reply-To: <20020318194237.A18907@dragon.nuxi.com> Message-ID: <20020318211222.D57401-100000@zoot.corp.yahoo.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 18 Mar 2002, David O'Brien wrote: > On Sun, Mar 17, 2002 at 04:59:49PM -0800, Doug Barton wrote: > > > I still kind of like the idea of breaking /etc/sysctl.conf into > > > sections > > > > The problem with that approach is that it requires users to know > > at which stages in the process different mibs are available to twiddle. I > > think that's asking too much. > > Totally agreed. I guess the fix to that, though, is for someone to > create a config file that seperated the MIB entries into "sections". > Thus "/etc/rc.sysctl first" would know to DTRT w/o the user having to. I don't oppose more complex (or even more correct, if you wish) solutions, as I stated earlier. However, given that _documenting_ the mibs has sat in various people's trees for ages now, I hold no confidence that such a config file would ever be created, or kept up to date. Also, there is the issue of what mibs are available when is highly dependent on things like module loading, etc. I think that there may be too many variables for such an approach to be successful -- "We have known freedom's price. We have shown freedom's power. And in this great conflict, ... we will see freedom's victory." - George W. Bush, President of the United States State of the Union, January 28, 2002 Do YOU Yahoo!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 21:18:45 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc54.attbi.com (rwcrmhc54.attbi.com [216.148.227.87]) by hub.freebsd.org (Postfix) with ESMTP id 96F5D37B400; Mon, 18 Mar 2002 21:18:39 -0800 (PST) Received: from blossom.cjclark.org ([12.234.91.48]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020319051839.OTOT1214.rwcrmhc54.attbi.com@blossom.cjclark.org>; Tue, 19 Mar 2002 05:18:39 +0000 Received: (from cjc@localhost) by blossom.cjclark.org (8.11.6/8.11.6) id g2J5IWY62050; Mon, 18 Mar 2002 21:18:32 -0800 (PST) (envelope-from cjc) Date: Mon, 18 Mar 2002 21:18:32 -0800 From: "Crist J. Clark" To: "David O'Brien" Cc: Doug Barton , Makoto Matsushita , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org, imp@FreeBSD.org Subject: Re: cvs commit: src/etc rc Message-ID: <20020318211832.F60554@blossom.cjclark.org> Reply-To: cjclark@alum.mit.edu References: <20020317151113.W29705@blossom.cjclark.org> <20020317163932.Q3758-100000@master.gorean.org> <20020318194237.A18907@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20020318194237.A18907@dragon.nuxi.com>; from obrien@FreeBSD.org on Mon, Mar 18, 2002 at 07:42:37PM -0800 X-URL: http://people.freebsd.org/~cjc/ Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, Mar 18, 2002 at 07:42:37PM -0800, David O'Brien wrote: > On Sun, Mar 17, 2002 at 04:59:49PM -0800, Doug Barton wrote: > > > I still kind of like the idea of breaking /etc/sysctl.conf into > > > sections > > > > The problem with that approach is that it requires users to know > > at which stages in the process different mibs are available to twiddle. I > > think that's asking too much. > > Totally agreed. I guess the fix to that, though, is for someone to > create a config file that seperated the MIB entries into "sections". > Thus "/etc/rc.sysctl first" would know to DTRT w/o the user having to. I wouldn't expect the administrator to know or care about the exact order. I think in the vast majority of cases, they can be grouped in other ways, perhaps by functionality. For example, you could group all of the NFS related ones in one place. Then the developers who (supposedly) know what order things need to be done in can stick the, /etc/rc.sysctl nfs Command in the best place in the scripts. But this kind of arrangement breaks down when the user wants to add sysctl(8) knobs that don't fit into existing groupings. This might be something the NetBSD rc.d system might be helpful with. Perhaps burning brain cells on that might be more useful than trying to patch up the existing FreeBSD scripts. -- Crist J. Clark | cjclark@alum.mit.edu | cjclark@jhu.edu http://people.freebsd.org/~cjc/ | cjc@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 21:26:18 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D3A7337B404; Mon, 18 Mar 2002 21:26:14 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J5QEX21437; Mon, 18 Mar 2002 21:26:14 -0800 (PST) (envelope-from ue) Message-Id: <200203190526.g2J5QEX21437@freefall.freebsd.org> From: Udo Erdelhoff Date: Mon, 18 Mar 2002 21:26:14 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/03/18 21:26:14 PST Modified files: release/doc/de_DE.ISO8859-1/relnotes/common new.sgml Log: MFen 1.303 Revision Changes Path 1.4 +13 -2 src/release/doc/de_DE.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 21:29:26 2002 Delivered-To: cvs-all@freebsd.org Received: from espresso.q9media.com (espresso.q9media.com [216.254.138.122]) by hub.freebsd.org (Postfix) with ESMTP id 3C7B337B404; Mon, 18 Mar 2002 21:29:17 -0800 (PST) Received: (from mike@localhost) by espresso.q9media.com (8.11.6/8.11.6) id g2J5MkO84973; Tue, 19 Mar 2002 00:22:46 -0500 (EST) (envelope-from mike) Date: Tue, 19 Mar 2002 00:22:46 -0500 From: Mike Barcroft To: Bruce Evans Cc: Peter Wemm , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/amr amr.c Message-ID: <20020319002246.M56122@espresso.q9media.com> References: <20020319010146.B1F17390B@overcee.wemm.org> <20020319153037.A4516-100000@gamplex.bde.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020319153037.A4516-100000@gamplex.bde.org>; from bde@zeta.org.au on Tue, Mar 19, 2002 at 03:41:57PM +1100 Organization: The FreeBSD Project Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Bruce Evans writes: > Th fix should use %jd, since it really wants to use a maximal integral > type, but %j is not available yet (it is is in printf(3), but not in > the kernel, and gcc-2 doesn't understand it). If anyone is interested in implementing this, let me know. It looks like a fairly easy task. The only two new features of printf(3), that I can see of use in the kernel are %j for printing intmax_t and uintmax_t, and %z for printing size_t. %z might not be useful if we made certain assumptions (for instance size_t is always equal to uintmax_t). Best regards, Mike Barcroft To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 21:34: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 B273F37B402; Mon, 18 Mar 2002 21:34:42 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J5YgI22742; Mon, 18 Mar 2002 21:34:42 -0800 (PST) (envelope-from ue) Message-Id: <200203190534.g2J5YgI22742@freefall.freebsd.org> From: Udo Erdelhoff Date: Mon, 18 Mar 2002 21:34:42 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/relnotes/common new.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/03/18 21:34:42 PST Modified files: (Branch: RELENG_4) release/doc/de_DE.ISO8859-1/relnotes/common new.sgml Log: MFen: zlib security notice Revision Changes Path 1.1.2.3 +13 -2 src/release/doc/de_DE.ISO8859-1/relnotes/common/new.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 21: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 E7F2337B400; Mon, 18 Mar 2002 21:35:18 -0800 (PST) Received: (from ue@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J5ZIO22870; Mon, 18 Mar 2002 21:35:18 -0800 (PST) (envelope-from ue) Message-Id: <200203190535.g2J5ZIO22870@freefall.freebsd.org> From: Udo Erdelhoff Date: Mon, 18 Mar 2002 21:35:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/release/doc/de_DE.ISO8859-1/errata article.sgml X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ue 2002/03/18 21:35:18 PST Modified files: (Branch: RELENG_4) release/doc/de_DE.ISO8859-1/errata article.sgml Log: MFen: zlib security warning Revision Changes Path 1.1.2.3 +14 -3 src/release/doc/de_DE.ISO8859-1/errata/article.sgml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 21:58: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 8663937B400; Mon, 18 Mar 2002 21:58:36 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J5wau26456; Mon, 18 Mar 2002 21:58:36 -0800 (PST) (envelope-from bde) Message-Id: <200203190558.g2J5wau26456@freefall.freebsd.org> From: Bruce Evans Date: Mon, 18 Mar 2002 21:58:36 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.upgrade X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bde 2002/03/18 21:58:36 PST Modified files: . Makefile.upgrade Log: Removed "env" commands. "sh" is a real shell, so "env name=value ... sh ..." was just a pessimized way of doing "name=value ... sh ...". Revision Changes Path 1.18 +2 -2 src/Makefile.upgrade To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 22:11:46 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E11F437B404; Mon, 18 Mar 2002 22:11:43 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J6Bhr32182; Mon, 18 Mar 2002 22:11:43 -0800 (PST) (envelope-from bde) Message-Id: <200203190611.g2J6Bhr32182@freefall.freebsd.org> From: Bruce Evans Date: Mon, 18 Mar 2002 22:11:43 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/share/mk bsd.dep.mk bsd.info.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 bde 2002/03/18 22:11:43 PST Modified files: share/mk bsd.dep.mk bsd.info.mk Log: Removed bogus env(1) commands. make(1) uses a real shell, so "env name=value ... cmd ..." was just a pessimized way of doing "name=value ... cmd ...". Note that make(1) can't optimize either of these to an exec of env(1) or "cmd" even if the second "..." is simple, since it can't tell that the shell metacharacter in "name=value" is actually handled by env(1). Revision Changes Path 1.29 +1 -1 src/share/mk/bsd.dep.mk 1.60 +5 -5 src/share/mk/bsd.info.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 22:14:37 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E8C0C37B400; Mon, 18 Mar 2002 22:14:34 -0800 (PST) Received: (from alfred@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J6EYx32763; Mon, 18 Mar 2002 22:14:34 -0800 (PST) (envelope-from alfred) Message-Id: <200203190614.g2J6EYx32763@freefall.freebsd.org> From: Alfred Perlstein Date: Mon, 18 Mar 2002 22:14:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 perfmon.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG alfred 2002/03/18 22:14:34 PST Modified files: sys/i386/i386 perfmon.c Log: fix perfmon for DEVFS. PR: kern/36008 Revision Changes Path 1.27 +16 -0 src/sys/i386/i386/perfmon.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 22:30:27 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DCB0A37B400; Mon, 18 Mar 2002 22:30:24 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J6UOB35191; Mon, 18 Mar 2002 22:30:24 -0800 (PST) (envelope-from bde) Message-Id: <200203190630.g2J6UOB35191@freefall.freebsd.org> From: Bruce Evans Date: Mon, 18 Mar 2002 22:30:24 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf kern.post.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 bde 2002/03/18 22:30:24 PST Modified files: sys/conf kern.post.mk Log: Removed env(1) commands. make(1) uses a real shell, and "env name=value ... cmd ..." is just a pessimized way of doing "name=value ... cmd ..." in real shells. Set the environment (without using env(1)) before starting xargs so that env(1) is not needed in "xargs env name=value ... cmd ..." Revision Changes Path 1.13 +16 -14 src/sys/conf/kern.post.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 22:35:38 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4BA8237B400; Mon, 18 Mar 2002 22:35:34 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J6ZYf36143; Mon, 18 Mar 2002 22:35:34 -0800 (PST) (envelope-from petef) Message-Id: <200203190635.g2J6ZYf36143@freefall.freebsd.org> From: Pete Fritchman Date: Mon, 18 Mar 2002 22:35:34 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/graphics Makefile ports/graphics/py-graphviz Makefile distinfo pkg-comment pkg-descr pkg-plist ports/graphics/py-graphviz/files setup.py X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/03/18 22:35:34 PST Modified files: graphics Makefile Added files: graphics/py-graphviz Makefile distinfo pkg-comment pkg-descr pkg-plist graphics/py-graphviz/files setup.py Log: Add py-graphviz 0.1, python interface to GraphViz agraph. PR: 33159 Submitted by: Hye-Shik Chang Revision Changes Path 1.421 +1 -0 ports/graphics/Makefile 1.1 +45 -0 ports/graphics/py-graphviz/Makefile (new) 1.1 +3 -0 ports/graphics/py-graphviz/distinfo (new) 1.1 +27 -0 ports/graphics/py-graphviz/files/setup.py (new) 1.1 +1 -0 ports/graphics/py-graphviz/pkg-comment (new) 1.1 +4 -0 ports/graphics/py-graphviz/pkg-descr (new) 1.1 +4 -0 ports/graphics/py-graphviz/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 22:35: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 217C337B402; Mon, 18 Mar 2002 22:35:39 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J6Zdp36184; Mon, 18 Mar 2002 22:35:39 -0800 (PST) (envelope-from petef) Message-Id: <200203190635.g2J6Zdp36184@freefall.freebsd.org> From: Pete Fritchman Date: Mon, 18 Mar 2002 22:35:39 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/03/18 22:35:39 PST Modified files: . modules Log: py-graphviz --> ports/graphics/py-graphviz Revision Changes Path 1.4864 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 22:41:10 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A13137B405; Mon, 18 Mar 2002 22:41:07 -0800 (PST) Received: (from bmah@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J6f7u37512; Mon, 18 Mar 2002 22:41:07 -0800 (PST) (envelope-from bmah) Message-Id: <200203190641.g2J6f7u37512@freefall.freebsd.org> From: "Bruce A. Mah" Date: Mon, 18 Mar 2002 22:41:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: www/en/releases/4.5R errata.html X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG bmah 2002/03/18 22:41:07 PST Modified files: en/releases/4.5R errata.html Log: Regen from article.sgml 1.1.2.59. Revision Changes Path 1.10 +24 -7 www/en/releases/4.5R/errata.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 22:45: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 0A61537B405; Mon, 18 Mar 2002 22:45:27 -0800 (PST) Received: (from alc@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J6jQr38395; Mon, 18 Mar 2002 22:45:26 -0800 (PST) (envelope-from alc) Message-Id: <200203190645.g2J6jQr38395@freefall.freebsd.org> From: Alan Cox Date: Mon, 18 Mar 2002 22:45:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/i386/i386 perfmon.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/18 22:45:26 PST Modified files: sys/i386/i386 perfmon.c Log: Add #include so that the previous change compiles. Revision Changes Path 1.28 +1 -0 src/sys/i386/i386/perfmon.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 22:56:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8884637B404; Mon, 18 Mar 2002 22:56:08 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J6u8j40215; Mon, 18 Mar 2002 22:56:08 -0800 (PST) (envelope-from petef) Message-Id: <200203190656.g2J6u8j40215@freefall.freebsd.org> From: Pete Fritchman Date: Mon, 18 Mar 2002 22:56:08 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/textproc Makefile ports/textproc/p5-Lingua-EN-AddressParse Makefile distinfo pkg-comment pkg-descr pkg-plist X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/03/18 22:56:08 PST Modified files: textproc Makefile Added files: textproc/p5-Lingua-EN-AddressParse Makefile distinfo pkg-comment pkg-descr pkg-plist Log: Add p5-Lingua-EN-AddressParse 1.05, perl module to manipulate geographical addresses. PR: 33377 Submitted by: Seamus Venasse Revision Changes Path 1.335 +1 -0 ports/textproc/Makefile 1.1 +28 -0 ports/textproc/p5-Lingua-EN-AddressParse/Makefile (new) 1.1 +1 -0 ports/textproc/p5-Lingua-EN-AddressParse/distinfo (new) 1.1 +1 -0 ports/textproc/p5-Lingua-EN-AddressParse/pkg-comment (new) 1.1 +7 -0 ports/textproc/p5-Lingua-EN-AddressParse/pkg-descr (new) 1.1 +8 -0 ports/textproc/p5-Lingua-EN-AddressParse/pkg-plist (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 22:56:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 088A637B417; Mon, 18 Mar 2002 22:56:13 -0800 (PST) Received: (from petef@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J6uDL40267; Mon, 18 Mar 2002 22:56:13 -0800 (PST) (envelope-from petef) Message-Id: <200203190656.g2J6uDL40267@freefall.freebsd.org> From: Pete Fritchman Date: Mon, 18 Mar 2002 22:56:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT modules X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG petef 2002/03/18 22:56:12 PST Modified files: . modules Log: p5-Lingua-EN-AddressParse --> ports/textproc/p5-Lingua-EN-AddressParse Revision Changes Path 1.4865 +1 -0 CVSROOT/modules To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 23:18: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from mta5.snfc21.pbi.net (mta5.snfc21.pbi.net [206.13.28.241]) by hub.freebsd.org (Postfix) with ESMTP id 6D68D37B400; Mon, 18 Mar 2002 23:18:01 -0800 (PST) Received: from shambel.netsanet.net ([64.166.84.91]) by mta5.snfc21.pbi.net (iPlanet Messaging Server 5.1 (built May 7 2001)) with ESMTP id <0GT70072TLM0RE@mta5.snfc21.pbi.net>; Mon, 18 Mar 2002 23:18:01 -0800 (PST) Received: from shambel.netsanet.net (localhost [127.0.0.1]) by shambel.netsanet.net (8.12.2/8.12.2) with ESMTP id g2J7HoFh043613; Mon, 18 Mar 2002 23:17:50 -0800 Received: (from mikem@localhost) by shambel.netsanet.net (8.12.2/8.12.2/Submit) id g2J7HnnY043612; Mon, 18 Mar 2002 23:17:49 -0800 (PST) Date: Mon, 18 Mar 2002 23:17:49 -0800 From: Mike Makonnen Subject: Re: cvs commit: src/etc rc In-reply-to: <20020318211832.F60554@blossom.cjclark.org> To: cjclark@alum.mit.edu Cc: David O'Brien , Doug Barton , Makoto Matsushita , cvs-committers@freebsd.org, cvs-all@freebsd.org, imp@freebsd.org Message-id: <1016522269.43351.27.camel@shambel.netsanet.net> MIME-version: 1.0 X-Mailer: Evolution/1.0.2 Content-type: text/plain Content-transfer-encoding: 7BIT References: <20020317151113.W29705@blossom.cjclark.org> <20020317163932.Q3758-100000@master.gorean.org> <20020318194237.A18907@dragon.nuxi.com> <20020318211832.F60554@blossom.cjclark.org> X-Authentication-warning: shambel.netsanet.net: mikem set sender to mike_makonnen@yahoo.com using -f Sender: owner-cvs-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, 2002-03-18 at 21:18, Crist J. Clark wrote: > I wouldn't expect the administrator to know or care about the exact > order. I think in the vast majority of cases, they can be grouped in > other ways, perhaps by functionality. For example, you could group all > of the NFS related ones in one place. Then the developers who > (supposedly) know what order things need to be done in can stick the, > > /etc/rc.sysctl nfs > > Command in the best place in the scripts. > > But this kind of arrangement breaks down when the user wants to add > sysctl(8) knobs that don't fit into existing groupings. > > This might be something the NetBSD rc.d system might be helpful > with. Perhaps burning brain cells on that might be more useful than > trying to patch up the existing FreeBSD scripts. > -- Unfortunately, you'd still have the same problem, namely, how to distinguish which sysctls to twiddle when. Anyways, I seem to be the front-runner on the NetBSD-style rc project. Gordon Tetlow has said he is busy with other work and the other two I've seen aren't at the stage I'm at now. I've been booting with it regularly for some weeks, and it's at the point now where I am not using any of _our_ rc scripts in the boot process. I'm currently integrating recent rc* changes, cleaning it up, and integrating it as much as possible in the NetBSD scripts, as David O'Brien suggested. Look for an announcement on -current in the next couple of days. Cheers, Mike Makonnen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 23:25:43 2002 Delivered-To: cvs-all@freebsd.org Received: from zibbi.icomtek.csir.co.za (zibbi.icomtek.csir.co.za [146.64.24.58]) by hub.freebsd.org (Postfix) with ESMTP id 5E85237B405; Mon, 18 Mar 2002 23:25:35 -0800 (PST) Received: (from jhay@localhost) by zibbi.icomtek.csir.co.za (8.11.6/8.11.6) id g2J7PWl97714; Tue, 19 Mar 2002 09:25:32 +0200 (SAT) (envelope-from jhay) From: John Hay Message-Id: <200203190725.g2J7PWl97714@zibbi.icomtek.csir.co.za> Subject: Re: cvs commit: src/secure/usr.sbin/sshd Makefile In-Reply-To: <200203181617.g2IGHvc60950@freefall.freebsd.org> from Dag-Erling Smorgrav at "Mar 18, 2002 08:17:57 am" To: des@FreeBSD.org (Dag-Erling Smorgrav) Date: Tue, 19 Mar 2002 09:25:31 +0200 (SAT) Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi des, A make release breaks here during the release.2 target: ################################################################### cc -O -pipe -DLIBWRAP -DHAVE_LOGIN_CAP -DLOGIN_ACCESS -I/usr/src/secure/usr.sbi n/sshd/../../../usr.bin/login -DUSE_PAM -DHAVE_PAM_GETENVLIST -DKRB5 -DSKEY -DXA UTH_PATH=\"/usr/X11R6/bin/xauth\" -DNO_IDEA -c /usr/src/secure/usr.sbin/sshd/ ../../../crypto/openssh/groupaccess.c cc -O -pipe -DLIBWRAP -DHAVE_LOGIN_CAP -DLOGIN_ACCESS -I/usr/src/secure/usr.sbi n/sshd/../../../usr.bin/login -DUSE_PAM -DHAVE_PAM_GETENVLIST -DKRB5 -DSKEY -DXA UTH_PATH=\"/usr/X11R6/bin/xauth\" -DNO_IDEA -c /usr/src/secure/usr.sbin/sshd/ ../../../crypto/openssh/auth-krb5.c cc -O -pipe -DLIBWRAP -DHAVE_LOGIN_CAP -DLOGIN_ACCESS -I/usr/src/secure/usr.sbi n/sshd/../../../usr.bin/login -DUSE_PAM -DHAVE_PAM_GETENVLIST -DKRB5 -DSKEY -DXA UTH_PATH=\"/usr/X11R6/bin/xauth\" -DNO_IDEA -o sshd sshd.o auth-rhosts.o aut h-passwd.o auth-rsa.o auth-rh-rsa.o sshpty.o sshlogin.o servconf.o serverloop.o auth.o auth1.o auth2.o auth-options.o session.o auth-chall.o auth2-chall.o auth- skey.o auth-pam.o login_access.o groupaccess.o auth-krb5.o -lkrb5 -lasn1 -lcom_ err -lmd -L/usr/obj/usr/src/secure/usr.sbin/sshd/../../../kerberos5/lib/libroken -lroken -lopie -lmd -lssh -lcrypt -lcrypto -lutil -lz -lwrap -lpam servconf.o: In function `fill_default_server_options': servconf.o(.text+0x4bf): undefined reference to `krb_get_default_keyfile' *** Error code 1 ################################################################### John -- John Hay -- John.Hay@icomtek.csir.co.za / jhay@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 23:38:20 2002 Delivered-To: cvs-all@freebsd.org Received: from straylight.ringlet.net (discworld.nanolink.com [217.75.135.248]) by hub.freebsd.org (Postfix) with SMTP id 763EB37B404 for ; Mon, 18 Mar 2002 23:38:09 -0800 (PST) Received: (qmail 9298 invoked by uid 1000); 19 Mar 2002 07:22:02 -0000 Date: Tue, 19 Mar 2002 09:22:02 +0200 From: Peter Pentchev To: Alfred Perlstein Cc: Boris Popov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/smbfs/lib/smb ctx.c Message-ID: <20020319092202.A9136@straylight.oblivion.bg> Mail-Followup-To: Alfred Perlstein , Boris Popov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200203182240.g2IMeXP54344@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="bg08WKrSYDhXBjb5" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200203182240.g2IMeXP54344@freefall.freebsd.org>; from alfred@FreeBSD.org on Mon, Mar 18, 2002 at 02:40:33PM -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 --bg08WKrSYDhXBjb5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 18, 2002 at 02:40:33PM -0800, Alfred Perlstein wrote: > alfred 2002/03/18 14:40:33 PST >=20 > Modified files: > contrib/smbfs/lib/smb ctx.c=20 > Log: > Don't segv if getpwuid() fails. > =20 > PR: bin/36041 > MFC After: 3 days Errrr.. oops? Are you sure that this should not have been bounced through Boris Popov, the author of the _contrib_/smbfs code, and then vendor-imported? G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 Hey, out there - is it *you* reading me, or is it someone else? --bg08WKrSYDhXBjb5 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 iEYEARECAAYFAjyW5xoACgkQ7Ri2jRYZRVOkkACfXOECtaAyKLDfpR4WWZGYsamv +GIAniHKbsqpDTsJEdteLC1mHPsts+jm =P+9h -----END PGP SIGNATURE----- --bg08WKrSYDhXBjb5-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Mon Mar 18 23:50: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc52.attbi.com (rwcrmhc52.attbi.com [216.148.227.88]) by hub.freebsd.org (Postfix) with ESMTP id C52B737B405; Mon, 18 Mar 2002 23:49:48 -0800 (PST) Received: from peter3.wemm.org ([12.232.27.13]) by rwcrmhc52.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020319074948.WSIU1147.rwcrmhc52.attbi.com@peter3.wemm.org>; Tue, 19 Mar 2002 07:49:48 +0000 Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id g2J7nms63412; Mon, 18 Mar 2002 23:49:48 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id F36BF3810; Mon, 18 Mar 2002 23:49:47 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Bruce Evans Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf kern.post.mk In-Reply-To: <200203190630.g2J6UOB35191@freefall.freebsd.org> Date: Mon, 18 Mar 2002 23:49:47 -0800 From: Peter Wemm Message-Id: <20020319074947.F36BF3810@overcee.wemm.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Bruce Evans wrote: > bde 2002/03/18 22:30:24 PST > > Modified files: > sys/conf kern.post.mk > Log: > Removed env(1) commands. make(1) uses a real shell, and > "env name=value ... cmd ..." is just a pessimized way of doing > "name=value ... cmd ..." in real shells. Set the environment > (without using env(1)) before starting xargs so that env(1) > is not needed in "xargs env name=value ... cmd ..." BZZT! Wrong! You broke cross compiles! peter@overcee[11:44pm]~/fbp4/ia64/sys/ia64/compile/SMALL-273> make depend rm -f .olddep if [ -f .depend ]; then mv .depend .olddep; fi make _kernel-depend if [ -f .olddep ]; then mv .olddep .depend; fi rm -f .newdep MKDEP_CPP="ia64-unknown-freebsd5.0-gcc -E" CC="ia64-unknown-freebsd5.0-gcc" make -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | xargs mkdep -a -f .newdep -O -pipe -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wno-format -ffreestanding -g -nostdinc -I- -I. -I../../.. -I../../../dev -I../../../contrib/dev/acpica -I../../../contrib/ipfilter -I../../../../include -D_KERNEL -ffreestanding -include opt_global.h -fno-common -ffixed-r13 -mfixed-range=f32-f127 ../../../kern/subr_trap.c:42: opt_npx.h: No such file or directory ../../../dev/kbd/atkbd.c:44: machine/psl.h: No such file or directory ../../../dev/kbd/atkbd.c:45: machine/vm86.h: No such file or directory mkdep: compile failed *** Error code 1 If I back out this part of the change, it works again: ==== //depot/projects/ia64/sys/conf/kern.post.mk#5 - /home/peter/fbp4/ia64/sys/conf/kern.post.mk ==== @@ -98,12 +98,10 @@ ${SYSTEM_SFILES} ${MFILES:T:S/.m$/.h/} if [ -f .olddep ]; then mv .olddep .depend; fi rm -f .newdep - MKDEP_CPP="${CC} -E" CC="${CC}" \ - ${MAKE} -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | xargs \ - mkdep -a -f .newdep ${CFLAGS} - MKDEP_CPP="${CC} -E" \ - ${MAKE} -V SFILES -V SYSTEM_SFILES | xargs \ - mkdep -a -f .newdep ${ASM_CFLAGS} + ${MAKE} -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | xargs \ + env MKDEP_CPP="${CC} -E" CC="${CC}" mkdep -a -f .newdep ${CFLAGS} + ${MAKE} -V SFILES -V SYSTEM_SFILES | xargs \ + env MKDEP_CPP="${CC} -E" mkdep -a -f .newdep ${ASM_CFLAGS} rm -f .depend mv .newdep .depend The env commands are needed here, because xargs(1) doesn't understand it otherwise. IMHO, this part of the change is completely bogus. You are overriding the MKDEP_CPP and CC variables on the wrong command! Cheers, -Peter -- Peter Wemm - peter@wemm.org; peter@FreeBSD.org; peter@yahoo-inc.com "All of this is for nothing if we don't go to the stars" - JMS/B5 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 0:20:47 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 21A1B37B400; Tue, 19 Mar 2002 00:20:45 -0800 (PST) Received: (from bde@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J8Kjt63760; Tue, 19 Mar 2002 00:20:45 -0800 (PST) (envelope-from bde) Message-Id: <200203190820.g2J8Kjt63760@freefall.freebsd.org> From: Bruce Evans Date: Tue, 19 Mar 2002 00:20:45 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf kern.post.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 bde 2002/03/19 00:20:45 PST Modified files: sys/conf kern.post.mk Log: Backed out the part of the previous commit related to xargs. It just broke things, since "name=value ... cmd ..." only works for simple commands (not for pipelines). Revision Changes Path 1.14 +4 -6 src/sys/conf/kern.post.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 0:40:51 2002 Delivered-To: cvs-all@freebsd.org Received: from mailman.zeta.org.au (mailman.zeta.org.au [203.26.10.16]) by hub.freebsd.org (Postfix) with ESMTP id D89BF37B404; Tue, 19 Mar 2002 00:40:45 -0800 (PST) Received: from bde.zeta.org.au (bde.zeta.org.au [203.2.228.102]) by mailman.zeta.org.au (8.9.3/8.8.7) with ESMTP id TAA13651; Tue, 19 Mar 2002 19:40:31 +1100 Date: Tue, 19 Mar 2002 19:40:35 +1100 (EST) From: Bruce Evans X-X-Sender: To: Peter Wemm Cc: Bruce Evans , , Subject: Re: cvs commit: src/sys/conf kern.post.mk In-Reply-To: <20020319074947.F36BF3810@overcee.wemm.org> Message-ID: <20020319192107.A5281-100000@gamplex.bde.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Mon, 18 Mar 2002, Peter Wemm wrote: > Bruce Evans wrote: > > bde 2002/03/18 22:30:24 PST > > > > Modified files: > > sys/conf kern.post.mk > > Log: > > Removed env(1) commands. make(1) uses a real shell, and > > "env name=value ... cmd ..." is just a pessimized way of doing > > "name=value ... cmd ..." in real shells. Set the environment > > (without using env(1)) before starting xargs so that env(1) > > is not needed in "xargs env name=value ... cmd ..." > > BZZT! Wrong! You broke cross compiles! > ... > ==== //depot/projects/ia64/sys/conf/kern.post.mk#5 - /home/peter/fbp4/ia64/sys/conf/kern.post.mk ==== > @@ -98,12 +98,10 @@ > ${SYSTEM_SFILES} ${MFILES:T:S/.m$/.h/} > if [ -f .olddep ]; then mv .olddep .depend; fi > rm -f .newdep > - MKDEP_CPP="${CC} -E" CC="${CC}" \ > - ${MAKE} -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | xargs \ > - mkdep -a -f .newdep ${CFLAGS} > - MKDEP_CPP="${CC} -E" \ > - ${MAKE} -V SFILES -V SYSTEM_SFILES | xargs \ > - mkdep -a -f .newdep ${ASM_CFLAGS} > + ${MAKE} -V CFILES -V SYSTEM_CFILES -V GEN_CFILES | xargs \ > + env MKDEP_CPP="${CC} -E" CC="${CC}" mkdep -a -f .newdep ${CFLAGS} > + ${MAKE} -V SFILES -V SYSTEM_SFILES | xargs \ > + env MKDEP_CPP="${CC} -E" mkdep -a -f .newdep ${ASM_CFLAGS} > rm -f .depend > mv .newdep .depend > > The env commands are needed here, because xargs(1) doesn't understand it > otherwise. > > IMHO, this part of the change is completely bogus. You are overriding the > MKDEP_CPP and CC variables on the wrong command! Oops. I thought "name=value" affected the whole pipeline. It only affected the ${MAKE} part. Moving it to before the xargs part should work, but I haven't tested this and just backed out this part of the change. BTW, passing CC to mkdep seems to be bogus. We neglect to pass it for assembler files, but that is OK because mkdep only uses CC when MKDEP_CPP is not set. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 0:42: 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 2622937B422; Tue, 19 Mar 2002 00:41:45 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J8fj867096; Tue, 19 Mar 2002 00:41:45 -0800 (PST) (envelope-from sobomax) Message-Id: <200203190841.g2J8fj867096@freefall.freebsd.org> From: Maxim Sobolev Date: Tue, 19 Mar 2002 00:41:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/mozilla Makefile ports/www/mozilla/files patch-gfx::src::x11shared::nsFreeType.cpp X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sobomax 2002/03/19 00:41:44 PST Modified files: www/mozilla Makefile Added files: www/mozilla/files patch-gfx::src::x11shared::nsFreeType.cpp Log: Fix displaying of bold/italic truetype fonts. Bump PORTREVISION. PR: 36049 Submitted by: Joe Kelsey Obtained from: Mozilla cvs Revision Changes Path 1.88 +1 -1 ports/www/mozilla/Makefile 1.1 +28 -0 ports/www/mozilla/files/patch-gfx::src::x11shared::nsFreeType.cpp (new) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 0:45:59 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B17337B402; Tue, 19 Mar 2002 00:45:55 -0800 (PST) Received: (from jeff@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J8jtY67931; Tue, 19 Mar 2002 00:45:55 -0800 (PST) (envelope-from jeff) Message-Id: <200203190845.g2J8jtY67931@freefall.freebsd.org> From: Jeff Roberson Date: Tue, 19 Mar 2002 00:45:55 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/vmstat vmstat.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeff 2002/03/19 00:45:55 PST Modified files: usr.bin/vmstat vmstat.c Log: Remove the kmembuckets stats in preparation for the UMA commit. Revision Changes Path 1.53 +9 -68 src/usr.bin/vmstat/vmstat.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 1:12:33 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D5D0837B444; Tue, 19 Mar 2002 01:11:49 -0800 (PST) Received: (from jeff@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J9Bna75666; Tue, 19 Mar 2002 01:11:49 -0800 (PST) (envelope-from jeff) Message-Id: <200203190911.g2J9Bna75666@freefall.freebsd.org> From: Jeff Roberson Date: Tue, 19 Mar 2002 01:11:49 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/alpha/alpha pmap.c src/sys/conf files src/sys/i386/i386 pmap.c src/sys/ia64/ia64 pmap.c src/sys/kern kern_descrip.c kern_malloc.c sys_pipe.c uipc_socket.c uipc_usrreq.c vfs_lookup.c src/sys/netinet in_pcb.h tcp_syncache.c ... X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG jeff 2002/03/19 01:11:49 PST Modified files: sys/alpha/alpha pmap.c sys/conf files sys/i386/i386 pmap.c sys/ia64/ia64 pmap.c sys/kern kern_descrip.c kern_malloc.c sys_pipe.c uipc_socket.c uipc_usrreq.c vfs_lookup.c sys/netinet in_pcb.h tcp_syncache.c sys/powerpc/powerpc pmap.c sys/sparc64/sparc64 pmap.c pv.c sys/sparc64/include pv.h sys/sys malloc.h proc.h socketvar.h vnode.h sys/vm device_pager.c swap_pager.c vm_init.c vm_map.c vm_map.h vm_object.c vm_page.c vm_pageout.c vm_zone.h Added files: sys/vm uma.h uma_core.c uma_int.h Log: This is the first part of the new kernel memory allocator. This replaces malloc(9) and vm_zone with a slab like allocator. Reviewed by: arch@ Revision Changes Path 1.86 +16 -2 src/sys/alpha/alpha/pmap.c 1.613 +1 -1 src/sys/conf/files 1.318 +16 -2 src/sys/i386/i386/pmap.c 1.47 +21 -2 src/sys/ia64/ia64/pmap.c 1.130 +10 -4 src/sys/kern/kern_descrip.c 1.95 +121 -298 src/sys/kern/kern_malloc.c 1.97 +2 -2 src/sys/kern/sys_pipe.c 1.112 +1 -1 src/sys/kern/uipc_socket.c 1.85 +3 -3 src/sys/kern/uipc_usrreq.c 1.51 +3 -2 src/sys/kern/vfs_lookup.c 1.44 +2 -1 src/sys/netinet/in_pcb.h 1.15 +1 -1 src/sys/netinet/tcp_syncache.c 1.22 +23 -0 src/sys/powerpc/powerpc/pmap.c 1.5 +1 -0 src/sys/sparc64/include/pv.h 1.44 +10 -0 src/sys/sparc64/sparc64/pmap.c 1.14 +10 -0 src/sys/sparc64/sparc64/pv.c 1.56 +4 -68 src/sys/sys/malloc.h 1.208 +3 -2 src/sys/sys/proc.h 1.69 +3 -2 src/sys/sys/socketvar.h 1.172 +2 -1 src/sys/sys/vnode.h 1.53 +6 -1 src/sys/vm/device_pager.c 1.169 +8 -8 src/sys/vm/swap_pager.c 1.1 +420 -0 src/sys/vm/uma.h (new) 1.1 +1900 -0 src/sys/vm/uma_core.c (new) 1.1 +328 -0 src/sys/vm/uma_int.h (new) 1.31 +0 -1 src/sys/vm/vm_init.c 1.218 +122 -43 src/sys/vm/vm_map.c 1.73 +0 -1 src/sys/vm/vm_map.h 1.204 +45 -11 src/sys/vm/vm_object.c 1.181 +16 -0 src/sys/vm/vm_page.c 1.193 +1 -0 src/sys/vm/vm_pageout.c 1.20 +20 -30 src/sys/vm/vm_zone.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 1:42:41 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 117BC37B400; Tue, 19 Mar 2002 01:42:37 -0800 (PST) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J9gb282998; Tue, 19 Mar 2002 01:42:37 -0800 (PST) (envelope-from ache) Message-Id: <200203190942.g2J9gb282998@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Tue, 19 Mar 2002 01:42:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/converters/iconv Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-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/19 01:42:36 PST Modified files: converters/iconv Makefile Log: Change MAINTAINER to ports Revision Changes Path 1.11 +1 -1 ports/converters/iconv/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 1:54:14 2002 Delivered-To: cvs-all@freebsd.org Received: from axl.seasidesoftware.co.za (axl.seasidesoftware.co.za [196.31.7.201]) by hub.freebsd.org (Postfix) with ESMTP id E1CEE37B400; Tue, 19 Mar 2002 01:54:09 -0800 (PST) Received: from sheldonh (helo=axl.seasidesoftware.co.za) by axl.seasidesoftware.co.za with local-esmtp (Exim 3.33 #1) id 16nGMj-000Kgl-00; Tue, 19 Mar 2002 11:57:13 +0200 From: Sheldon Hearn To: Peter Pentchev Cc: Alfred Perlstein , Boris Popov , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/contrib/smbfs/lib/smb ctx.c In-reply-to: Your message of "Tue, 19 Mar 2002 09:22:02 +0200." <20020319092202.A9136@straylight.oblivion.bg> Date: Tue, 19 Mar 2002 11:57:13 +0200 Message-ID: <79530.1016531833@axl.seasidesoftware.co.za> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On Tue, 19 Mar 2002 09:22:02 +0200, Peter Pentchev wrote: > Errrr.. oops? Are you sure that this should not have been bounced > through Boris Popov, the author of the _contrib_/smbfs code, and > then vendor-imported? I didn't expect this from Alfred. The file's on the vendor branch and we have an active and cooperative vendor. Alfred, please chat to the cvs meisters and get your change deleted so that we can do this properly on the vendor branch. Ciao, Sheldon. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 1:59:20 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 26F8037B404; Tue, 19 Mar 2002 01:59:18 -0800 (PST) Received: (from keramida@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2J9xIf85430; Tue, 19 Mar 2002 01:59:18 -0800 (PST) (envelope-from keramida) Message-Id: <200203190959.g2J9xIf85430@freefall.freebsd.org> From: Giorgos Keramidas Date: Tue, 19 Mar 2002 01:59:18 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/rlogin rlogin.1 X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG keramida 2002/03/19 01:59:18 PST Modified files: (Branch: RELENG_4) usr.bin/rlogin rlogin.1 Log: MFC: 1.19: Typo fix. Revision Changes Path 1.11.2.6 +2 -2 src/usr.bin/rlogin/rlogin.1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 2:18:38 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B4DBB37B400; Tue, 19 Mar 2002 02:18:35 -0800 (PST) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JAIZF97846; Tue, 19 Mar 2002 02:18:35 -0800 (PST) (envelope-from ache) Message-Id: <200203191018.g2JAIZF97846@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Tue, 19 Mar 2002 02:18:35 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/devel/bison Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2002/03/19 02:18:35 PST Modified files: devel/bison Makefile Log: Remove iconv->giconv hack Revision Changes Path 1.29 +1 -3 ports/devel/bison/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 2:33:58 2002 Delivered-To: cvs-all@freebsd.org Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by hub.freebsd.org (Postfix) with ESMTP id 760E537B434; Tue, 19 Mar 2002 02:33:25 -0800 (PST) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.11.6/8.11.2) id g2JAXHG85022; Tue, 19 Mar 2002 12:33:17 +0200 (EET) (envelope-from ru) Date: Tue, 19 Mar 2002 12:33:17 +0200 From: Ruslan Ermilov To: =?koi8-r?Q?S=F8ren?= Schmidt Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-disk.c ata-disk.h ata-dma.c ata-isa.c ata-pci.c ata-raid.c ata-raid.h atapi-all.c atapi-all.h atapi-cd.c atapi-cd.h atapi-fd.c atapi-fd.h atapi-tape.c atapi-tape.h Message-ID: <20020319103317.GB65580@sunbay.com> References: <200203180837.g2I8biY94563@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200203180837.g2I8biY94563@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 Mon, Mar 18, 2002 at 12:37:44AM -0800, Søren Schmidt wrote: > sos 2002/03/18 00:37:44 PST > > Modified files: (Branch: RELENG_4) > sys/dev/ata ata-all.c ata-all.h ata-disk.c ata-disk.h > ata-dma.c ata-raid.c ata-raid.h > atapi-all.c atapi-all.h atapi-cd.c > atapi-cd.h atapi-fd.c atapi-fd.h > atapi-tape.c atapi-tape.h > Added files: (Branch: RELENG_4) > sys/dev/ata ata-card.c ata-isa.c ata-pci.c > Log: > MFC: the entire ATA driver with all functionality as of 2002-03-18. > The following patch is required to compile GENERIC Alpha kernel: %%% Index: ata-pci.c =================================================================== RCS file: /home/ncvs/src/sys/dev/ata/ata-pci.c,v retrieving revision 1.32.2.1 diff -u -p -r1.32.2.1 ata-pci.c --- ata-pci.c 18 Mar 2002 08:37:33 -0000 1.32.2.1 +++ ata-pci.c 19 Mar 2002 10:25:21 -0000 @@ -723,7 +723,7 @@ ata_pci_setup_intr(device_t dev, device_ { if (ATA_MASTERDEV(dev)) { #ifdef __alpha__ - return alpha_platform_setup_ide_intr(child, irq, intr, arg, cookiep); + return alpha_platform_setup_ide_intr(irq, intr, arg, cookiep); #else return BUS_SETUP_INTR(device_get_parent(dev), child, irq, flags, intr, arg, cookiep); @@ -740,7 +740,7 @@ ata_pci_teardown_intr(device_t dev, devi { if (ATA_MASTERDEV(dev)) { #ifdef __alpha__ - return alpha_platform_teardown_ide_intr(child, irq, cookie); + return alpha_platform_teardown_ide_intr(irq, cookie); #else return BUS_TEARDOWN_INTR(device_get_parent(dev), child, irq, cookie); #endif %%% Cheers, -- Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software AG, ru@FreeBSD.org FreeBSD committer, +380.652.512.251 Simferopol, Ukraine http://www.FreeBSD.org The Power To Serve http://www.oracle.com Enabling The Information Age To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 2:41:26 2002 Delivered-To: cvs-all@freebsd.org Received: from straylight.ringlet.net (discworld.nanolink.com [217.75.135.248]) by hub.freebsd.org (Postfix) with SMTP id 9DBFE37B41C for ; Tue, 19 Mar 2002 02:41:12 -0800 (PST) Received: (qmail 81017 invoked by uid 1000); 19 Mar 2002 09:54:35 -0000 Date: Tue, 19 Mar 2002 11:54:35 +0200 From: Peter Pentchev To: Dag-Erling Smorgrav Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/crypto/openssh auth-chall.c auth-krb4.c auth-krb5.c auth-pam.c auth-passwd.c auth-rh-rsa.c auth-rsa.c auth.c auth.h auth1.c auth2.c authfd.c authfile.c bufaux.c canohost.c channels.c channels.h cipher.c cipher.h compat.c ... Message-ID: <20020319115435.J9136@straylight.oblivion.bg> Mail-Followup-To: Dag-Erling Smorgrav , cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org References: <200203181009.g2IA9jI22591@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="ibvzjYYg+QDzMCy1" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from des@ofug.org on Mon, Mar 18, 2002 at 11:33:25AM +0100 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --ibvzjYYg+QDzMCy1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Mar 18, 2002 at 11:33:25AM +0100, Dag-Erling Smorgrav wrote: > Dag-Erling Smorgrav writes: > > Log: > > Fix conflicts. >=20 > This was a real bitch... expect stuff to break. I've verified that > it builds with krb4 and krb5 support, and that it works in !krb case, > but the diffs are so huge I'm bound to have done *something* wrong. Well, I really hate to be a bearer of bad news (lucky for me that I never got 'round to putting a place marker in the xearth file ;), but.. servconf.c has quite a lot of #if defined(KRB4) || defined(KRB5). Those break, like, badly, if KRB5 is defined *without* KRB4 :( This is not any of your doing, it is a bug in OpenSSH itself. It seems everyone there assumes that everyone else builds both Kerberos IV and Kerberos 5 at the same time; well, I don't :) And still.. good work, DES! G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 This sentence no verb. --ibvzjYYg+QDzMCy1 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 iEYEARECAAYFAjyXCtsACgkQ7Ri2jRYZRVPvYQCgmkUmyldVhVe1XOLbmEc75Zwl 9kgAn22pVIbDm8dqCqbM/WUEjM68WXBS =KBBT -----END PGP SIGNATURE----- --ibvzjYYg+QDzMCy1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 2:50:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B601A37B405; Tue, 19 Mar 2002 02:50:09 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JAo9P39339; Tue, 19 Mar 2002 02:50:09 -0800 (PST) (envelope-from peter) Message-Id: <200203191050.g2JAo9P39339@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 02:50:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/efi/include efiapi.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 02:50:09 PST Modified files: sys/boot/efi/include efiapi.h Log: gcc-3.1 likes to have extra { } around the internal array initializers in the GUID templates. Revision Changes Path 1.3 +5 -5 src/sys/boot/efi/include/efiapi.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 2:51: 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 D62A537B42F; Tue, 19 Mar 2002 02:50:41 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JAof239490; Tue, 19 Mar 2002 02:50:41 -0800 (PST) (envelope-from peter) Message-Id: <200203191050.g2JAof239490@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 02:50:41 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/efi/loader 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 peter 2002/03/19 02:50:41 PST Modified files: sys/boot/efi/loader conf.c Log: Boot from efifs first. Revision Changes Path 1.6 +2 -2 src/sys/boot/efi/loader/conf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 2:52:14 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9245737B4DA; Tue, 19 Mar 2002 02:51:57 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JApvO39910; Tue, 19 Mar 2002 02:51:57 -0800 (PST) (envelope-from peter) Message-Id: <200203191051.g2JApvO39910@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 02:51:57 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/boot/efi Makefile.inc src/sys/boot/ia64/libski Makefile src/sys/boot/ia64/skiload Makefile X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 02:51:57 PST Modified files: sys/boot/efi Makefile.inc sys/boot/ia64/libski Makefile sys/boot/ia64/skiload Makefile Log: Add -ffreestanding to avoid printf/puts/putchar conversions Revision Changes Path 1.3 +2 -1 src/sys/boot/efi/Makefile.inc 1.3 +2 -1 src/sys/boot/ia64/libski/Makefile 1.3 +2 -1 src/sys/boot/ia64/skiload/Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 2:52: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 6256C37B48E; Tue, 19 Mar 2002 02:52:19 -0800 (PST) Received: (from sos@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JAqJ239978; Tue, 19 Mar 2002 02:52:19 -0800 (PST) (envelope-from sos) Message-Id: <200203191052.g2JAqJ239978@freefall.freebsd.org> From: Søren Schmidt Date: Tue, 19 Mar 2002 02:52:19 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/ata ata-pci.c X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG sos 2002/03/19 02:52:19 PST Modified files: (Branch: RELENG_4) sys/dev/ata ata-pci.c Log: Correction to allow compile on alpha. Submitted by: ru Revision Changes Path 1.32.2.2 +2 -2 src/sys/dev/ata/ata-pci.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 2:53: 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 D7CD237B4A6; Tue, 19 Mar 2002 02:52:44 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JAqio40102; Tue, 19 Mar 2002 02:52:44 -0800 (PST) (envelope-from peter) Message-Id: <200203191052.g2JAqio40102@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 02:52:44 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/conf Makefile.ia64 X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 02:52:44 PST Modified files: sys/conf Makefile.ia64 Log: Use the FreeBSD cross tools instead of the linux ones. Revision Changes Path 1.47 +9 -9 src/sys/conf/Makefile.ia64 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 2:53: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 EBCC037B490; Tue, 19 Mar 2002 02:53:15 -0800 (PST) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JArFl40197; Tue, 19 Mar 2002 02:53:15 -0800 (PST) (envelope-from ache) Message-Id: <200203191053.g2JArFl40197@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Tue, 19 Mar 2002 02:53:15 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/news/tin Makefile distinfo ports/news/tin/files patch-aa patch-ab pcre.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ache 2002/03/19 02:53:15 PST Modified files: news/tin Makefile distinfo news/tin/files patch-aa patch-ab pcre.h Log: Upgrade to 1.5.11 Revision Changes Path 1.97 +3 -5 ports/news/tin/Makefile 1.66 +1 -1 ports/news/tin/distinfo 1.21 +5 -5 ports/news/tin/files/patch-aa 1.4 +0 -114 ports/news/tin/files/patch-ab 1.4 +2 -2 ports/news/tin/files/pcre.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 2:53:58 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7594C37B4A6; Tue, 19 Mar 2002 02:53:33 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JArXX40243; Tue, 19 Mar 2002 02:53:33 -0800 (PST) (envelope-from peter) Message-Id: <200203191053.g2JArXX40243@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 02:53:33 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/kbd atkbdc.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 02:53:33 PST Modified files: sys/dev/kbd atkbdc.c Log: Add the ia64 bus space tag for the IO ports (!). Add a #else and #error so that this doesn't go unnoticed again. Revision Changes Path 1.10 +5 -1 src/sys/dev/kbd/atkbdc.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 2:54:46 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A601237B405; Tue, 19 Mar 2002 02:54:40 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JAsev40510; Tue, 19 Mar 2002 02:54:40 -0800 (PST) (envelope-from peter) Message-Id: <200203191054.g2JAsev40510@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 02:54:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 02:54:40 PST Modified files: sys/dev/usb usbdevs Log: Add another SMC device ID and the hub ID that it went with. Revision Changes Path 1.80 +3 -0 src/sys/dev/usb/usbdevs To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 2:55: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 39D2E37B400; Tue, 19 Mar 2002 02:55:40 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JAteb40839; Tue, 19 Mar 2002 02:55:40 -0800 (PST) (envelope-from peter) Message-Id: <200203191055.g2JAteb40839@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 02:55:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/usb usbdevs.h usbdevs_data.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 02:55:40 PST Modified files: sys/dev/usb usbdevs.h usbdevs_data.h Log: Regen; post SMC id's and also pick up a previously forgotten regen(?). Revision Changes Path 1.93 +12 -1 src/sys/dev/usb/usbdevs.h 1.93 +37 -1 src/sys/dev/usb/usbdevs_data.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 2:56:50 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 980AC37B402; Tue, 19 Mar 2002 02:56:46 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JAuk240962; Tue, 19 Mar 2002 02:56:46 -0800 (PST) (envelope-from peter) Message-Id: <200203191056.g2JAuk240962@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 02:56:46 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern subr_sbuf.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 02:56:46 PST Modified files: sys/kern subr_sbuf.c Log: Fix warnings on gcc-3.1+ where __func__ is a const char * instead of a string. Revision Changes Path 1.19 +2 -2 src/sys/kern/subr_sbuf.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 2:57: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 C87E837B400; Tue, 19 Mar 2002 02:57:40 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JAveM41136; Tue, 19 Mar 2002 02:57:40 -0800 (PST) (envelope-from peter) Message-Id: <200203191057.g2JAveM41136@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 02:57:40 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern sysv_sem.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 02:57:40 PST Modified files: sys/kern sysv_sem.c Log: Pacify gcc-3.1+, initialize two variables to avoid -Wuninitialized warnings. Revision Changes Path 1.50 +2 -2 src/sys/kern/sysv_sem.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3: 2: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 52D7B37B416; Tue, 19 Mar 2002 03:02:07 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JB27b42269; Tue, 19 Mar 2002 03:02:07 -0800 (PST) (envelope-from peter) Message-Id: <200203191102.g2JB27b42269@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 03:02:06 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/dev/acpica/Osd OsdHardware.c OsdMemory.c src/sys/kern kern_acl.c kern_synch.c src/sys/vm vm_glue.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 03:02:06 PST Modified files: sys/dev/acpica/Osd OsdHardware.c OsdMemory.c sys/kern kern_acl.c kern_synch.c sys/vm vm_glue.c Log: Fix a gcc-3.1+ warning. warning: deprecated use of label at end of compound statement ie: you cannot do this anymore: switch(foo) { .... default: } Revision Changes Path 1.5 +3 -0 src/sys/dev/acpica/Osd/OsdHardware.c 1.8 +2 -0 src/sys/dev/acpica/Osd/OsdMemory.c 1.25 +3 -0 src/sys/kern/kern_acl.c 1.171 +1 -0 src/sys/kern/kern_synch.c 1.132 +1 -0 src/sys/vm/vm_glue.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3: 3:52 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D53BC37B405; Tue, 19 Mar 2002 03:03:48 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JB3mK42640; Tue, 19 Mar 2002 03:03:48 -0800 (PST) (envelope-from peter) Message-Id: <200203191103.g2JB3mK42640@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 03:03:48 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 clock.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 03:03:48 PST Modified files: sys/ia64/ia64 clock.c Log: Turn off the ia64 ITC timecounter when SMP is present since it has the same problem as the TSC on the x86 - ie: it is not synchronized. #if 0 out some unused functions, ia64 doesn't calibrate clocks yet. Revision Changes Path 1.13 +10 -0 src/sys/ia64/ia64/clock.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3: 5:12 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D53F937B400; Tue, 19 Mar 2002 03:05:07 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JB57i43092; Tue, 19 Mar 2002 03:05:07 -0800 (PST) (envelope-from peter) Message-Id: <200203191105.g2JB57i43092@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 03:05:07 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 nexus.c sapic.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 03:05:07 PST Modified files: sys/ia64/ia64 nexus.c sapic.c Log: Add some #includes after things got broken with the last round of MI include file ( I think) tweaks. Revision Changes Path 1.4 +2 -1 src/sys/ia64/ia64/nexus.c 1.4 +2 -0 src/sys/ia64/ia64/sapic.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3: 6: 5 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9E8E137B400; Tue, 19 Mar 2002 03:06:01 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JB61H46657; Tue, 19 Mar 2002 03:06:01 -0800 (PST) (envelope-from peter) Message-Id: <200203191106.g2JB61H46657@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 03:06:01 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 db_interface.c ia64-gdbstub.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 03:06:01 PST Modified files: sys/ia64/ia64 db_interface.c ia64-gdbstub.c Log: #if 0 out some unused code. Revision Changes Path 1.18 +2 -0 src/sys/ia64/ia64/db_interface.c 1.4 +4 -1 src/sys/ia64/ia64/ia64-gdbstub.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3: 7:15 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ED7A237B400; Tue, 19 Mar 2002 03:07:09 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JB79w46971; Tue, 19 Mar 2002 03:07:09 -0800 (PST) (envelope-from peter) Message-Id: <200203191107.g2JB79w46971@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 03:07:09 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/include vmparam.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 03:07:09 PST Modified files: sys/ia64/include vmparam.h Log: Believe it or not, I ran into the 32MB stack size limit using a natively hosted gcc. Revision Changes Path 1.3 +2 -2 src/sys/ia64/include/vmparam.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3: 9:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4AF3337B402; Tue, 19 Mar 2002 03:09:25 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JB9PR47445; Tue, 19 Mar 2002 03:09:25 -0800 (PST) (envelope-from peter) Message-Id: <200203191109.g2JB9PR47445@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 03:09:25 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 db_disasm.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 03:09:25 PST Modified files: sys/ia64/ia64 db_disasm.c Log: Work around an apparent compiler bug with gcc-3.1, although it might be a language feature that I do not know about. gcc is complaining about a left shift >= sizeof type, even when shifting a (cast) 64 bit type left by 43 bits. Revision Changes Path 1.8 +5 -2 src/sys/ia64/ia64/db_disasm.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3:10: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 1D27337B400; Tue, 19 Mar 2002 03:10:04 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JBA4V47636; Tue, 19 Mar 2002 03:10:04 -0800 (PST) (envelope-from peter) Message-Id: <200203191110.g2JBA4V47636@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 03:10:03 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 sal.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 03:10:03 PST Modified files: sys/ia64/ia64 sal.c Log: #ifdef SMP some variables that are only used elsewhere under #ifdef SMP also. Revision Changes Path 1.6 +2 -0 src/sys/ia64/ia64/sal.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3:10:53 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8BB3D37B419; Tue, 19 Mar 2002 03:10:30 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JBAUQ47789; Tue, 19 Mar 2002 03:10:30 -0800 (PST) (envelope-from peter) Message-Id: <200203191110.g2JBAUQ47789@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 03:10:30 -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 peter 2002/03/19 03:10:30 PST Modified files: sys/ia64/ia64 db_trace.c Log: Fix a pointer/int warning Revision Changes Path 1.10 +1 -1 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 Tue Mar 19 3:11: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 DBC1337B400; Tue, 19 Mar 2002 03:11:32 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JBBWp47992; Tue, 19 Mar 2002 03:11:32 -0800 (PST) (envelope-from roam) Message-Id: <200203191111.g2JBBWp47992@freefall.freebsd.org> From: Peter Pentchev Date: Tue, 19 Mar 2002 03:11:32 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/ftp/pure-ftpd Makefile distinfo X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG roam 2002/03/19 03:11:32 PST Modified files: ftp/pure-ftpd Makefile distinfo Log: Update to 1.0.10. PR: 36062 Submitted by: Alex Dupre Approved by: maintainer Revision Changes Path 1.26 +1 -1 ports/ftp/pure-ftpd/Makefile 1.25 +1 -1 ports/ftp/pure-ftpd/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3:11:45 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 85B3937B405; Tue, 19 Mar 2002 03:11:37 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JBBb048049; Tue, 19 Mar 2002 03:11:37 -0800 (PST) (envelope-from peter) Message-Id: <200203191111.g2JBBb048049@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 03:11:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 mp_machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 03:11:37 PST Modified files: sys/ia64/ia64 mp_machdep.c Log: __func__ is a const char *, not a "string" that can be concatenated. Revision Changes Path 1.33 +3 -3 src/sys/ia64/ia64/mp_machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3:14: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 53B6F37B402; Tue, 19 Mar 2002 03:14:52 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JBEqZ48923; Tue, 19 Mar 2002 03:14:52 -0800 (PST) (envelope-from peter) Message-Id: <200203191114.g2JBEqZ48923@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 03:14:52 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/acpica madt.c src/sys/ia64/ia64 machdep.c mp_machdep.c src/sys/ia64/include cpu.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 03:14:52 PST Modified files: sys/ia64/acpica madt.c sys/ia64/ia64 machdep.c mp_machdep.c sys/ia64/include cpu.h Log: Move a couple of prototypes together instead of being incompletely scattered around. Revision Changes Path 1.8 +0 -1 src/sys/ia64/acpica/madt.c 1.80 +0 -3 src/sys/ia64/ia64/machdep.c 1.34 +0 -3 src/sys/ia64/ia64/mp_machdep.c 1.23 +5 -1 src/sys/ia64/include/cpu.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3:15:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BFBD537B402; Tue, 19 Mar 2002 03:15:26 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JBFQt49088; Tue, 19 Mar 2002 03:15:26 -0800 (PST) (envelope-from peter) Message-Id: <200203191115.g2JBFQt49088@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 03:15:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 autoconf.c elf_machdep.c src/sys/ia64/isa isa_dma.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 03:15:26 PST Modified files: sys/ia64/ia64 autoconf.c elf_machdep.c sys/ia64/isa isa_dma.c Log: Fix some unused variables. Revision Changes Path 1.9 +3 -0 src/sys/ia64/ia64/autoconf.c 1.2 +0 -1 src/sys/ia64/ia64/elf_machdep.c 1.3 +3 -1 src/sys/ia64/isa/isa_dma.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3:18:51 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A43137B400; Tue, 19 Mar 2002 03:18:47 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JBIla49529; Tue, 19 Mar 2002 03:18:47 -0800 (PST) (envelope-from peter) Message-Id: <200203191118.g2JBIla49529@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 03:18:47 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/ia64 machdep.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 03:18:47 PST Modified files: sys/ia64/ia64 machdep.c Log: My ia64 box for some reason likes to fragment the beginning/end of memory a bit before handing it over to the OS. I occasionally have 11 segments with several 8K or so fragments depending on nvram settings and what I have done under loader(8) before booting. This needs to be revisited. Revision Changes Path 1.81 +1 -1 src/sys/ia64/ia64/machdep.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3:19:58 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AAE0037B404; Tue, 19 Mar 2002 03:19:53 -0800 (PST) Received: (from ru@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JBJr649808; Tue, 19 Mar 2002 03:19:53 -0800 (PST) (envelope-from ru) Message-Id: <200203191119.g2JBJr649808@freefall.freebsd.org> From: Ruslan Ermilov Date: Tue, 19 Mar 2002 03:19:53 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src Makefile.inc1 src/share/mk bsd.lib.mk bsd.prog.mk X-FreeBSD-CVS-Branch: RELENG_4 Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG ru 2002/03/19 03:19:53 PST Modified files: (Branch: RELENG_4) . Makefile.inc1 share/mk bsd.lib.mk bsd.prog.mk Log: Garbage collect COMPILER_PATH, LIBRARY_PATH, and -nostdinc in Makefile.inc1, -I${DESTDIR}/usr/include in bsd.prog.mk and bsd.lib.mk, and LDDESTDIR in bsd.lib.mk. (David O'Brien already merged the required changes to gcc.) Revision Changes Path 1.141.2.41 +0 -4 src/Makefile.inc1 1.91.2.6 +5 -14 src/share/mk/bsd.lib.mk 1.86.2.8 +0 -4 src/share/mk/bsd.prog.mk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3:20:57 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2B8AA37B400; Tue, 19 Mar 2002 03:20:54 -0800 (PST) Received: (from ache@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JBKsM50111; Tue, 19 Mar 2002 03:20:54 -0800 (PST) (envelope-from ache) Message-Id: <200203191120.g2JBKsM50111@freefall.freebsd.org> From: "Andrey A. Chernov" Date: Tue, 19 Mar 2002 03:20:54 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/archivers/rar 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 ache 2002/03/19 03:20:54 PST Modified files: archivers/rar Makefile distinfo Log: Upgrade to 3.0 beta 5 Revision Changes Path 1.27 +2 -2 ports/archivers/rar/Makefile 1.6 +1 -1 ports/archivers/rar/distinfo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3: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 6D63B37B400; Tue, 19 Mar 2002 03:21:13 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JBLDN50234; Tue, 19 Mar 2002 03:21:13 -0800 (PST) (envelope-from peter) Message-Id: <200203191121.g2JBLDN50234@freefall.freebsd.org> From: Peter Wemm Date: Tue, 19 Mar 2002 03:21:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/ia64/conf GENERIC X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG peter 2002/03/19 03:21:12 PST Modified files: sys/ia64/conf GENERIC Log: Enabling the SKI option is a guaranteed breakage for me. Interrupts no longer work. I can only get a box to boot with 'options SMP'. Revision Changes Path 1.26 +4 -1 src/sys/ia64/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3:30:31 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D132737B405; Tue, 19 Mar 2002 03:30:23 -0800 (PST) Received: (from darrenr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JBUNh51588; Tue, 19 Mar 2002 03:30:23 -0800 (PST) (envelope-from darrenr) Message-Id: <200203191130.g2JBUNh51588@freefall.freebsd.org> From: Darren Reed Date: Tue, 19 Mar 2002 03:30:23 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/contrib/ipfilter/netinet - Imported sources X-FreeBSD-CVS-Branch: DARRENR Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG darrenr 2002/03/19 03:30:23 PST src/sys/contrib/ipfilter/netinet - Imported sources Update of /home/ncvs/src/sys/contrib/ipfilter/netinet In directory freefall.freebsd.org:/d/home/darrenr/sys-netinet Log Message: Import IPFilter 3.4.25 (last version 3.4.20) Status: Vendor Tag: DARRENR Release Tags: v3-4-25 C src/sys/contrib/ipfilter/netinet/ip_auth.c C src/sys/contrib/ipfilter/netinet/ip_raudio_pxy.c N src/sys/contrib/ipfilter/netinet/ip_netbios_pxy.c N src/sys/contrib/ipfilter/netinet/ip_ipsec_pxy.c N src/sys/contrib/ipfilter/netinet/ip_h323_pxy.c C src/sys/contrib/ipfilter/netinet/ip_ftp_pxy.c C src/sys/contrib/ipfilter/netinet/ip_frag.h C src/sys/contrib/ipfilter/netinet/ip_frag.c C src/sys/contrib/ipfilter/netinet/ip_fil.h C src/sys/contrib/ipfilter/netinet/ip_fil.c C src/sys/contrib/ipfilter/netinet/ip_compat.h C src/sys/contrib/ipfilter/netinet/ip_auth.h C src/sys/contrib/ipfilter/netinet/ip_rcmd_pxy.c C src/sys/contrib/ipfilter/netinet/fil.c C src/sys/contrib/ipfilter/netinet/ip_state.c C src/sys/contrib/ipfilter/netinet/ip_proxy.h C src/sys/contrib/ipfilter/netinet/ip_proxy.c C src/sys/contrib/ipfilter/netinet/ip_nat.h C src/sys/contrib/ipfilter/netinet/ip_nat.c C src/sys/contrib/ipfilter/netinet/ip_log.c C src/sys/contrib/ipfilter/netinet/ip_state.h C src/sys/contrib/ipfilter/netinet/mlfk_ipl.c C src/sys/contrib/ipfilter/netinet/ipl.h 20 conflicts created by this import. Use the following command to help the merge: cvs checkout -jDARRENR:yesterday -jDARRENR src/sys/contrib/ipfilter/netinet To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3:42: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 BB4F737B402; Tue, 19 Mar 2002 03:42:12 -0800 (PST) Received: (from darrenr@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g2JBgCf53537; Tue, 19 Mar 2002 03:42:12 -0800 (PST) (envelope-from darrenr) Message-Id: <200203191142.g2JBgCf53537@freefall.freebsd.org> From: Darren Reed Date: Tue, 19 Mar 2002 03:42:12 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/contrib/ipfilter/netinet ip_h323_pxy.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG darrenr 2002/03/19 03:42:12 PST Removed files: sys/contrib/ipfilter/netinet ip_h323_pxy.c Log: This file is being removed pending the all clear on its licence by someone else. Revision Changes Path 1.2 +0 -275 src/sys/contrib/ipfilter/netinet/ip_h323_pxy.c (dead) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message From owner-cvs-all Tue Mar 19 3:43: 2 2002 Delivered-To: cvs-all@freebsd.org Received: from rwcrmhc54.attbi.com (rwcrmhc54.attbi.com [216.148.227.87]) by hub.freebsd.org (Postfix) with ESMTP id 11A6537B402; Tue, 19 Mar 2002 03:42:42 -0800 (PST) Received: from peter3.wemm.org ([12.232.27.13]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020319114241.TVLO1214.rwcrmhc54.attbi.com@peter3.wemm.org>; Tue, 19 Mar 2002 11:42:41 +0000 Received: from overcee.wemm.org (overcee.wemm.org [10.0.0.3]) by peter3.wemm.org (8.11.0/8.11.0) with ESMTP id g2JBgfs64808; Tue, 19 Mar 2002 03:42:41 -0800 (PST) (envelope-from peter@wemm.org) Received: from wemm.org (localhost [127.0.0.1]) by overcee.wemm.org (Postfix) with ESMTP id 34915390B; Tue, 19 Mar 2002 03:42:41 -0800 (PST) (envelope-from peter@wemm.org) X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Cc: freebsd-ia64@FreeBSD.org Subject: Re: cvs commit: src/sys/ia64/conf GENERIC In-Reply-To: <200203191121.g2JBLDN50234@freefall.freebsd.org> Date: Tue, 19 Mar 2002 03:42:41 -0800 From: Peter Wemm Message-Id: <20020319114241.34915390B@overcee.wemm.org> Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Peter Wemm wrote: > peter 2002/03/19 03:21:12 PST > > Modified files: > sys/ia64/conf GENERIC > Log: > Enabling the SKI option is a guaranteed breakage for me. Interrupts no > longer work. > I can only get a box to boot with 'options SMP'. Loading.: FreeBSD/ia64 Starting: FreeBSD/ia64 Console: EFI console FreeBSD/ia64 EFI boot, Revision 0.1 (peter@overcee.netplex.com.au, Mon Nov 19 00:14:52 PST 2001) Type '?' for a list of commands, 'help' for more detailed help. ok load /kernel.smp4 /kernel.smp4 data=0x500e08+0x32dc8 syms=[0x8+0x42738+0x8+0x36ae2] Entering /kernel.smp4 at 0xe00000000050a000... WARNING: 32768 bytes not available for msgbuf in last cluster (8192 used) ACPI debug layer 0x0 debug level 0x0 Copyright (c) 1992-2002 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #3: Tue Mar 19 02:35:47 PST 2002 peter@overcee.wemm.org:/home/peter/fbp4/ia64/sys/ia64/compile/SMP Preloaded elf kernel "/kernel.smp4" at 0xe000000000ab0000. CPU: Itanium (733.30-Mhz) Origin = "GenuineIntel" Model = 0 Revision = 6 Features = 0x0 real memory = 1056546816 (1031784K bytes) avail memory = 1018961920 (995080K bytes) FPSWA Revision = 0x10009, Entry = 0xe00000003f16e050 FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0: SAPIC Id=0, SAPIC Eid=0 (BSP) cpu1: SAPIC Id=3, SAPIC Eid=0 acpi0: on motherboard acpi0: power button is handled as a fixed feature programming model. ACPI timer looks BAD min = 2, max = 6, width = 5 ACPI timer looks BAD min = 2, max = 6, width = 5 ACPI timer looks BAD min = 2, max = 6, width = 5 ACPI timer looks BAD min = 2, max = 6, width = 5 ACPI timer looks BAD min = 2, max = 6, width = 5 ACPI timer looks BAD min = 2, max = 6, width = 5 ACPI timer looks BAD min = 2, max = 6, width = 5 ACPI timer looks BAD min = 2, max = 6, width = 5 ACPI timer looks BAD min = 2, max = 6, width = 5 ACPI timer looks BAD min = 2, max = 6, width = 5 Timecounter "ACPI-safe" frequency 3579545 Hz acpi_cpu0: on acpi0 acpi_cpu1: on acpi0 acpi_pcib0: port 0xcf8-0xcff on acpi0 pci0: on acpi_pcib0 pci0: at device 0.0 (no driver attached) isab0: at device 3.0 on pci0 isa0: on isab0 pci0: at device 3.1 (no driver attached) pci0: at device 3.2 (no driver attached) pci0: at device 3.3 (no driver attached) pci0: at device 4.0 (no driver attached) fxp0: port 0x1000-0x103f mem 0xfdf00000-0xfdffffff,0xfddef000-0xfddeffff irq 44 at device 5.0 on pci0 fxp0: Ethernet address 00:d0:b7:f9:f5:46 inphy0: on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto pci0: at device 16.0 (no driver attached) atkbdc0: port 0x64,0x60 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: port may not be enabled sio0 port 0x3f8-0x3ff irq 4 on acpi0 sio0: type 16550A, console acpi_pcib1: on acpi0 pci1: on acpi_pcib1 pci1: at device 15.0 (no driver attached) acpi_pcib2: on acpi0 pci2: on acpi_pcib2 isp0: port 0x2000-0x20ff mem 0xf7fdf000-0xf7fdffff irq 27 at device 0.0 on pci2 pci2: at device 15.0 (no driver attached) acpi_pcib3: on acpi0 pci3: on acpi_pcib3 pci3: at device 0.0 (no driver attached) acpi_timer0: <24-bit timer at 3.579545MHz> port 0xa08-0xa0b on acpi0 orm0: